From owner-cvs-all@FreeBSD.ORG Sun Mar 30 00:13:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E99137B409; Sun, 30 Mar 2003 00:13:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AF6143FAF; Sun, 30 Mar 2003 00:13:47 -0800 (PST) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2U8Dl0U075729; Sun, 30 Mar 2003 00:13:47 -0800 (PST) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2U8Dlxi075728; Sun, 30 Mar 2003 00:13:47 -0800 (PST) Message-Id: <200303300813.h2U8Dlxi075728@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Sun, 30 Mar 2003 00:13:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ep if_ep_eisa.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 08:13:57 -0000 mdodd 2003/03/30 00:13:47 PST FreeBSD src repository Modified files: sys/dev/ep if_ep_eisa.c Log: Revert 1.21; this was local code that should not have been committed. Revision Changes Path 1.23 +5 -5 src/sys/dev/ep/if_ep_eisa.c From owner-cvs-all@FreeBSD.ORG Sun Mar 30 00:20:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0F3137B404; Sun, 30 Mar 2003 00:20:13 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACA0C43F85; Sun, 30 Mar 2003 00:20:07 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id SAA09876; Sun, 30 Mar 2003 18:19:39 +1000 Date: Sun, 30 Mar 2003 18:19:38 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Jeff Roberson In-Reply-To: <20030329152001.I64602-100000@mail.chesapeake.net> Message-ID: <20030330161319.O13783@gamplex.bde.org> References: <20030329152001.I64602-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: David Malone cc: src-committers@FreeBSD.org cc: Nate Lawson cc: cvs-src@FreeBSD.org cc: Mike Silbersack cc: cvs-all@FreeBSD.org cc: Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= Subject: Re: Checksum/copy X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 08:20:17 -0000 On Sat, 29 Mar 2003, Jeff Roberson wrote: > On Sat, 29 Mar 2003, Bruce Evans wrote: > > ... > > - SCHED_ULE breaks scheduling of idleprio processes. This results in > > pagezero being too active. It costs 1-2% instead of saving 1-2%. [1-2% for makeworld]. > Thanks for the analysis. I know my +nice values are screwy right now. > It's actually a pretty interesting problem. Perhaps you'll have some > insight. idleprio is a little different from nice. I would have expected it to work right fairly automatically. At least with the standard scheduler, idleprio gives td->td_priority values which are lower (numerically higher) than the value for all non-idleprio processes, so idleprio processes should never run if there is a runnable non-idleprio processes. > The basic issue is that threads on run queues in ule must be given a > slice. And with a slice, ignoring interactive threads, they are run every > n times we select a new thread where n is the number of runnning threads. > That means two things > > 1) +nice threads always get a chance to run. > 2) Their %cpu is relative to the sum of all slices of all running > threads. > > #2 is sort of what you want, except that the slice value never reaches > zero. In sched_4bsd if you have a nice priority that is 20 away from the > lowest priority processes you never get a chance to run. I'm not sure if > this scales all the way across. It scales poorly. In RELENG_4 or a bit earlier, I changed the scaling to make a nice difference of precisely 20 or more prevent the higher-niced process from running. This gives potentential priority inversion problems even for user nice values [0,20]. RELENG_4 also has bogus scaling of system nice values [-20,-1] into what should be kernel-only. > I know a nice 0 will always prevent a > nice 20 from running, but will a nice -20 prevent a nice 0 from running? > I believe so. With nice +19 and a nice 0 the nice +19 gets approx 2% cpu. This seems about right for RELENG_4, but for -current the priority inversion problems and bogus scaling were "fixed" by changing the scaling so that the difference between nice -20 and nice +20 is approx. the same as the old difference between nice +0 and nice +19, so the difference between nice +0 and nice +20 was too small again (it shouldn't be infinite since this gives potentially fatal priority inversion, but it should be large). Subsequent compression of the PRI_TIMESHARE range reduced the difference further, so we're back to approx. the old difference of only 2:1 or 3:1 for nice +0 vs nice +20. > So, in ule, I need a way to approximate this. The real problem is that > the drop off point where a process gets 0 cpu time is artificial. The > algorithm doesn't work linearly down to 0 as it does in sched_4bsd. I > need to make slice assignments relative to all other processes in the > system. This seems like it may break the O(1) properties of the > scheduler. It doesn't actually work linearly in sched_4bsd either. sched_4bsd clamps kg_estcpu so that the scaling of kg_estcpu to a priority can be linear. This gives huge nonlinearities, especially in the following cases: - fork and exit. kg_estcpu is inherited on fork (bad) and added from the child back to the parent in exit (worse). This wants to cause sorcerer's-apprentice behaviour, but the clamping makes it cause nonlinearities instead (kg_estcpu ramps up to the limit much faster than it should and then sticks there much longer than it should). - conditions where the load average fluctuates a lot. When the load average is large, priority decay is slow and processes can more easily hit the limit, especially when most of the processes that caused the large load average have just exited. Clamping also discards history, so hog processes are given lower (numerically higher) priorities than they should be even after the conditions that cause the nonlinearities have gone away. > I'm just now thinking that I could assign the slice using the run queues > to find out how this thread relates to others in the system. This all > sounds rather complicated. I'm hoping that I'm missing some simple > elegant solution that someone may know of. > > Any takers? Comments on nice or slice selection? Peter Dufault's solution for sched_4bsd as implemented by me is to remove the explicit clamp on kg_estcpu (it is bounded algorithmically by priority decay except for the fork+exit problem which we just hack around), and then map kg_estcpu to td_priority more carefully. In my version of the latter, each tick in kg_estcpu costs more if the nice value is numerically larger, according to a table: static int niceweights[PRIO_MAX - PRIO_MIN + 1] = { #if 1 /* * Geometic niceness. The weight at index i is * floor(2 * 3 * pow(2.0, i / 4.0) + 0.5). */ 6, 7, 8, 10, 12, 14, 17, 20, 24, 29, 34, 40, 48, 57, 68, 81, 96, 114, 136, 161, 192, 228, 272, 323, 384, 457, 543, 646, 768, 913, 1086, 1292, 1536, 1827, 2172, 2583, 3072, 3653, 4344, 5166, 6144, #else /* * Arithmetic niceness. The weight at index i is * 2 * 2 * 2 * 3 * 3 * 5 * 7 / (40 - i) * (except the one at index 40 is an approximation for infinity). */ 63, 64, 66, 68, 70, 72, 74, 76, 78, 81, 84, 86, 90, 93, 96, 100, 105, 109, 114, 120, 126, 132, 140, 148, 157, 168, 180, 193, 210, 229, 252, 280, 315, 360, 420, 504, 630, 840, 1260, 2520, 20000, #endif }; Almost any behaviour can be programmed by changing the table. (Infinite niceness can't be programmed easily, but that's a feature since it prevents priority inversion.) To use this method in other schedulers, I think you only need to have some idea of the time spent in each thread. Then weight the times according to the scheduling policies for the threads. Then scale weighted times to priorities. Scaling is the tricky part for sched_4bsd and probably for most schedulers. kg_estcpu can get very large, and it has a large variance. I just compute its maximum in schedcpu and use a value a little larger than the maximum for scaling. Sometimes the scale factor changes significantly (e.g., when all of the processes with a large kg_estcpu exit), and then most processes move to a different scheduling queue. This makes the scheduler more O(n) than before but doesn't affect performance on any of the loads that I have tested. It seems to be difficult to keep the scale factor almost constant without reintroducing the nonlinearities or significantly increasing response times. Bruce From owner-cvs-all@FreeBSD.ORG Sun Mar 30 00:51:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E8F937B401; Sun, 30 Mar 2003 00:51:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C77F43F93; Sun, 30 Mar 2003 00:51:24 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2U8pO0U083354; Sun, 30 Mar 2003 00:51:24 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2U8pN5F083353; Sun, 30 Mar 2003 00:51:23 -0800 (PST) Message-Id: <200303300851.h2U8pN5F083353@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 30 Mar 2003 00:51:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_disk.c vfs_bio.c src/sys/sys bio.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 08:51:29 -0000 phk 2003/03/30 00:51:23 PST FreeBSD src repository Modified files: sys/kern subr_disk.c vfs_bio.c sys/sys bio.h Log: Preparation commit before I start on the bioqueue lockdown: Collect all the bits of bioqueue handing in subr_disk.c, vfs_bio.c is big enough as it is and disksort already lives in subr_disk.c. Revision Changes Path 1.71 +43 -0 src/sys/kern/subr_disk.c 1.382 +0 -25 src/sys/kern/vfs_bio.c 1.128 +3 -18 src/sys/sys/bio.h From owner-cvs-all@FreeBSD.ORG Sun Mar 30 01:04:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F259D37B401; Sun, 30 Mar 2003 01:04:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93EEF43FAF; Sun, 30 Mar 2003 01:04:30 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2U94U0U085137; Sun, 30 Mar 2003 01:04:30 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2U94UoW085136; Sun, 30 Mar 2003 01:04:30 -0800 (PST) Message-Id: <200303300904.h2U94UoW085136@repoman.freebsd.org> From: Murray Stokely Date: Sun, 30 Mar 2003 01:04:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT avail X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 09:04:32 -0000 murray 2003/03/30 01:04:30 PST FreeBSD src repository Modified files: . avail Log: Lock tree for RELENG_4_8_0_RELEASE tagging. Revision Changes Path 1.205 +1 -1 CVSROOT/avail From owner-cvs-all@FreeBSD.ORG Sun Mar 30 01:19:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E929D37B401; Sun, 30 Mar 2003 01:19:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 896C643F85; Sun, 30 Mar 2003 01:19:23 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2U9JN0U095517; Sun, 30 Mar 2003 01:19:23 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2U9JNWD095516; Sun, 30 Mar 2003 01:19:23 -0800 (PST) Message-Id: <200303300919.h2U9JNWD095516@repoman.freebsd.org> From: Murray Stokely Date: Sun, 30 Mar 2003 01:19:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT avail X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 09:19:27 -0000 murray 2003/03/30 01:19:23 PST FreeBSD src repository Modified files: . avail Log: Unlock src. RELENG_4_8_0_RELEASE tag has been created. RELENG_4 and RELENG_4_8 are still frozen and the release tags may be slid if required. The release is not final until the announcement has been made. tagging operations are much quicker now that we've moved to repoman.freebsd.org. Revision Changes Path 1.206 +1 -1 CVSROOT/avail From owner-cvs-all@FreeBSD.ORG Sun Mar 30 01:28:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A879A37B401; Sun, 30 Mar 2003 01:28:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4938B43FA3; Sun, 30 Mar 2003 01:28:00 -0800 (PST) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2U9S00U096068; Sun, 30 Mar 2003 01:28:00 -0800 (PST) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2U9S03n096067; Sun, 30 Mar 2003 01:28:00 -0800 (PST) Message-Id: <200303300928.h2U9S03n096067@repoman.freebsd.org> From: Søren Schmidt Date: Sun, 30 Mar 2003 01:28:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-all.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 09:28:01 -0000 sos 2003/03/30 01:27:59 PST FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: Fix ATA_DEBUG case breakage. Revision Changes Path 1.175 +1 -1 src/sys/dev/ata/ata-all.c From owner-cvs-all@FreeBSD.ORG Sun Mar 30 02:16:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D16F37B401; Sun, 30 Mar 2003 02:16:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF94043F93; Sun, 30 Mar 2003 02:16:31 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UAGV0U000302; Sun, 30 Mar 2003 02:16:31 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UAGVVt000301; Sun, 30 Mar 2003 02:16:31 -0800 (PST) Message-Id: <200303301016.h2UAGVVt000301@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 30 Mar 2003 02:16:31 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys bio.h src/sys/kern subr_disk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 10:16:33 -0000 phk 2003/03/30 02:16:31 PST FreeBSD src repository Modified files: sys/sys bio.h sys/kern subr_disk.c Log: retire the "busy" field in bioqueues, it's served it's purpose. Revision Changes Path 1.72 +0 -8 src/sys/kern/subr_disk.c 1.129 +0 -1 src/sys/sys/bio.h From owner-cvs-all@FreeBSD.ORG Sun Mar 30 03:46:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAED537B401; Sun, 30 Mar 2003 03:46:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDDD643FA3; Sun, 30 Mar 2003 03:46:02 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UBk20U006971; Sun, 30 Mar 2003 03:46:02 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UBk2Kc006970; Sun, 30 Mar 2003 03:46:02 -0800 (PST) Message-Id: <200303301146.h2UBk2Kc006970@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sun, 30 Mar 2003 03:46:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/gauche-gl Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 11:46:16 -0000 nork 2003/03/30 03:46:02 PST FreeBSD ports repository Modified files: graphics/gauche-gl Makefile pkg-plist Log: Remove pkg-message and sort pkg-plist. PR: ports/50452 Submitted by: Kimura Fuyuki (maintainer) Revision Changes Path 1.5 +0 -2 ports/graphics/gauche-gl/Makefile 1.4 +1 -1 ports/graphics/gauche-gl/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 03:48:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EB5137B401; Sun, 30 Mar 2003 03:48:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 976E343F75; Sun, 30 Mar 2003 03:48:55 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UBmt0U007036; Sun, 30 Mar 2003 03:48:55 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UBmtBp007035; Sun, 30 Mar 2003 03:48:55 -0800 (PST) Message-Id: <200303301148.h2UBmtBp007035@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sun, 30 Mar 2003 03:48:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/gauche-gl pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 11:48:58 -0000 nork 2003/03/30 03:48:55 PST FreeBSD ports repository Removed files: graphics/gauche-gl pkg-message Log: Oops, I forgot cvs remove pkg-message. Revision Changes Path 1.2 +0 -7 ports/graphics/gauche-gl/pkg-message (dead) From owner-cvs-all@FreeBSD.ORG Sun Mar 30 05:18:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7F9737B401; Sun, 30 Mar 2003 05:18:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67A9443FAF; Sun, 30 Mar 2003 05:18:02 -0800 (PST) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UDI20U019582; Sun, 30 Mar 2003 05:18:02 -0800 (PST) (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UDI2UN019581; Sun, 30 Mar 2003 05:18:02 -0800 (PST) Message-Id: <200303301318.h2UDI2UN019581@repoman.freebsd.org> From: Jimmy Olgeni Date: Sun, 30 Mar 2003 05:18:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fm/rox-filer pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 13:18:03 -0000 olgeni 2003/03/30 05:18:02 PST FreeBSD ports repository Modified files: x11-fm/rox-filer pkg-plist Log: Trim whitespace at end of file. Revision Changes Path 1.16 +0 -2 ports/x11-fm/rox-filer/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 05:26:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC03037B401; Sun, 30 Mar 2003 05:26:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B7F343FA3; Sun, 30 Mar 2003 05:26:39 -0800 (PST) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UDQd0U020139; Sun, 30 Mar 2003 05:26:39 -0800 (PST) (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UDQdi2020138; Sun, 30 Mar 2003 05:26:39 -0800 (PST) Message-Id: <200303301326.h2UDQdi2020138@repoman.freebsd.org> From: Jimmy Olgeni Date: Sun, 30 Mar 2003 05:26:39 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fm/rox-filer Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 13:26:41 -0000 olgeni 2003/03/30 05:26:39 PST FreeBSD ports repository Modified files: x11-fm/rox-filer Makefile distinfo Log: Update to version 1.3.8. Revision Changes Path 1.31 +1 -1 ports/x11-fm/rox-filer/Makefile 1.20 +1 -1 ports/x11-fm/rox-filer/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 06:42:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0390F37B401; Sun, 30 Mar 2003 06:42:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 970A043F85; Sun, 30 Mar 2003 06:42:47 -0800 (PST) (envelope-from stephane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UEgl0U025859; Sun, 30 Mar 2003 06:42:47 -0800 (PST) (envelope-from stephane@repoman.freebsd.org) Received: (from stephane@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UEglw6025858; Sun, 30 Mar 2003 06:42:47 -0800 (PST) Message-Id: <200303301442.h2UEglw6025858@repoman.freebsd.org> From: Stephane Legrand Date: Sun, 30 Mar 2003 06:42:47 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/fr/gnome/docs faq2.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 14:42:49 -0000 stephane 2003/03/30 06:42:47 PST FreeBSD doc repository Added files: fr/gnome/docs faq2.sgml Log: New translation. fr/gnome/docs/faq2.sgml: MFen 1.27 Revision Changes Path 1.1 +596 -0 www/fr/gnome/docs/faq2.sgml (new) From owner-cvs-all@FreeBSD.ORG Sun Mar 30 07:06:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 268D837B401; Sun, 30 Mar 2003 07:06:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B96C443F3F; Sun, 30 Mar 2003 07:06:12 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UF6C0U028240; Sun, 30 Mar 2003 07:06:12 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UF6Cgl028239; Sun, 30 Mar 2003 07:06:12 -0800 (PST) Message-Id: <200303301506.h2UF6Cgl028239@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sun, 30 Mar 2003 07:06:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/imlib3d Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 15:06:14 -0000 ijliao 2003/03/30 07:06:12 PST FreeBSD ports repository Modified files: graphics/imlib3d Makefile Log: mark it broken Noted by: kris Revision Changes Path 1.7 +1 -1 ports/graphics/imlib3d/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 07:08:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E6D537B401; Sun, 30 Mar 2003 07:08:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C87743FBF; Sun, 30 Mar 2003 07:08:47 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UF8k0U028317; Sun, 30 Mar 2003 07:08:46 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UF8kaa028316; Sun, 30 Mar 2003 07:08:46 -0800 (PST) Message-Id: <200303301508.h2UF8kaa028316@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sun, 30 Mar 2003 07:08:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/vcg pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 15:08:48 -0000 ijliao 2003/03/30 07:08:46 PST FreeBSD ports repository Modified files: graphics/vcg pkg-descr Log: add WWW Revision Changes Path 1.2 +2 -0 ports/graphics/vcg/pkg-descr From owner-cvs-all@FreeBSD.ORG Sun Mar 30 07:27:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6ABB37B401; Sun, 30 Mar 2003 07:27:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E9BB43F75; Sun, 30 Mar 2003 07:27:03 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UFR30U029528; Sun, 30 Mar 2003 07:27:03 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UFR3xm029527; Sun, 30 Mar 2003 07:27:03 -0800 (PST) Message-Id: <200303301527.h2UFR3xm029527@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sun, 30 Mar 2003 07:27:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics Makefile ports/graphics/p5-VCG Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 15:27:05 -0000 ijliao 2003/03/30 07:27:02 PST FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/p5-VCG Makefile distinfo pkg-descr pkg-plist Log: add p5-VCG 0.5 Interface to the VCG graphing tool Revision Changes Path 1.568 +1 -0 ports/graphics/Makefile 1.1 +28 -0 ports/graphics/p5-VCG/Makefile (new) 1.1 +1 -0 ports/graphics/p5-VCG/distinfo (new) 1.1 +6 -0 ports/graphics/p5-VCG/pkg-descr (new) 1.1 +4 -0 ports/graphics/p5-VCG/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Mar 30 07:27:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 654A637B418; Sun, 30 Mar 2003 07:27:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0181E43FAF; Sun, 30 Mar 2003 07:27:11 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UFRA0U029566; Sun, 30 Mar 2003 07:27:10 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UFRAQe029565; Sun, 30 Mar 2003 07:27:10 -0800 (PST) Message-Id: <200303301527.h2UFRAQe029565@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sun, 30 Mar 2003 07:27:10 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 15:27:12 -0000 ijliao 2003/03/30 07:27:10 PST FreeBSD ports repository Modified files: . modules Log: p5-VCG --> ports/graphics/p5-VCG Revision Changes Path 1.6915 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Mar 30 07:28:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29A6B37B401; Sun, 30 Mar 2003 07:28:59 -0800 (PST) Received: from randomservers.com (randomservers.com [198.78.65.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EA3343FB1; Sun, 30 Mar 2003 07:28:58 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from randomservers.com (randomservers [198.78.65.158]) by randomservers.com (8.12.8/8.12.6) with ESMTP id h2UFS5dA021664 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 30 Mar 2003 07:28:05 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from localhost (joseph@localhost)h2UFS5vh021661; Sun, 30 Mar 2003 07:28:05 -0800 (PST) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: joseph owned process doing -bs Date: Sun, 30 Mar 2003 07:28:05 -0800 (PST) From: Joseph Scott X-X-Sender: joseph@randomservers To: Ying-Chieh Liao In-Reply-To: <200303291618.h2TGIiLI075323@repoman.freebsd.org> Message-ID: <20030330072719.P98535@randomservers> References: <200303291618.h2TGIiLI075323@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-0.7 required=8.0 tests=IN_REP_TO,REFERENCES,SPAM_PHRASE_00_01,X_AUTH_WARNING version=2.44 cc: cvs-ports@freebsd.org cc: Clement Laforet cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/textproc/raptor Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 15:29:01 -0000 On Sat, 29 Mar 2003, Ying-Chieh Liao wrote: > ijliao 2003/03/29 08:18:44 PST > > FreeBSD ports repository > > Modified files: > textproc/raptor Makefile distinfo pkg-plist > Log: > upgrade to 0.9.9 This also takes care of PR ports/48724. -Joseph From owner-cvs-all@FreeBSD.ORG Sun Mar 30 07:33:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D2EE37B401; Sun, 30 Mar 2003 07:33:38 -0800 (PST) Received: from randomservers.com (randomservers.com [198.78.65.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id B06E043FA3; Sun, 30 Mar 2003 07:33:37 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from randomservers.com (randomservers [198.78.65.158]) by randomservers.com (8.12.8/8.12.6) with ESMTP id h2UFWidA027447 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 30 Mar 2003 07:32:44 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from localhost (joseph@localhost)h2UFWiuc027443; Sun, 30 Mar 2003 07:32:44 -0800 (PST) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: joseph owned process doing -bs Date: Sun, 30 Mar 2003 07:32:43 -0800 (PST) From: Joseph Scott X-X-Sender: joseph@randomservers To: Yen-Ming Lee In-Reply-To: <200303291908.h2TJ8hOT094427@repoman.freebsd.org> Message-ID: <20030330073201.X98535@randomservers> References: <200303291908.h2TJ8hOT094427@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-1.5 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_00_01, X_AUTH_WARNING version=2.44 cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/mail/openwebmail Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 15:33:40 -0000 On Sat, 29 Mar 2003, Yen-Ming Lee wrote: > leeym 2003/03/29 11:08:43 PST > > FreeBSD ports repository > > Modified files: > mail/openwebmail Makefile distinfo pkg-plist > Log: > update to openwebmail-2.00, and add some optional supports. Are PRs ports/50445 and ports/50321 still problems? -Joseph From owner-cvs-all@FreeBSD.ORG Sun Mar 30 07:37:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50E3037B401; Sun, 30 Mar 2003 07:37:43 -0800 (PST) Received: from randomservers.com (randomservers.com [198.78.65.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8ACEC43FCB; Sun, 30 Mar 2003 07:37:42 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from randomservers.com (randomservers [198.78.65.158]) by randomservers.com (8.12.8/8.12.6) with ESMTP id h2UFaqdA033451 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 30 Mar 2003 07:36:52 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from localhost (joseph@localhost)h2UFap6e033448; Sun, 30 Mar 2003 07:36:52 -0800 (PST) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: joseph owned process doing -bs Date: Sun, 30 Mar 2003 07:36:51 -0800 (PST) From: Joseph Scott X-X-Sender: joseph@randomservers To: Mario Sergio Fujikawa Ferreira In-Reply-To: <200303292204.h2TM4AFY015702@repoman.freebsd.org> Message-ID: <20030330073552.E98535@randomservers> References: <200303292204.h2TM4AFY015702@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-0.7 required=8.0 tests=IN_REP_TO,REFERENCES,SPAM_PHRASE_00_01,X_AUTH_WARNING version=2.44 cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/net/lmule Makefile distinfo pkg-plist patch-src::wx::Makefile.in patch-src::wx::xrc::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 15:37:44 -0000 On Sat, 29 Mar 2003, Mario Sergio Fujikawa Ferreira wrote: > lioux 2003/03/29 14:04:10 PST > > FreeBSD ports repository > > Modified files: > net/lmule Makefile distinfo pkg-plist > Added files: > net/lmule/files patch-Makefile.in patch-configure > patch-src::wx::Makefile.in > patch-src::wx::xrc::Makefile.in > Log: > Update to 1.1.13 PR ports/50073 can be closed then. -Joseph From owner-cvs-all@FreeBSD.ORG Sun Mar 30 07:50:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B5C937B401; Sun, 30 Mar 2003 07:50:31 -0800 (PST) Received: from randomservers.com (randomservers.com [198.78.65.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F0CB43F85; Sun, 30 Mar 2003 07:50:30 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from randomservers.com (randomservers [198.78.65.158]) by randomservers.com (8.12.8/8.12.6) with ESMTP id h2UFnbdA051285 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 30 Mar 2003 07:49:38 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from localhost (joseph@localhost)h2UFnbdm051282; Sun, 30 Mar 2003 07:49:37 -0800 (PST) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: joseph owned process doing -bs Date: Sun, 30 Mar 2003 07:49:37 -0800 (PST) From: Joseph Scott X-X-Sender: joseph@randomservers To: Edwin Groothuis In-Reply-To: <200303300637.h2U6bj3F067836@repoman.freebsd.org> Message-ID: <20030330074843.W98535@randomservers> References: <200303300637.h2U6bj3F067836@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-1.5 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_00_01, X_AUTH_WARNING version=2.44 cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/www/caudium10 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 15:50:32 -0000 On Sat, 29 Mar 2003, Edwin Groothuis wrote: > edwin 2003/03/29 22:37:45 PST > > FreeBSD ports repository > > Modified files: > www/caudium10 Makefile > Log: > maintainer-update www/caudium10 fix dependency with textproc/sablotron > > PR: ports/48806 > Submitted by: Xavier Beaudouin PR ports/48848, submitted by the person, claims to supercede that PR. -Joseph From owner-cvs-all@FreeBSD.ORG Sun Mar 30 07:50:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 536A137B401; Sun, 30 Mar 2003 07:50:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E11DE43F3F; Sun, 30 Mar 2003 07:50:42 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UFog0U031183; Sun, 30 Mar 2003 07:50:42 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UFogQC031179; Sun, 30 Mar 2003 07:50:42 -0800 (PST) Message-Id: <200303301550.h2UFogQC031179@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sun, 30 Mar 2003 07:50:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/font2svg Makefile distinfo ports/print/font2svg/files patch-font2svg X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 15:50:46 -0000 ijliao 2003/03/30 07:50:42 PST FreeBSD ports repository Modified files: print/font2svg Makefile distinfo print/font2svg/files patch-font2svg Log: author import my patch without release a new version Noted by: kris Revision Changes Path 1.3 +1 -0 ports/print/font2svg/Makefile 1.2 +1 -1 ports/print/font2svg/distinfo 1.2 +7 -5 ports/print/font2svg/files/patch-font2svg From owner-cvs-all@FreeBSD.ORG Sun Mar 30 07:51:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1780037B409; Sun, 30 Mar 2003 07:51:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A912B43FAF; Sun, 30 Mar 2003 07:50:59 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UFox0U031526; Sun, 30 Mar 2003 07:50:59 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UFox24031522; Sun, 30 Mar 2003 07:50:59 -0800 (PST) Message-Id: <200303301550.h2UFox24031522@repoman.freebsd.org> From: Akinori MUSHA Date: Sun, 30 Mar 2003 07:50:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/converters/ruby-lv Makefileports/databases/ruby-o_dbm Makefile ports/devel/ruby-dialogs Makefile ports/www/ruby-http-access Makefile ports/irc/ruby-irc Makefile ports/japanese/ruby-refe Makefile ports/lang/ruby-usersguide ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 15:51:02 -0000 knu 2003/03/30 07:50:59 PST FreeBSD ports repository Modified files: converters/ruby-lv Makefile databases/ruby-o_dbm Makefile devel/ruby-dialogs Makefile www/ruby-http-access Makefile irc/ruby-irc Makefile japanese/ruby-refe Makefile lang/ruby-usersguide Makefile lang/ruby-js Makefile net/ruby-soap Makefile net/ruby-tcpsocketpipe Makefile sysutils/ruby-devel-logger Makefile textproc/ruby-csv Makefile Log: Distfiles moved. (www.ruby-lang.org site reorg.) Revision Changes Path 1.4 +2 -1 ports/converters/ruby-lv/Makefile 1.6 +1 -1 ports/databases/ruby-o_dbm/Makefile 1.5 +2 -1 ports/devel/ruby-dialogs/Makefile 1.5 +2 -1 ports/irc/ruby-irc/Makefile 1.4 +1 -1 ports/japanese/ruby-refe/Makefile 1.4 +1 -1 ports/lang/ruby-js/Makefile 1.20 +1 -1 ports/lang/ruby-usersguide/Makefile 1.22 +2 -1 ports/net/ruby-soap/Makefile 1.6 +2 -1 ports/net/ruby-tcpsocketpipe/Makefile 1.5 +2 -1 ports/sysutils/ruby-devel-logger/Makefile 1.11 +2 -1 ports/textproc/ruby-csv/Makefile 1.13 +2 -1 ports/www/ruby-http-access/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 07:52:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D8C037B401; Sun, 30 Mar 2003 07:52:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D20843F75; Sun, 30 Mar 2003 07:52:20 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UFqJ0U031590; Sun, 30 Mar 2003 07:52:19 -0800 (PST) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UFqIUD031589; Sun, 30 Mar 2003 07:52:18 -0800 (PST) Message-Id: <200303301552.h2UFqIUD031589@repoman.freebsd.org> From: Mike Makonnen Date: Sun, 30 Mar 2003 07:52:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/rc.d ipfw X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 15:52:22 -0000 mtm 2003/03/30 07:52:18 PST FreeBSD src repository Modified files: etc/rc.d ipfw Log: Make the 'restart' command work. Otherwise, it would successfully stop ipfw, but not enable it again. Aesthetic changes o Use positve logic (instead of negative) o create a 'stop' function, rather than putting the commands in the stop_cmd variable. Submitted by: des Approved by: markm (mentor) (implicit) Revision Changes Path 1.4 +15 -4 src/etc/rc.d/ipfw From owner-cvs-all@FreeBSD.ORG Sun Mar 30 07:57:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 408C437B405; Sun, 30 Mar 2003 07:57:09 -0800 (PST) Received: from mailout09.sul.t-online.com (mailout09.sul.t-online.com [194.25.134.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED37943FDF; Sun, 30 Mar 2003 07:57:06 -0800 (PST) (envelope-from Alexander@Leidinger.net) Received: from fwd03.sul.t-online.de by mailout09.sul.t-online.com with smtp id 18zfBB-0004ZE-00; Sun, 30 Mar 2003 17:57:05 +0200 Received: from Andro-Beta.Leidinger.net (520065502893-0001@[80.131.112.168]) by fmrl03.sul.t-online.com with esmtp id 18zfAy-0e4jvUC; Sun, 30 Mar 2003 17:56:52 +0200 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) h2UFuoOq084846; Sun, 30 Mar 2003 17:56:50 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.7/8.12.7) with SMTP id h2UFukwO001394; Sun, 30 Mar 2003 17:56:46 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Sun, 30 Mar 2003 17:56:46 +0200 From: Alexander Leidinger To: ppc@freebsd.org, das@freebsd.org Message-Id: <20030330175646.281097ad.Alexander@Leidinger.net> In-Reply-To: <20030327204935.GA18134@HAL9000.homeunix.com> References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030327204935.GA18134@HAL9000.homeunix.com> X-Mailer: Sylpheed version 0.8.9claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart_Sun__30_Mar_2003_17:56:46_+0200_08c2a600" X-Sender: 520065502893-0001@t-dialin.net cc: cvs-src@freebsd.org cc: das@freebsd.org cc: src-committers@freebsd.org cc: ppc@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 15:57:12 -0000 This is a multi-part message in MIME format. --Multipart_Sun__30_Mar_2003_17:56:46_+0200_08c2a600 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Thu, 27 Mar 2003 12:49:35 -0800 David Schultz wrote: > Thus spake David Schultz : > > das 2003/03/27 12:38:22 PST > > > > FreeBSD src repository > > > > Modified files: > > sys/ia64/include float.h > > Log: > > Correct LDBL_* constants based on values from i386. > > > > Revision Changes Path > > 1.4 +9 -9 src/sys/ia64/include/float.h > > BTW, this needs to be fixed for powerpc as well. Thus far I have > been assuming powerpc uses quad format (128 bits) for long doubles > based on some documentation on developer.apple.com. It would be > nice if someone could confirm/deny that. Attached is a test for 32 and 64 bit ieee values (edge cases). The *_MIN values (or my test program) at least on i386 machines are wrong. Bye, Alexander. -- It's not a bug, it's tradition! http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 --Multipart_Sun__30_Mar_2003_17:56:46_+0200_08c2a600 Content-Type: application/octet-stream; name="ieeeFPbounds.c" Content-Disposition: attachment; filename="ieeeFPbounds.c" Content-Transfer-Encoding: base64 LyoKICogQ29weXJpZ2h0IChjKSAyMDAyIEFsZXhhbmRlciBMZWlkaW5nZXIgPG5ldGNoaWxkQEZy ZWVCU0Qub3JnPi4gQWxsIHJpZ2h0cwogKiByZXNlcnZlZC4KICogCiAqIFJlZGlzdHJpYnV0aW9u IGFuZCB1c2UgaW4gc291cmNlIGFuZCBiaW5hcnkgZm9ybXMsIHdpdGggb3Igd2l0aG91dAogKiBt b2RpZmljYXRpb24sIGFyZSBwZXJtaXR0ZWQgcHJvdmlkZWQgdGhhdCB0aGUgZm9sbG93aW5nIGNv bmRpdGlvbnMgYXJlCiAqIG1ldDogMS4gUmVkaXN0cmlidXRpb25zIG9mIHNvdXJjZSBjb2RlIG11 c3QgcmV0YWluIHRoZSBhYm92ZSBjb3B5cmlnaHQKICogbm90aWNlLCB0aGlzIGxpc3Qgb2YgY29u ZGl0aW9ucywgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciwgd2l0aG91dAogKiBtb2RpZmlj YXRpb24sIGltbWVkaWF0ZWx5IGF0IHRoZSBiZWdpbm5pbmcgb2YgdGhlIGZpbGUuIDIuIFJlZGlz dHJpYnV0aW9ucwogKiBpbiBiaW5hcnkgZm9ybSBtdXN0IHJlcHJvZHVjZSB0aGUgYWJvdmUgY29w eXJpZ2h0IG5vdGljZSwgdGhpcyBsaXN0IG9mCiAqIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dp bmcgZGlzY2xhaW1lciBpbiB0aGUgZG9jdW1lbnRhdGlvbiBhbmQvb3Igb3RoZXIKICogbWF0ZXJp YWxzIHByb3ZpZGVkIHdpdGggdGhlIGRpc3RyaWJ1dGlvbi4KICogCiAqIFRISVMgU09GVFdBUkUg SVMgUFJPVklERUQgQlkgVEhFIEFVVEhPUiBBTkQgQ09OVFJJQlVUT1JTIGBgQVMgSVMnJyBBTkQg QU5ZCiAqIEVYUFJFU1MgT1IgSU1QTElFRCBXQVJSQU5USUVTLCBJTkNMVURJTkcsIEJVVCBOT1Qg TElNSVRFRCBUTywgVEhFIElNUExJRUQKICogV0FSUkFOVElFUyBPRiBNRVJDSEFOVEFCSUxJVFkg QU5EIEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFIEFSRQogKiBESVNDTEFJTUVELiBJ TiBOTyBFVkVOVCBTSEFMTCBUSEUgQVVUSE9SIE9SIENPTlRSSUJVVE9SUyBCRSBMSUFCTEUgRk9S IEFOWQogKiBESVJFQ1QsIElORElSRUNULCBJTkNJREVOVEFMLCBTUEVDSUFMLCBFWEVNUExBUlks IE9SIENPTlNFUVVFTlRJQUwgREFNQUdFUwogKiAoSU5DTFVESU5HLCBCVVQgTk9UIExJTUlURUQg VE8sIFBST0NVUkVNRU5UIE9GIFNVQlNUSVRVVEUgR09PRFMgT1IKICogU0VSVklDRVM7IExPU1Mg T0YgVVNFLCBEQVRBLCBPUiBQUk9GSVRTOyBPUiBCVVNJTkVTUyBJTlRFUlJVUFRJT04pIEhPV0VW RVIKICogQ0FVU0VEIEFORCBPTiBBTlkgVEhFT1JZIE9GIExJQUJJTElUWSwgV0hFVEhFUiBJTiBD T05UUkFDVCwgU1RSSUNUCiAqIExJQUJJTElUWSwgT1IgVE9SVCAoSU5DTFVESU5HIE5FR0xJR0VO Q0UgT1IgT1RIRVJXSVNFKSBBUklTSU5HIElOIEFOWSBXQVkKICogT1VUIE9GIFRIRSBVU0UgT0Yg VEhJUyBTT0ZUV0FSRSwgRVZFTiBJRiBBRFZJU0VEIE9GIFRIRSBQT1NTSUJJTElUWSBPRgogKiBT VUNIIERBTUFHRS4KICogCiAqICRGcmVlQlNEJAogKi8KCgojaW5jbHVkZSA8c3RkaW8uaD4KI2lu Y2x1ZGUgPHN0ZGludC5oPgojaW5jbHVkZSA8ZmxvYXQuaD4KCgppbnQgICAgICAgICAgICAgdGVz dF8zMih2b2lkKTsKaW50ICAgICAgICAgICAgIHRlc3RfNjQodm9pZCk7CgoKaW50IAptYWluKHZv aWQpCnsKCXJldHVybiB0ZXN0XzMyKCkgfCB0ZXN0XzY0KCk7Cn0KCmludCAKdGVzdF8zMih2b2lk KQp7Cgl1aW50MzJfdCAgICAgICAgaGFjazMyOwoJZmxvYXQgICAgICAgICAgIHJlc3VsdDMyOwoJ aW50ICAgICAgICAgICAgIHJldHZhbCA9IDA7CgoJaWYgKDQgIT0gc2l6ZW9mKGZsb2F0KSkgewoJ CXB1dHMoInNpemVvZiBmbG9hdCAhPSA0LCBjYW4gbm90IHRlc3QiKTsKCQlyZXR1cm4gMTsKCX0K CS8qCgkgKiAxIGJpdCBzaWduIDggYml0IGV4cG9uZW50IDIzIGJpdCBtYW50aXNzYQoJICovCgoJ cHV0cygiRkxPQVQ6Iik7CgojZGVmaW5lIFRPRih4KSAoKihmbG9hdCAqKSYoeCkpCgoJaGFjazMy ID0gMHg3ZjgwMDAwMDsKCXJlc3VsdDMyID0gVE9GKGhhY2szMik7CglwcmludGYoIiAgVGVzdGlu ZyBmb3IgaW5mOiAlZlxuIiwgcmVzdWx0MzIpOwoKI2lmIDAKCS8qIFhYWDogaG93IGlzIHRoZSBk YW1uIG5hbWUgb2YgdGhpcy4uLiAgKi8KCWlmIChyZXN1bHQzMiAhPSBpbmYpCgkJcmV0dmFsID0g MTsKI2VuZGlmCgoJaGFjazMyID0gMHhmZjgwMDAwMDsKCXJlc3VsdDMyID0gVE9GKGhhY2szMik7 CglwcmludGYoIiAgVGVzdGluZyBmb3IgLWluZjogJWZcbiIsIHJlc3VsdDMyKTsKCgloYWNrMzIg PSAweDdmN2ZmZmZmOwoJcmVzdWx0MzIgPSBUT0YoaGFjazMyKTsKCWlmIChGTFRfTUFYICE9IHJl c3VsdDMyKSB7CgkJcHJpbnRmKCIgIFRlc3RpbmcgZm9yIEZMVF9NQVg6IEZBSUxFRCAoJS4zN2Up IVxuIiwgcmVzdWx0MzIpOwoJCXJldHZhbCA9IDE7Cgl9IGVsc2UgewoJCXByaW50ZigiICBUZXN0 aW5nIGZvciBGTFRfTUFYOiAlLjM3ZVxuIiwgcmVzdWx0MzIpOwoJfQoKCWhhY2szMiA9IDB4ZmY3 ZmZmZmY7CglyZXN1bHQzMiA9IFRPRihoYWNrMzIpOwoJaWYgKC1GTFRfTUFYICE9IHJlc3VsdDMy KSB7CgkJcHJpbnRmKCIgIFRlc3RpbmcgZm9yIC1GTFRfTUFYOiBGQUlMRUQgKCUuMzdlKSFcbiIs IHJlc3VsdDMyKTsKCQlyZXR2YWwgPSAxOwoJfSBlbHNlIHsKCQlwcmludGYoIiAgVGVzdGluZyBm b3IgLUZMVF9NQVg6ICUuMzdlXG4iLCByZXN1bHQzMik7Cgl9CgoJaGFjazMyID0gMHgwMDAwMDAw MTsKCXJlc3VsdDMyID0gVE9GKGhhY2szMik7CglpZiAoRkxUX01JTiAhPSByZXN1bHQzMikgewoJ CXByaW50ZigiICBUZXN0aW5nIGZvciBGTFRfTUlOOiBGQUlMRUQgKCUuMTA0ZSkhXG4iLCByZXN1 bHQzMik7CgkJcmV0dmFsID0gMTsKCX0gZWxzZSB7CgkJcHJpbnRmKCIgIFRlc3RpbmcgZm9yIEZM VF9NSU46ICUuMTA0ZVxuIiwgcmVzdWx0MzIpOwoJfQoKCWhhY2szMiA9IDB4ODAwMDAwMDE7Cgly ZXN1bHQzMiA9IFRPRihoYWNrMzIpOwoJaWYgKC1GTFRfTUlOICE9IHJlc3VsdDMyKSB7CgkJcHJp bnRmKCIgIFRlc3RpbmcgZm9yIC1GTFRfTUlOOiBGQUlMRUQgKCUuMTA0ZSkhXG4iLCByZXN1bHQz Mik7CgkJcmV0dmFsID0gMTsKCX0gZWxzZSB7CgkJcHJpbnRmKCIgIFRlc3RpbmcgZm9yIC1GTFRf TUlOOiAlZS4xMDRcbiIsIHJlc3VsdDMyKTsKCX0KCiNpZiAwCgloYWNrMzIgPSAweDdmODAwMDAx OwoJcmVzdWx0MzIgPSBUT0YoaGFjazMyKTsKCXByaW50ZigiICBUZXN0aW5nIGZvciBOYU46ICVm XG4iLCByZXN1bHQzMik7CiNlbmRpZgoKI3VuZGVmIFRPRgoKCXJldHVybiByZXR2YWw7Cn0KCgpp bnQgCnRlc3RfNjQodm9pZCkKewoJdWludDY0X3QgICAgICAgIGhhY2s2NDsKCWRvdWJsZSAgICAg ICAgICByZXN1bHQ2NDsKCWludCAgICAgICAgICAgICByZXR2YWwgPSAwOwoKCWlmICg4ICE9IHNp emVvZihkb3VibGUpKSB7CgkJcHV0cygic2l6ZW9mIGRvdWJsZSAhPSA4LCBjYW4gbm90IHRlc3Qi KTsKCQlyZXR1cm4gMTsKCX0KCS8qCgkgKiAxIGJpdCBzaWduIDExIGJpdCBleHBvbmVudCA1MiBi aXQgbWFudGlzc2EKCSAqLwoKCXB1dHMoIkRPVUJMRToiKTsKCiNkZWZpbmUgVE9EKHgpICgqKGRv dWJsZSAqKSYoeCkpCgoJaGFjazY0ID0gMHg3ZmYwMDAwMDAwMDAwMDAwOwoJcmVzdWx0NjQgPSBU T0QoaGFjazY0KTsKCXByaW50ZigiICBUZXN0aW5nIGZvciBpbmY6ICVmXG4iLCByZXN1bHQ2NCk7 CgojaWYgMAoJLyogWFhYOiBob3cgaXMgdGhlIGRhbW4gbmFtZSBvZiB0aGlzLi4uICAqLwoJaWYg KHJlc3VsdDY0ICE9IGluZikKCQlyZXR2YWwgPSAxOwojZW5kaWYKCgloYWNrNjQgPSAweGZmZjAw MDAwMDAwMDAwMDA7CglyZXN1bHQ2NCA9IFRPRChoYWNrNjQpOwoJcHJpbnRmKCIgIFRlc3Rpbmcg Zm9yIC1pbmY6ICVsZlxuIiwgcmVzdWx0NjQpOwoKCWhhY2s2NCA9IDB4N2ZlZmZmZmZmZmZmZmZm ZjsKCXJlc3VsdDY0ID0gVE9EKGhhY2s2NCk7CglpZiAoREJMX01BWCAhPSByZXN1bHQ2NCkgewoJ CXByaW50ZigiICBUZXN0aW5nIGZvciBEQkxfTUFYOiBGQUlMRUQgKCUuMzA4bGUpIVxuIiwgcmVz dWx0NjQpOwoJCXJldHZhbCA9IDE7Cgl9IGVsc2UgewoJCXByaW50ZigiICBUZXN0aW5nIGZvciBE QkxfTUFYOiAlLjMwOGxlXG4iLCByZXN1bHQ2NCk7Cgl9CgoJaGFjazY0ID0gMHhmZmVmZmZmZmZm ZmZmZmZmOwoJcmVzdWx0NjQgPSBUT0QoaGFjazY0KTsKCWlmICgtREJMX01BWCAhPSByZXN1bHQ2 NCkgewoJCXByaW50ZigiICBUZXN0aW5nIGZvciAtREJMX01BWDogRkFJTEVEICglLjMwOGxlKSFc biIsIHJlc3VsdDY0KTsKCQlyZXR2YWwgPSAxOwoJfSBlbHNlIHsKCQlwcmludGYoIiAgVGVzdGlu ZyBmb3IgLURCTF9NQVg6ICUuMzA4bGVcbiIsIHJlc3VsdDY0KTsKCX0KCgloYWNrNjQgPSAweDAw MDAwMDAwMDAwMDAwMDE7CglyZXN1bHQ2NCA9IFRPRChoYWNrNjQpOwoJaWYgKERCTF9NSU4gIT0g cmVzdWx0NjQpIHsKCQlwcmludGYoIiAgVGVzdGluZyBmb3IgREJMX01JTjogRkFJTEVEICglLjc1 MGxlKSFcbiIsIHJlc3VsdDY0KTsKCQlyZXR2YWwgPSAxOwoJfSBlbHNlIHsKCQlwcmludGYoIiAg VGVzdGluZyBmb3IgREJMX01JTjogJS43NTBsZVxuIiwgcmVzdWx0NjQpOwoJfQoKCWhhY2s2NCA9 IDB4ODAwMDAwMDAwMDAwMDAwMTsKCXJlc3VsdDY0ID0gVE9EKGhhY2s2NCk7CglpZiAoLURCTF9N SU4gIT0gcmVzdWx0NjQpIHsKCQlwcmludGYoIiAgVGVzdGluZyBmb3IgLURCTF9NSU46IEZBSUxF RCAoJS43NTBsZSkhXG4iLCByZXN1bHQ2NCk7CgkJcmV0dmFsID0gMTsKCX0gZWxzZSB7CgkJcHJp bnRmKCIgIFRlc3RpbmcgZm9yIC1EQkxfTUlOOiAlLjc1MGxlXG4iLCByZXN1bHQ2NCk7Cgl9Cgoj aWYgMAoJaGFjazY0ID0gMHg3ZmYwMDAwMDAwMDAwMDAxOwoJcmVzdWx0NjQgPSBUT0QoaGFjazY0 KTsKCXByaW50ZigiICBUZXN0aW5nIGZvciBOYU46ICVsZlxuIiwgcmVzdWx0NjQpOwojZW5kaWYK CiN1bmRlZiBUT0QKCglyZXR1cm4gcmV0dmFsOwp9Cg== --Multipart_Sun__30_Mar_2003_17:56:46_+0200_08c2a600-- From owner-cvs-all@FreeBSD.ORG Sun Mar 30 08:11:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0298837B401; Sun, 30 Mar 2003 08:11:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9191943F75; Sun, 30 Mar 2003 08:11:53 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UGBr0U033733; Sun, 30 Mar 2003 08:11:53 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UGBrXs033732; Sun, 30 Mar 2003 08:11:53 -0800 (PST) Message-Id: <200303301611.h2UGBrXs033732@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sun, 30 Mar 2003 08:11:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/autodia Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 16:11:55 -0000 ijliao 2003/03/30 08:11:53 PST FreeBSD ports repository Modified files: devel/autodia Makefile distinfo pkg-plist Log: upgrade to 1.5 Revision Changes Path 1.8 +17 -9 ports/devel/autodia/Makefile 1.4 +1 -1 ports/devel/autodia/distinfo 1.4 +32 -28 ports/devel/autodia/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 08:35:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C064537B401; Sun, 30 Mar 2003 08:35:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DBA143FE3; Sun, 30 Mar 2003 08:35:44 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UGZh0U035122; Sun, 30 Mar 2003 08:35:43 -0800 (PST) (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UGZhgc035121; Sun, 30 Mar 2003 08:35:43 -0800 (PST) Message-Id: <200303301635.h2UGZhgc035121@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Sun, 30 Mar 2003 08:35:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/procmail Makefile ports/mail/procmail/files patch-ab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 16:35:58 -0000 ache 2003/03/30 08:35:43 PST FreeBSD ports repository Modified files: mail/procmail Makefile mail/procmail/files patch-ab Log: Enable LMTP mode Submitted by: Phillip Oleson Revision Changes Path 1.44 +1 -1 ports/mail/procmail/Makefile 1.4 +37 -48 ports/mail/procmail/files/patch-ab From owner-cvs-all@FreeBSD.ORG Sun Mar 30 08:37:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B29B637B401; Sun, 30 Mar 2003 08:37:17 -0800 (PST) Received: from utopia.leeym.com (utopia.leeym.com [61.218.64.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id F151C43F75; Sun, 30 Mar 2003 08:37:16 -0800 (PST) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 087D33EA2AE; Mon, 31 Mar 2003 00:37:16 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 632C33EA2AD; Mon, 31 Mar 2003 00:37:14 +0800 (CST) Date: Mon, 31 Mar 2003 00:37:14 +0800 From: Yen-Ming Lee To: Joseph Scott Message-ID: <20030330163714.GA66926@utopia.leeym.com> References: <200303291908.h2TJ8hOT094427@repoman.freebsd.org> <20030330073201.X98535@randomservers> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline In-Reply-To: <20030330073201.X98535@randomservers> User-Agent: Mutt/1.5.4i X-Virus-Scanned: by AMaViS snapshot-20020531 cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/mail/openwebmail Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 16:37:20 -0000 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=big5 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Sun, Mar 30, 2003 at 07:32:43AM -0800, Joseph Scott wrote: > > On Sat, 29 Mar 2003, Yen-Ming Lee wrote: > > > leeym 2003/03/29 11:08:43 PST > > > > FreeBSD ports repository > > > > Modified files: > > mail/openwebmail Makefile distinfo pkg-plist > > Log: > > update to openwebmail-2.00, and add some optional supports. > > Are PRs ports/50445 and ports/50321 still problems? > > -Joseph ports/50321 is fixed when updating to openwebmail-2.00. ports/50445 is *NOT* a bug itself. I'll deal with these PRs. -- Yen-Ming Lee [§õ«Û©ú] KeyID: 0x5EB52E51 : www.leeym.com : Taipei, Taiwan leeym@{ leeym.com, FreeBSD.org, yahoo-inc.com, ntu.edu.tw, civil.ncku.edu.tw } --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iQCVAwUBPocdOsnMx0NetS5RAQHtswP/b3E5tqFFxy1mD3HK7oSSXL4MnfABfm+E bZBtK86mM7CGvGH0bczw/4ii20J5Xy5dCadS8aqeK5uiwAuYVhfB/Q03oZZcXc2A nR6oZLVkiwdIKtv8TlEQe06Fu8YqQjHEVZmb5rbyawlZbFktMMFX34GnHlrDg9gE SSzhICH4a4Y= =rAC+ -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- From owner-cvs-all@FreeBSD.ORG Sun Mar 30 09:27:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26D9437B401; Sun, 30 Mar 2003 09:27:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B924D43FAF; Sun, 30 Mar 2003 09:27:25 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UHRP0U044310; Sun, 30 Mar 2003 09:27:25 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UHRPIn044309; Sun, 30 Mar 2003 09:27:25 -0800 (PST) Message-Id: <200303301727.h2UHRPIn044309@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 30 Mar 2003 09:27:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/rdesktop Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 17:27:27 -0000 perky 2003/03/30 09:27:25 PST FreeBSD ports repository Modified files: net/rdesktop Makefile Log: - Turn on the "SAVE_LICENSE" option. - Give a maintainership to the submitter. PR: 50456 Submitted by: Matt Douhan Revision Changes Path 1.21 +2 -2 ports/net/rdesktop/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 09:43:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEDD937B401; Sun, 30 Mar 2003 09:43:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C96A43FBF; Sun, 30 Mar 2003 09:43:07 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UHh70U045576; Sun, 30 Mar 2003 09:43:07 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UHh7X5045575; Sun, 30 Mar 2003 09:43:07 -0800 (PST) Message-Id: <200303301743.h2UHh7X5045575@repoman.freebsd.org> From: Yen-Ming Lee Date: Sun, 30 Mar 2003 09:43:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/openwebmail Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 17:43:09 -0000 leeym 2003/03/30 09:43:07 PST FreeBSD ports repository Modified files: mail/openwebmail Makefile Log: add trailing slash in path to help the users who forget to remove previously installed files and directories. PR: 50445 Submitted by: Alex Chen Revision Changes Path 1.23 +2 -2 ports/mail/openwebmail/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 09:43:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26A4037B401; Sun, 30 Mar 2003 09:43:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB61743FB1; Sun, 30 Mar 2003 09:43:53 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UHhr0U045648; Sun, 30 Mar 2003 09:43:53 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UHhrcS045647; Sun, 30 Mar 2003 09:43:53 -0800 (PST) Message-Id: <200303301743.h2UHhrcS045647@repoman.freebsd.org> From: Martin Blapp Date: Sun, 30 Mar 2003 09:43:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 17:43:55 -0000 mbr 2003/03/30 09:43:53 PST FreeBSD ports repository Modified files: editors/openoffice-devel Makefile Log: Only add the office_${RELEASE_NR} wrapper startup scripts to the pkg list. Submitted by: Dan Naumov Revision Changes Path 1.73 +2 -2 ports/editors/openoffice-devel/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 10:00:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C21837B40B; Sun, 30 Mar 2003 10:00:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EFB143F75; Sun, 30 Mar 2003 10:00:24 -0800 (PST) (envelope-from jmallett@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UI0O0U046632; Sun, 30 Mar 2003 10:00:24 -0800 (PST) (envelope-from jmallett@repoman.freebsd.org) Received: (from jmallett@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UI0OK8046631; Sun, 30 Mar 2003 10:00:24 -0800 (PST) Message-Id: <200303301800.h2UI0OK8046631@repoman.freebsd.org> From: Juli Mallett Date: Sun, 30 Mar 2003 10:00:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libufs block.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 18:00:26 -0000 jmallett 2003/03/30 10:00:24 PST FreeBSD src repository Modified files: lib/libufs block.c Log: MFp4: Fix copy&paste English error. Revision Changes Path 1.8 +1 -1 src/lib/libufs/block.c From owner-cvs-all@FreeBSD.ORG Sun Mar 30 11:20:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECFE637B401; Sun, 30 Mar 2003 11:20:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84B1E43F85; Sun, 30 Mar 2003 11:20:35 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UJKZ0U053769; Sun, 30 Mar 2003 11:20:35 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UJKZg6053767; Sun, 30 Mar 2003 11:20:35 -0800 (PST) Message-Id: <200303301920.h2UJKZg6053767@repoman.freebsd.org> From: Dirk Meyer Date: Sun, 30 Mar 2003 11:20:35 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/sendmail-old Makefile distinfo ports/mail/sendmail-old/files patch-prescan patch-security X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 19:20:37 -0000 dinoex 2003/03/30 11:20:35 PST FreeBSD ports repository Modified files: mail/sendmail-old Makefile distinfo Removed files: mail/sendmail-old/files patch-prescan patch-security Log: - Update to 8.11.7 Revision Changes Path 1.40 +1 -2 ports/mail/sendmail-old/Makefile 1.8 +1 -1 ports/mail/sendmail-old/distinfo 1.2 +0 -125 ports/mail/sendmail-old/files/patch-prescan (dead) 1.2 +0 -484 ports/mail/sendmail-old/files/patch-security (dead) From owner-cvs-all@FreeBSD.ORG Sun Mar 30 11:22:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8657F37B404; Sun, 30 Mar 2003 11:22:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD90C43FD7; Sun, 30 Mar 2003 11:22:00 -0800 (PST) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UJM00U054002; Sun, 30 Mar 2003 11:22:00 -0800 (PST) (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UJM0dj054001; Sun, 30 Mar 2003 11:22:00 -0800 (PST) Message-Id: <200303301922.h2UJM0dj054001@repoman.freebsd.org> From: Adam Weinberger Date: Sun, 30 Mar 2003 11:22:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/resume Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 19:22:03 -0000 adamw 2003/03/30 11:22:00 PST FreeBSD ports repository Modified files: textproc/resume Makefile pkg-descr Log: Maintainer drop. Add a pkg-message that shows how to get results immediately. PR: 50379 Submitted by: Kimura Fuyuki (maintainer) Revision Changes Path 1.9 +7 -6 ports/textproc/resume/Makefile 1.3 +0 -3 ports/textproc/resume/pkg-descr From owner-cvs-all@FreeBSD.ORG Sun Mar 30 11:22:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32C6637B404; Sun, 30 Mar 2003 11:22:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 683D043FCB; Sun, 30 Mar 2003 11:22:37 -0800 (PST) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UJMb0U054039; Sun, 30 Mar 2003 11:22:37 -0800 (PST) (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UJMbCV054038; Sun, 30 Mar 2003 11:22:37 -0800 (PST) Message-Id: <200303301922.h2UJMbCV054038@repoman.freebsd.org> From: Adam Weinberger Date: Sun, 30 Mar 2003 11:22:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/resume pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 19:22:43 -0000 adamw 2003/03/30 11:22:37 PST FreeBSD ports repository Added files: textproc/resume pkg-message Log: Add a pkg-message that shows how to get results immediately. PR: 50379 Submitted by: Kimura Fuyuki (maintainer) Revision Changes Path 1.1 +12 -0 ports/textproc/resume/pkg-message (new) From owner-cvs-all@FreeBSD.ORG Sun Mar 30 11:39:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E6B037B401; Sun, 30 Mar 2003 11:39:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1B8B43FAF; Sun, 30 Mar 2003 11:39:46 -0800 (PST) (envelope-from alane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UJdk0U054864; Sun, 30 Mar 2003 11:39:46 -0800 (PST) (envelope-from alane@repoman.freebsd.org) Received: (from alane@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UJdkom054863; Sun, 30 Mar 2003 11:39:46 -0800 (PST) Message-Id: <200303301939.h2UJdkom054863@repoman.freebsd.org> From: Alan Eldridge Date: Sun, 30 Mar 2003 11:39:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/cdialog Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 19:39:49 -0000 alane 2003/03/30 11:39:46 PST FreeBSD ports repository Modified files: devel/cdialog Makefile pkg-plist Log: Install include files in /usr/local/include/cdialog directory. Revision Changes Path 1.6 +3 -0 ports/devel/cdialog/Makefile 1.4 +2 -0 ports/devel/cdialog/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 11:55:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7AB637B401; Sun, 30 Mar 2003 11:55:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76EEF43FAF; Sun, 30 Mar 2003 11:55:37 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UJtb0U056074; Sun, 30 Mar 2003 11:55:37 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UJtbAZ056073; Sun, 30 Mar 2003 11:55:37 -0800 (PST) Message-Id: <200303301955.h2UJtbAZ056073@repoman.freebsd.org> From: Murray Stokely Date: Sun, 30 Mar 2003 11:55:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_8 Subject: cvs commit: src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 19:55:39 -0000 murray 2003/03/30 11:55:37 PST FreeBSD src repository Modified files: (Branch: RELENG_4_8) sys/conf newvers.sh Log: Identify as 4.8-RELEASE. Approved by: re Revision Changes Path 1.44.2.29.2.1 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Sun Mar 30 12:04:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 385DD37B401; Sun, 30 Mar 2003 12:04:54 -0800 (PST) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29CFB43FAF; Sun, 30 Mar 2003 12:04:53 -0800 (PST) (envelope-from jake@k6.locore.ca) Received: from k6.locore.ca (localhost.locore.ca [127.0.0.1]) by k6.locore.ca (8.12.8/8.12.8) with ESMTP id h2UKBExS033592; Sun, 30 Mar 2003 15:11:14 -0500 (EST) (envelope-from jake@k6.locore.ca) Received: (from jake@localhost) by k6.locore.ca (8.12.8/8.12.8/Submit) id h2UKBEYI033591; Sun, 30 Mar 2003 15:11:14 -0500 (EST) Date: Sun, 30 Mar 2003 15:11:13 -0500 From: Jake Burkholder To: Mike Silbersack Message-ID: <20030330201113.GA32298@locore.ca> References: <200303300524.h2U5Ora7061852@repoman.freebsd.org> <20030330061301.GC21973@locore.ca> <20030330070723.GE21973@locore.ca> <20030330012410.I3292@odysseus.silby.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030330012410.I3292@odysseus.silby.com> User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: HEADS UP Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 bios.c locore.s machdep.c mpboot.s pmap.c vm86bios.s vm_machdep.c src/sys/i386/include _types.h bus_at386.h param.h pmap. X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 20:04:57 -0000 Apparently, On Sun, Mar 30, 2003 at 01:31:18AM -0600, Mike Silbersack said words to the effect of; > > On Sun, 30 Mar 2003, Jake Burkholder wrote: > > > To clarify that the ram above 4G is used for, it just goes into the general > > page pool. I don't intend to implement a means for user process's to access > > more then their ~2.5G address space through a sliding window as has been done > > on other systems, but this should be quite easy to do should someone be so > > inclined. To give an example, on a 6G system you see things like this: > > Cool, that's much better than the situation was for large ram machines > before. :) > > Do these changes allow something like a 3G KVA space without shrinking > processes address spaces? No, it doesn't make the virtual address space any bigger, it just allows more physical memory. This is a bit of a problem because the tunables that are based on physical memory size don't scale well past 4G of ram, its easy to end up with may too many vnodes. > > Also, I'm assuming that PAE can boot on machines with < 4 Gig of ram; can Yes, you can use PAE on small memory machines. This will at least give you compiler warnings about truncating physical addresses in most cases. > it also be coaxed into acting in such a manner than busdma is _required_, > so that a 256MB i386 box can be used to see if a driver is busdma > compliant? Not really. The best way is to buy a sparc :). I suppose that you could create your dma tags such that busdma thinks it needs to bounce, this would at least test that you've got the right bus_dmamap_syncs. ie set lowaddr to below the highest physical address in your machine. > > In any case, very cool. Thanks! Jake From owner-cvs-all@FreeBSD.ORG Sun Mar 30 12:05:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 676DB37B4C8 for ; Sun, 30 Mar 2003 12:05:07 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 6DA2D43FAF for ; Sun, 30 Mar 2003 12:05:04 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 5980 invoked by uid 1000); 30 Mar 2003 20:05:05 -0000 Date: Sun, 30 Mar 2003 12:05:05 -0800 (PST) From: Nate Lawson To: Poul-Henning Kamp In-Reply-To: <10581.1048976788@critter.freebsd.dk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/fdisk fdisk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 20:05:09 -0000 On Sat, 29 Mar 2003, Poul-Henning Kamp wrote: > In message , Nate Lawson writ > es: > >On Sat, 29 Mar 2003, Poul-Henning Kamp wrote: > >> Modified files: > >> sbin/fdisk fdisk.c > >> Log: > >> Use default geometry in case the device doesn't provide one: > >> 512 for sectorsize. > >> 63 for sectors. > >> 255 for heads. > >> This will mostly show up on MD(4) devices. > > > >Won't this be a problem for small devices or for int 13 booting? That's > >why we use 64 heads, 32 sectors for scsi devices < 1 GB. > > You can specify any number you like to fdisk using all the usual > ways of doing so, and you should if you want to copy the image to > some other media afterwards. Sure. My concern was for devices like USB flash disks where your defaults may not be appropriate and the info IS being written to media. Would you be willing to put in a < 1GB size check on the media to use more appropriate heads/sector values? -Nate From owner-cvs-all@FreeBSD.ORG Sun Mar 30 12:09:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A995D37B401; Sun, 30 Mar 2003 12:09:54 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 901A943FAF; Sun, 30 Mar 2003 12:09:53 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.8/8.12.8) with ESMTP id h2UK9oSM017379; Sun, 30 Mar 2003 22:09:50 +0200 (CEST) (envelope-from phk@phk.freebsd.dk) To: Nate Lawson From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sun, 30 Mar 2003 12:05:05 -0800." Date: Sun, 30 Mar 2003 22:09:50 +0200 Message-ID: <17378.1049054990@critter.freebsd.dk> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/fdisk fdisk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 20:09:57 -0000 In message , Nate Lawson writ es: >On Sat, 29 Mar 2003, Poul-Henning Kamp wrote: >> In message , Nate Lawson writ >> es: >> >On Sat, 29 Mar 2003, Poul-Henning Kamp wrote: >> >> Modified files: >> >> sbin/fdisk fdisk.c >> >> Log: >> >> Use default geometry in case the device doesn't provide one: >> >> 512 for sectorsize. >> >> 63 for sectors. >> >> 255 for heads. >> >> This will mostly show up on MD(4) devices. >> > >> >Won't this be a problem for small devices or for int 13 booting? That's >> >why we use 64 heads, 32 sectors for scsi devices < 1 GB. >> >> You can specify any number you like to fdisk using all the usual >> ways of doing so, and you should if you want to copy the image to >> some other media afterwards. > >Sure. My concern was for devices like USB flash disks where your defaults >may not be appropriate and the info IS being written to media. Would you >be willing to put in a < 1GB size check on the media to use more >appropriate heads/sector values? USB flash disks will report with DIOCGFWSECTORS/FWHEADS and therefore not hit this code. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-cvs-all@FreeBSD.ORG Sun Mar 30 12:25:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A00D37B404; Sun, 30 Mar 2003 12:25:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A730443FBD; Sun, 30 Mar 2003 12:25:45 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UKPj0U058867; Sun, 30 Mar 2003 12:25:45 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UKPjnX058866; Sun, 30 Mar 2003 12:25:45 -0800 (PST) Message-Id: <200303302025.h2UKPjnX058866@repoman.freebsd.org> From: Murray Stokely Date: Sun, 30 Mar 2003 12:25:45 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mirrors chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 20:25:49 -0000 murray 2003/03/30 12:25:45 PST FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mirrors chapter.sgml Log: Add the CVS release tags for 4.8 and 5.0. These were ommitted in earlier version bumps. Revision Changes Path 1.282 +16 -0 doc/en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Mar 30 12:36:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C800737B401; Sun, 30 Mar 2003 12:36:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B2143FA3; Sun, 30 Mar 2003 12:36:06 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UKa60U059757; Sun, 30 Mar 2003 12:36:06 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UKa5b7059756; Sun, 30 Mar 2003 12:36:05 -0800 (PST) Message-Id: <200303302036.h2UKa5b7059756@repoman.freebsd.org> From: Murray Stokely Date: Sun, 30 Mar 2003 12:36:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_8 Subject: cvs commit: src/sys/sys param.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 20:36:08 -0000 murray 2003/03/30 12:36:05 PST FreeBSD src repository Modified files: (Branch: RELENG_4_8) sys/sys param.h Log: Bump __FreeBSD_version for 4.8. Revision Changes Path 1.61.2.36.2.1 +1 -1 src/sys/sys/param.h From owner-cvs-all@FreeBSD.ORG Sun Mar 30 12:39:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CA9D37B401; Sun, 30 Mar 2003 12:39:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E28643F85; Sun, 30 Mar 2003 12:39:53 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UKdq0U059866; Sun, 30 Mar 2003 12:39:52 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UKdquS059865; Sun, 30 Mar 2003 12:39:52 -0800 (PST) Message-Id: <200303302039.h2UKdquS059865@repoman.freebsd.org> From: Murray Stokely Date: Sun, 30 Mar 2003 12:39:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_8 Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 20:39:54 -0000 murray 2003/03/30 12:39:52 PST FreeBSD src repository Modified files: (Branch: RELENG_4_8) . UPDATING Log: Add entry for FreeBSD 4.8. Revision Changes Path 1.73.2.80.2.1 +4 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Sun Mar 30 12:45:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF1E737B401; Sun, 30 Mar 2003 12:45:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D3E543FBD; Sun, 30 Mar 2003 12:45:03 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UKj30U060416; Sun, 30 Mar 2003 12:45:03 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UKj36N060415; Sun, 30 Mar 2003 12:45:03 -0800 (PST) Message-Id: <200303302045.h2UKj36N060415@repoman.freebsd.org> From: Murray Stokely Date: Sun, 30 Mar 2003 12:45:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_8 Subject: cvs commit: src/usr.sbin/pkg_install/add main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 20:45:05 -0000 murray 2003/03/30 12:45:02 PST FreeBSD src repository Modified files: (Branch: RELENG_4_8) usr.sbin/pkg_install/add main.c Log: 4.8 should look for packages in the packages-4.8-release directory. Approved by: re Revision Changes Path 1.29.2.20.2.1 +1 -0 src/usr.sbin/pkg_install/add/main.c From owner-cvs-all@FreeBSD.ORG Sun Mar 30 13:25:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D45937B401; Sun, 30 Mar 2003 13:25:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E61143F85; Sun, 30 Mar 2003 13:25:17 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2ULPG0U068987; Sun, 30 Mar 2003 13:25:17 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2ULPGib068986; Sun, 30 Mar 2003 13:25:16 -0800 (PST) Message-Id: <200303302125.h2ULPGib068986@repoman.freebsd.org> From: "David E. O'Brien" Date: Sun, 30 Mar 2003 13:25:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/du du.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 21:25:21 -0000 obrien 2003/03/30 13:25:16 PST FreeBSD src repository Modified files: usr.bin/du du.c Log: -{h,k} are mutually exclisive. So only pay attention to the last of the two when both are given. Revision Changes Path 1.29 +2 -2 src/usr.bin/du/du.c From owner-cvs-all@FreeBSD.ORG Sun Mar 30 13:28:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7CD337B429; Sun, 30 Mar 2003 13:28:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 652E443FF2; Sun, 30 Mar 2003 13:28:29 -0800 (PST) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2ULST0U069115; Sun, 30 Mar 2003 13:28:29 -0800 (PST) (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2ULST71069114; Sun, 30 Mar 2003 13:28:29 -0800 (PST) Message-Id: <200303302128.h2ULST71069114@repoman.freebsd.org> From: Adam Weinberger Date: Sun, 30 Mar 2003 13:28:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/vcp Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 21:28:47 -0000 adamw 2003/03/30 13:28:29 PST FreeBSD ports repository Modified files: sysutils/vcp Makefile distinfo Log: Update to 0.9. PR: 50387 Submitted by: Michael L. Hostbaek (maintainer) Revision Changes Path 1.4 +4 -1 ports/sysutils/vcp/Makefile 1.4 +1 -1 ports/sysutils/vcp/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 13:29:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BB3737B405; Sun, 30 Mar 2003 13:29:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB46244091; Sun, 30 Mar 2003 13:29:17 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2ULTH0U069172; Sun, 30 Mar 2003 13:29:17 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2ULTHCL069171; Sun, 30 Mar 2003 13:29:17 -0800 (PST) Message-Id: <200303302129.h2ULTHCL069171@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 13:29:17 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/openldap21 pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 21:29:23 -0000 edwin 2003/03/30 13:29:17 PST FreeBSD ports repository Removed files: net/openldap21 pkg-message Log: From Christian Kratzer Could we perhaps delete pkg-message because the text in it is totally outdated. openldap hasn't used Berkely db 1.85 for ages. Submitted by: Christian Kratzer Revision Changes Path 1.3 +0 -14 ports/net/openldap21/pkg-message (dead) From owner-cvs-all@FreeBSD.ORG Sun Mar 30 13:31:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 110C737B407; Sun, 30 Mar 2003 13:31:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 934BB44011; Sun, 30 Mar 2003 13:30:44 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2ULUi0U069422; Sun, 30 Mar 2003 13:30:44 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2ULUivK069419; Sun, 30 Mar 2003 13:30:44 -0800 (PST) Message-Id: <200303302130.h2ULUivK069419@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 13:30:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/horde2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 21:31:41 -0000 edwin 2003/03/30 13:30:44 PST FreeBSD ports repository Modified files: www/horde2 Makefile Log: Fix typos submitted by Thierry. Revision Changes Path 1.25 +3 -1 ports/www/horde2/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 13:34:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF1DF37B401; Sun, 30 Mar 2003 13:34:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D75DC440D8; Sun, 30 Mar 2003 13:32:17 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2ULWG0U069642; Sun, 30 Mar 2003 13:32:16 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2ULWGdp069641; Sun, 30 Mar 2003 13:32:16 -0800 (PST) Message-Id: <200303302132.h2ULWGdp069641@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 13:32:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/pear-install Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 21:34:23 -0000 edwin 2003/03/30 13:32:16 PST FreeBSD ports repository Modified files: devel/pear-install Makefile Log: fixed typo submitted by Thierry Thomas Revision Changes Path 1.6 +2 -1 ports/devel/pear-install/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 13:34:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0963237B401; Sun, 30 Mar 2003 13:34:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0099F4410A; Sun, 30 Mar 2003 13:32:37 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2ULWR0U069668; Sun, 30 Mar 2003 13:32:27 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2ULWRrp069667; Sun, 30 Mar 2003 13:32:27 -0800 (PST) Message-Id: <200303302132.h2ULWRrp069667@repoman.freebsd.org> From: Martin Blapp Date: Sun, 30 Mar 2003 13:32:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-devel patch-desktop+source+app+app.cxx X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 21:34:37 -0000 mbr 2003/03/30 13:32:27 PST FreeBSD ports repository Added files: editors/openoffice-devel patch-desktop+source+app+app.cxx Log: Check for m_pLockfile != NULL to fix crash during startup if no lockfile does exist at all (if we have no installed user directory) Revision Changes Path 1.1 +22 -0 ports/editors/openoffice-devel/patch-desktop+source+app+app.cxx (new) From owner-cvs-all@FreeBSD.ORG Sun Mar 30 13:38:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECB5E37B4DF for ; Sun, 30 Mar 2003 13:37:58 -0800 (PST) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 0AC8D44189 for ; Sun, 30 Mar 2003 13:34:44 -0800 (PST) (envelope-from silby@silby.com) Received: (qmail 32933 invoked from network); 30 Mar 2003 21:34:23 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 30 Mar 2003 21:34:23 -0000 X-pair-Authenticated: 209.68.2.70 Date: Sun, 30 Mar 2003 15:30:52 -0600 (CST) From: Mike Silbersack To: Jake Burkholder In-Reply-To: <20030330201113.GA32298@locore.ca> Message-ID: <20030330152920.D6586@odysseus.silby.com> References: <200303300524.h2U5Ora7061852@repoman.freebsd.org> <20030330061301.GC21973@locore.ca> <20030330070723.GE21973@locore.ca> <20030330012410.I3292@odysseus.silby.com> <20030330201113.GA32298@locore.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: HEADS UP Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 bios.c locore.s machdep.c mpboot.s pmap.c vm86bios.s vm_machdep.c src/sys/i386/include _types.h bus_at386.h param.h pmap. X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 21:38:05 -0000 On Sun, 30 Mar 2003, Jake Burkholder wrote: > > Do these changes allow something like a 3G KVA space without shrinking > > processes address spaces? > > No, it doesn't make the virtual address space any bigger, it just allows > more physical memory. This is a bit of a problem because the tunables that > are based on physical memory size don't scale well past 4G of ram, its easy > to end up with may too many vnodes. Is it practically possible with PAE and busdma'd drivers that such a configuration could work? > > it also be coaxed into acting in such a manner than busdma is _required_, > > so that a 256MB i386 box can be used to see if a driver is busdma > > compliant? > > Not really. The best way is to buy a sparc :). I suppose that you could > create your dma tags such that busdma thinks it needs to bounce, this would > at least test that you've got the right bus_dmamap_syncs. ie set lowaddr to > below the highest physical address in your machine. I'll give that a shot if I try to busdma a driver, thanks. Mike "Silby" Silbersack From owner-cvs-all@FreeBSD.ORG Sun Mar 30 13:38:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C99B337B4A4; Sun, 30 Mar 2003 13:38:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAB2443FDD; Sun, 30 Mar 2003 13:35:37 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2ULZK0U069834; Sun, 30 Mar 2003 13:35:20 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2ULZKSm069833; Sun, 30 Mar 2003 13:35:20 -0800 (PST) Message-Id: <200303302135.h2ULZKSm069833@repoman.freebsd.org> From: Martin Blapp Date: Sun, 30 Mar 2003 13:35:20 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-develpatch-desktop+source+app+app.cxx ports/editors/openoffice-devel/files patch-desktop+source+app+app.cxx X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 21:38:09 -0000 mbr 2003/03/30 13:35:20 PST FreeBSD ports repository Added files: editors/openoffice-devel/files patch-desktop+source+app+app.cxx Removed files: editors/openoffice-devel patch-desktop+source+app+app.cxx Log: Uups. Committed to the wrong dir. Check for m_pLockfile != NULL to fix crash during startup if no lockfile does exist at all (if we have no installed user directory) Revision Changes Path 1.1 +22 -0 ports/editors/openoffice-devel/files/patch-desktop+source+app+app.cxx (new) 1.2 +0 -22 ports/editors/openoffice-devel/patch-desktop+source+app+app.cxx (dead) From owner-cvs-all@FreeBSD.ORG Sun Mar 30 13:43:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20D9037B405; Sun, 30 Mar 2003 13:43:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 137D743FD7; Sun, 30 Mar 2003 13:43:05 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2ULh40U070388; Sun, 30 Mar 2003 13:43:04 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2ULh4Zb070387; Sun, 30 Mar 2003 13:43:04 -0800 (PST) Message-Id: <200303302143.h2ULh4Zb070387@repoman.freebsd.org> From: Tom Rhodes Date: Sun, 30 Mar 2003 13:43:04 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/docproj current.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 21:43:11 -0000 trhodes 2003/03/30 13:43:04 PST FreeBSD doc repository Modified files: en/docproj current.sgml Log: Remove a useless line which was added in my previous commit. Revision Changes Path 1.41 +1 -2 www/en/docproj/current.sgml From owner-cvs-all@FreeBSD.ORG Sun Mar 30 13:47:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D32737B401; Sun, 30 Mar 2003 13:47:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D07D743F3F; Sun, 30 Mar 2003 13:47:16 -0800 (PST) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2ULlG0U070579; Sun, 30 Mar 2003 13:47:16 -0800 (PST) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2ULlGe0070578; Sun, 30 Mar 2003 13:47:16 -0800 (PST) Message-Id: <200303302147.h2ULlGe0070578@repoman.freebsd.org> From: Scott Long Date: Sun, 30 Mar 2003 13:47:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 21:47:19 -0000 scottl 2003/03/30 13:47:16 PST FreeBSD src repository Modified files: sys/dev/aac aac.c Log: Add the ability to send 64-bit scatter/gather elements to aac cards. This is enabled when both the size of bus_addr_t > 4 and the card claims support. Don't wake up the kthread to allocate more commands if we know that we've already allocated the max number of commands. Revision Changes Path 1.66 +78 -39 src/sys/dev/aac/aac.c From owner-cvs-all@FreeBSD.ORG Sun Mar 30 13:52:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96B9E37B401; Sun, 30 Mar 2003 13:52:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBCBC43FBD; Sun, 30 Mar 2003 13:52:34 -0800 (PST) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2ULqY0U071105; Sun, 30 Mar 2003 13:52:34 -0800 (PST) (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2ULqYOx071104; Sun, 30 Mar 2003 13:52:34 -0800 (PST) Message-Id: <200303302152.h2ULqYOx071104@repoman.freebsd.org> From: Gerald Pfeifer Date: Sun, 30 Mar 2003 13:52:34 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/wine/files patch-ba X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 21:52:37 -0000 gerald 2003/03/30 13:52:34 PST FreeBSD ports repository Modified files: emulators/wine/files patch-ba Log: Do not define _THREAD_SAFE, which is a noop on -CURRENT and does not make a difference on -STABLE according to my long-term tests. Revision Changes Path 1.8 +0 -9 ports/emulators/wine/files/patch-ba From owner-cvs-all@FreeBSD.ORG Sun Mar 30 14:08:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B90937B401; Sun, 30 Mar 2003 14:08:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFF3743F93; Sun, 30 Mar 2003 14:08:20 -0800 (PST) (envelope-from dannyboy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UM8K0U072835; Sun, 30 Mar 2003 14:08:20 -0800 (PST) (envelope-from dannyboy@repoman.freebsd.org) Received: (from dannyboy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UM8KWk072834; Sun, 30 Mar 2003 14:08:20 -0800 (PST) Message-Id: <200303302208.h2UM8KWk072834@repoman.freebsd.org> From: Daniel Harris Date: Sun, 30 Mar 2003 14:08:20 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/security security.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 22:08:22 -0000 dannyboy 2003/03/30 14:08:20 PST FreeBSD doc repository Modified files: en/security security.sgml Log: Add advisory 03:07. Revision Changes Path 1.130 +3 -2 www/en/security/security.sgml From owner-cvs-all@FreeBSD.ORG Sun Mar 30 14:31:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A41937B401; Sun, 30 Mar 2003 14:31:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC4A643FAF; Sun, 30 Mar 2003 14:31:38 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UMVc0U074546; Sun, 30 Mar 2003 14:31:38 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UMVc6s074545; Sun, 30 Mar 2003 14:31:38 -0800 (PST) Message-Id: <200303302231.h2UMVc6s074545@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 14:31:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/imp3 pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 22:31:43 -0000 edwin 2003/03/30 14:31:38 PST FreeBSD ports repository Modified files: mail/imp3 pkg-descr Log: Make pre-requisites for mail/imp3 regarding PHP4 available for people who install the package. Approved by: Thierry Thomas Revision Changes Path 1.3 +7 -3 ports/mail/imp3/pkg-descr From owner-cvs-all@FreeBSD.ORG Sun Mar 30 14:40:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15A0037B404; Sun, 30 Mar 2003 14:40:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6D9B43FBF; Sun, 30 Mar 2003 14:40:46 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UMek0U074943; Sun, 30 Mar 2003 14:40:46 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UMek1N074941; Sun, 30 Mar 2003 14:40:46 -0800 (PST) Message-Id: <200303302240.h2UMek1N074941@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sun, 30 Mar 2003 14:40:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/liveMedia Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 22:40:49 -0000 nork 2003/03/30 14:40:46 PST FreeBSD ports repository Modified files: net/liveMedia Makefile distinfo Log: Update to 2003.03.28. Revision Changes Path 1.29 +2 -1 ports/net/liveMedia/Makefile 1.26 +1 -1 ports/net/liveMedia/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 14:58:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF9D537B401; Sun, 30 Mar 2003 14:58:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 794F543FA3; Sun, 30 Mar 2003 14:58:23 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UMwN0U076037; Sun, 30 Mar 2003 14:58:23 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UMwNrH076036; Sun, 30 Mar 2003 14:58:23 -0800 (PST) Message-Id: <200303302258.h2UMwNrH076036@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 30 Mar 2003 14:58:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpam/modules/pam_chroot Makefile pam_chroot.8 pam_chroot.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 22:58:26 -0000 des 2003/03/30 14:58:23 PST FreeBSD src repository Added files: lib/libpam/modules/pam_chroot Makefile pam_chroot.8 pam_chroot.c Log: Experimental pam_chroot module (not connected to the build) Revision Changes Path 1.1 +7 -0 src/lib/libpam/modules/pam_chroot/Makefile (new) 1.1 +85 -0 src/lib/libpam/modules/pam_chroot/pam_chroot.8 (new) 1.1 +101 -0 src/lib/libpam/modules/pam_chroot/pam_chroot.c (new) From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:02:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F15A37B40B; Sun, 30 Mar 2003 15:02:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DEAA43FBD; Sun, 30 Mar 2003 15:02:16 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UN2F0U076519; Sun, 30 Mar 2003 15:02:15 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UN2Fqq076518; Sun, 30 Mar 2003 15:02:15 -0800 (PST) Message-Id: <200303302302.h2UN2Fqq076518@repoman.freebsd.org> From: Jacques Vidrine Date: Sun, 30 Mar 2003 15:02:15 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/security advisories.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:02:18 -0000 nectar 2003/03/30 15:02:15 PST FreeBSD doc repository Modified files: en/security advisories.xml Log: Add FreeBSD-SA-03:07.sendmail Revision Changes Path 1.130 +9 -1 www/en/security/advisories.xml From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:03:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4588C37B401; Sun, 30 Mar 2003 15:03:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D82DD43F75; Sun, 30 Mar 2003 15:03:16 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UN3G0U077482; Sun, 30 Mar 2003 15:03:16 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UN3GtU077481; Sun, 30 Mar 2003 15:03:16 -0800 (PST) Message-Id: <200303302303.h2UN3GtU077481@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 15:03:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/caudium10 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:03:18 -0000 edwin 2003/03/30 15:03:16 PST FreeBSD ports repository Modified files: www/caudium10 Makefile distinfo Log: maintainer-Update www/caudium10 update to 1.0.56 PR: ports/48848 Submitted by: Xavier Beaudouin Revision Changes Path 1.8 +1 -2 ports/www/caudium10/Makefile 1.3 +1 -1 ports/www/caudium10/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:04:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2488A37B404; Sun, 30 Mar 2003 15:04:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B60AD43F3F; Sun, 30 Mar 2003 15:04:42 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UN4g0U077540; Sun, 30 Mar 2003 15:04:42 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UN4gOi077539; Sun, 30 Mar 2003 15:04:42 -0800 (PST) Message-Id: <200303302304.h2UN4gOi077539@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 15:04:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/dtdparse Makefile pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:04:44 -0000 edwin 2003/03/30 15:04:42 PST FreeBSD ports repository Modified files: textproc/dtdparse Makefile pkg-descr pkg-plist Log: Update port: textproc/dtdparse (cleanup) Drop maintainership and cleanup PR: ports/50380 Submitted by: Kimura Fuyuki Revision Changes Path 1.4 +4 -15 ports/textproc/dtdparse/Makefile 1.3 +0 -3 ports/textproc/dtdparse/pkg-descr 1.4 +17 -17 ports/textproc/dtdparse/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:05:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E167137B401; Sun, 30 Mar 2003 15:05:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CA6143FA3; Sun, 30 Mar 2003 15:05:41 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UN5f0U077688; Sun, 30 Mar 2003 15:05:41 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UN5fWp077687; Sun, 30 Mar 2003 15:05:41 -0800 (PST) Message-Id: <200303302305.h2UN5fWp077687@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 15:05:41 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/dictfmt Makefile distinfo pkg-descr pkg-plist ports/textproc/dictfmt/files patch-configure.in patch-dictP.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:05:43 -0000 edwin 2003/03/30 15:05:41 PST FreeBSD ports repository Modified files: textproc/dictfmt Makefile distinfo pkg-descr pkg-plist Added files: textproc/dictfmt/files patch-configure.in patch-dictP.h Log: Update port: textproc/dictfmt to 1.9.8 PR: ports/50378 Submitted by: Kimura Fuyuki Revision Changes Path 1.3 +16 -13 ports/textproc/dictfmt/Makefile 1.2 +1 -1 ports/textproc/dictfmt/distinfo 1.1 +12 -0 ports/textproc/dictfmt/files/patch-configure.in (new) 1.1 +19 -0 ports/textproc/dictfmt/files/patch-dictP.h (new) 1.2 +0 -3 ports/textproc/dictfmt/pkg-descr 1.2 +5 -0 ports/textproc/dictfmt/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:06:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8EFD37B401; Sun, 30 Mar 2003 15:06:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A0D043FBD; Sun, 30 Mar 2003 15:06:43 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UN6h0U077738; Sun, 30 Mar 2003 15:06:43 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UN6hC6077737; Sun, 30 Mar 2003 15:06:43 -0800 (PST) Message-Id: <200303302306.h2UN6hC6077737@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 15:06:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/libtasn1 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:06:46 -0000 edwin 2003/03/30 15:06:43 PST FreeBSD ports repository Modified files: security/libtasn1 Makefile distinfo Log: [MAINTAINER] Update security/libtasn1 to 0.2.4 PR: ports/50437 Submitted by: Sergei Kolobov Revision Changes Path 1.9 +1 -1 ports/security/libtasn1/Makefile 1.4 +1 -1 ports/security/libtasn1/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:13:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 049C937B401; Sun, 30 Mar 2003 15:13:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92C6443F93; Sun, 30 Mar 2003 15:13:34 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UNDY0U078383; Sun, 30 Mar 2003 15:13:34 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UNDYec078381; Sun, 30 Mar 2003 15:13:34 -0800 (PST) Message-Id: <200303302313.h2UNDYec078381@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 30 Mar 2003 15:13:34 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/palm/gnomepilot2 Makefile distinfo pkg-plist ports/palm/gnomepilot2/files patch-aa patch-ah patch-libgpilotdCM::gnome-pilot-conduit-management.c patch-po::Makefile.in.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:13:36 -0000 marcus 2003/03/30 15:13:34 PST FreeBSD ports repository Modified files: palm/gnomepilot2 Makefile distinfo pkg-plist palm/gnomepilot2/files patch-aa patch-libgpilotdCM::gnome-pilot-conduit-management.c Removed files: palm/gnomepilot2/files patch-ah patch-capplet::Makefile.in patch-gpilotd::Makefile.in patch-po::Makefile.in.in Log: Add gnomepilot2 after a repo copy from gnomepilot. gnomepilot2 is the PalmOS conduit system for GNOME 2. Revision Changes Path 1.38 +11 -14 ports/palm/gnomepilot2/Makefile 1.13 +1 -1 ports/palm/gnomepilot2/distinfo 1.9 +0 -44 ports/palm/gnomepilot2/files/patch-aa 1.2 +0 -11 ports/palm/gnomepilot2/files/patch-ah (dead) 1.2 +0 -14 ports/palm/gnomepilot2/files/patch-capplet::Makefile.in (dead) 1.2 +0 -14 ports/palm/gnomepilot2/files/patch-gpilotd::Makefile.in (dead) 1.2 +5 -5 ports/palm/gnomepilot2/files/patch-libgpilotdCM::gnome-pilot-conduit-management.c 1.2 +0 -14 ports/palm/gnomepilot2/files/patch-po::Makefile.in.in (dead) 1.14 +25 -12 ports/palm/gnomepilot2/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:13:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9D3737B401; Sun, 30 Mar 2003 15:13:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 481F543FA3; Sun, 30 Mar 2003 15:13:58 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UNDw0U078417; Sun, 30 Mar 2003 15:13:58 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UNDvBF078416; Sun, 30 Mar 2003 15:13:57 -0800 (PST) Message-Id: <200303302313.h2UNDvBF078416@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 30 Mar 2003 15:13:57 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/palm Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:14:05 -0000 marcus 2003/03/30 15:13:57 PST FreeBSD ports repository Modified files: palm Makefile Log: Add gnomepilot2. Revision Changes Path 1.38 +1 -0 ports/palm/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:14:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCAA237B401; Sun, 30 Mar 2003 15:14:13 -0800 (PST) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73C9243F93; Sun, 30 Mar 2003 15:14:12 -0800 (PST) (envelope-from jake@k6.locore.ca) Received: from k6.locore.ca (localhost.locore.ca [127.0.0.1]) by k6.locore.ca (8.12.8/8.12.8) with ESMTP id h2UNKVxS034376; Sun, 30 Mar 2003 18:20:31 -0500 (EST) (envelope-from jake@k6.locore.ca) Received: (from jake@localhost) by k6.locore.ca (8.12.8/8.12.8/Submit) id h2UNKVvm034375; Sun, 30 Mar 2003 18:20:31 -0500 (EST) Date: Sun, 30 Mar 2003 18:20:30 -0500 From: Jake Burkholder To: Mike Silbersack Message-ID: <20030330232030.GB32298@locore.ca> References: <200303300524.h2U5Ora7061852@repoman.freebsd.org> <20030330061301.GC21973@locore.ca> <20030330070723.GE21973@locore.ca> <20030330012410.I3292@odysseus.silby.com> <20030330201113.GA32298@locore.ca> <20030330152920.D6586@odysseus.silby.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030330152920.D6586@odysseus.silby.com> User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: HEADS UP Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 bios.c locore.s machdep.c mpboot.s pmap.c vm86bios.s vm_machdep.c src/sys/i386/include _types.h bus_at386.h param.h pmap. X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:14:17 -0000 Apparently, On Sun, Mar 30, 2003 at 03:30:52PM -0600, Mike Silbersack said words to the effect of; > > On Sun, 30 Mar 2003, Jake Burkholder wrote: > > > > Do these changes allow something like a 3G KVA space without shrinking > > > processes address spaces? > > > > No, it doesn't make the virtual address space any bigger, it just allows > > more physical memory. This is a bit of a problem because the tunables that > > are based on physical memory size don't scale well past 4G of ram, its easy > > to end up with may too many vnodes. > > Is it practically possible with PAE and busdma'd drivers that such a > configuration could work? I'm not sure I understand the question, you mean is it possible to use separate address spaces for the kernel and userland, giving a full 4G each? Yes it is possible, but it is not practical. It would be prohibitively expensive and ugly. For example you would need to use task gates for system calls, and copyin or copyout would need to look up the user pages and map them temporarily, something like that. Keep in mind that the restriction is what can be mapped. It is still possible to keep around huge amounts of memory as long as its not all mapped all the time. For example many device drivers just do dma and don't need a virtual mapping for every chunk of memory they see, avoiding mapping and unmapping it would save a lot of KVA. Jake From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:14:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7071137B404; Sun, 30 Mar 2003 15:14:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B45B343FBF; Sun, 30 Mar 2003 15:14:49 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UNEn0U078461; Sun, 30 Mar 2003 15:14:49 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UNEn1A078460; Sun, 30 Mar 2003 15:14:49 -0800 (PST) Message-Id: <200303302314.h2UNEn1A078460@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 30 Mar 2003 15:14:49 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:14:52 -0000 marcus 2003/03/30 15:14:49 PST FreeBSD ports repository Modified files: . modules Log: gnomepilot2 --> ports/palm/gnomepilot2 Revision Changes Path 1.6916 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:16:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68BD037B401; Sun, 30 Mar 2003 15:16:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 035D043F93; Sun, 30 Mar 2003 15:16:28 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UNGR0U078585; Sun, 30 Mar 2003 15:16:27 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UNGR6D078584; Sun, 30 Mar 2003 15:16:27 -0800 (PST) Message-Id: <200303302316.h2UNGR6D078584@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 30 Mar 2003 15:16:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/win32-codecs Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:16:29 -0000 lioux 2003/03/30 15:16:27 PST FreeBSD ports repository Modified files: multimedia/win32-codecs Makefile distinfo pkg-plist Log: o Sync MASTER_SITES to changes in MPlayer distribution sites listed in http://www.mplayerhq.hu/ o Switch over to new MPlayer master codec distfile o Bump PORTREVISION since there are new codecs Approved by: maintainer Revision Changes Path 1.21 +16 -14 ports/multimedia/win32-codecs/Makefile 1.13 +1 -1 ports/multimedia/win32-codecs/distinfo 1.11 +2 -0 ports/multimedia/win32-codecs/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:33:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7782837B401; Sun, 30 Mar 2003 15:33:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 163D843F85; Sun, 30 Mar 2003 15:33:06 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UNX50U079715; Sun, 30 Mar 2003 15:33:05 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UNX5Cj079714; Sun, 30 Mar 2003 15:33:05 -0800 (PST) Message-Id: <200303302333.h2UNX5Cj079714@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 30 Mar 2003 15:33:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/palm/gnomepilot2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:33:07 -0000 marcus 2003/03/30 15:33:05 PST FreeBSD ports repository Modified files: palm/gnomepilot2 Makefile Log: Add missing pisock dependency. Revision Changes Path 1.39 +2 -1 ports/palm/gnomepilot2/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:34:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4BAA37B404 for ; Sun, 30 Mar 2003 15:34:12 -0800 (PST) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 9AF8243FB1 for ; Sun, 30 Mar 2003 15:34:10 -0800 (PST) (envelope-from silby@silby.com) Received: (qmail 61089 invoked from network); 30 Mar 2003 23:34:09 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 30 Mar 2003 23:34:09 -0000 X-pair-Authenticated: 209.68.2.70 Date: Sun, 30 Mar 2003 17:30:37 -0600 (CST) From: Mike Silbersack To: Jake Burkholder In-Reply-To: <20030330232030.GB32298@locore.ca> Message-ID: <20030330172835.O7123@odysseus.silby.com> References: <200303300524.h2U5Ora7061852@repoman.freebsd.org> <20030330201113.GA32298@locore.ca><20030330232030.GB32298@locore.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: HEADS UP Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 bios.c locore.s machdep.c mpboot.s pmap.c vm86bios.s vm_machdep.c src/sys/i386/include _types.h bus_at386.h param.h pmap. X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:34:15 -0000 On Sun, 30 Mar 2003, Jake Burkholder wrote: > I'm not sure I understand the question, you mean is it possible to use > separate address spaces for the kernel and userland, giving a full 4G each? > Yes it is possible, but it is not practical. It would be prohibitively > expensive and ugly. For example you would need to use task gates for > system calls, and copyin or copyout would need to look up the user pages > and map them temporarily, something like that. > > Keep in mind that the restriction is what can be mapped. It is still > possible to keep around huge amounts of memory as long as its not all > mapped all the time. For example many device drivers just do dma and > don't need a virtual mapping for every chunk of memory they see, avoiding > mapping and unmapping it would save a lot of KVA. > > Jake Yes, 4G/4G is what I was asking about. The reason I'm confused is that I don't understand how copies from the upper 2G of a 6G box work any better than copies from overlapping user memory with < 4G addresses. Are we using 64 pointers throughout the kernel while in PAE mode? (I didn't think i386 supported that, which is why I'm asking.) Sorry if these are "dumb" questions, but I'm quite green when it comes to address space mapping. Thanks, Mike "Silby" Silbersack From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:53:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D69D937B401; Sun, 30 Mar 2003 15:53:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DD5343F85; Sun, 30 Mar 2003 15:53:32 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UNrW0U081044; Sun, 30 Mar 2003 15:53:32 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UNrWWr081043; Sun, 30 Mar 2003 15:53:32 -0800 (PST) Message-Id: <200303302353.h2UNrWWr081043@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 30 Mar 2003 15:53:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/distcc Makefile distinfo pkg-plist ports/devel/distcc/files patch-src_access.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:53:34 -0000 lioux 2003/03/30 15:53:32 PST FreeBSD ports repository Modified files: devel/distcc Makefile distinfo pkg-plist Removed files: devel/distcc/files patch-src_access.c Log: o Update to 2.0.1 PR: 50460 Submitted by: maintainer Revision Changes Path 1.15 +3 -3 ports/devel/distcc/Makefile 1.12 +1 -1 ports/devel/distcc/distinfo 1.2 +0 -13 ports/devel/distcc/files/patch-src_access.c (dead) 1.7 +0 -2 ports/devel/distcc/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:55:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44CC037B401; Sun, 30 Mar 2003 15:55:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D13EB43FA3; Sun, 30 Mar 2003 15:55:35 -0800 (PST) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UNtZ0U081202; Sun, 30 Mar 2003 15:55:35 -0800 (PST) (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UNtZDH081201; Sun, 30 Mar 2003 15:55:35 -0800 (PST) Message-Id: <200303302355.h2UNtZDH081201@repoman.freebsd.org> From: Gerald Pfeifer Date: Sun, 30 Mar 2003 15:55:35 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc32 Makefile distinfo ports/lang/gcc32/files opt.patch-bc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:55:37 -0000 gerald 2003/03/30 15:55:35 PST FreeBSD ports repository Modified files: lang/gcc32 Makefile distinfo Added files: lang/gcc32/files opt.patch-bc Log: Add support for the bounds-checking patch by Herman ten Brugge (which provides an -fbounds-checking command-line option). This is optional and built only if WITH_BOUNDSCHECKING is defined. PR: 50178 Submitted by: Dan Nelson Revision Changes Path 1.145 +25 -1 ports/lang/gcc32/Makefile 1.79 +1 -0 ports/lang/gcc32/distinfo 1.1 +11 -0 ports/lang/gcc32/files/opt.patch-bc (new) From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:56:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B17A37B401; Sun, 30 Mar 2003 15:56:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADD2943F3F; Sun, 30 Mar 2003 15:56:05 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UNu50U081267; Sun, 30 Mar 2003 15:56:05 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UNu5PO081266; Sun, 30 Mar 2003 15:56:05 -0800 (PST) Message-Id: <200303302356.h2UNu5PO081266@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 30 Mar 2003 15:56:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/lmule Makefile distinfo ports/net/lmule/files patch-Makefile.in patch-src::wx::Makefile.in patch-src::wx::xrc::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:56:08 -0000 lioux 2003/03/30 15:56:05 PST FreeBSD ports repository Modified files: net/lmule Makefile distinfo net/lmule/files patch-Makefile.in patch-src::wx::Makefile.in patch-src::wx::xrc::Makefile.in Log: Update to 1.1.13c Revision Changes Path 1.4 +1 -1 ports/net/lmule/Makefile 1.4 +1 -1 ports/net/lmule/distinfo 1.2 +2 -2 ports/net/lmule/files/patch-Makefile.in 1.2 +2 -2 ports/net/lmule/files/patch-src::wx::Makefile.in 1.2 +2 -28 ports/net/lmule/files/patch-src::wx::xrc::Makefile.in From owner-cvs-all@FreeBSD.ORG Sun Mar 30 15:59:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04A1C37B401; Sun, 30 Mar 2003 15:59:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68E2F43F75; Sun, 30 Mar 2003 15:59:29 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2UNxT0U081414; Sun, 30 Mar 2003 15:59:29 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2UNxTFb081413; Sun, 30 Mar 2003 15:59:29 -0800 (PST) Message-Id: <200303302359.h2UNxTFb081413@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 15:59:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/smarteiffel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 23:59:32 -0000 edwin 2003/03/30 15:59:29 PST FreeBSD ports repository Modified files: lang/smarteiffel Makefile Log: loadpath.UNIX as installed is wrong Eiffel applications that still rely on loadpath to work correctly, will not work with the port as installed. This patch fixes that problem. PR: ports/47988 Submitted by: User & Revision Changes Path 1.8 +24 -12 ports/lang/smarteiffel/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 16:00:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F40A337B404; Sun, 30 Mar 2003 16:00:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77EDB43FBD; Sun, 30 Mar 2003 16:00:44 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V00i0U081657; Sun, 30 Mar 2003 16:00:44 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V00ilE081655; Sun, 30 Mar 2003 16:00:44 -0800 (PST) Message-Id: <200303310000.h2V00ilE081655@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 16:00:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Class-Container Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 00:00:47 -0000 edwin 2003/03/30 16:00:44 PST FreeBSD ports repository Modified files: devel/p5-Class-Container Makefile distinfo Log: Update port: devel/p5-Class-Container to latest (0.09) version PR: ports/48656 Submitted by: Denis Shaposhnikov Revision Changes Path 1.6 +2 -2 ports/devel/p5-Class-Container/Makefile 1.4 +1 -1 ports/devel/p5-Class-Container/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 16:02:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F39237B401; Sun, 30 Mar 2003 16:02:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DF9343FBD; Sun, 30 Mar 2003 16:02:43 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V02g0U081892; Sun, 30 Mar 2003 16:02:42 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V02ggu081891; Sun, 30 Mar 2003 16:02:42 -0800 (PST) Message-Id: <200303310002.h2V02ggu081891@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 16:02:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/tmda Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 00:02:47 -0000 edwin 2003/03/30 16:02:42 PST FreeBSD ports repository Modified files: mail/tmda Makefile pkg-plist Log: TMDA port is missing the contributed cgi interface. PR: ports/48760 Submitted by: Mike Meyer Revision Changes Path 1.32 +9 -3 ports/mail/tmda/Makefile 1.26 +52 -0 ports/mail/tmda/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 16:32:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72C4837B401; Sun, 30 Mar 2003 16:32:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 109B243F93; Sun, 30 Mar 2003 16:32:44 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V0Wh0U084945; Sun, 30 Mar 2003 16:32:43 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V0Whm6084944; Sun, 30 Mar 2003 16:32:43 -0800 (PST) Message-Id: <200303310032.h2V0Whm6084944@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 30 Mar 2003 16:32:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa npx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 00:32:46 -0000 jeff 2003/03/30 16:32:43 PST FreeBSD src repository Modified files: sys/i386/isa npx.c Log: - In npxsetregs don't set the floating point if td == fpcurthread not if curthread == fpcurthread. This is important when we're saving the fp state for a thread other than curthread as in from set_mcontext. Revision Changes Path 1.138 +1 -1 src/sys/i386/isa/npx.c From owner-cvs-all@FreeBSD.ORG Sun Mar 30 16:37:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC53937B401; Sun, 30 Mar 2003 16:37:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C102843FA3; Sun, 30 Mar 2003 16:37:07 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V0b70U085179; Sun, 30 Mar 2003 16:37:07 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V0b7Rr085178; Sun, 30 Mar 2003 16:37:07 -0800 (PST) Message-Id: <200303310037.h2V0b7Rr085178@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 16:37:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/russian/apache13 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 00:37:11 -0000 edwin 2003/03/30 16:37:07 PST FreeBSD ports repository Modified files: russian/apache13 Makefile distinfo Log: Update Russian Apache to patchlevel 30.17 PR: ports/49108 Submitted by: Lev A. Serbryakov Revision Changes Path 1.30 +2 -3 ports/russian/apache13/Makefile 1.17 +1 -1 ports/russian/apache13/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 16:38:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C84337B401; Sun, 30 Mar 2003 16:38:29 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D7A743FA3; Sun, 30 Mar 2003 16:38:28 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h2V0cRA71570; Sun, 30 Mar 2003 19:38:27 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Sun, 30 Mar 2003 19:38:27 -0500 (EST) From: Jeff Roberson To: Jeff Roberson In-Reply-To: <200303310032.h2V0Whm6084944@repoman.freebsd.org> Message-ID: <20030330193706.C64602-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/isa npx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 00:38:33 -0000 On Sun, 30 Mar 2003, Jeff Roberson wrote: > jeff 2003/03/30 16:32:43 PST > > FreeBSD src repository > > Modified files: > sys/i386/isa npx.c > Log: > - In npxsetregs don't set the floating point if td == fpcurthread not if > curthread == fpcurthread. This is important when we're saving the fp > state for a thread other than curthread as in from set_mcontext. > > Revision Changes Path > 1.138 +1 -1 src/sys/i386/isa/npx.c > Shouldn't type up commit mail after smoking crack. This should read something like "in npxsetregs only set the floating point state if td == fpcurthread not if curthread == fpcurthread". From owner-cvs-all@FreeBSD.ORG Sun Mar 30 16:40:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E300A37B404; Sun, 30 Mar 2003 16:40:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F36A43F3F; Sun, 30 Mar 2003 16:40:37 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V0eb0U085550; Sun, 30 Mar 2003 16:40:37 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V0ebSD085547; Sun, 30 Mar 2003 16:40:37 -0800 (PST) Message-Id: <200303310040.h2V0ebSD085547@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 16:40:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/crimson Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 00:40:39 -0000 edwin 2003/03/30 16:40:37 PST FreeBSD ports repository Modified files: games/crimson Makefile distinfo pkg-plist Log: Crimson Fields update to 0.3.0 with some new maps PR: ports/49979 Submitted by: Jan Stocker Revision Changes Path 1.13 +1 -1 ports/games/crimson/Makefile 1.7 +1 -1 ports/games/crimson/distinfo 1.6 +4 -2 ports/games/crimson/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 16:50:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6AEE37B401; Sun, 30 Mar 2003 16:50:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72F3C43FB1; Sun, 30 Mar 2003 16:50:56 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V0ou0U091327; Sun, 30 Mar 2003 16:50:56 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V0otww091323; Sun, 30 Mar 2003 16:50:55 -0800 (PST) Message-Id: <200303310050.h2V0otww091323@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 16:50:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/russian/apache13-modssl Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 00:51:00 -0000 edwin 2003/03/30 16:50:55 PST FreeBSD ports repository Modified files: russian/apache13-modssl Makefile distinfo Log: Update Russian Apache + mod_ssl to patchlevel 30.17 PR: ports/49109 Submitted by: Lev A. Serbryakov Revision Changes Path 1.30 +2 -2 ports/russian/apache13-modssl/Makefile 1.17 +1 -1 ports/russian/apache13-modssl/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 17:09:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E67637B401; Sun, 30 Mar 2003 17:09:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A216543F75; Sun, 30 Mar 2003 17:09:31 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V19V0U093257; Sun, 30 Mar 2003 17:09:31 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V19VXY093256; Sun, 30 Mar 2003 17:09:31 -0800 (PST) Message-Id: <200303310109.h2V19VXY093256@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 17:09:31 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/pdflib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 01:09:33 -0000 edwin 2003/03/30 17:09:31 PST FreeBSD ports repository Modified files: print/pdflib Makefile Log: [Maintainer Patch] print/pdflib (USE_LIBTOOL, WITH_PERL, install fonts) PR: ports/48961 Submitted by: Alex Dupre Revision Changes Path 1.22 +1 -1 ports/print/pdflib/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 17:12:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C04937B401; Sun, 30 Mar 2003 17:12:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29F0943F3F; Sun, 30 Mar 2003 17:12:18 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V1CH0U093732; Sun, 30 Mar 2003 17:12:18 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V1CHDN093731; Sun, 30 Mar 2003 17:12:17 -0800 (PST) Message-Id: <200303310112.h2V1CHDN093731@repoman.freebsd.org> From: Dirk Meyer Date: Sun, 30 Mar 2003 17:12:17 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc32 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 01:12:20 -0000 dinoex 2003/03/30 17:12:17 PST FreeBSD ports repository Modified files: lang/gcc32 Makefile Log: LATEST_LINK can now be overwritten by the slave port. added ${PKGNAMESUFFIX} to LATEST_LINK, so it differs when set. Approved by: gerald Revision Changes Path 1.146 +1 -1 ports/lang/gcc32/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 17:19:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0979337B401; Sun, 30 Mar 2003 17:19:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D20643FB1; Sun, 30 Mar 2003 17:19:14 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V1JE0U094274; Sun, 30 Mar 2003 17:19:14 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V1JE0o094273; Sun, 30 Mar 2003 17:19:14 -0800 (PST) Message-Id: <200303310119.h2V1JE0o094273@repoman.freebsd.org> From: Dirk Meyer Date: Sun, 30 Mar 2003 17:19:14 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc33 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 01:19:16 -0000 dinoex 2003/03/30 17:19:14 PST FreeBSD ports repository Modified files: lang/gcc33 Makefile Log: LATEST_LINK can now be overwritten by the slave port. added ${PKGNAMESUFFIX} to LATEST_LINK, so it differs when set. Revision Changes Path 1.127 +1 -1 ports/lang/gcc33/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 17:20:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33C5B37B401; Sun, 30 Mar 2003 17:20:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CAC643FA3; Sun, 30 Mar 2003 17:20:51 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V1Kp0U094656; Sun, 30 Mar 2003 17:20:51 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V1Kpi8094654; Sun, 30 Mar 2003 17:20:51 -0800 (PST) Message-Id: <200303310120.h2V1Kpi8094654@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 17:20:51 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/mp3c Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 01:20:54 -0000 edwin 2003/03/30 17:20:51 PST FreeBSD ports repository Modified files: audio/mp3c Makefile Log: Update port: audio/mp3c Makefile updated PR: ports/48880 Submitted by: Joris Vandalon Revision Changes Path 1.4 +4 -4 ports/audio/mp3c/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 17:29:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B70437B401; Sun, 30 Mar 2003 17:29:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE65D43F93; Sun, 30 Mar 2003 17:29:06 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V1T60U095132; Sun, 30 Mar 2003 17:29:06 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V1T6St095131; Sun, 30 Mar 2003 17:29:06 -0800 (PST) Message-Id: <200303310129.h2V1T6St095131@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 17:29:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/tcpreen Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 01:29:08 -0000 edwin 2003/03/30 17:29:06 PST FreeBSD ports repository Modified files: net/tcpreen Makefile distinfo Log: Maintainer update: net/tcpreen to version 1.2.2 PR: ports/48868 Submitted by: Janos Mohacsi Revision Changes Path 1.6 +11 -5 ports/net/tcpreen/Makefile 1.5 +1 -1 ports/net/tcpreen/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 17:30:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3FE537B401; Sun, 30 Mar 2003 17:30:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B88743FBD; Sun, 30 Mar 2003 17:30:06 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V1U50U095207; Sun, 30 Mar 2003 17:30:06 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V1U5lh095206; Sun, 30 Mar 2003 17:30:05 -0800 (PST) Message-Id: <200303310130.h2V1U5lh095206@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 17:30:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/socklog Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 01:30:10 -0000 edwin 2003/03/30 17:30:05 PST FreeBSD ports repository Modified files: sysutils/socklog Makefile distinfo pkg-plist Log: [MAINTAINER] Update sysutils/socklog to 1.0.0 PR: ports/48874 Submitted by: Sergei Kolobov Revision Changes Path 1.5 +6 -15 ports/sysutils/socklog/Makefile 1.2 +1 -1 ports/sysutils/socklog/distinfo 1.2 +15 -15 ports/sysutils/socklog/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 17:31:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 168E337B401; Sun, 30 Mar 2003 17:31:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A921843F3F; Sun, 30 Mar 2003 17:31:09 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V1V90U095627; Sun, 30 Mar 2003 17:31:09 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V1V9EG095626; Sun, 30 Mar 2003 17:31:09 -0800 (PST) Message-Id: <200303310131.h2V1V9EG095626@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 17:31:09 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/translate Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 01:31:11 -0000 edwin 2003/03/30 17:31:09 PST FreeBSD ports repository Modified files: misc/translate Makefile distinfo Log: Update port: [Maintainer Update]: misc/translate PR: ports/48875 Submitted by: Michael L. Hostbaek Revision Changes Path 1.4 +5 -3 ports/misc/translate/Makefile 1.2 +1 -1 ports/misc/translate/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 17:32:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBC1237B401; Sun, 30 Mar 2003 17:32:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89DDE43F3F; Sun, 30 Mar 2003 17:32:17 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V1WH0U095678; Sun, 30 Mar 2003 17:32:17 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V1WHmK095677; Sun, 30 Mar 2003 17:32:17 -0800 (PST) Message-Id: <200303310132.h2V1WHmK095677@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 17:32:17 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/libgmp4 Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 01:32:20 -0000 edwin 2003/03/30 17:32:17 PST FreeBSD ports repository Modified files: math/libgmp4 Makefile pkg-plist Log: [Maintainer Patch] Port: math/libgmp4 (install a single info file) PR: ports/48866 Submitted by: Alex Dupre Revision Changes Path 1.15 +5 -1 ports/math/libgmp4/Makefile 1.9 +1 -10 ports/math/libgmp4/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 17:41:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15FC437B401; Sun, 30 Mar 2003 17:41:45 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 574E043FBF; Sun, 30 Mar 2003 17:41:44 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.8/8.12.7) with ESMTP id h2V1fhAm034769; Sun, 30 Mar 2003 17:41:43 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.8/8.12.8/Submit) id h2V1fhbq034762; Sun, 30 Mar 2003 17:41:43 -0800 (PST) Date: Sun, 30 Mar 2003 17:41:43 -0800 From: "David O'Brien" To: Dirk Meyer Message-ID: <20030331014143.GB26635@dragon.nuxi.com> References: <200303310112.h2V1CHDN093731@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200303310112.h2V1CHDN093731@repoman.freebsd.org> User-Agent: Mutt/1.4i 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 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/lang/gcc32 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 01:41:48 -0000 On Sun, Mar 30, 2003 at 05:12:17PM -0800, Dirk Meyer wrote: > dinoex 2003/03/30 17:12:17 PST > > FreeBSD ports repository > > Modified files: > lang/gcc32 Makefile > Log: > LATEST_LINK can now be overwritten by the slave port. > added ${PKGNAMESUFFIX} to LATEST_LINK, so it differs when set. > Approved by: gerald > > Revision Changes Path > 1.146 +1 -1 ports/lang/gcc32/Makefile > http://cvsweb.freebsd.org/ports/lang/gcc32/Makefile.diff?r1=1.145&r2=1.146 COMMENT also needs this treatment. From owner-cvs-all@FreeBSD.ORG Sun Mar 30 17:45:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D265C37B401; Sun, 30 Mar 2003 17:45:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70AC843F3F; Sun, 30 Mar 2003 17:45:45 -0800 (PST) (envelope-from max@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V1jj0U096547; Sun, 30 Mar 2003 17:45:45 -0800 (PST) (envelope-from max@repoman.freebsd.org) Received: (from max@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V1jjRZ096546; Sun, 30 Mar 2003 17:45:45 -0800 (PST) Message-Id: <200303310145.h2V1jjRZ096546@repoman.freebsd.org> From: Masafumi Max NAKANE Date: Sun, 30 Mar 2003 17:45:45 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mhonarc Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 01:45:49 -0000 max 2003/03/30 17:45:45 PST FreeBSD ports repository Modified files: www/mhonarc Makefile distinfo pkg-plist Log: Upgrade to 2.6.2. Revision Changes Path 1.32 +1 -1 ports/www/mhonarc/Makefile 1.17 +1 -1 ports/www/mhonarc/distinfo 1.13 +1 -0 ports/www/mhonarc/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 17:52:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFCE537B401; Sun, 30 Mar 2003 17:52:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F46143F75; Sun, 30 Mar 2003 17:52:23 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V1qN0U097095; Sun, 30 Mar 2003 17:52:23 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V1qMZK097094; Sun, 30 Mar 2003 17:52:22 -0800 (PST) Message-Id: <200303310152.h2V1qMZK097094@repoman.freebsd.org> From: Dirk Meyer Date: Sun, 30 Mar 2003 17:52:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/gnustep Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 01:52:25 -0000 dinoex 2003/03/30 17:52:22 PST FreeBSD ports repository Modified files: devel/gnustep Makefile Log: - Cleanup Revision Changes Path 1.40 +8 -8 ports/devel/gnustep/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 18:07:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95D8F37B401; Sun, 30 Mar 2003 18:07:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3319943FA3; Sun, 30 Mar 2003 18:07:23 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V27N0U098918; Sun, 30 Mar 2003 18:07:23 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V27MIp098917; Sun, 30 Mar 2003 18:07:22 -0800 (PST) Message-Id: <200303310207.h2V27MIp098917@repoman.freebsd.org> From: Yen-Ming Lee Date: Sun, 30 Mar 2003 18:07:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/bogofilter Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 02:07:25 -0000 leeym 2003/03/30 18:07:22 PST FreeBSD ports repository Modified files: mail/bogofilter Makefile distinfo Log: Update to upstream bugfix release 0.11.1.5: 2003-03-28 * Bogofilter now frees all memory that it allocates. * FAQ reorganized and info added on asian spam, the format of verbose output, and using SpamAssassin to train bogofilter. * Fixed processing of '-o' option. PR: 50439 Submitted by: Matthias Andree Revision Changes Path 1.12 +1 -1 ports/mail/bogofilter/Makefile 1.10 +1 -1 ports/mail/bogofilter/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 18:08:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F60A37B407; Sun, 30 Mar 2003 18:08:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97DC943FB1; Sun, 30 Mar 2003 18:08:23 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V28N0U098978; Sun, 30 Mar 2003 18:08:23 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V28Npl098977; Sun, 30 Mar 2003 18:08:23 -0800 (PST) Message-Id: <200303310208.h2V28Npl098977@repoman.freebsd.org> From: "David E. O'Brien" Date: Sun, 30 Mar 2003 18:08:23 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/ncftp3 Makefile ports/ftp/ncftp3/files patch-getline.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 02:08:29 -0000 obrien 2003/03/30 18:08:23 PST FreeBSD ports repository Modified files: ftp/ncftp3 Makefile ftp/ncftp3/files patch-getline.c Log: Work around bug where NcFTP3 will exit unexpectedly when it gets multibyte (such as big5) characters: ncftp3 some.ftp.site and execute "ls .txt" PR: 50458 Submitted by: Yen-Ming Lee Revision Changes Path 1.96 +1 -1 ports/ftp/ncftp3/Makefile 1.2 +9 -0 ports/ftp/ncftp3/files/patch-getline.c From owner-cvs-all@FreeBSD.ORG Sun Mar 30 19:55:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E16337B401; Sun, 30 Mar 2003 19:55:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADE0E43FA3; Sun, 30 Mar 2003 19:55:22 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V3tM0U006933; Sun, 30 Mar 2003 19:55:22 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V3tM7m006932; Sun, 30 Mar 2003 19:55:22 -0800 (PST) Message-Id: <200303310355.h2V3tM7m006932@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 30 Mar 2003 19:55:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/pyrex Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 03:55:27 -0000 perky 2003/03/30 19:55:22 PST FreeBSD ports repository Modified files: devel/pyrex Makefile distinfo pkg-plist Log: Update to 0.6 Revision Changes Path 1.11 +3 -2 ports/devel/pyrex/Makefile 1.9 +1 -1 ports/devel/pyrex/distinfo 1.7 +10 -0 ports/devel/pyrex/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 19:58:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53BB437B401; Sun, 30 Mar 2003 19:58:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E69C343F75; Sun, 30 Mar 2003 19:58:14 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V3wE0U007045; Sun, 30 Mar 2003 19:58:14 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V3wEnP007044; Sun, 30 Mar 2003 19:58:14 -0800 (PST) Message-Id: <200303310358.h2V3wEnP007044@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 30 Mar 2003 19:58:14 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/scons Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 03:58:16 -0000 perky 2003/03/30 19:58:14 PST FreeBSD ports repository Modified files: devel/scons Makefile distinfo pkg-plist Log: Update to 0.12 Revision Changes Path 1.11 +1 -1 ports/devel/scons/Makefile 1.8 +1 -1 ports/devel/scons/distinfo 1.7 +21 -0 ports/devel/scons/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 20:18:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B0A037B401; Sun, 30 Mar 2003 20:18:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC89C43F85; Sun, 30 Mar 2003 20:18:46 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V4Ik0U009330; Sun, 30 Mar 2003 20:18:46 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V4Ikri009329; Sun, 30 Mar 2003 20:18:46 -0800 (PST) Message-Id: <200303310418.h2V4Ikri009329@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 30 Mar 2003 20:18:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/py-graphviz Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 04:18:48 -0000 perky 2003/03/30 20:18:46 PST FreeBSD ports repository Modified files: graphics/py-graphviz Makefile distinfo Log: Update based graphviz's version to fix a checksum failure Spotted by: kris Revision Changes Path 1.6 +6 -5 ports/graphics/py-graphviz/Makefile 1.2 +3 -3 ports/graphics/py-graphviz/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 20:29:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7E0D37B401; Sun, 30 Mar 2003 20:29:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4752543F75; Sun, 30 Mar 2003 20:29:24 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V4TO0U010107; Sun, 30 Mar 2003 20:29:24 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V4TOgg010106; Sun, 30 Mar 2003 20:29:24 -0800 (PST) Message-Id: <200303310429.h2V4TOgg010106@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 30 Mar 2003 20:29:23 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/py-pcap Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 04:29:26 -0000 perky 2003/03/30 20:29:23 PST FreeBSD ports repository Modified files: net/py-pcap Makefile Log: Change the `grep` test to an OSVERSION test. Spotted by: kris Revision Changes Path 1.10 +6 -4 ports/net/py-pcap/Makefile From owner-cvs-all@FreeBSD.ORG Sun Mar 30 20:34:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A30E337B401; Sun, 30 Mar 2003 20:34:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40C5343F93; Sun, 30 Mar 2003 20:34:29 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V4YT0U010593; Sun, 30 Mar 2003 20:34:29 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V4YSlH010592; Sun, 30 Mar 2003 20:34:28 -0800 (PST) Message-Id: <200303310434.h2V4YSlH010592@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 30 Mar 2003 20:34:28 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/comms/py-serial Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 04:34:31 -0000 perky 2003/03/30 20:34:28 PST FreeBSD ports repository Modified files: comms/py-serial Makefile distinfo Log: Update to 1.19 Revision Changes Path 1.10 +1 -1 ports/comms/py-serial/Makefile 1.7 +1 -1 ports/comms/py-serial/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 20:48:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C34937B401; Sun, 30 Mar 2003 20:48:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD5D643FBD; Sun, 30 Mar 2003 20:48:22 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V4mM0U016681; Sun, 30 Mar 2003 20:48:22 -0800 (PST) (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V4mMOM016680; Sun, 30 Mar 2003 20:48:22 -0800 (PST) Message-Id: <200303310448.h2V4mMOM016680@repoman.freebsd.org> From: Kevin Lo Date: Sun, 30 Mar 2003 20:48:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/p5-Math-FixedPrecision Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 04:48:24 -0000 kevlo 2003/03/30 20:48:22 PST FreeBSD ports repository Modified files: math/p5-Math-FixedPrecision Makefile distinfo Log: - update to 0.21 - remove MANPREFIX - use PERL_LEVEL instead of OSVERSION to determine perl version PR: 50450 Submitted by: Erwin Lansing Revision Changes Path 1.8 +2 -5 ports/math/p5-Math-FixedPrecision/Makefile 1.4 +1 -1 ports/math/p5-Math-FixedPrecision/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 20:54:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2F1237B401; Sun, 30 Mar 2003 20:54:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F94943FBD; Sun, 30 Mar 2003 20:54:01 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V4s10U017278; Sun, 30 Mar 2003 20:54:01 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V4s1L1017277; Sun, 30 Mar 2003 20:54:01 -0800 (PST) Message-Id: <200303310454.h2V4s1L1017277@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 30 Mar 2003 20:54:01 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/rhtvision Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 04:54:03 -0000 perky 2003/03/30 20:54:01 PST FreeBSD ports repository Modified files: devel/rhtvision Makefile distinfo pkg-plist Log: Update to 2.0.1 Revision Changes Path 1.8 +4 -2 ports/devel/rhtvision/Makefile 1.3 +1 -1 ports/devel/rhtvision/distinfo 1.5 +2 -0 ports/devel/rhtvision/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 20:57:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BA4A37B401; Sun, 30 Mar 2003 20:57:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C50343FA3; Sun, 30 Mar 2003 20:57:02 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V4v20U017440; Sun, 30 Mar 2003 20:57:02 -0800 (PST) (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V4v2fW017439; Sun, 30 Mar 2003 20:57:02 -0800 (PST) Message-Id: <200303310457.h2V4v2fW017439@repoman.freebsd.org> From: Kevin Lo Date: Sun, 30 Mar 2003 20:57:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/fwlogwatch Makefile distinfo ports/security/fwlogwatch/files patch-Makefile patch-main.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 04:57:04 -0000 kevlo 2003/03/30 20:57:02 PST FreeBSD ports repository Modified files: security/fwlogwatch Makefile distinfo security/fwlogwatch/files patch-Makefile patch-main.h Log: Update to 0.9.1 PR: 50468 Submitted by: MAINTAINER Revision Changes Path 1.12 +1 -1 ports/security/fwlogwatch/Makefile 1.4 +1 -1 ports/security/fwlogwatch/distinfo 1.6 +5 -5 ports/security/fwlogwatch/files/patch-Makefile 1.2 +3 -2 ports/security/fwlogwatch/files/patch-main.h From owner-cvs-all@FreeBSD.ORG Sun Mar 30 21:05:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6B6037B401; Sun, 30 Mar 2003 21:05:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C50343F3F; Sun, 30 Mar 2003 21:05:05 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V5550U018984; Sun, 30 Mar 2003 21:05:05 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V555mA018983; Sun, 30 Mar 2003 21:05:05 -0800 (PST) Message-Id: <200303310505.h2V555mA018983@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 30 Mar 2003 21:05:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/xosd Makefile distinfo pkg-plistpatch-xosd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 05:05:07 -0000 perky 2003/03/30 21:05:05 PST FreeBSD ports repository Modified files: misc/xosd Makefile distinfo pkg-plist misc/xosd/files patch-src-xmms_plugin-Makefile.am patch-xosd.c Log: Update to 2.1.3 Revision Changes Path 1.18 +1 -1 ports/misc/xosd/Makefile 1.8 +1 -1 ports/misc/xosd/distinfo 1.3 +4 -4 ports/misc/xosd/files/patch-src-xmms_plugin-Makefile.am 1.4 +9 -18 ports/misc/xosd/files/patch-xosd.c 1.8 +1 -3 ports/misc/xosd/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 21:14:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0918C37B401; Sun, 30 Mar 2003 21:14:02 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30A9B43F75; Sun, 30 Mar 2003 21:14:00 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id PAA18977; Mon, 31 Mar 2003 15:13:44 +1000 Date: Mon, 31 Mar 2003 15:13:43 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Nate Lawson In-Reply-To: Message-ID: <20030331140740.R17363@gamplex.bde.org> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: Poul-Henning Kamp cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/fdisk fdisk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 05:14:04 -0000 On Sun, 30 Mar 2003, Nate Lawson wrote: > On Sat, 29 Mar 2003, Poul-Henning Kamp wrote: > > In message , Nate Lawson writ > > es: > > >On Sat, 29 Mar 2003, Poul-Henning Kamp wrote: > > >> Modified files: > > >> sbin/fdisk fdisk.c > > >> Log: > > >> Use default geometry in case the device doesn't provide one: > > >> 512 for sectorsize. > > >> 63 for sectors. > > >> 255 for heads. > > >> This will mostly show up on MD(4) devices. > > > > > >Won't this be a problem for small devices or for int 13 booting? That's > > >why we use 64 heads, 32 sectors for scsi devices < 1 GB. > > > > You can specify any number you like to fdisk using all the usual > > ways of doing so, and you should if you want to copy the image to > > some other media afterwards. > > Sure. My concern was for devices like USB flash disks where your defaults > may not be appropriate and the info IS being written to media. Would you > be willing to put in a < 1GB size check on the media to use more > appropriate heads/sector values? This is more broken than I thought. fdisk now defaults to a wrong geometry in all cases where the BIOS geometry differs from the firmware geometry. The default geometry was H=1/S=1 or whatever is returned by DIOCGDINFO until this was broken in -current. This is still non-broken in RELENG_4. H=1/S=1 doesn't cause any serious problems and has the advantage that it is obviously a fake geometry. It should never occur for the usual case of fdisk on whole disk devices, but I see it a lot for fdisk on images of MBRs in regular files (since ioctls cannot work on regular files). This geometry is essentially just a hack to avoid the division by zero bugs that were implemented in rev.1.65, since the label was always available. Normally (in RELENG_4), fdisk is run on a whole disk device and DIOCINFO returns a geometry guessed from the MBR. The firmware geometry is only returned when there doesn't seem to be an MBR or all partition entries are empty. The firmware geometry is rarely what fdisk needs to know since it rarely matches what the partition table uses or what the BIOS would use for the first nonempty partition. All of my non-removable hard disks (except old (small) offline ones) have BIOS geometry H=255/S=63, but the firmware geometry is H=64/S=16 for all the newer/larger (ATA), so fdisk now produces wrong geometries for most of my disks. The differences between working and broken fdisk output are: %%% --- fdisk.RELENG_4.out Mon Mar 31 14:55:19 2003 +++ fdisk.current.out Mon Mar 31 14:28:13 2003 @@ -1,9 +1,9 @@ ******* Working on device /dev/ad0 ******* parameters extracted from in-core disklabel are: -cylinders=3737 heads=255 sectors/track=63 (16065 blks/cyl) +cylinders=59560 heads=16 sectors/track=63 (1008 blks/cyl) Figures below won't work with BIOS for partitions not in cyl 1 parameters to be used for BIOS calculations are: -cylinders=3737 heads=255 sectors/track=63 (16065 blks/cyl) +cylinders=59560 heads=16 sectors/track=63 (1008 blks/cyl) Media sector size is 512 %%% The disk is the same in both cases. The full output for the non-broken case is: fdisk.RELENG_4.out: %%% ******* Working on device /dev/ad0 ******* parameters extracted from in-core disklabel are: cylinders=3737 heads=255 sectors/track=63 (16065 blks/cyl) Figures below won't work with BIOS for partitions not in cyl 1 parameters to be used for BIOS calculations are: cylinders=3737 heads=255 sectors/track=63 (16065 blks/cyl) Media sector size is 512 Warning: BIOS sector numbering starts with sector 1 Information from DOS bootblock is: The data for partition 1 is: The data for partition 2 is: sysid 165 (0xa5),(FreeBSD/NetBSD/386BSD) start 2056320, size 57512700 (28082 Meg), flag 80 (active) beg: cyl 128/ head 0/ sector 1; end: cyl 635/ head 254/ sector 63 The data for partition 3 is: The data for partition 4 is: %%% This shows that the disk has a single partition set up with a geometry of H=255/S=63. Bruce From owner-cvs-all@FreeBSD.ORG Sun Mar 30 21:19:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B38A137B401; Sun, 30 Mar 2003 21:19:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 522A343F85; Sun, 30 Mar 2003 21:19:22 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V5JM0U019783; Sun, 30 Mar 2003 21:19:22 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V5JMbq019782; Sun, 30 Mar 2003 21:19:22 -0800 (PST) Message-Id: <200303310519.h2V5JMbq019782@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sun, 30 Mar 2003 21:19:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/superlu Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 05:19:24 -0000 ijliao 2003/03/30 21:19:22 PST FreeBSD ports repository Modified files: math/superlu Makefile distinfo Log: upgrade to 2.0.20030221 Revision Changes Path 1.17 +1 -1 ports/math/superlu/Makefile 1.11 +1 -1 ports/math/superlu/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 21:23:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28C5637B401; Sun, 30 Mar 2003 21:23:06 -0800 (PST) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFA5643F85; Sun, 30 Mar 2003 21:23:04 -0800 (PST) (envelope-from jake@k6.locore.ca) Received: from k6.locore.ca (localhost.locore.ca [127.0.0.1]) by k6.locore.ca (8.12.8/8.12.8) with ESMTP id h2V5TTxS035664; Mon, 31 Mar 2003 00:29:29 -0500 (EST) (envelope-from jake@k6.locore.ca) Received: (from jake@localhost) by k6.locore.ca (8.12.8/8.12.8/Submit) id h2V5TT8b035663; Mon, 31 Mar 2003 00:29:29 -0500 (EST) Date: Mon, 31 Mar 2003 00:29:28 -0500 From: Jake Burkholder To: Mike Silbersack Message-ID: <20030331052928.GC32298@locore.ca> References: <200303300524.h2U5Ora7061852@repoman.freebsd.org> <20030330061301.GC21973@locore.ca> <20030330070723.GE21973@locore.ca> <20030330012410.I3292@odysseus.silby.com> <20030330201113.GA32298@locore.ca> <20030330152920.D6586@odysseus.silby.com> <20030330232030.GB32298@locore.ca> <20030330172835.O7123@odysseus.silby.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030330172835.O7123@odysseus.silby.com> User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: HEADS UP Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 bios.c locore.s machdep.c mpboot.s pmap.c vm86bios.s vm_machdep.c src/sys/i386/include _types.h bus_at386.h param.h pmap. X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 05:23:08 -0000 Apparently, On Sun, Mar 30, 2003 at 05:30:37PM -0600, Mike Silbersack said words to the effect of; > > On Sun, 30 Mar 2003, Jake Burkholder wrote: > > > I'm not sure I understand the question, you mean is it possible to use > > separate address spaces for the kernel and userland, giving a full 4G each? > > Yes it is possible, but it is not practical. It would be prohibitively > > expensive and ugly. For example you would need to use task gates for > > system calls, and copyin or copyout would need to look up the user pages > > and map them temporarily, something like that. > > > > Keep in mind that the restriction is what can be mapped. It is still > > possible to keep around huge amounts of memory as long as its not all > > mapped all the time. For example many device drivers just do dma and > > don't need a virtual mapping for every chunk of memory they see, avoiding > > mapping and unmapping it would save a lot of KVA. > > > > Jake > > Yes, 4G/4G is what I was asking about. The reason I'm confused is that I > don't understand how copies from the upper 2G of a 6G box work any better > than copies from overlapping user memory with < 4G addresses. Are we > using 64 pointers throughout the kernel while in PAE mode? (I didn't > think i386 supported that, which is why I'm asking.) PAE makes the page table entries bigger so they can hold 64 bit physical addresses, but it does not give you more of them, pointers are still 32bit. On x86 the kernel is mapped into each process' address space, which is why it takes a chunk of it, and this is how copyin and copyout work, you can just access the current process' address space directly. All copyin and copyout do on x86 is handle page faults due to unmapped user memory, which should not normally happen in kernel mode. If they were separate this would be much more complicated, and entering the kernel would require switching address space, instead of just increasing the priviledge level. Jake From owner-cvs-all@FreeBSD.ORG Sun Mar 30 21:26:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F091037B401; Sun, 30 Mar 2003 21:26:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D9F843FD7; Sun, 30 Mar 2003 21:26:06 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V5Q60U020329; Sun, 30 Mar 2003 21:26:06 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V5Q6j2020328; Sun, 30 Mar 2003 21:26:06 -0800 (PST) Message-Id: <200303310526.h2V5Q6j2020328@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 30 Mar 2003 21:26:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/py-snmp Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 05:26:10 -0000 perky 2003/03/30 21:26:06 PST FreeBSD ports repository Modified files: net/py-snmp Makefile distinfo pkg-plist Log: Update to 3.2.2 Revision Changes Path 1.10 +1 -1 ports/net/py-snmp/Makefile 1.7 +1 -1 ports/net/py-snmp/distinfo 1.4 +134 -40 ports/net/py-snmp/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 21:39:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2CF437B404; Sun, 30 Mar 2003 21:39:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC4DD43FA3; Sun, 30 Mar 2003 21:39:43 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V5dh0U021054; Sun, 30 Mar 2003 21:39:43 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V5dhD7021053; Sun, 30 Mar 2003 21:39:43 -0800 (PST) Message-Id: <200303310539.h2V5dhD7021053@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 30 Mar 2003 21:39:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/kmess Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 05:39:48 -0000 perky 2003/03/30 21:39:43 PST FreeBSD ports repository Modified files: net/kmess Makefile distinfo pkg-plist Log: Update to 1.1 Revision Changes Path 1.9 +2 -2 ports/net/kmess/Makefile 1.4 +1 -1 ports/net/kmess/distinfo 1.4 +31 -2 ports/net/kmess/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 21:53:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68BB637B401; Sun, 30 Mar 2003 21:53:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0848743F85; Sun, 30 Mar 2003 21:53:13 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V5rC0U022195; Sun, 30 Mar 2003 21:53:12 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V5rC4w022194; Sun, 30 Mar 2003 21:53:12 -0800 (PST) Message-Id: <200303310553.h2V5rC4w022194@repoman.freebsd.org> From: Dirk Meyer Date: Sun, 30 Mar 2003 21:53:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/gworkspace pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 05:53:14 -0000 dinoex 2003/03/30 21:53:12 PST FreeBSD ports repository Modified files: deskutils/gworkspace pkg-plist Log: - reapply patch that was lost during the update to 0.5 Revision Changes Path 1.2 +820 -1 ports/deskutils/gworkspace/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 22:25:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F9EC37B401; Sun, 30 Mar 2003 22:25:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 106B043F85; Sun, 30 Mar 2003 22:25:43 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V6Pg0U025107; Sun, 30 Mar 2003 22:25:42 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V6PgSR025106; Sun, 30 Mar 2003 22:25:42 -0800 (PST) Message-Id: <200303310625.h2V6PgSR025106@repoman.freebsd.org> From: Alan Cox Date: Sun, 30 Mar 2003 22:25:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 06:25:44 -0000 alc 2003/03/30 22:25:42 PST FreeBSD src repository Modified files: sys/kern uipc_syscalls.c Log: Recent changes to uipc_cow.c have eliminated the need for some sf_buf- related variables to be global. Make them either local to sf_buf_init() or static. Revision Changes Path 1.145 +3 -3 src/sys/kern/uipc_syscalls.c From owner-cvs-all@FreeBSD.ORG Sun Mar 30 22:31:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 401F937B401; Sun, 30 Mar 2003 22:31:51 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 341F943FA3; Sun, 30 Mar 2003 22:31:49 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id QAA30585; Mon, 31 Mar 2003 16:31:37 +1000 Date: Mon, 31 Mar 2003 16:31:36 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Peter Jeremy In-Reply-To: <20030328073513.GA20464@cirb503493.alcatel.com.au> Message-ID: <20030331151946.X17526@gamplex.bde.org> References: <20030327232742.GA80113@wantadilla.lemis.com> <20030328073513.GA20464@cirb503493.alcatel.com.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: src-committers@FreeBSD.org cc: Nate Lawson cc: Greg 'groggy' Lehey cc: cvs-src@FreeBSD.org cc: Mike Silbersack cc: cvs-all@FreeBSD.org Subject: Re: Checksum/copy (was: Re: cvs commit: src/sys/netinet ip_output.c) X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 06:31:54 -0000 On Fri, 28 Mar 2003, Peter Jeremy wrote: > On Fri, Mar 28, 2003 at 05:04:21PM +1100, Bruce Evans wrote: > >"i686" basically means "second generation Pentium" (PentiumPro/PII/Celeron) > >(later x86's are mostly handled better using CPU features instead of > >a 1-dimensional class number). Hand-"optimized" bzero's are especially > >pessimal for this class of CPU. > > That matches my memory of my test results as well. The increasing > clock multipliers mean that it doesn't matter how slow "rep stosl" is > in clock cycle terms - maim memory is always going to be slower. There are still some surprising differences (see attached timings for some examples), but I think they are more for how the code affects caches and write buffers. The exact behaviour is very machine-dependent so it is hard to optimize in general-purpose production code. > >Benefits from SSE for bzeroing and bcopying, if any, would probably > >come more from bypassing caches and/or not doing read-before-write > >(SSE instructions give control over this) than from operating on wider > >data. I'm dubious about practical benefits. Obviously it is not useful > >to bust the cache when bzeroing 8MB of data, but real programs and OS's > >mostly operate on smaller buffers. It is negatively useful not to put > >bzero'ed data in the (L[1-2]) cache if the data will be used soon, and > >generally hard to predict if it will be used soon. > > Unless Intel have fixed the P4 caches, you definitely don't want to > use the L1 cache for page sized bzero/bcopy. Athlons have many similarities to Celerons here. > Avoiding read-before-write should roughly double bzero speed and give > you about 50% speedup on bcopy - this should be worthwhile. Caching It actually gives a 66% speedop for bzero on my AthlonXP. For some reason, at least for very large buffers, read accesses through the cache can use only 1/2 of the memory bandwidth, and write accesses can use only 1/3 of it (and this is after tuning for bank organization -- I get a 33% speedup for the write benchmark and 0% for real work by including a bit for the bank number in the page color in a deteriministic way, and almost as much for including the bit in a random way). Using SSE instructions (mainly movntps) gives the full bandwidth for at least bzero for large buffers (3x better), but it reduces bandwidth for small already cached buffers (more than 3x worse): %%% Times on an AthlonXP-1600 overclocked by 146/133, with 1024MB of PC2700 memory and all memory timings tuned as low as possible (CAS2, but 2T cmds): 4K buffer (almost always cached): zero0: 5885206293 B/s (6959824 us) (stosl) zero1: 7842053086 B/s (5223122 us) (unroll 16) zero2: 7049051312 B/s (5810711 us) (unroll 16 preallocate) zero3: 9377720907 B/s (4367799 us) (unroll 32) zero4: 7803040290 B/s (5249236 us) (unroll 32 preallocate) zero5: 9802682719 B/s (4178448 us) (unroll 64) zero6: 8432350664 B/s (4857483 us) (unroll 64 preallocate) zero7: 5957318200 B/s (6875577 us) (fstl) zero8: 3007928933 B/s (13617343 us) (movl) zero9: 4011348905 B/s (10211029 us) (unroll 8) zeroA: 5835984056 B/s (7018525 us) (generic_bzero) zeroB: 8334888325 B/s (4914283 us) (i486_bzero) zeroC: 2545022700 B/s (16094159 us) (i586_bzero) zeroD: 7650723550 B/s (5353742 us) (i686_pagezero) zeroE: 5755535593 B/s (7116627 us) (bzero (stosl)) zeroF: 2282741753 B/s (17943335 us) (movntps) movntps is the SSE method. It's significantly slower for this case. 400MB buffer (never cached): zero0: 714045391 B/s ( 573633 us) (stosl) zero1: 705180737 B/s ( 580844 us) (unroll 16) zero2: 670897998 B/s ( 610525 us) (unroll 16 preallocate) zero3: 690538809 B/s ( 593160 us) (unroll 32) zero4: 661854647 B/s ( 618867 us) (unroll 32 preallocate) zero5: 670525682 B/s ( 610864 us) (unroll 64) zero6: 663334877 B/s ( 617486 us) (unroll 64 preallocate) zero7: 781025057 B/s ( 524439 us) (fstl) zero8: 608491547 B/s ( 673140 us) (movl) zero9: 696489665 B/s ( 588092 us) (unroll 8) zeroA: 713958268 B/s ( 573703 us) (generic_bzero) zeroB: 689875870 B/s ( 593730 us) (i486_bzero) zeroC: 721477338 B/s ( 567724 us) (i586_bzero) zeroD: 746453616 B/s ( 548728 us) (i686_pagezero) zeroE: 714016763 B/s ( 573656 us) (bzero (stosl)) zeroF: 2240602162 B/s ( 182808 us) (movntps) Now movntps is about 3 times faster than everything else. This is the first time I've seen a magic number near 2100 for memory named with a magic number near 2100. This machine used to use PC2100 with the same timing, but it developed errors (burnt out?). Now it has PC2700 memory so it is within spec an can reasonably be expected to run a little faster than PC2100 should. %%% > is more dubious - placing a slow-zeroed page in L1 cache is very > probably a waste of time. At least part of an on-demand zeroed page > is likely to be used in the near future - but probably not all of it. > Copying is even harder to predict - at least one word of a COW page is > going to be used immediately, but bcopy() won't be able to tell which > word. For makeworld, using movntps in i686_pagezero() gives a whole 14 seconds (0.7%) improvement: %%% Before: bde-current with ... + KSEIII + idlezero_enable + pmap - even coloring async mounted /c my-Makefile after perl removal and new gcc and ufs2 and aout utilities removal with 2 fairly new drives 1532 MHz AthlonXP 1600 1024MB make catches SIGCHLD i686_bzero not used -------------------------------------------------------------- >>> elf make world completed on Mon Mar 31 02:10:47 EST 2003 (started on Mon Mar 31 01:38:24 EST 2003) -------------------------------------------------------------- 1943.14 real 1575.25 user 218.88 sys 40204 maximum resident set size 2166 average shared memory size 1988 average unshared data size 128 average unshared stack size 13039568 page reclaims 11639 page faults 0 swaps 20008 block input operations 6265 block output operations 0 messages sent 0 messages received 33037 signals received 207588 voluntary context switches 518358 involuntary context switches After: bde-current with ... + KSEIII + idlezero_enable + pmap - even coloring async mounted /c my-Makefile after perl removal and new gcc and ufs2 and aout utilities removal with 2 fairly new drives 1532 MHz AthlonXP 1600 1024MB make catches SIGCHLD i686_bzero used and replaced by one that uses SSE (movntps) -------------------------------------------------------------- >>> elf make world completed on Mon Mar 31 02:46:43 EST 2003 (started on Mon Mar 31 02:14:35 EST 2003) -------------------------------------------------------------- 1929.02 real 1576.67 user 205.30 sys 40204 maximum resident set size 2166 average shared memory size 1990 average unshared data size 128 average unshared stack size 13039590 page reclaims 11645 page faults 0 swaps 20014 block input operations 6416 block output operations 0 messages sent 0 messages received 33037 signals received 208376 voluntary context switches 512820 involuntary context switches %%% Whether 14 seconds is a lot depends on your viewpoint. It is a lot out of the kernel time of 218 seconds considering that only one function was optimized and some of the optimization doesn't affect the real time since it is done at idle priority in pagezero. pagezero's time was reduced from 57 seconds to 28 seconds. Code for the above (no warranties; only works for !SMP and I didn't check that the FP context switching is safe...): %%% Index: support.s =================================================================== RCS file: /home/ncvs/src/sys/i386/i386/support.s,v retrieving revision 1.93 diff -u -2 -r1.93 support.s --- support.s 22 Sep 2002 04:45:20 -0000 1.93 +++ support.s 31 Mar 2003 02:37:02 -0000 @@ -66,4 +68,9 @@ .space 3 #endif +#define HACKISH_SSE_PAGEZERO +#ifdef HACKISH_SSE_PAGEZERO +zero: + .long 0, 0, 0, 0 +#endif .text @@ -333,70 +342,101 @@ movl %edx,%edi xorl %eax,%eax - shrl $2,%ecx cld + shrl $2,%ecx rep stosl movl 12(%esp),%ecx andl $3,%ecx - jne 1f - popl %edi - ret - -1: + je 1f rep stosb +1: popl %edi ret -#endif /* I586_CPU && defined(DEV_NPX) */ +#endif /* I586_CPU && DEV_NPX */ +#ifdef I686_CPU ENTRY(i686_pagezero) - pushl %edi - pushl %ebx + movl 4(%esp),%edx + movl $PAGE_SIZE, %ecx - movl 12(%esp), %edi - movl $1024, %ecx - cld +#ifdef HACKISH_SSE_PAGEZERO + pushfl + cli + movl %cr0,%eax + clts + subl $16,%esp + movups %xmm0,(%esp) + movups zero,%xmm0 + ALIGN_TEXT +1: + movntps %xmm0,(%edx) + movntps %xmm0,16(%edx) + movntps %xmm0,32(%edx) + movntps %xmm0,48(%edx) + addl $64,%edx + subl $64,%ecx + jne 1b + movups (%esp),%xmm0 + addl $16,%esp + movl %eax,%cr0 + popfl + ret +2: +#endif /* HACKISH_SSE_PAGEZERO */ ALIGN_TEXT 1: - xorl %eax, %eax - repe - scasl - jnz 2f + movl (%edx), %eax + orl 4(%edx), %eax + orl 8(%edx), %eax + orl 12(%edx), %eax + orl 16(%edx), %eax + orl 20(%edx), %eax + orl 24(%edx), %eax + orl 28(%edx), %eax + jne 2f + movl 32(%edx), %eax + orl 36(%edx), %eax + orl 40(%edx), %eax + orl 44(%edx), %eax + orl 48(%edx), %eax + orl 52(%edx), %eax + orl 56(%edx), %eax + orl 60(%edx), %eax + jne 3f + + addl $64, %edx + subl $64, %ecx + jne 1b - popl %ebx - popl %edi ret ALIGN_TEXT - 2: - incl %ecx - subl $4, %edi - - movl %ecx, %edx - cmpl $16, %ecx - - jge 3f - - movl %edi, %ebx - andl $0x3f, %ebx - shrl %ebx - shrl %ebx - movl $16, %ecx - subl %ebx, %ecx - + movl $0, (%edx) + movl $0, 4(%edx) + movl $0, 8(%edx) + movl $0, 12(%edx) + movl $0, 16(%edx) + movl $0, 20(%edx) + movl $0, 24(%edx) + movl $0, 28(%edx) 3: - subl %ecx, %edx - rep - stosl - - movl %edx, %ecx - testl %edx, %edx - jnz 1b + movl $0, 32(%edx) + movl $0, 36(%edx) + movl $0, 40(%edx) + movl $0, 44(%edx) + movl $0, 48(%edx) + movl $0, 52(%edx) + movl $0, 56(%edx) + movl $0, 60(%edx) + + addl $64, %edx + subl $64, %ecx + jne 1b - popl %ebx - popl %edi ret +#endif /* I686_CPU */ /* fillw(pat, base, cnt) */ %%% > I don't know how much control SSE gives you over caching - is it just > cache/no-cache, or can you control L1+L2/L2-only/none? In the latter > case, telling bzero and bcopy destination to use L2-only is probably a > reasonable compromise. The bcopy source should probably not evict > cache data - if data is cached, use it, otherwise fetch from main > memory and bypass caches. There seems to be control in individual instructions for reads, but only a complete bypass for writes (movntps from an SSE register to memory). Writing can still be tuned with explicit reads or prefetches after writes. I've only looked briefly at 3-year-old Intel manuals. > Finally, how many different bcopy/bzero variants to we want? A I don't want many :-). Bruce From owner-cvs-all@FreeBSD.ORG Sun Mar 30 22:34:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36D6A37B401; Sun, 30 Mar 2003 22:34:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB24B43FAF; Sun, 30 Mar 2003 22:34:36 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V6Ya0U025721; Sun, 30 Mar 2003 22:34:36 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V6YaYW025720; Sun, 30 Mar 2003 22:34:36 -0800 (PST) Message-Id: <200303310634.h2V6YaYW025720@repoman.freebsd.org> From: Akinori MUSHA Date: Sun, 30 Mar 2003 22:34:36 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/linux-phoenix Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 06:34:38 -0000 knu 2003/03/30 22:34:36 PST FreeBSD ports repository Modified files: www/linux-phoenix Makefile distinfo Log: Update to 0.5. PR: ports/48075 Submitted by: Aaron Voisine (MAINTAINER) Revision Changes Path 1.4 +2 -2 ports/www/linux-phoenix/Makefile 1.3 +1 -1 ports/www/linux-phoenix/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 23:04:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73ACF37B401; Sun, 30 Mar 2003 23:04:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E34643FA3; Sun, 30 Mar 2003 23:04:44 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V74h0U028683; Sun, 30 Mar 2003 23:04:43 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V74hqB028682; Sun, 30 Mar 2003 23:04:43 -0800 (PST) Message-Id: <200303310704.h2V74hqB028682@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 23:04:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/pdflib Makefile pkg-plist ports/print/pdflib/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 07:04:46 -0000 edwin 2003/03/30 23:04:43 PST FreeBSD ports repository Modified files: print/pdflib Makefile pkg-plist print/pdflib/files patch-configure Log: [Maintainer Patch] print/pdflib (USE_LIBTOOL, WITH_PERL, install fonts) (really this time) PR: ports/48961 Submitted by: Alex Dupre Revision Changes Path 1.23 +17 -2 ports/print/pdflib/Makefile 1.4 +10 -2 ports/print/pdflib/files/patch-configure 1.8 +51 -6 ports/print/pdflib/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 23:09:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC9EA37B401; Sun, 30 Mar 2003 23:09:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B8B043F93; Sun, 30 Mar 2003 23:09:27 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V79R0U028861; Sun, 30 Mar 2003 23:09:27 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V79RSV028860; Sun, 30 Mar 2003 23:09:27 -0800 (PST) Message-Id: <200303310709.h2V79RSV028860@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 23:09:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-HTML-Mason Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 07:09:29 -0000 edwin 2003/03/30 23:09:27 PST FreeBSD ports repository Modified files: www/p5-HTML-Mason Makefile distinfo Log: Update port www/p5-HTML-Mason to latest 1.19 version PR: ports/48997 Submitted by: Denis Shaposhnikov Revision Changes Path 1.33 +1 -1 ports/www/p5-HTML-Mason/Makefile 1.20 +1 -1 ports/www/p5-HTML-Mason/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 23:12:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BA3637B401; Sun, 30 Mar 2003 23:12:52 -0800 (PST) Received: from cirb503493.alcatel.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20DF643FCB; Sun, 30 Mar 2003 23:12:50 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1])h2V7ClM2027628; Mon, 31 Mar 2003 17:12:48 +1000 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.8/8.12.8/Submit) id h2V7CdeC027627; Mon, 31 Mar 2003 17:12:39 +1000 (EST) Date: Mon, 31 Mar 2003 17:12:39 +1000 From: Peter Jeremy To: Jake Burkholder Message-ID: <20030331071239.GA27585@cirb503493.alcatel.com.au> References: <200303300524.h2U5Ora7061852@repoman.freebsd.org> <20030330061301.GC21973@locore.ca> <20030330070723.GE21973@locore.ca> <20030330012410.I3292@odysseus.silby.com> <20030330201113.GA32298@locore.ca> <20030330152920.D6586@odysseus.silby.com> <20030330232030.GB32298@locore.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030330232030.GB32298@locore.ca> User-Agent: Mutt/1.4.1i cc: cvs-src@freebsd.org cc: Mike Silbersack cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: HEADS UP Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 bios.c locore.s machdep.c mpboot.s pmap.c vm86bios.s vm_machdep.c src/sys/i386/include _types.h bus_at386.h param.h pmap. X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 07:12:53 -0000 On Sun, Mar 30, 2003 at 06:20:30PM -0500, Jake Burkholder wrote: >Apparently, On Sun, Mar 30, 2003 at 03:30:52PM -0600, > Mike Silbersack said words to the effect of; >> Is it practically possible with PAE and busdma'd drivers that such a >> configuration could work? > >I'm not sure I understand the question, you mean is it possible to use >separate address spaces for the kernel and userland, giving a full 4G each? >Yes it is possible, but it is not practical. Why do you say "not practical"? Unix spent most of its formative years with kernel and userland in separate address spaces. I don't think the code exists in 4BSD but it's definitely still functional in 2BSD (which is under a BSD license now-a-days). > It would be prohibitively expensive and ugly. I'll accept "ugly" and "expensive". The "prohibitively" is more of a value judgement. Currently FreeBSD needs to trade KVA against UVA for large RAM configurations. If you have an application that needs lots of KVA and lots of UVA then FreeBSD on x86 isn't currently an option. Wearing the overheads on system calls, copyin and copyout may be cheaper than the alternatives. Peter From owner-cvs-all@FreeBSD.ORG Sun Mar 30 23:24:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86D1337B401; Sun, 30 Mar 2003 23:24:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2545A43FA3; Sun, 30 Mar 2003 23:24:43 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V7Og0U030041; Sun, 30 Mar 2003 23:24:42 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V7OgQ8030040; Sun, 30 Mar 2003 23:24:42 -0800 (PST) Message-Id: <200303310724.h2V7OgQ8030040@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 23:24:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/irc/tr-ircd Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 07:24:45 -0000 edwin 2003/03/30 23:24:42 PST FreeBSD ports repository Modified files: irc/tr-ircd Makefile distinfo Log: [Maintainer Update] irc/tr-ircd from 5.0.3 to 5.0.9 release. PR: ports/48972 Submitted by: Alex Dupre Revision Changes Path 1.6 +1 -1 ports/irc/tr-ircd/Makefile 1.4 +1 -1 ports/irc/tr-ircd/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 23:34:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2EB937B401; Sun, 30 Mar 2003 23:34:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C20C43FA3; Sun, 30 Mar 2003 23:34:44 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V7Yi0U030827; Sun, 30 Mar 2003 23:34:44 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V7YhUu030826; Sun, 30 Mar 2003 23:34:43 -0800 (PST) Message-Id: <200303310734.h2V7YhUu030826@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 23:34:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/irc/ircservices Makefile distinfo pkg-plist ports/irc/ircservices/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 07:34:47 -0000 edwin 2003/03/30 23:34:43 PST FreeBSD ports repository Modified files: irc/ircservices Makefile distinfo pkg-plist Added files: irc/ircservices/files patch-Makefile Log: [Maintainer Update] Port: irc/ircservices (bento fix) Update from 5.0.6 to 5.0.14. PR: ports/49022 Submitted by: Alex Dupre Revision Changes Path 1.5 +1 -1 ports/irc/ircservices/Makefile 1.3 +1 -1 ports/irc/ircservices/distinfo 1.1 +11 -0 ports/irc/ircservices/files/patch-Makefile (new) 1.2 +1 -0 ports/irc/ircservices/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Mar 30 23:51:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70B5537B401; Sun, 30 Mar 2003 23:51:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F05C43F93; Sun, 30 Mar 2003 23:51:11 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V7pA0U032065; Sun, 30 Mar 2003 23:51:10 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V7pAnI032064; Sun, 30 Mar 2003 23:51:10 -0800 (PST) Message-Id: <200303310751.h2V7pAnI032064@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 23:51:10 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/avidemux Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 07:51:16 -0000 edwin 2003/03/30 23:51:10 PST FreeBSD ports repository Modified files: graphics/avidemux Makefile distinfo Log: Update and fix for current to version 0.9.0.101 PR: ports/48938 Submitted by: Anish Mistry Revision Changes Path 1.10 +39 -10 ports/graphics/avidemux/Makefile 1.4 +1 -1 ports/graphics/avidemux/distinfo From owner-cvs-all@FreeBSD.ORG Sun Mar 30 23:55:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6767437B401; Sun, 30 Mar 2003 23:55:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0531243F3F; Sun, 30 Mar 2003 23:55:43 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V7tg0U032261; Sun, 30 Mar 2003 23:55:42 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V7tgCQ032260; Sun, 30 Mar 2003 23:55:42 -0800 (PST) Message-Id: <200303310755.h2V7tgCQ032260@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 30 Mar 2003 23:55:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/tmda Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 07:55:45 -0000 edwin 2003/03/30 23:55:42 PST FreeBSD ports repository Modified files: mail/tmda Makefile distinfo Log: TMDA port is out of date to version 0.71 PR: ports/49052 Submitted by: Mike Meyer Revision Changes Path 1.33 +1 -2 ports/mail/tmda/Makefile 1.29 +1 -1 ports/mail/tmda/distinfo From owner-cvs-all@FreeBSD.ORG Mon Mar 31 00:00:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C63D737B401; Mon, 31 Mar 2003 00:00:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39B6343F93; Mon, 31 Mar 2003 00:00:46 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V80k0U032609; Mon, 31 Mar 2003 00:00:46 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V80jRZ032607; Mon, 31 Mar 2003 00:00:45 -0800 (PST) Message-Id: <200303310800.h2V80jRZ032607@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 00:00:45 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/openal Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 08:00:48 -0000 edwin 2003/03/31 00:00:45 PST FreeBSD ports repository Modified files: audio/openal Makefile Log: Port installs a shared lib. Informed maintainer. Revision Changes Path 1.14 +1 -0 ports/audio/openal/Makefile From owner-cvs-all@FreeBSD.ORG Mon Mar 31 00:09:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4C8437B404; Mon, 31 Mar 2003 00:09:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BA1E43F93; Mon, 31 Mar 2003 00:09:00 -0800 (PST) (envelope-from chris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V8900U034040; Mon, 31 Mar 2003 00:09:00 -0800 (PST) (envelope-from chris@repoman.freebsd.org) Received: (from chris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V890Cm034039; Mon, 31 Mar 2003 00:09:00 -0800 (PST) Message-Id: <200303310809.h2V890Cm034039@repoman.freebsd.org> From: Chris Costello Date: Mon, 31 Mar 2003 00:09:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 Makefile mac.4 mac_biba.4 mac_bsdextended.4 mac_ifoff.4 mac_lomac.4 mac_mls.4 mac_none.4 mac_partition.4 mac_seeotheruids.4 mac_test.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 08:09:02 -0000 chris 2003/03/31 00:09:00 PST FreeBSD src repository Modified files: share/man/man4 Makefile mac.4 mac_biba.4 mac_bsdextended.4 mac_ifoff.4 mac_lomac.4 mac_mls.4 mac_none.4 mac_partition.4 mac_seeotheruids.4 mac_test.4 Log: Document the new mac_portacl(4) policy. Sponsored by: DARPA, Network Associates Laboratories Obtained from: TrustedBSD Project Revision Changes Path 1.195 +1 -0 src/share/man/man4/Makefile 1.9 +2 -0 src/share/man/man4/mac.4 1.14 +1 -0 src/share/man/man4/mac_biba.4 1.8 +1 -0 src/share/man/man4/mac_bsdextended.4 1.5 +1 -0 src/share/man/man4/mac_ifoff.4 1.5 +1 -0 src/share/man/man4/mac_lomac.4 1.13 +1 -0 src/share/man/man4/mac_mls.4 1.6 +1 -0 src/share/man/man4/mac_none.4 1.7 +1 -0 src/share/man/man4/mac_partition.4 1.6 +1 -0 src/share/man/man4/mac_seeotheruids.4 1.6 +1 -0 src/share/man/man4/mac_test.4 From owner-cvs-all@FreeBSD.ORG Mon Mar 31 00:10:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B59A37B401; Mon, 31 Mar 2003 00:10:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED8DD43F3F; Mon, 31 Mar 2003 00:10:10 -0800 (PST) (envelope-from chris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V8AA0U034102; Mon, 31 Mar 2003 00:10:10 -0800 (PST) (envelope-from chris@repoman.freebsd.org) Received: (from chris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V8AAR2034101; Mon, 31 Mar 2003 00:10:10 -0800 (PST) Message-Id: <200303310810.h2V8AAR2034101@repoman.freebsd.org> From: Chris Costello Date: Mon, 31 Mar 2003 00:10:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 mac_portacl.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 08:10:13 -0000 chris 2003/03/31 00:10:10 PST FreeBSD src repository Added files: share/man/man4 mac_portacl.4 Log: Document the new mac_portacl(4) policy. Sponsored by: DARPA, Network Associates Laboratories Obtained from: TrustedBSD Project Revision Changes Path 1.1 +156 -0 src/share/man/man4/mac_portacl.4 (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 00:13:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D455637B401; Mon, 31 Mar 2003 00:13:43 -0800 (PST) Received: from mail.musha.org (daemon.musha.org [210.189.104.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id E45F643F75; Mon, 31 Mar 2003 00:13:42 -0800 (PST) (envelope-from knu@iDaemons.org) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 036A05195D; Mon, 31 Mar 2003 17:13:42 +0900 (JST) Date: Mon, 31 Mar 2003 17:13:42 +0900 Message-ID: <86wuigkl6x.wl%knu@iDaemons.org> From: "Akinori MUSHA" To: Aaron Voisine In-Reply-To: <200303310634.h2V6YaYW025720@repoman.freebsd.org> References: <200303310634.h2V6YaYW025720@repoman.freebsd.org> User-Agent: Wanderlust/2.11.3 (Wonderwall) EMIKO/1.14.1 (Choanoflagellata) LIMIT/1.14.7 (Fujiidera) APEL/10.4 MULE XEmacs/21.4 (patch 12) (Portable Code) (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 EMIKO 1.14.1 - "Choanoflagellata") Content-Type: text/plain; charset=US-ASCII cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/www/linux-phoenix Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 08:13:46 -0000 At Sun, 30 Mar 2003 22:34:36 -0800 (PST), I wrote: > knu 2003/03/30 22:34:36 PST > > FreeBSD ports repository > > Modified files: > www/linux-phoenix Makefile distinfo > Log: > Update to 0.5. > > PR: ports/48075 > Submitted by: Aaron Voisine (MAINTAINER) Hm, this does not seem to work without libstdc++-libc6.2-2.so.3 which is not available via the dependency nor from any port in the tree. Although I could get it working by symlinking libstdc++-libc6.2-2.so.3 -> libstdc++-libc6.1-1.so.2, it doesn't seem quite right. How should we solve this? -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "It seems to me as we make our own few circles 'round the sun We get it backwards and our seven years go by like one" From owner-cvs-all@FreeBSD.ORG Mon Mar 31 00:14:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F422337B404; Mon, 31 Mar 2003 00:14:06 -0800 (PST) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9474E43FAF; Mon, 31 Mar 2003 00:14:05 -0800 (PST) (envelope-from jake@k6.locore.ca) Received: from k6.locore.ca (localhost.locore.ca [127.0.0.1]) by k6.locore.ca (8.12.8/8.12.8) with ESMTP id h2V8KUxS036462; Mon, 31 Mar 2003 03:20:30 -0500 (EST) (envelope-from jake@k6.locore.ca) Received: (from jake@localhost) by k6.locore.ca (8.12.8/8.12.8/Submit) id h2V8KUoK036461; Mon, 31 Mar 2003 03:20:30 -0500 (EST) Date: Mon, 31 Mar 2003 03:20:30 -0500 From: Jake Burkholder To: Peter Jeremy Message-ID: <20030331082030.GD32298@locore.ca> References: <200303300524.h2U5Ora7061852@repoman.freebsd.org> <20030330061301.GC21973@locore.ca> <20030330070723.GE21973@locore.ca> <20030330012410.I3292@odysseus.silby.com> <20030330201113.GA32298@locore.ca> <20030330152920.D6586@odysseus.silby.com> <20030330232030.GB32298@locore.ca> <20030331071239.GA27585@cirb503493.alcatel.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030331071239.GA27585@cirb503493.alcatel.com.au> User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: HEADS UP Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 bios.c locore.s machdep.c mpboot.s pmap.c vm86bios.s vm_machdep.c src/sys/i386/include _types.h bus_at386.h param.h pmap. X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 08:14:10 -0000 Apparently, On Mon, Mar 31, 2003 at 05:12:39PM +1000, Peter Jeremy said words to the effect of; > On Sun, Mar 30, 2003 at 06:20:30PM -0500, Jake Burkholder wrote: > >Apparently, On Sun, Mar 30, 2003 at 03:30:52PM -0600, > > Mike Silbersack said words to the effect of; > >> Is it practically possible with PAE and busdma'd drivers that such a > >> configuration could work? > > > >I'm not sure I understand the question, you mean is it possible to use > >separate address spaces for the kernel and userland, giving a full 4G each? > >Yes it is possible, but it is not practical. > > Why do you say "not practical"? Unix spent most of its formative > years with kernel and userland in separate address spaces. I don't > think the code exists in 4BSD but it's definitely still functional > in 2BSD (which is under a BSD license now-a-days). x86 just doesn't lend itself well to doing this. The sparc64 port uses separate address spaces because it is easy there. Its not a matter of the os supporting it, its what you can do realistically with the hardware. > > > It would be prohibitively expensive and ugly. > > I'll accept "ugly" and "expensive". The "prohibitively" is more of a > value judgement. Currently FreeBSD needs to trade KVA against UVA for > large RAM configurations. If you have an application that needs lots > of KVA and lots of UVA then FreeBSD on x86 isn't currently an option. > Wearing the overheads on system calls, copyin and copyout may be > cheaper than the alternatives. Don't let me stop you from implementing it. Jake From owner-cvs-all@FreeBSD.ORG Mon Mar 31 00:20:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A73437B401; Mon, 31 Mar 2003 00:20:49 -0800 (PST) Received: from cirb503493.alcatel.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E7AD43FBD; Mon, 31 Mar 2003 00:20:48 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1])h2V8KjM2027760; Mon, 31 Mar 2003 18:20:46 +1000 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.8/8.12.8/Submit) id h2V8KQWs027759; Mon, 31 Mar 2003 18:20:26 +1000 (EST) Date: Mon, 31 Mar 2003 18:20:23 +1000 From: Peter Jeremy To: Alexander Leidinger Message-ID: <20030331082023.GE11307@cirb503493.alcatel.com.au> References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030327204935.GA18134@HAL9000.homeunix.com> <20030330175646.281097ad.Alexander@Leidinger.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030330175646.281097ad.Alexander@Leidinger.net> User-Agent: Mutt/1.4.1i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 08:20:51 -0000 On Sun, Mar 30, 2003 at 05:56:46PM +0200, Alexander Leidinger wrote: >Attached is a test for 32 and 64 bit ieee values (edge cases). It's not clear exactly what this program is intended to test. > The *_MIN >values (or my test program) at least on i386 machines are wrong. The *_MIN values represent the greatest negative value, not the smallest positive value. Peter From owner-cvs-all@FreeBSD.ORG Mon Mar 31 00:53:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8C2037B405 for ; Mon, 31 Mar 2003 00:53:01 -0800 (PST) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id C178E43FAF for ; Mon, 31 Mar 2003 00:52:59 -0800 (PST) (envelope-from silby@silby.com) Received: (qmail 9047 invoked from network); 31 Mar 2003 08:52:58 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 31 Mar 2003 08:52:58 -0000 X-pair-Authenticated: 209.68.2.70 Date: Mon, 31 Mar 2003 02:49:30 -0600 (CST) From: Mike Silbersack To: Jake Burkholder In-Reply-To: <20030331052928.GC32298@locore.ca> Message-ID: <20030330235551.L8771@odysseus.silby.com> References: <200303300524.h2U5Ora7061852@repoman.freebsd.org> <20030330201113.GA32298@locore.ca><20030330232030.GB32298@locore.ca> <20030331052928.GC32298@locore.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: HEADS UP Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 bios.c locore.s machdep.c mpboot.s pmap.c vm86bios.s vm_machdep.c src/sys/i386/include _types.h bus_at386.h param.h pmap. X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 08:53:05 -0000 On Mon, 31 Mar 2003, Jake Burkholder wrote: > PAE makes the page table entries bigger so they can hold 64 bit physical > addresses, but it does not give you more of them, pointers are still 32bit. > On x86 the kernel is mapped into each process' address space, which is why > it takes a chunk of it, and this is how copyin and copyout work, you can > just access the current process' address space directly. All copyin and > copyout do on x86 is handle page faults due to unmapped user memory, which > should not normally happen in kernel mode. If they were separate this would > be much more complicated, and entering the kernel would require switching > address space, instead of just increasing the priviledge level. > > Jake Doh, that makes perfect sense, I didn't think it through before asking. Changing it around to have seperate address spaces sounds like more work than PAE, now that I think more about it. I'll just wait for true 64 bit machines before asking for a large KVA. :) Thanks for the explanation, Mike "Silby" Silbersack From owner-cvs-all@FreeBSD.ORG Mon Mar 31 00:55:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E009F37B401; Mon, 31 Mar 2003 00:55:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8ECD943F3F; Mon, 31 Mar 2003 00:55:48 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V8tm0U042358; Mon, 31 Mar 2003 00:55:48 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V8tmVr042357; Mon, 31 Mar 2003 00:55:48 -0800 (PST) Message-Id: <200303310855.h2V8tmVr042357@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 00:55:48 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel Makefile ports/devel/bglibs Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 08:55:50 -0000 edwin 2003/03/31 00:55:48 PST FreeBSD ports repository Modified files: devel Makefile Added files: devel/bglibs Makefile distinfo pkg-descr pkg-plist Log: devel/bglibs: One stop library package by Bruce Guenter This package contains a collection of libraries written by Bruce Guenter and put in use in his various "bgware" packages. Author: Bruce Guenter WWW: http://untroubled.org/bglibs/ PR: ports/48900,ports/49962,ports/50276 Submitted by: Sergei Kolobov Revision Changes Path 1.1075 +1 -0 ports/devel/Makefile 1.1 +35 -0 ports/devel/bglibs/Makefile (new) 1.1 +1 -0 ports/devel/bglibs/distinfo (new) 1.1 +5 -0 ports/devel/bglibs/pkg-descr (new) 1.1 +144 -0 ports/devel/bglibs/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 00:56:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E5CB37B407; Mon, 31 Mar 2003 00:56:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C35D143F85; Mon, 31 Mar 2003 00:56:05 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V8u50U042414; Mon, 31 Mar 2003 00:56:05 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V8u5ff042413; Mon, 31 Mar 2003 00:56:05 -0800 (PST) Message-Id: <200303310856.h2V8u5ff042413@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 00:56:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 08:56:07 -0000 edwin 2003/03/31 00:56:05 PST FreeBSD ports repository Modified files: . modules Log: bglibs --> ports/devel/bglibs Revision Changes Path 1.6917 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:11:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 198CE37B401; Mon, 31 Mar 2003 01:11:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B387D43F3F; Mon, 31 Mar 2003 01:11:28 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V9BS0U044572; Mon, 31 Mar 2003 01:11:28 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V9BS68044571; Mon, 31 Mar 2003 01:11:28 -0800 (PST) Message-Id: <200303310911.h2V9BS68044571@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 01:11:28 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail Makefile ports/mail/mailfront Makefile Makefile.orig distinfo distinfo.orig pkg-descr pkg-plist pkg-plist.orig X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:12:01 -0000 edwin 2003/03/31 01:11:28 PST FreeBSD ports repository Modified files: mail Makefile Added files: mail/mailfront Makefile Makefile.orig distinfo distinfo.orig pkg-descr pkg-plist pkg-plist.orig Log: mail/mailfront: Mail server network protocol front-ends This is mailfront, a package containing customizeable network front-ends for mail servers. It contains complete SMTP and POP3 front-ends as well as an authentication module for IMAP. Two SMTP back-ends are provided. One delivers mail to qmail-queue, mimicking most of the behavior of qmail-smtpd, with the addition of support for SMTP AUTH. The other rejects all SMTP commands if $SMTPREJECT is set, and execs its command line otherwise (in order to run the above program). Author: Bruce Guenter WWW: http://untroubled.org/mailfront/ PR: ports/48902,ports/49973 Submitted by: Sergei Kolobov Revision Changes Path 1.367 +1 -0 ports/mail/Makefile 1.1 +39 -0 ports/mail/mailfront/Makefile (new) 1.1 +39 -0 ports/mail/mailfront/Makefile.orig (new) 1.1 +1 -0 ports/mail/mailfront/distinfo (new) 1.1 +1 -0 ports/mail/mailfront/distinfo.orig (new) 1.1 +13 -0 ports/mail/mailfront/pkg-descr (new) 1.1 +22 -0 ports/mail/mailfront/pkg-plist (new) 1.1 +19 -0 ports/mail/mailfront/pkg-plist.orig (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:12:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D41137B404; Mon, 31 Mar 2003 01:11:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E5BC43FBF; Mon, 31 Mar 2003 01:11:50 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V9Bn0U044612; Mon, 31 Mar 2003 01:11:49 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V9BnKa044611; Mon, 31 Mar 2003 01:11:49 -0800 (PST) Message-Id: <200303310911.h2V9BnKa044611@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 01:11:49 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:12:18 -0000 edwin 2003/03/31 01:11:49 PST FreeBSD ports repository Modified files: . modules Log: mailfront --> ports/mail/mailfront Revision Changes Path 1.6918 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:12:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3CBE37B401; Mon, 31 Mar 2003 01:12:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6049443FBF; Mon, 31 Mar 2003 01:12:37 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V9Cb0U044680; Mon, 31 Mar 2003 01:12:37 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V9Cbe9044679; Mon, 31 Mar 2003 01:12:37 -0800 (PST) Message-Id: <200303310912.h2V9Cbe9044679@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 01:12:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/mailfront Makefile.orig distinfo.orig pkg-plist.orig X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:12:39 -0000 edwin 2003/03/31 01:12:37 PST FreeBSD ports repository Removed files: mail/mailfront Makefile.orig distinfo.orig pkg-plist.orig Log: accidentially commted files. Revision Changes Path 1.2 +0 -39 ports/mail/mailfront/Makefile.orig (dead) 1.2 +0 -1 ports/mail/mailfront/distinfo.orig (dead) 1.2 +0 -19 ports/mail/mailfront/pkg-plist.orig (dead) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:16:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 048C937B401; Mon, 31 Mar 2003 01:16:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 992B443FBD; Mon, 31 Mar 2003 01:16:13 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V9GD0U044920; Mon, 31 Mar 2003 01:16:13 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V9GDIf044919; Mon, 31 Mar 2003 01:16:13 -0800 (PST) Message-Id: <200303310916.h2V9GDIf044919@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 01:16:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/libwww Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:16:15 -0000 edwin 2003/03/31 01:16:13 PST FreeBSD ports repository Modified files: www/libwww Makefile Log: Port installs shared libraries. Revision Changes Path 1.32 +1 -0 ports/www/libwww/Makefile From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:18:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A52937B401; Mon, 31 Mar 2003 01:18:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBEAB43F75; Mon, 31 Mar 2003 01:18:00 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V9I00U044971; Mon, 31 Mar 2003 01:18:00 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V9I0iu044970; Mon, 31 Mar 2003 01:18:00 -0800 (PST) Message-Id: <200303310918.h2V9I0iu044970@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 01:18:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/dovecot Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:18:02 -0000 edwin 2003/03/31 01:18:00 PST FreeBSD ports repository Modified files: mail/dovecot Makefile distinfo pkg-plist Log: mail/dovecot 0.99.8-test5 -> 0.99.8.1 PR: ports/49985 Submitted by: Dominic Marks Revision Changes Path 1.10 +6 -4 ports/mail/dovecot/Makefile 1.5 +1 -1 ports/mail/dovecot/distinfo 1.5 +3 -0 ports/mail/dovecot/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:25:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 215E437B401; Mon, 31 Mar 2003 01:25:37 -0800 (PST) Received: from newtrinity.zeist.de (newtrinity.zeist.de [195.49.175.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7CFB43F93; Mon, 31 Mar 2003 01:25:35 -0800 (PST) (envelope-from marius@newtrinity.zeist.de) Received: from newtrinity.zeist.de (localhost [127.0.0.1]) h2V9PYN6043115; Mon, 31 Mar 2003 11:25:34 +0200 (CEST) (envelope-from marius@newtrinity.zeist.de) Received: (from marius@localhost) by newtrinity.zeist.de (8.12.9/8.12.9/Submit) id h2V9PSj2043114; Mon, 31 Mar 2003 11:25:28 +0200 (CEST) (envelope-from marius) Date: Mon, 31 Mar 2003 11:25:28 +0200 From: marius@alchemy.franken.de To: Peter Jeremy Message-ID: <20030331112528.C20107@newtrinity.zeist.de> References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030327204935.GA18134@HAL9000.homeunix.com> <20030330175646.281097ad.Alexander@Leidinger.net> <20030331082023.GE11307@cirb503493.alcatel.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030331082023.GE11307@cirb503493.alcatel.com.au>; from peterjeremy@optushome.com.au on Mon, Mar 31, 2003 at 06:20:23PM +1000 cc: Alexander Leidinger cc: das@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:25:40 -0000 On Mon, Mar 31, 2003 at 06:20:23PM +1000, Peter Jeremy wrote: > On Sun, Mar 30, 2003 at 05:56:46PM +0200, Alexander Leidinger wrote: > >Attached is a test for 32 and 64 bit ieee values (edge cases). > > It's not clear exactly what this program is intended to test. > > > The *_MIN > >values (or my test program) at least on i386 machines are wrong. > > The *_MIN values represent the greatest negative value, not the > smallest positive value. > while all *_EPSILON, *_MIN and *_MAX values are rounded and not the exact ones (and for FLT_* and DBL_* are probably defined in some standard) the real point of concern are the LDBL_* values, FreeBSD seems to have simply adopted them from NetBSD, while e.g. the Intel compiler for Linux defines also rounded but more precise ones and Linux itself uses exact values via gcc-extensions, e.g.: #define LDBL_MIN (__extension__ ((union __convert_long_double) {__convert_long_double_i: {0x0, 0x80000000, 0x1, 0x0}}).__convert_long_double_d) i don't have it at hand right now but in the sources of stlport are some long double-conversion-tests that cause compiler-warnings ("value does not fit in required floating-point type" when putting a DBL_MIN in a long double or something like that) when using the FreeBSD/NetBSD-constants for LDBL_* and compiling with icc. at least for me it wasn't exactly clear if that's the fault of the constants or if the tests of stlport are bogus. From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:27:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 056B237B401; Mon, 31 Mar 2003 01:27:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A20B843F3F; Mon, 31 Mar 2003 01:27:08 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V9R80U045579; Mon, 31 Mar 2003 01:27:08 -0800 (PST) (envelope-from sheldonh@repoman.freebsd.org) Received: (from sheldonh@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V9R8Sh045578; Mon, 31 Mar 2003 01:27:08 -0800 (PST) Message-Id: <200303310927.h2V9R8Sh045578@repoman.freebsd.org> From: Sheldon Hearn Date: Mon, 31 Mar 2003 01:27:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/exim Makefile distinfo pkg-plist ports/mail/exim/files patch-src::dbfn.c patch-src::rda.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:27:10 -0000 sheldonh 2003/03/31 01:27:08 PST FreeBSD ports repository Modified files: mail/exim Makefile distinfo pkg-plist Removed files: mail/exim/files patch-src::dbfn.c patch-src::rda.c Log: * Update exim-4.12 -> exim-4.14: This is a maintenance release, but there are a few edge cases where backward compatibikity in the configure file was broken. While upgrading is recommended, administrators are encouraged to Update exim-4.12 -> exim-4.14: This is a maintenance release, but there are a few edge cases where backward compatibikity in the configure file was broken. While upgrading is recommended, administrators are encouraged to examine the README.UPDATING file in the distribution. * Catch up to changes in the ports tree with respect to available OpenLDAP releases. While backward compatibility is preserved, administrators may use WITH_OPENLDAP1, WITH_OPENLDAP20 and WITH_OPENLDAP21 for more fine-grained control of the OpenLDAP release on which to depend. Submitted by: Oliver Eikemeier Revision Changes Path 1.130 +41 -17 ports/mail/exim/Makefile 1.44 +2 -2 ports/mail/exim/distinfo 1.2 +0 -11 ports/mail/exim/files/patch-src::dbfn.c (dead) 1.3 +0 -36 ports/mail/exim/files/patch-src::rda.c (dead) 1.24 +1 -1 ports/mail/exim/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:28:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBF3037B401; Mon, 31 Mar 2003 01:28:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78F4343FA3; Mon, 31 Mar 2003 01:28:08 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V9S80U045646; Mon, 31 Mar 2003 01:28:08 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V9S8up045645; Mon, 31 Mar 2003 01:28:08 -0800 (PST) Message-Id: <200303310928.h2V9S8up045645@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 01:28:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/Coin Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:28:11 -0000 edwin 2003/03/31 01:28:08 PST FreeBSD ports repository Modified files: graphics/Coin Makefile distinfo pkg-plist Log: Update port devel/Coin to the latest and greatest version 2.0.0. PR: ports/49005 Submitted by: Roland Jesse Revision Changes Path 1.4 +9 -5 ports/graphics/Coin/Makefile 1.3 +1 -1 ports/graphics/Coin/distinfo 1.3 +212 -66 ports/graphics/Coin/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:34:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FF6737B401; Mon, 31 Mar 2003 01:34:09 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ED6A43FA3; Mon, 31 Mar 2003 01:34:08 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.8/8.12.8) with ESMTP id h2V9Y0SM022299; Mon, 31 Mar 2003 11:34:06 +0200 (CEST) (envelope-from phk@phk.freebsd.dk) To: Bruce Evans From: "Poul-Henning Kamp" In-Reply-To: Your message of "Mon, 31 Mar 2003 15:13:43 +1000." <20030331140740.R17363@gamplex.bde.org> Date: Mon, 31 Mar 2003 11:34:00 +0200 Message-ID: <22298.1049103240@critter.freebsd.dk> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Nate Lawson Subject: Re: cvs commit: src/sbin/fdisk fdisk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:34:11 -0000 In message <20030331140740.R17363@gamplex.bde.org>, Bruce Evans writes: >This is more broken than I thought. fdisk now defaults to a wrong geometry >in all cases where the BIOS geometry differs from the firmware geometry. > >The default geometry was H=1/S=1 or whatever is returned by DIOCGDINFO >until this was broken in -current. This is still non-broken in RELENG_4. I don't particularly care for what numbers we use, but I do not want a lot of elaborate DWIM code since in this particular case the user had better know exactly what she is doing anyway. -- 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. From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:35:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC81937B408; Mon, 31 Mar 2003 01:35:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AFA043F93; Mon, 31 Mar 2003 01:35:14 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V9ZE0U046220; Mon, 31 Mar 2003 01:35:14 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V9ZEkB046219; Mon, 31 Mar 2003 01:35:14 -0800 (PST) Message-Id: <200303310935.h2V9ZEkB046219@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 01:35:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/yape Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:35:16 -0000 edwin 2003/03/31 01:35:13 PST FreeBSD ports repository Modified files: emulators/yape Makefile pkg-descr Log: New master site for emulator/yape. PR: ports/49077 Submitted by: Janos Mohacsi Revision Changes Path 1.5 +1 -1 ports/emulators/yape/Makefile 1.3 +1 -1 ports/emulators/yape/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:38:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECDC137B401; Mon, 31 Mar 2003 01:38:35 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-131.client.attbi.com [12.233.57.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B27443F85; Mon, 31 Mar 2003 01:38:34 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h2V9cUah032731; Mon, 31 Mar 2003 01:38:30 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h2V9cUWp032730; Mon, 31 Mar 2003 01:38:30 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Mon, 31 Mar 2003 01:38:30 -0800 From: David Schultz To: "David E. O'Brien" Message-ID: <20030331093830.GA32627@HAL9000.homeunix.com> Mail-Followup-To: "David E. O'Brien" , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200303290314.h2T3EOVF090236@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200303290314.h2T3EOVF090236@repoman.freebsd.org> cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/share/mk bsd.cpu.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:38:37 -0000 > obrien 2003/03/28 19:14:24 PST > > FreeBSD src repository > > Modified files: > share/mk bsd.cpu.mk > Log: > Globally use -mieee in /usr/src for Alpha. > > Revision Changes Path > 1.24 +4 -0 src/share/mk/bsd.cpu.mk Thanks! From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:41:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA9AE37B401; Mon, 31 Mar 2003 01:41:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 762E943FAF; Mon, 31 Mar 2003 01:41:53 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V9fr0U046812; Mon, 31 Mar 2003 01:41:53 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V9frab046811; Mon, 31 Mar 2003 01:41:53 -0800 (PST) Message-Id: <200303310941.h2V9frab046811@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 01:41:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc Makefile ports/textproc/l2a Makefile distinfo pkg-descr pkg-plist ports/textproc/l2a/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:41:55 -0000 edwin 2003/03/31 01:41:53 PST FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/l2a Makefile distinfo pkg-descr pkg-plist textproc/l2a/files patch-Makefile Log: New Port: L2A -- LaTeX to ASCII L2A is a simple filter to remove most LaTeX commands from marked-up documents, leaving only the body of text. PR: ports/47974 Submitted by: James E. Flemer Revision Changes Path 1.498 +1 -0 ports/textproc/Makefile 1.1 +24 -0 ports/textproc/l2a/Makefile (new) 1.1 +1 -0 ports/textproc/l2a/distinfo (new) 1.1 +33 -0 ports/textproc/l2a/files/patch-Makefile (new) 1.1 +4 -0 ports/textproc/l2a/pkg-descr (new) 1.1 +1 -0 ports/textproc/l2a/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 01:42:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 407F637B404; Mon, 31 Mar 2003 01:42:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6CF743FA3; Mon, 31 Mar 2003 01:42:10 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2V9gA0U046861; Mon, 31 Mar 2003 01:42:10 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2V9gAal046860; Mon, 31 Mar 2003 01:42:10 -0800 (PST) Message-Id: <200303310942.h2V9gAal046860@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 01:42:10 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 09:42:12 -0000 edwin 2003/03/31 01:42:10 PST FreeBSD ports repository Modified files: . modules Log: l2a --> ports/textproc/l2a Revision Changes Path 1.6919 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 02:27:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1452937B401; Mon, 31 Mar 2003 02:27:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A84F043FB1; Mon, 31 Mar 2003 02:27:11 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VARB0U050481; Mon, 31 Mar 2003 02:27:11 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VARB3e050480; Mon, 31 Mar 2003 02:27:11 -0800 (PST) Message-Id: <200303311027.h2VARB3e050480@repoman.freebsd.org> From: Ying-Chieh Liao Date: Mon, 31 Mar 2003 02:27:11 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/autodia pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 10:27:13 -0000 ijliao 2003/03/31 02:27:11 PST FreeBSD ports repository Modified files: devel/autodia pkg-descr Log: add new features Submitted by: Sheldon Hearn Revision Changes Path 1.2 +2 -2 ports/devel/autodia/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Mar 31 02:30:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DACC537B401; Mon, 31 Mar 2003 02:30:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B3FF43F75; Mon, 31 Mar 2003 02:30:14 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VAUE0U050638; Mon, 31 Mar 2003 02:30:14 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VAUELm050637; Mon, 31 Mar 2003 02:30:14 -0800 (PST) Message-Id: <200303311030.h2VAUELm050637@repoman.freebsd.org> From: Norikatsu Shigemura Date: Mon, 31 Mar 2003 02:30:14 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/liveMedia Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 10:30:18 -0000 nork 2003/03/31 02:30:14 PST FreeBSD ports repository Modified files: net/liveMedia Makefile distinfo Log: Update to 2003.03.31. Revision Changes Path 1.30 +2 -1 ports/net/liveMedia/Makefile 1.27 +1 -1 ports/net/liveMedia/distinfo From owner-cvs-all@FreeBSD.ORG Mon Mar 31 02:46:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8831037B401; Mon, 31 Mar 2003 02:46:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27C7F43FAF; Mon, 31 Mar 2003 02:46:26 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VAkP0U051805; Mon, 31 Mar 2003 02:46:25 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VAkPMd051804; Mon, 31 Mar 2003 02:46:25 -0800 (PST) Message-Id: <200303311046.h2VAkPMd051804@repoman.freebsd.org> From: Ying-Chieh Liao Date: Mon, 31 Mar 2003 02:46:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/autodia Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 10:46:28 -0000 ijliao 2003/03/31 02:46:25 PST FreeBSD ports repository Modified files: devel/autodia Makefile distinfo Log: upgrade to 1.6 Revision Changes Path 1.9 +1 -1 ports/devel/autodia/Makefile 1.5 +1 -1 ports/devel/autodia/distinfo From owner-cvs-all@FreeBSD.ORG Mon Mar 31 03:01:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9881237B408; Mon, 31 Mar 2003 03:01:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2BAB43F85; Mon, 31 Mar 2003 03:01:40 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VB1e0U053060; Mon, 31 Mar 2003 03:01:40 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VB1elG053059; Mon, 31 Mar 2003 03:01:40 -0800 (PST) Message-Id: <200303311101.h2VB1elG053059@repoman.freebsd.org> From: Ying-Chieh Liao Date: Mon, 31 Mar 2003 03:01:40 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/avinfo Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 11:01:48 -0000 ijliao 2003/03/31 03:01:40 PST FreeBSD ports repository Modified files: graphics/avinfo Makefile distinfo pkg-plist Log: upgrade to 0.7.1 Revision Changes Path 1.4 +1 -1 ports/graphics/avinfo/Makefile 1.3 +1 -1 ports/graphics/avinfo/distinfo 1.3 +7 -3 ports/graphics/avinfo/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Mar 31 03:11:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B65E737B401; Mon, 31 Mar 2003 03:11:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A98043F75; Mon, 31 Mar 2003 03:11:57 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VBBv0U054521; Mon, 31 Mar 2003 03:11:57 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VBBuHx054520; Mon, 31 Mar 2003 03:11:56 -0800 (PST) Message-Id: <200303311111.h2VBBuHx054520@repoman.freebsd.org> From: Norikatsu Shigemura Date: Mon, 31 Mar 2003 03:11:56 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/mplayer Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 11:11:59 -0000 nork 2003/03/31 03:11:56 PST FreeBSD ports repository Modified files: multimedia/mplayer Makefile distinfo Log: Support for IPv6. Submitted by: Hideyuki NINOMIYA (requester) Yuji TAKANO (mplayer evangelist) Desired by: ume (IPv6 maintainer) Patch Made by: sumikawa (IPv6 specialist) Approved by: Thomas E. Zander (maintainer) Revision Changes Path 1.53 +6 -1 ports/multimedia/mplayer/Makefile 1.15 +1 -0 ports/multimedia/mplayer/distinfo From owner-cvs-all@FreeBSD.ORG Mon Mar 31 03:16:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE58837B401; Mon, 31 Mar 2003 03:16:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5143243F85; Mon, 31 Mar 2003 03:16:54 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VBGs0U054735; Mon, 31 Mar 2003 03:16:54 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VBGssI054734; Mon, 31 Mar 2003 03:16:54 -0800 (PST) Message-Id: <200303311116.h2VBGssI054734@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 31 Mar 2003 03:16:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 11:16:55 -0000 ru 2003/03/31 03:16:54 PST FreeBSD src repository Modified files: release Makefile Log: Strip the .comment section out from the BOOTMFS kernel. Revision Changes Path 1.765 +1 -1 src/release/Makefile From owner-cvs-all@FreeBSD.ORG Mon Mar 31 03:39:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75D3337B401; Mon, 31 Mar 2003 03:39:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1ECC343FA3; Mon, 31 Mar 2003 03:39:28 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VBdR0U056113; Mon, 31 Mar 2003 03:39:27 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VBdRIt056112; Mon, 31 Mar 2003 03:39:27 -0800 (PST) Message-Id: <200303311139.h2VBdRIt056112@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 03:39:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils Makefile ports/sysutils/userinfo Makefile distinfo pkg-comment pkg-descr pkg-plist ports/sysutils/userinfo/files patch-doc-Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 11:39:32 -0000 edwin 2003/03/31 03:39:27 PST FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/userinfo Makefile distinfo pkg-comment pkg-descr pkg-plist sysutils/userinfo/files patch-doc-Makefile.in Log: sysutils/userinfo - Show information about local users. PR: ports/44954 Submitted by: Ben Kibbey Revision Changes Path 1.345 +1 -0 ports/sysutils/Makefile 1.1 +31 -0 ports/sysutils/userinfo/Makefile (new) 1.1 +1 -0 ports/sysutils/userinfo/distinfo (new) 1.1 +10 -0 ports/sysutils/userinfo/files/patch-doc-Makefile.in (new) 1.1 +1 -0 ports/sysutils/userinfo/pkg-comment (new) 1.1 +4 -0 ports/sysutils/userinfo/pkg-descr (new) 1.1 +1 -0 ports/sysutils/userinfo/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 03:40:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9D7D37B401; Mon, 31 Mar 2003 03:40:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A06B43FAF; Mon, 31 Mar 2003 03:40:13 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VBeC0U056211; Mon, 31 Mar 2003 03:40:12 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VBeC0o056208; Mon, 31 Mar 2003 03:40:12 -0800 (PST) Message-Id: <200303311140.h2VBeC0o056208@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 03:40:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 11:40:15 -0000 edwin 2003/03/31 03:40:12 PST FreeBSD ports repository Modified files: . modules Log: userinfo --> ports/sysutils/userinfo Revision Changes Path 1.6920 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 03:46:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C685637B401; Mon, 31 Mar 2003 03:46:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6904543F93; Mon, 31 Mar 2003 03:46:50 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VBko0U056769; Mon, 31 Mar 2003 03:46:50 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VBkoKs056768; Mon, 31 Mar 2003 03:46:50 -0800 (PST) Message-Id: <200303311146.h2VBkoKs056768@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 31 Mar 2003 03:46:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 11:46:52 -0000 ru 2003/03/31 03:46:50 PST FreeBSD src repository Modified files: release Makefile Log: Revert revision 1.639 -- the "nodev" mount(8) option restriction does not apply to ${CHROOTDIR} file system since revision 1.712. Revision Changes Path 1.766 +0 -4 src/release/Makefile From owner-cvs-all@FreeBSD.ORG Mon Mar 31 04:09:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D647237B401; Mon, 31 Mar 2003 04:09:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7260643F75; Mon, 31 Mar 2003 04:09:19 -0800 (PST) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VC9J0U059247; Mon, 31 Mar 2003 04:09:19 -0800 (PST) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VC9J3Q059246; Mon, 31 Mar 2003 04:09:19 -0800 (PST) Message-Id: <200303311209.h2VC9J3Q059246@repoman.freebsd.org> From: Ernst de Haan Date: Mon, 31 Mar 2003 04:09:19 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/jakarta-ant Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 12:09:21 -0000 znerd 2003/03/31 04:09:19 PST FreeBSD ports repository Modified files: devel/jakarta-ant Makefile distinfo pkg-descr pkg-plist Log: Upgrade to 1.5.2. From this version on, this tool is called 'Apache Ant' instead of 'Jakarta Ant'. Revision Changes Path 1.22 +9 -10 ports/devel/jakarta-ant/Makefile 1.9 +1 -1 ports/devel/jakarta-ant/distinfo 1.2 +2 -2 ports/devel/jakarta-ant/pkg-descr 1.13 +39 -2 ports/devel/jakarta-ant/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Mar 31 04:14:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C027C37B401; Mon, 31 Mar 2003 04:14:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EF1143FA3; Mon, 31 Mar 2003 04:14:58 -0800 (PST) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VCEw0U059780; Mon, 31 Mar 2003 04:14:58 -0800 (PST) (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VCEwpF059779; Mon, 31 Mar 2003 04:14:58 -0800 (PST) Message-Id: <200303311214.h2VCEwpF059779@repoman.freebsd.org> From: MANTANI Nobutaka Date: Mon, 31 Mar 2003 04:14:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/xine Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 12:15:00 -0000 nobutaka 2003/03/31 04:14:58 PST FreeBSD ports repository Modified files: multimedia/xine Makefile distinfo pkg-plist Log: Update to 0.9.20. Revision Changes Path 1.38 +1 -1 ports/multimedia/xine/Makefile 1.20 +1 -1 ports/multimedia/xine/distinfo 1.22 +3 -13 ports/multimedia/xine/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Mar 31 04:29:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EAE537B401; Mon, 31 Mar 2003 04:29:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BE2F43FBF; Mon, 31 Mar 2003 04:29:31 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VCTV0U060560; Mon, 31 Mar 2003 04:29:31 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VCTVtc060559; Mon, 31 Mar 2003 04:29:31 -0800 (PST) Message-Id: <200303311229.h2VCTVtc060559@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 31 Mar 2003 04:29:31 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/ia64 doFS.sh src/release/scripts doFS.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 12:29:34 -0000 ru 2003/03/31 04:29:31 PST FreeBSD src repository Modified files: release/ia64 doFS.sh release/scripts doFS.sh Log: Unmount the file system and detach an underlying memory disk even if the script fails somewhere in the middle. Prodded by: phk Revision Changes Path 1.4 +2 -4 src/release/ia64/doFS.sh 1.46 +6 -6 src/release/scripts/doFS.sh From owner-cvs-all@FreeBSD.ORG Mon Mar 31 04:35:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E01037B401; Mon, 31 Mar 2003 04:35:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3AB243FD7; Mon, 31 Mar 2003 04:35:26 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VCZQ0U061131; Mon, 31 Mar 2003 04:35:26 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VCZQB1061130; Mon, 31 Mar 2003 04:35:26 -0800 (PST) Message-Id: <200303311235.h2VCZQB1061130@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 31 Mar 2003 04:35:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/ia64 doFS.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 12:35:28 -0000 ru 2003/03/31 04:35:26 PST FreeBSD src repository Modified files: release/ia64 doFS.sh Log: NODEVFS cleanup: don't bother with MAKEDEV. Revision Changes Path 1.5 +1 -5 src/release/ia64/doFS.sh From owner-cvs-all@FreeBSD.ORG Mon Mar 31 04:41:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 752B637B401; Mon, 31 Mar 2003 04:41:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16C2A43F3F; Mon, 31 Mar 2003 04:41:28 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VCfR0U061683; Mon, 31 Mar 2003 04:41:27 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VCfR4J061682; Mon, 31 Mar 2003 04:41:27 -0800 (PST) Message-Id: <200303311241.h2VCfR4J061682@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 31 Mar 2003 04:41:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/ia64 doFS.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 12:41:29 -0000 ru 2003/03/31 04:41:27 PST FreeBSD src repository Modified files: release/ia64 doFS.sh Log: Trace command execution. Grammar and spelling. Revision Changes Path 1.6 +3 -3 src/release/ia64/doFS.sh From owner-cvs-all@FreeBSD.ORG Mon Mar 31 04:46:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F11D37B40A; Mon, 31 Mar 2003 04:46:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FA4043F93; Mon, 31 Mar 2003 04:46:19 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VCkJ0U061974; Mon, 31 Mar 2003 04:46:19 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VCkIsx061973; Mon, 31 Mar 2003 04:46:18 -0800 (PST) Message-Id: <200303311246.h2VCkIsx061973@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 31 Mar 2003 04:46:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 12:46:21 -0000 ru 2003/03/31 04:46:18 PST FreeBSD src repository Modified files: . UPDATING Log: Mention that 20021024 entry doesn't affect disks formatted in dangerously-dedicated mode. Revision Changes Path 1.244 +8 -6 src/UPDATING From owner-cvs-all@FreeBSD.ORG Mon Mar 31 04:47:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92D7637B401; Mon, 31 Mar 2003 04:47:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2113F43FA3; Mon, 31 Mar 2003 04:47:01 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VCl00U062218; Mon, 31 Mar 2003 04:47:00 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VCl0xM062175; Mon, 31 Mar 2003 04:47:00 -0800 (PST) Message-Id: <200303311247.h2VCl0xM062175@repoman.freebsd.org> From: Martin Blapp Date: Mon, 31 Mar 2003 04:47:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-devel/files patch-config_office+set_soenv.inpatch-setup2+mow+source+loader+loader.c patch-solenv+config+ssrx644.ini X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 12:47:03 -0000 mbr 2003/03/31 04:47:00 PST FreeBSD ports repository Modified files: editors/openoffice-devel/files patch-config_office+set_soenv.in patch-setup2+mow+source+loader+loader.c Added files: editors/openoffice-devel/files patch-solenv+config+ssrx644.ini Log: SOLARINI pointed to the wrong file. ssrx644.ini itself has still Linux dependent stuff in the FreeBSD section. Clean this up. Register the stlport lib. Revision Changes Path 1.6 +10 -1 ports/editors/openoffice-devel/files/patch-config_office+set_soenv.in 1.4 +10 -29 ports/editors/openoffice-devel/files/patch-setup2+mow+source+loader+loader.c 1.1 +33 -0 ports/editors/openoffice-devel/files/patch-solenv+config+ssrx644.ini (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 04:58:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E00037B401; Mon, 31 Mar 2003 04:58:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E224D43F93; Mon, 31 Mar 2003 04:58:33 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VCwX0U067994; Mon, 31 Mar 2003 04:58:33 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VCwXNR067993; Mon, 31 Mar 2003 04:58:33 -0800 (PST) Message-Id: <200303311258.h2VCwXNR067993@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 31 Mar 2003 04:58:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 12:58:38 -0000 ru 2003/03/31 04:58:33 PST FreeBSD src repository Modified files: . Makefile.inc1 Log: Slightly improve buildworld times by excluding crunchide(1) and kgzip(8) from the list of cross-tools during the normal, non-"make release" buildworld. Also, don't gratuitously build them, btxld(8) and elf2aout(1) for native architecture builds, since they have no known boostrapping issues along the supported upgrade path. Prodded by: peter Revision Changes Path 1.327 +10 -4 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Mon Mar 31 05:10:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B81637B401; Mon, 31 Mar 2003 05:10:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3906C43F75; Mon, 31 Mar 2003 05:10:52 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VDAq0U069861; Mon, 31 Mar 2003 05:10:52 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VDApgO069859; Mon, 31 Mar 2003 05:10:51 -0800 (PST) Message-Id: <200303311310.h2VDApgO069859@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 31 Mar 2003 05:10:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 src/share/mk bsd.sys.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 13:11:04 -0000 ru 2003/03/31 05:10:51 PST FreeBSD src repository Modified files: . Makefile.inc1 share/mk bsd.sys.mk Log: Enable cpp(1) warnings in system headers. GCC is oriented on glibc which is externally maintained, so GCC ships with these warnings turned off by default. This is also consistent with the src/contrib/gcc/c-lex.c,v 1.2 change. Revision Changes Path 1.328 +1 -1 src/Makefile.inc1 1.12 +1 -0 src/share/mk/bsd.sys.mk From owner-cvs-all@FreeBSD.ORG Mon Mar 31 05:45:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29EFD37B401; Mon, 31 Mar 2003 05:45:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05F1643F75; Mon, 31 Mar 2003 05:45:37 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VDja0U072035; Mon, 31 Mar 2003 05:45:36 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VDjahD072034; Mon, 31 Mar 2003 05:45:36 -0800 (PST) Message-Id: <200303311345.h2VDjahD072034@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 31 Mar 2003 05:45:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/crypto/openssh auth-chall.c auth.h auth1.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 13:45:43 -0000 des 2003/03/31 05:45:36 PST FreeBSD src repository Modified files: crypto/openssh auth-chall.c auth.h auth1.c Log: If an ssh1 client initiated challenge-response authentication but did not respond to challenge, and later successfully authenticated itself using another method, the kbdint context would never be released, leaving the PAM child process behind even after the connection ended. Fix this by automatically releasing the kbdint context if a packet of type SSH_CMSG_AUTH_TIS is follwed by anything but a packet of type SSH_CMSG_AUTH_TIS_RESPONSE. MFC after: 1 week Revision Changes Path 1.6 +8 -0 src/crypto/openssh/auth-chall.c 1.10 +1 -0 src/crypto/openssh/auth.h 1.26 +13 -1 src/crypto/openssh/auth1.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 05:48:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D92A37B407; Mon, 31 Mar 2003 05:48:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1958F43FCB; Mon, 31 Mar 2003 05:48:19 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VDmI0U072103; Mon, 31 Mar 2003 05:48:18 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VDmIG7072102; Mon, 31 Mar 2003 05:48:18 -0800 (PST) Message-Id: <200303311348.h2VDmIG7072102@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 31 Mar 2003 05:48:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/crypto/openssh auth2-pam-freebsd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 13:48:33 -0000 des 2003/03/31 05:48:18 PST FreeBSD src repository Modified files: crypto/openssh auth2-pam-freebsd.c Log: - when using a child process instead of a thread, change the child's name to reflect its role - try to handle expired passwords a little better MFC after: 1 week Revision Changes Path 1.11 +13 -2 src/crypto/openssh/auth2-pam-freebsd.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 07:14:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1836D37B401; Mon, 31 Mar 2003 07:14:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A762443F93; Mon, 31 Mar 2003 07:14:03 -0800 (PST) (envelope-from trevor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VFE30U079551; Mon, 31 Mar 2003 07:14:03 -0800 (PST) (envelope-from trevor@repoman.freebsd.org) Received: (from trevor@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VFE3kx079550; Mon, 31 Mar 2003 07:14:03 -0800 (PST) Message-Id: <200303311514.h2VFE3kx079550@repoman.freebsd.org> From: Trevor Johnson Date: Mon, 31 Mar 2003 07:14:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/dcgui Makefile ports/net/dclib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 15:14:05 -0000 trevor 2003/03/31 07:14:03 PST FreeBSD ports repository Modified files: net/dcgui Makefile net/dclib Makefile Log: Davide Lemma reports that "With all versions prior to 0.2.3 [it] is possible due to a bug to see all the content of the whole filesystem and not just the configured directories." PR: 47590, 47591 Revision Changes Path 1.5 +1 -0 ports/net/dcgui/Makefile 1.6 +1 -0 ports/net/dclib/Makefile From owner-cvs-all@FreeBSD.ORG Mon Mar 31 07:54:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A8A037B401; Mon, 31 Mar 2003 07:54:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08E9943F75; Mon, 31 Mar 2003 07:54:01 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VFs00U082092; Mon, 31 Mar 2003 07:54:00 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VFs0uY082087; Mon, 31 Mar 2003 07:54:00 -0800 (PST) Message-Id: <200303311554.h2VFs0uY082087@repoman.freebsd.org> From: Norikatsu Shigemura Date: Mon, 31 Mar 2003 07:54:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gauche Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 15:54:04 -0000 nork 2003/03/31 07:54:00 PST FreeBSD ports repository Modified files: lang/gauche Makefile distinfo Log: Update to 0.6.8. PR: ports/50483 Submitted by: Erik Greenwald (maintainer) Revision Changes Path 1.14 +2 -2 ports/lang/gauche/Makefile 1.8 +1 -1 ports/lang/gauche/distinfo From owner-cvs-all@FreeBSD.ORG Mon Mar 31 08:05:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1D6037B401; Mon, 31 Mar 2003 08:05:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CE6143FAF; Mon, 31 Mar 2003 08:05:52 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VG5q0U083797; Mon, 31 Mar 2003 08:05:52 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VG5qDj083796; Mon, 31 Mar 2003 08:05:52 -0800 (PST) Message-Id: <200303311605.h2VG5qDj083796@repoman.freebsd.org> From: Martin Blapp Date: Mon, 31 Mar 2003 08:05:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-devel/files patch-setup2+mow+source+loader+loader.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 16:05:55 -0000 mbr 2003/03/31 08:05:52 PST FreeBSD ports repository Modified files: editors/openoffice-devel/files patch-setup2+mow+source+loader+loader.c Log: Readd previous deleted part. It is still needed for 4.x Revision Changes Path 1.5 +30 -2 ports/editors/openoffice-devel/files/patch-setup2+mow+source+loader+loader.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 08:35:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2997C37B401; Mon, 31 Mar 2003 08:35:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B627D43F75; Mon, 31 Mar 2003 08:35:06 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VGZ60U085619; Mon, 31 Mar 2003 08:35:06 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VGZ6tt085614; Mon, 31 Mar 2003 08:35:06 -0800 (PST) Message-Id: <200303311635.h2VGZ6tt085614@repoman.freebsd.org> From: Norikatsu Shigemura Date: Mon, 31 Mar 2003 08:35:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/gauche-gdbm Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 16:35:08 -0000 nork 2003/03/31 08:35:06 PST FreeBSD ports repository Modified files: databases/gauche-gdbm Makefile Log: Update to 0.6.8. PR: ports/50485 Submitted by: Erik Greenwald (maintainer) Revision Changes Path 1.12 +1 -1 ports/databases/gauche-gdbm/Makefile From owner-cvs-all@FreeBSD.ORG Mon Mar 31 08:36:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4965837B401; Mon, 31 Mar 2003 08:36:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCC9B43FB1; Mon, 31 Mar 2003 08:36:46 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VGak0U085701; Mon, 31 Mar 2003 08:36:46 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VGakVs085700; Mon, 31 Mar 2003 08:36:46 -0800 (PST) Message-Id: <200303311636.h2VGakVs085700@repoman.freebsd.org> From: Norikatsu Shigemura Date: Mon, 31 Mar 2003 08:36:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/gauche-gdbm distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 16:36:48 -0000 nork 2003/03/31 08:36:46 PST FreeBSD ports repository Removed files: databases/gauche-gdbm distinfo Log: Oops, I forgot cvs remove distfiles. Revision Changes Path 1.2 +0 -1 ports/databases/gauche-gdbm/distinfo (dead) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 08:38:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E5FE37B401; Mon, 31 Mar 2003 08:38:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE4D743FB1; Mon, 31 Mar 2003 08:38:42 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VGcg0U085792; Mon, 31 Mar 2003 08:38:42 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VGcg9D085791; Mon, 31 Mar 2003 08:38:42 -0800 (PST) Message-Id: <200303311638.h2VGcg9D085791@repoman.freebsd.org> From: Tilman Linneweh Date: Mon, 31 Mar 2003 08:38:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/abcde Makefile ports/audio/abcde/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 16:38:44 -0000 arved 2003/03/31 08:38:42 PST FreeBSD ports repository Modified files: audio/abcde Makefile audio/abcde/files patch-aa Log: Use cdparanoia per default, since the port depends on it. Add optional dependency on sysutils/eject PR: 48196 Submitted by: maintainer Reported by: Gregory Bond Revision Changes Path 1.7 +13 -1 ports/audio/abcde/Makefile 1.2 +17 -12 ports/audio/abcde/files/patch-aa From owner-cvs-all@FreeBSD.ORG Mon Mar 31 09:01:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D552037B401; Mon, 31 Mar 2003 09:01:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7354543FB1; Mon, 31 Mar 2003 09:01:35 -0800 (PST) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VH1Z0U092631; Mon, 31 Mar 2003 09:01:35 -0800 (PST) (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VH1ZM0092630; Mon, 31 Mar 2003 09:01:35 -0800 (PST) Message-Id: <200303311701.h2VH1ZM0092630@repoman.freebsd.org> From: Martin Heinen Date: Mon, 31 Mar 2003 09:01:35 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/kernelconfig chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 17:01:38 -0000 mheinen 2003/03/31 09:01:35 PST FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/kernelconfig chapter.sgml Log: Remove a duplicate full stop. Revision Changes Path 1.104 +1 -1 doc/en_US.ISO8859-1/books/handbook/kernelconfig/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Mar 31 09:17:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ECCB37B401; Mon, 31 Mar 2003 09:17:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EFD143F85; Mon, 31 Mar 2003 09:17:43 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VHHh0U094392; Mon, 31 Mar 2003 09:17:43 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VHHgw4094391; Mon, 31 Mar 2003 09:17:42 -0800 (PST) Message-Id: <200303311717.h2VHHgw4094391@repoman.freebsd.org> From: Norikatsu Shigemura Date: Mon, 31 Mar 2003 09:17:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/mplayer Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 17:17:45 -0000 nork 2003/03/31 09:17:42 PST FreeBSD ports repository Modified files: multimedia/mplayer Makefile Log: Bump PORTREVISION by previous commit. Pointed out by: ume Revision Changes Path 1.54 +1 -0 ports/multimedia/mplayer/Makefile From owner-cvs-all@FreeBSD.ORG Mon Mar 31 09:25:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D961037B401; Mon, 31 Mar 2003 09:25:03 -0800 (PST) Received: from randomservers.com (randomservers.com [198.78.65.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1ACD943FBD; Mon, 31 Mar 2003 09:25:03 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from randomservers.com (randomservers [198.78.65.158]) by randomservers.com (8.12.8/8.12.6) with ESMTP id h2VHO7dA060523 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 31 Mar 2003 09:24:07 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from localhost (joseph@localhost)h2VHO7N1060394; Mon, 31 Mar 2003 09:24:07 -0800 (PST) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: joseph owned process doing -bs Date: Mon, 31 Mar 2003 09:24:06 -0800 (PST) From: Joseph Scott X-X-Sender: joseph@randomservers To: Edwin Groothuis In-Reply-To: <200303310000.h2V00ilE081655@repoman.freebsd.org> Message-ID: <20030331092225.K38589@randomservers> References: <200303310000.h2V00ilE081655@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-1.5 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_00_01, X_AUTH_WARNING version=2.44 cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/devel/p5-Class-Container Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 17:25:05 -0000 On Sun, 30 Mar 2003, Edwin Groothuis wrote: > edwin 2003/03/30 16:00:44 PST > > FreeBSD ports repository > > Modified files: > devel/p5-Class-Container Makefile distinfo > Log: > Update port: devel/p5-Class-Container to latest (0.09) version > > PR: ports/48656 > Submitted by: Denis Shaposhnikov This appears to be the same as PR ports/48926. Is PR ports/48572 still an issue? -Joseph From owner-cvs-all@FreeBSD.ORG Mon Mar 31 09:28:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5905C37B401; Mon, 31 Mar 2003 09:28:48 -0800 (PST) Received: from melusine.cuivre.fr.eu.org (melusine.cuivre.fr.eu.org [62.212.105.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4951143FBD; Mon, 31 Mar 2003 09:28:47 -0800 (PST) (envelope-from thomas@FreeBSD.ORG) Received: by melusine.cuivre.fr.eu.org (Postfix, from userid 1000) id 5C1402C3D1; Mon, 31 Mar 2003 19:28:46 +0200 (CEST) Date: Mon, 31 Mar 2003 19:28:46 +0200 From: Thomas Quinot To: Tim Robbins Message-ID: <20030331172846.GF19836@melusine.cuivre.fr.eu.org> References: <200303210513.h2L5DNxI010282@repoman.freebsd.org> <20030321144623.GA9837@melusine.cuivre.fr.eu.org> <20030322164349.A53599@dilbert.robbins.dropbear.id.au> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20030322164349.A53599@dilbert.robbins.dropbear.id.au> User-Agent: Mutt/1.4i X-message-flag: WARNING! Using Outlook can damage your computer. cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: roberto@freebsd.org cc: cvs-all@FreeBSD.org cc: Thomas Quinot Subject: Re: cvs commit: src/sys/nfsclient nfs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Thomas Quinot List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 17:28:50 -0000 Le 2003-03-22, Tim Robbins écrivait : > Go ahead and commit your version if you like -- I was not confident that > it was ok to use vaccess() and just wanted to get NFSv2 appends to work. The patch is ready to be committed, pending review by my mentor (roberto). -- Thomas.Quinot@Cuivre.FR.EU.ORG From owner-cvs-all@FreeBSD.ORG Mon Mar 31 09:29:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 045D437B401; Mon, 31 Mar 2003 09:29:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8215943FBD; Mon, 31 Mar 2003 09:29:44 -0800 (PST) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VHTi0U095145; Mon, 31 Mar 2003 09:29:44 -0800 (PST) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VHTi9k095144; Mon, 31 Mar 2003 09:29:44 -0800 (PST) Message-Id: <200303311729.h2VHTi9k095144@repoman.freebsd.org> From: Nate Lawson Date: Mon, 31 Mar 2003 09:29:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 17:29:46 -0000 njl 2003/03/31 09:29:44 PST FreeBSD src repository Modified files: sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c if_wb.c if_xl.c Log: Clean up locking and resource management for pci/if_* - Remove locking of the softc in the attach method, instead depending on bus_setup_intr being at the end of attach (delaying interrupt enable until after ether_ifattach is called) - Call *_detach directly in the error case of attach, depending on checking in detach to only free resources that were allocated. This puts all resource freeing in one place, avoiding thinkos that lead to memory leaks. - Add bus_child_present check to calls to *_stop in the detach method to be sure hw is present before touching its registers. - Remove bzero softc calls since device_t should do this for us. - dc: move interrupt allocation back where it was before. It was unnecessary to move it. This reverts part of 1.88 - rl: move irq allocation before ether_ifattach. Problems might have been caused by allocating the irq after enabling interrupts on the card. - rl: call rl_stop before ether_ifdetach - sf: call sf_stop before ether_ifdetach - sis: add missed free of sis_tag - sis: check errors from tag creation - sis: move dmamem_alloc and dmamap_load to happen at same time as tag creation - sk: remove duplicate initialization of sk_dev - ste: add missed bus_generic_detach - ti: call ti_stop before ether_ifdetach - ti: add missed error setting in ti_rdata alloc failure - vr: add missed error setting in I/O, memory mapping cases - xl: add missed error setting in I/O, memory mapping cases - xl: remove multi-level goto on attach failure - xl: move dmamem_alloc and dmamap_load to happen at same time as tag creation - Calls to free(9) are unconditional because it is valid to call free with a null pointer. Reviewed by: imp, mdodd Revision Changes Path 1.97 +32 -33 src/sys/pci/if_dc.c 1.36 +29 -33 src/sys/pci/if_pcn.c 1.91 +34 -34 src/sys/pci/if_rl.c 1.50 +28 -33 src/sys/pci/if_sf.c 1.67 +102 -86 src/sys/pci/if_sis.c 1.55 +59 -60 src/sys/pci/if_sk.c 1.46 +30 -38 src/sys/pci/if_ste.c 1.72 +32 -50 src/sys/pci/if_ti.c 1.75 +28 -34 src/sys/pci/if_tl.c 1.64 +28 -35 src/sys/pci/if_vr.c 1.54 +27 -33 src/sys/pci/if_wb.c 1.135 +103 -113 src/sys/pci/if_xl.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 09:34:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DBC637B401; Mon, 31 Mar 2003 09:34:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF6A443FDD; Mon, 31 Mar 2003 09:34:08 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VHY80U095659; Mon, 31 Mar 2003 09:34:08 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VHY8tk095658; Mon, 31 Mar 2003 09:34:08 -0800 (PST) Message-Id: <200303311734.h2VHY8tk095658@repoman.freebsd.org> From: Norikatsu Shigemura Date: Mon, 31 Mar 2003 09:34:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/p5-Crypt-Twofish Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 17:34:10 -0000 nork 2003/03/31 09:34:08 PST FreeBSD ports repository Modified files: security/p5-Crypt-Twofish Makefile Log: Clean up Makefile: o remove SITE_PERL o remove MANPREFIX o use PERL_LEVEL to determine perl version o give maintainership PR: ports/50490 Submitted by: Erwin Lansing Revision Changes Path 1.10 +3 -10 ports/security/p5-Crypt-Twofish/Makefile From owner-cvs-all@FreeBSD.ORG Mon Mar 31 09:35:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5544B37B404 for ; Mon, 31 Mar 2003 09:35:24 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 2C9D543F93 for ; Mon, 31 Mar 2003 09:35:21 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 7451 invoked by uid 1000); 31 Mar 2003 17:35:21 -0000 Date: Mon, 31 Mar 2003 09:35:21 -0800 (PST) From: Nate Lawson To: cvs-all@FreeBSD.org, cvs-src@FreeBSD.org, src-committers@FreeBSD.org In-Reply-To: <20030331172955.66E0837B404@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.cif_sis.c if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 17:35:26 -0000 On Mon, 31 Mar 2003, Nate Lawson wrote: > Modified files: > sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c > if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c > if_wb.c if_xl.c > Log: > Clean up locking and resource management for pci/if_* This is a rather large patch so if you begin to experience problems attaching or detaching (say on module load/unload) a previously-working card, please let me know. -Nate From owner-cvs-all@FreeBSD.ORG Mon Mar 31 09:36:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D9FB37B401; Mon, 31 Mar 2003 09:36:59 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 236DB43FAF; Mon, 31 Mar 2003 09:36:59 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 0D9B92ED40D; Mon, 31 Mar 2003 09:36:59 -0800 (PST) Date: Mon, 31 Mar 2003 09:36:59 -0800 From: Alfred Perlstein To: Poul-Henning Kamp Message-ID: <20030331173658.GA17388@elvis.mu.org> References: <20030331140740.R17363@gamplex.bde.org> <22298.1049103240@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <22298.1049103240@critter.freebsd.dk> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Bruce Evans cc: Nate Lawson Subject: Re: cvs commit: src/sbin/fdisk fdisk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 17:37:02 -0000 * Poul-Henning Kamp [030331 01:34] wrote: > In message <20030331140740.R17363@gamplex.bde.org>, Bruce Evans writes: > > >This is more broken than I thought. fdisk now defaults to a wrong geometry > >in all cases where the BIOS geometry differs from the firmware geometry. > > > >The default geometry was H=1/S=1 or whatever is returned by DIOCGDINFO > >until this was broken in -current. This is still non-broken in RELENG_4. > > I don't particularly care for what numbers we use, but I do not > want a lot of elaborate DWIM code since in this particular case the > user had better know exactly what she is doing anyway. The problem is that each time you muck with these systems it becomes harder to get it to DWIW, nevermind DWIM. Still wish we had the Solaris format tool. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' From owner-cvs-all@FreeBSD.ORG Mon Mar 31 09:38:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE90F37B404; Mon, 31 Mar 2003 09:38:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F52943FBD; Mon, 31 Mar 2003 09:38:19 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VHcI0U095855; Mon, 31 Mar 2003 09:38:18 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VHcIPt095854; Mon, 31 Mar 2003 09:38:18 -0800 (PST) Message-Id: <200303311738.h2VHcIPt095854@repoman.freebsd.org> From: "Bruce A. Mah" Date: Mon, 31 Mar 2003 09:38:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD 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-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 17:38:21 -0000 bmah 2003/03/31 09:38:18 PST FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/errata article.sgml release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes/errata: SA-03:07. Submitted by: gshapiro Revision Changes Path 1.34 +5 -3 src/release/doc/en_US.ISO8859-1/errata/article.sgml 1.531 +6 -4 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Mon Mar 31 09:54:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAD1D37B401; Mon, 31 Mar 2003 09:54:25 -0800 (PST) Received: from randomservers.com (randomservers.com [198.78.65.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13BE543F85; Mon, 31 Mar 2003 09:54:25 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from randomservers.com (randomservers [198.78.65.158]) by randomservers.com (8.12.8/8.12.6) with ESMTP id h2VHrVdA000438 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 31 Mar 2003 09:53:31 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from localhost (joseph@localhost)h2VHrV9T000431; Mon, 31 Mar 2003 09:53:31 -0800 (PST) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: joseph owned process doing -bs Date: Mon, 31 Mar 2003 09:53:30 -0800 (PST) From: Joseph Scott X-X-Sender: joseph@randomservers To: Edwin Groothuis In-Reply-To: <200303310751.h2V7pAnI032064@repoman.freebsd.org> Message-ID: <20030331095307.F38589@randomservers> References: <200303310751.h2V7pAnI032064@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-1.5 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_00_01, X_AUTH_WARNING version=2.44 cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/graphics/avidemux Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 17:54:27 -0000 On Sun, 30 Mar 2003, Edwin Groothuis wrote: > edwin 2003/03/30 23:51:10 PST > > FreeBSD ports repository > > Modified files: > graphics/avidemux Makefile distinfo > Log: > Update and fix for current to version 0.9.0.101 > > PR: ports/48938 > Submitted by: Anish Mistry This appears to also take care of PR ports/46760. -Joseph From owner-cvs-all@FreeBSD.ORG Mon Mar 31 09:56:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2473237B401; Mon, 31 Mar 2003 09:56:19 -0800 (PST) Received: from randomservers.com (randomservers.com [198.78.65.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCBE043FD7; Mon, 31 Mar 2003 09:56:17 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from randomservers.com (randomservers [198.78.65.158]) by randomservers.com (8.12.8/8.12.6) with ESMTP id h2VHtPdA005578 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 31 Mar 2003 09:55:25 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from localhost (joseph@localhost)h2VHtPqb005575; Mon, 31 Mar 2003 09:55:25 -0800 (PST) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: joseph owned process doing -bs Date: Mon, 31 Mar 2003 09:55:25 -0800 (PST) From: Joseph Scott X-X-Sender: joseph@randomservers To: Edwin Groothuis In-Reply-To: <200303310755.h2V7tgCQ032260@repoman.freebsd.org> Message-ID: <20030331095455.B38589@randomservers> References: <200303310755.h2V7tgCQ032260@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-0.7 required=8.0 tests=IN_REP_TO,REFERENCES,SPAM_PHRASE_00_01,X_AUTH_WARNING version=2.44 cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/mail/tmda Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 17:56:20 -0000 On Sun, 30 Mar 2003, Edwin Groothuis wrote: > edwin 2003/03/30 23:55:42 PST > > FreeBSD ports repository > > Modified files: > mail/tmda Makefile distinfo > Log: > TMDA port is out of date to version 0.71 > > PR: ports/49052 > Submitted by: Mike Meyer PR ports/50372 has an update to 0.73. -Joseph From owner-cvs-all@FreeBSD.ORG Mon Mar 31 10:06:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD6F237B401; Mon, 31 Mar 2003 10:06:09 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69A5143F3F; Mon, 31 Mar 2003 10:06:08 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.8/8.12.8) with ESMTP id h2VI5tSM024904; Mon, 31 Mar 2003 20:05:59 +0200 (CEST) (envelope-from phk@phk.freebsd.dk) To: Alfred Perlstein From: "Poul-Henning Kamp" In-Reply-To: Your message of "Mon, 31 Mar 2003 09:36:59 -0800." <20030331173658.GA17388@elvis.mu.org> Date: Mon, 31 Mar 2003 20:05:55 +0200 Message-ID: <24903.1049133955@critter.freebsd.dk> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Bruce Evans cc: Nate Lawson Subject: Re: cvs commit: src/sbin/fdisk fdisk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 18:06:11 -0000 In message <20030331173658.GA17388@elvis.mu.org>, Alfred Perlstein writes: >* Poul-Henning Kamp [030331 01:34] wrote: >> In message <20030331140740.R17363@gamplex.bde.org>, Bruce Evans writes: >> >> >This is more broken than I thought. fdisk now defaults to a wrong geometry >> >in all cases where the BIOS geometry differs from the firmware geometry. >> > >> >The default geometry was H=1/S=1 or whatever is returned by DIOCGDINFO >> >until this was broken in -current. This is still non-broken in RELENG_4. >> >> I don't particularly care for what numbers we use, but I do not >> want a lot of elaborate DWIM code since in this particular case the >> user had better know exactly what she is doing anyway. > >The problem is that each time you muck with these systems it becomes >harder to get it to DWIW, nevermind DWIM. Still wish we had the Solaris >format tool. If I had a (quasi-)sensible[1] on-disk format, writing such a tool would be trivial. The reason it is not trivial is because both the MBR and BSD (as used by us) have major "issues" which you have to work around and guess at as best you can. Poul-Henning [1] SUNLABELS suck in general, but since sun has control over the firmware, this doesn't affect the users much. -- 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. From owner-cvs-all@FreeBSD.ORG Mon Mar 31 10:12:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D4B937B401; Mon, 31 Mar 2003 10:12:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29ED643F93; Mon, 31 Mar 2003 10:12:57 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VICu0U099237; Mon, 31 Mar 2003 10:12:56 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VICuXN099236; Mon, 31 Mar 2003 10:12:56 -0800 (PST) Message-Id: <200303311812.h2VICuXN099236@repoman.freebsd.org> From: "Bruce A. Mah" Date: Mon, 31 Mar 2003 10:12:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 18:12:58 -0000 bmah 2003/03/31 10:12:56 PST FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/errata article.sgml Log: Release errata can also contain information uncovered late in the release cycle (after the release notes are closed). Note this fact. Revision Changes Path 1.35 +3 -1 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-all@FreeBSD.ORG Mon Mar 31 10:20:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 621EC37B401; Mon, 31 Mar 2003 10:20:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F24B843F3F; Mon, 31 Mar 2003 10:20:52 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VIKq0U000176; Mon, 31 Mar 2003 10:20:52 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VIKqok000173; Mon, 31 Mar 2003 10:20:52 -0800 (PST) Message-Id: <200303311820.h2VIKqok000173@repoman.freebsd.org> From: "Bruce A. Mah" Date: Mon, 31 Mar 2003 10:20:52 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.0R errata.html X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 18:20:54 -0000 bmah 2003/03/31 10:20:52 PST FreeBSD doc repository Modified files: en/releases/5.0R errata.html Log: Regen from article.sgml 1.35. Revision Changes Path 1.11 +87 -76 www/en/releases/5.0R/errata.html From owner-cvs-all@FreeBSD.ORG Mon Mar 31 10:21:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA16137B401; Mon, 31 Mar 2003 10:21:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59A2543FD7; Mon, 31 Mar 2003 10:21:53 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VILr0U000338; Mon, 31 Mar 2003 10:21:53 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VILrQ7000337; Mon, 31 Mar 2003 10:21:53 -0800 (PST) Message-Id: <200303311821.h2VILrQ7000337@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 31 Mar 2003 10:21:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sab sab.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 18:21:55 -0000 jake 2003/03/31 10:21:53 PST FreeBSD src repository Modified files: sys/dev/sab sab.c Log: Match "serial" as well as "se". Revision Changes Path 1.17 +2 -1 src/sys/dev/sab/sab.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 10:24:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0F4C37B401; Mon, 31 Mar 2003 10:24:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 418AD43FAF; Mon, 31 Mar 2003 10:24:54 -0800 (PST) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VIOs0U000457; Mon, 31 Mar 2003 10:24:54 -0800 (PST) (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VIOreT000456; Mon, 31 Mar 2003 10:24:53 -0800 (PST) Message-Id: <200303311824.h2VIOreT000456@repoman.freebsd.org> From: Jimmy Olgeni Date: Mon, 31 Mar 2003 10:24:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/eterm Makefile distinfo pkg-plist patch-auto:theme.cfg.in patch-configure patch-default_font_index patch-doc:Makefile.in patch-themes-Eterm:menus.cfg ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 18:25:04 -0000 olgeni 2003/03/31 10:24:53 PST FreeBSD ports repository Modified files: x11/eterm Makefile distinfo pkg-plist x11/eterm/files patch-doc:Makefile.in patch-src:Makefile.in Added files: x11/eterm/files patch-configure patch-themes-Eterm:menus.cfg patch-themes-auto:menus.cfg patch-themes-trans:menus.cfg Removed files: x11/eterm/files patch-Eterm:theme.cfg.in patch-auto:theme.cfg.in patch-default_font_index patch-src:command.c patch-vim_escape_handling Log: Upgrade to 0.9.2, including the following changes: * Use the "Eterm" termcap entry, which has been available in -STABLE for quite some time. * No longer depend on man2html. * Do not install .la files. (largely based on a port by Philip Paeps ) Revision Changes Path 1.45 +6 -5 ports/x11/eterm/Makefile 1.13 +1 -1 ports/x11/eterm/distinfo 1.4 +0 -20 ports/x11/eterm/files/patch-Eterm:theme.cfg.in (dead) 1.4 +0 -11 ports/x11/eterm/files/patch-auto:theme.cfg.in (dead) 1.1 +13 -0 ports/x11/eterm/files/patch-configure (new) 1.4 +0 -33 ports/x11/eterm/files/patch-default_font_index (dead) 1.4 +27 -16 ports/x11/eterm/files/patch-doc:Makefile.in 1.5 +6 -6 ports/x11/eterm/files/patch-src:Makefile.in 1.4 +0 -21 ports/x11/eterm/files/patch-src:command.c (dead) 1.1 +8 -0 ports/x11/eterm/files/patch-themes-Eterm:menus.cfg (new) 1.1 +8 -0 ports/x11/eterm/files/patch-themes-auto:menus.cfg (new) 1.1 +8 -0 ports/x11/eterm/files/patch-themes-trans:menus.cfg (new) 1.4 +0 -77 ports/x11/eterm/files/patch-vim_escape_handling (dead) 1.18 +4 -7 ports/x11/eterm/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Mar 31 10:35:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0845437B401; Mon, 31 Mar 2003 10:35:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99EF843F85; Mon, 31 Mar 2003 10:35:38 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VIZc0U001321; Mon, 31 Mar 2003 10:35:38 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VIZc2u001320; Mon, 31 Mar 2003 10:35:38 -0800 (PST) Message-Id: <200303311835.h2VIZc2u001320@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 31 Mar 2003 10:35:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_ctl.c geom_int.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 18:35:40 -0000 phk 2003/03/31 10:35:37 PST FreeBSD src repository Modified files: sys/geom geom_ctl.c geom_int.h Log: Remove some debugging in the new OAM[*] and add a debug flag for other parts of it. [*] I've been asked what "OAM" means: It's an acronym used in the telecom industry, "Operations And Maintenance", and there it covers anything from a single unlabeled led on the frontpanel the the full nightmare of CMIP for SS7. Revision Changes Path 1.12 +2 -5 src/sys/geom/geom_ctl.c 1.17 +1 -0 src/sys/geom/geom_int.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 10:38:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96F9637B401; Mon, 31 Mar 2003 10:38:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3580043FAF; Mon, 31 Mar 2003 10:38:32 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VIcW0U001447; Mon, 31 Mar 2003 10:38:32 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VIcVPP001446; Mon, 31 Mar 2003 10:38:31 -0800 (PST) Message-Id: <200303311838.h2VIcVPP001446@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 31 Mar 2003 10:38:31 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/gbde Makefile gbde.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 18:38:34 -0000 phk 2003/03/31 10:38:31 PST FreeBSD src repository Modified files: sbin/gbde Makefile gbde.c Log: Use new GEOM OAM. Kernels have supported this for a number of days, so people should be OK. Revision Changes Path 1.7 +1 -1 src/sbin/gbde/Makefile 1.12 +28 -39 src/sbin/gbde/gbde.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 11:13:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADD0137B401; Mon, 31 Mar 2003 11:13:18 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC31B43F93; Mon, 31 Mar 2003 11:13:17 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.9/8.12.9) with ESMTP id h2VJDHMS000944 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Mon, 31 Mar 2003 14:13:17 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h2VJDCG27464; Mon, 31 Mar 2003 14:13:12 -0500 (EST) (envelope-from gallatin@cs.duke.edu) Date: Mon, 31 Mar 2003 14:13:12 -0500 From: Andrew Gallatin To: Nate Lawson Message-ID: <20030331141312.A27442@grasshopper.cs.duke.edu> References: <20030331172955.66E0837B404@hub.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 nate@root.org on Mon, Mar 31, 2003 at 09:35:21AM -0800 X-Operating-System: FreeBSD 4.4-RELEASE on an i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 19:13:22 -0000 Nate Lawson [nate@root.org] wrote: > On Mon, 31 Mar 2003, Nate Lawson wrote: > > Modified files: > > sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c > > if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c > > if_wb.c if_xl.c > > Log: > > Clean up locking and resource management for pci/if_* > > This is a rather large patch so if you begin to experience problems > attaching or detaching (say on module load/unload) a previously-working > card, please let me know. Very nice. Now that the locking is right, do you plan to enable INTR_MPSAFE on these? Thanks, Drew From owner-cvs-all@FreeBSD.ORG Mon Mar 31 11:24:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10DBB37B401; Mon, 31 Mar 2003 11:24:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2EBD43FA3; Mon, 31 Mar 2003 11:24:37 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VJOb0U005463; Mon, 31 Mar 2003 11:24:37 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VJOb9n005462; Mon, 31 Mar 2003 11:24:37 -0800 (PST) Message-Id: <200303311924.h2VJOb9n005462@repoman.freebsd.org> From: John Baldwin Date: Mon, 31 Mar 2003 11:24:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_tl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 19:24:39 -0000 jhb 2003/03/31 11:24:37 PST FreeBSD src repository Modified files: sys/pci if_tl.c Log: If we fail to find our PCI ID in attach (this should never happen), then just return ENXIO directly instead of calling tl_detach() since that would panic since the softc mutex isn't initialized until after this check. Revision Changes Path 1.76 +1 -2 src/sys/pci/if_tl.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 11:26:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C957337B401 for ; Mon, 31 Mar 2003 11:26:25 -0800 (PST) Received: from mail.speakeasy.net (mail16.speakeasy.net [216.254.0.216]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43D0F43FDF for ; Mon, 31 Mar 2003 11:26:24 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 5926 invoked from network); 31 Mar 2003 19:26:30 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 31 Mar 2003 19:26:30 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.8/8.12.8) with ESMTP id h2VJQLOv016509; Mon, 31 Mar 2003 14:26:21 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Mon, 31 Mar 2003 14:26:22 -0500 (EST) From: John Baldwin To: Nate Lawson cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 19:26:28 -0000 On 31-Mar-2003 Nate Lawson wrote: > On Mon, 31 Mar 2003, Nate Lawson wrote: >> Modified files: >> sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c >> if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c >> if_wb.c if_xl.c >> Log: >> Clean up locking and resource management for pci/if_* > > This is a rather large patch so if you begin to experience problems > attaching or detaching (say on module load/unload) a previously-working > card, please let me know. Already found a bogon in tl(4) when it conflicted with some local changes. Might want to double check that you don't call detach() for very early failures when you have no resources to teardown or release but just do a direct return in the other drivers. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-all@FreeBSD.ORG Mon Mar 31 11:37:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1577A37B401; Mon, 31 Mar 2003 11:37:46 -0800 (PST) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id B616943FA3; Mon, 31 Mar 2003 11:37:44 -0800 (PST) (envelope-from jake@k6.locore.ca) Received: from k6.locore.ca (localhost.locore.ca [127.0.0.1]) by k6.locore.ca (8.12.8/8.12.8) with ESMTP id h2VJiDxS038576; Mon, 31 Mar 2003 14:44:13 -0500 (EST) (envelope-from jake@k6.locore.ca) Received: (from jake@localhost) by k6.locore.ca (8.12.8/8.12.8/Submit) id h2VJiDqB038575; Mon, 31 Mar 2003 14:44:13 -0500 (EST) Date: Mon, 31 Mar 2003 14:44:13 -0500 From: Jake Burkholder To: Nate Lawson Message-ID: <20030331194413.GA37842@locore.ca> References: <200303311729.h2VHTi9k095144@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200303311729.h2VHTi9k095144@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 19:37:49 -0000 Apparently, On Mon, Mar 31, 2003 at 09:29:44AM -0800, Nate Lawson said words to the effect of; > njl 2003/03/31 09:29:44 PST > > FreeBSD src repository > > Modified files: > sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c > if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c > if_wb.c if_xl.c > Log: > Clean up locking and resource management for pci/if_* > Seems like the same broken KASSERT was cut and pasted into all of these: Index: pci/if_rl.c =================================================================== RCS file: /home/ncvs/src/sys/pci/if_rl.c,v retrieving revision 1.91 diff -u -r1.91 if_rl.c --- pci/if_rl.c 31 Mar 2003 17:29:43 -0000 1.91 +++ pci/if_rl.c 31 Mar 2003 19:18:54 -0000 @@ -1103,7 +1103,7 @@ struct ifnet *ifp; sc = device_get_softc(dev); - KASSERT(mtx_initialized(&sc->rl_mtx), "rl mutex not initialized"); + KASSERT(mtx_initialized(&sc->rl_mtx), ("rl mutex not initialized")); RL_LOCK(sc); ifp = &sc->arpcom.ac_if; Index: pci/if_xl.c =================================================================== RCS file: /home/ncvs/src/sys/pci/if_xl.c,v retrieving revision 1.135 diff -u -r1.135 if_xl.c --- pci/if_xl.c 31 Mar 2003 17:29:43 -0000 1.135 +++ pci/if_xl.c 31 Mar 2003 19:19:34 -0000 @@ -1740,7 +1740,7 @@ int rid, res; sc = device_get_softc(dev); - KASSERT(mtx_initialized(&sc->xl_mtx), "xl mutex not initialized"); + KASSERT(mtx_initialized(&sc->xl_mtx), ("xl mutex not initialized")); XL_LOCK(sc); ifp = &sc->arpcom.ac_if; etc. Jake From owner-cvs-all@FreeBSD.ORG Mon Mar 31 11:42:22 2003 Return-Path: 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 F2F6E37B401; Mon, 31 Mar 2003 11:42:21 -0800 (PST) Received: from green.bikeshed.org (k3yoclw71mzmvaaw@green.bikeshed.org [10.0.0.1] (may be forged)) by green.bikeshed.org (8.12.7/8.12.6) with ESMTP id h2VJgGTD096346; Mon, 31 Mar 2003 14:42:17 -0500 (EST) (envelope-from green@green.bikeshed.org) Received: from localhost (green@localhost)h2VJfvoO096342; Mon, 31 Mar 2003 14:41:58 -0500 (EST) Message-Id: <200303311941.h2VJfvoO096342@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Bruce Evans In-Reply-To: Your message of "Mon, 31 Mar 2003 16:31:36 +1000." <20030331151946.X17526@gamplex.bde.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 31 Mar 2003 14:41:57 -0500 Sender: green@green.bikeshed.org cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: Greg 'groggy' Lehey cc: Mike Silbersack cc: Nate Lawson cc: cvs-all@FreeBSD.org Subject: Re: Checksum/copy (was: Re: cvs commit: src/sys/netinet ip_output.c) X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 19:42:26 -0000 Would you mind please moving this discussion to an appropriate list (may I suggest hackers@)? -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Mon Mar 31 11:49:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34AAB37B401; Mon, 31 Mar 2003 11:49:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D11F943F85; Mon, 31 Mar 2003 11:48:59 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VJmx0U007003; Mon, 31 Mar 2003 11:48:59 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VJmxpX007002; Mon, 31 Mar 2003 11:48:59 -0800 (PST) Message-Id: <200303311948.h2VJmxpX007002@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 31 Mar 2003 11:48:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/openssh Makefile distinfo ports/security/openssh/files patch-monitor.c patch-session.c patch-sftp-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 19:49:01 -0000 dinoex 2003/03/31 11:48:59 PST FreeBSD ports repository Modified files: security/openssh Makefile distinfo security/openssh/files patch-monitor.c patch-session.c patch-sftp-Makefile Log: - Update to 3.6 This version does no longer compile on FreeBSD 2.2.8 Revision Changes Path 1.114 +1 -2 ports/security/openssh/Makefile 1.36 +2 -2 ports/security/openssh/distinfo 1.2 +9 -9 ports/security/openssh/files/patch-monitor.c 1.14 +19 -19 ports/security/openssh/files/patch-session.c 1.4 +3 -3 ports/security/openssh/files/patch-sftp-Makefile From owner-cvs-all@FreeBSD.ORG Mon Mar 31 11:56:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 681CE37B401; Mon, 31 Mar 2003 11:56:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0167A43F75; Mon, 31 Mar 2003 11:56:56 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VJut0U007633; Mon, 31 Mar 2003 11:56:55 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VJutFq007632; Mon, 31 Mar 2003 11:56:55 -0800 (PST) Message-Id: <200303311956.h2VJutFq007632@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 31 Mar 2003 11:56:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 pmap.c tsb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 19:56:58 -0000 jake 2003/03/31 11:56:55 PST FreeBSD src repository Modified files: sys/sparc64/sparc64 pmap.c tsb.c Log: - Allow the physical memory size that will be actually used by the kernel to be overridden by setting hw.physmem. - Fix a vm_map_find arg, we don't want to find space. - Add tracing and statistics for off colored pages. - Detect "stupid" pmap_kenters (same virtual and physical as existing mapping), and do nothing in that case. Revision Changes Path 1.104 +29 -2 src/sys/sparc64/sparc64/pmap.c 1.32 +15 -0 src/sys/sparc64/sparc64/tsb.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 12:22:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9516537B412; Mon, 31 Mar 2003 12:22:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D16E43F3F; Mon, 31 Mar 2003 12:22:01 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VKM10U010583; Mon, 31 Mar 2003 12:22:01 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VKM0b1010582; Mon, 31 Mar 2003 12:22:00 -0800 (PST) Message-Id: <200303312022.h2VKM0b1010582@repoman.freebsd.org> From: John Baldwin Date: Mon, 31 Mar 2003 12:22:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_ste.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 20:22:03 -0000 jhb 2003/03/31 12:22:00 PST FreeBSD src repository Modified files: sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_ste.c if_tl.c if_vr.c if_wb.c if_xl.c Log: Add missing ()'s so that these drivers all compile again. Noticed by: jake Tested on: i386 (compile) Revision Changes Path 1.98 +1 -1 src/sys/pci/if_dc.c 1.37 +1 -1 src/sys/pci/if_pcn.c 1.92 +1 -1 src/sys/pci/if_rl.c 1.51 +1 -1 src/sys/pci/if_sf.c 1.68 +1 -1 src/sys/pci/if_sis.c 1.47 +1 -1 src/sys/pci/if_ste.c 1.77 +1 -1 src/sys/pci/if_tl.c 1.65 +1 -1 src/sys/pci/if_vr.c 1.55 +1 -1 src/sys/pci/if_wb.c 1.136 +1 -1 src/sys/pci/if_xl.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 12:50:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B58937B401 for ; Mon, 31 Mar 2003 12:50:39 -0800 (PST) Received: from mail.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3536B43F85 for ; Mon, 31 Mar 2003 12:50:37 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 19053 invoked from network); 31 Mar 2003 20:50:42 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 31 Mar 2003 20:50:42 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.8/8.12.8) with ESMTP id h2VKoJOv016780; Mon, 31 Mar 2003 15:50:22 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200303312022.h2VKM0b1010582@repoman.freebsd.org> Date: Mon, 31 Mar 2003 15:50:20 -0500 (EST) From: John Baldwin To: John Baldwin cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_ste.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 20:50:42 -0000 On 31-Mar-2003 John Baldwin wrote: > jhb 2003/03/31 12:22:00 PST > > FreeBSD src repository > > Modified files: > sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c > if_ste.c if_tl.c if_vr.c if_wb.c if_xl.c > Log: > Add missing ()'s so that these drivers all compile again. > > Noticed by: jake > Tested on: i386 (compile) Also, the pcn(4) driver still has some possibly bogus locking in its probe routine. Not sure if other drivers have locks in their probe routines. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-all@FreeBSD.ORG Mon Mar 31 13:09:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1347C37B401; Mon, 31 Mar 2003 13:09:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0AF143FB1; Mon, 31 Mar 2003 13:09:57 -0800 (PST) (envelope-from wes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VL9v0U020007; Mon, 31 Mar 2003 13:09:57 -0800 (PST) (envelope-from wes@repoman.freebsd.org) Received: (from wes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VL9vxa020006; Mon, 31 Mar 2003 13:09:57 -0800 (PST) Message-Id: <200303312109.h2VL9vxa020006@repoman.freebsd.org> From: Wes Peters Date: Mon, 31 Mar 2003 13:09:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys madvise.2 src/sys/sys mman.h proc.h src/sys/vm vm_mmap.c vm_pageout.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 21:10:01 -0000 wes 2003/03/31 13:09:57 PST FreeBSD src repository Modified files: lib/libc/sys madvise.2 sys/sys mman.h proc.h sys/vm vm_mmap.c vm_pageout.c Log: Add a facility allowing processes to inform the VM subsystem they are critical and should not be killed when pageout is looking for more memory pages in all the wrong places. Reviewed by: arch@ Sponsored by: St. Bernard Software Revision Changes Path 1.29 +9 -0 src/lib/libc/sys/madvise.2 1.35 +1 -0 src/sys/sys/mman.h 1.308 +1 -0 src/sys/sys/proc.h 1.157 +15 -0 src/sys/vm/vm_mmap.c 1.228 +2 -1 src/sys/vm/vm_pageout.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 13:19:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 258F737B407; Mon, 31 Mar 2003 13:19:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AC5E43FDD; Mon, 31 Mar 2003 13:18:59 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VLIx0U020685; Mon, 31 Mar 2003 13:18:59 -0800 (PST) (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VLIwPs020684; Mon, 31 Mar 2003 13:18:58 -0800 (PST) Message-Id: <200303312118.h2VLIwPs020684@repoman.freebsd.org> From: Giorgos Keramidas Date: Mon, 31 Mar 2003 13:18:58 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/el_GR.ISO8859-7/articles/explaining-bsd article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 21:19:01 -0000 keramida 2003/03/31 13:18:58 PST FreeBSD doc repository Modified files: el_GR.ISO8859-7/articles/explaining-bsd article.sgml Log: Word smithing and a syntax fix of Greek text. Submitted by: Michael Iatrou Revision Changes Path 1.5 +2 -2 doc/el_GR.ISO8859-7/articles/explaining-bsd/article.sgml From owner-cvs-all@FreeBSD.ORG Mon Mar 31 13:23:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0137C37B414; Mon, 31 Mar 2003 13:23:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8ABC943F85; Mon, 31 Mar 2003 13:23:06 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VLN60U021144; Mon, 31 Mar 2003 13:23:06 -0800 (PST) (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VLN6mc021143; Mon, 31 Mar 2003 13:23:06 -0800 (PST) Message-Id: <200303312123.h2VLN6mc021143@repoman.freebsd.org> From: Giorgos Keramidas Date: Mon, 31 Mar 2003 13:23:06 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/formatting-media article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 21:23:08 -0000 keramida 2003/03/31 13:23:06 PST FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/formatting-media article.sgml Log: Modernize and expand the description of what a disk / storage device is in an effort to make it more general and less confusing at the same time. Revision Changes Path 1.26 +10 -6 doc/en_US.ISO8859-1/articles/formatting-media/article.sgml From owner-cvs-all@FreeBSD.ORG Mon Mar 31 13:32:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3E7D37B401; Mon, 31 Mar 2003 13:32:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A8A043F85; Mon, 31 Mar 2003 13:32:37 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VLWb0U021812; Mon, 31 Mar 2003 13:32:37 -0800 (PST) (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VLWbea021811; Mon, 31 Mar 2003 13:32:37 -0800 (PST) Message-Id: <200303312132.h2VLWbea021811@repoman.freebsd.org> From: Giorgos Keramidas Date: Mon, 31 Mar 2003 13:32:37 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/laptop article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 21:32:40 -0000 keramida 2003/03/31 13:32:37 PST FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/laptop article.sgml Log: Spell "PCI BIOS" as two words. Google has an impressive 4,000 of hits for "PCIBIOS" (mostly manpage links) but an overwhelming 27,000 for the two word version. Revision Changes Path 1.11 +1 -1 doc/en_US.ISO8859-1/articles/laptop/article.sgml From owner-cvs-all@FreeBSD.ORG Mon Mar 31 13:32:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2B3B37B404; Mon, 31 Mar 2003 13:32:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 964B443FA3; Mon, 31 Mar 2003 13:32:38 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VLWc0U021860; Mon, 31 Mar 2003 13:32:38 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VLWcIp021859; Mon, 31 Mar 2003 13:32:38 -0800 (PST) Message-Id: <200303312132.h2VLWcIp021859@repoman.freebsd.org> From: Martin Blapp Date: Mon, 31 Mar 2003 13:32:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-devel Makefile distinfo patch-gnome+gnome-vfs-filetype-registration.cxx patch-solenv+inc+unxfbsdi.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 21:32:44 -0000 mbr 2003/03/31 13:32:38 PST FreeBSD ports repository Modified files: editors/openoffice-devel Makefile distinfo editors/openoffice-devel/files patch-solenv+inc+unxfbsdi.mk Removed files: editors/openoffice-devel/files patch-gnome+gnome-vfs-filetype-registration.cxx Log: Update to srx644_ooo20030412. Revision Changes Path 1.74 +1 -1 ports/editors/openoffice-devel/Makefile 1.21 +1 -1 ports/editors/openoffice-devel/distinfo 1.2 +0 -12 ports/editors/openoffice-devel/files/patch-gnome+gnome-vfs-filetype-registration.cxx (dead) 1.16 +2 -1 ports/editors/openoffice-devel/files/patch-solenv+inc+unxfbsdi.mk From owner-cvs-all@FreeBSD.ORG Mon Mar 31 13:35:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BC2237B404; Mon, 31 Mar 2003 13:35:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF11243F3F; Mon, 31 Mar 2003 13:35:20 -0800 (PST) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VLZK0U022005; Mon, 31 Mar 2003 13:35:20 -0800 (PST) (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VLZKDo022004; Mon, 31 Mar 2003 13:35:20 -0800 (PST) Message-Id: <200303312135.h2VLZKDo022004@repoman.freebsd.org> From: Martin Heinen Date: Mon, 31 Mar 2003 13:35:20 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 21:35:23 -0000 mheinen 2003/03/31 13:35:20 PST FreeBSD doc repository Modified files: en_US.ISO8859-1/books/faq book.sgml Log: Add a missing ';' to an entity and add a closing tag. Revision Changes Path 1.520 +2 -2 doc/en_US.ISO8859-1/books/faq/book.sgml From owner-cvs-all@FreeBSD.ORG Mon Mar 31 13:37:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5592337B401; Mon, 31 Mar 2003 13:37:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CFE943FBD; Mon, 31 Mar 2003 13:37:05 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VLb50U022059; Mon, 31 Mar 2003 13:37:05 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VLb55F022058; Mon, 31 Mar 2003 13:37:05 -0800 (PST) Message-Id: <200303312137.h2VLb55F022058@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 13:37:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 21:37:08 -0000 jeff 2003/03/31 13:37:04 PST FreeBSD src repository Modified files: sys/alpha/alpha machdep.c Log: - Use sigexit() instead of twiddling the signal mask, catch, ignore, and action bits to allow SIGILL to work as expected. This brings this file in line with other architectures. Revision Changes Path 1.197 +3 -15 src/sys/alpha/alpha/machdep.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 13:39:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97E9637B401; Mon, 31 Mar 2003 13:39:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F9E543FBF; Mon, 31 Mar 2003 13:39:20 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VLdK0U022169; Mon, 31 Mar 2003 13:39:20 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VLdJ1o022168; Mon, 31 Mar 2003 13:39:19 -0800 (PST) Message-Id: <200303312139.h2VLdJ1o022168@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 13:39:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/osf1 osf1_signal.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 21:39:22 -0000 jeff 2003/03/31 13:39:19 PST FreeBSD src repository Modified files: sys/alpha/osf1 osf1_signal.c Log: - Use sigexit() instead of twiddling the signal mask, catch, ignore, and action bits to allow SIGILL to work as expected. This brings this file in line with other architectures. Revision Changes Path 1.28 +1 -5 src/sys/alpha/osf1/osf1_signal.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 13:40:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD32D37B401; Mon, 31 Mar 2003 13:40:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7693C43F85; Mon, 31 Mar 2003 13:40:48 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VLem0U022595; Mon, 31 Mar 2003 13:40:48 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VLemx6022593; Mon, 31 Mar 2003 13:40:48 -0800 (PST) Message-Id: <200303312140.h2VLemx6022593@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 13:40:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 21:40:50 -0000 jeff 2003/03/31 13:40:48 PST FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c Log: - Use sigexit() instead of twiddling the signal mask, catch, ignore, and action bits to allow SIGILL to work as expected. This brings this file in line with other architectures. Revision Changes Path 1.126 +1 -5 src/sys/ia64/ia64/machdep.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:02:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57E6337B401; Mon, 31 Mar 2003 14:02:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3F8043F75; Mon, 31 Mar 2003 14:02:38 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VM2c0U024223; Mon, 31 Mar 2003 14:02:38 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VM2cxb024222; Mon, 31 Mar 2003 14:02:38 -0800 (PST) Message-Id: <200303312202.h2VM2cxb024222@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 14:02:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha trap.c src/sys/i386/i386 machdep.c src/sys/i386/linux linux_sysvec.c src/sys/ia64/ia64 trap.c src/sys/kern kern_sig.c subr_trap.c src/sys/pc98/i386 machdep.c src/sys/powerpc/powerpc trap.c src/sys/sparc64/sparc64 trap.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:02:40 -0000 jeff 2003/03/31 14:02:38 PST FreeBSD src repository Modified files: sys/alpha/alpha trap.c sys/i386/i386 machdep.c sys/i386/linux linux_sysvec.c sys/ia64/ia64 trap.c sys/kern subr_trap.c kern_sig.c sys/pc98/i386 machdep.c sys/powerpc/powerpc trap.c sys/sparc64/sparc64 trap.c sys/sys signalvar.h Log: - Change trapsignal() to accept a thread and not a proc. - Change all consumers to pass in a thread. Right now this does not cause any functional changes but it will be important later when signals can be delivered to specific threads. Revision Changes Path 1.110 +1 -1 src/sys/alpha/alpha/trap.c 1.559 +6 -6 src/sys/i386/i386/machdep.c 1.119 +2 -2 src/sys/i386/linux/linux_sysvec.c 1.72 +2 -2 src/sys/ia64/ia64/trap.c 1.217 +6 -6 src/sys/kern/kern_sig.c 1.249 +1 -1 src/sys/kern/subr_trap.c 1.310 +6 -6 src/sys/pc98/i386/machdep.c 1.40 +1 -1 src/sys/powerpc/powerpc/trap.c 1.58 +1 -1 src/sys/sparc64/sparc64/trap.c 1.56 +1 -1 src/sys/sys/signalvar.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:05:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9927737B401; Mon, 31 Mar 2003 14:05:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EDBE43F93; Mon, 31 Mar 2003 14:05:57 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VM5v0U025421; Mon, 31 Mar 2003 14:05:57 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VM5uw2025420; Mon, 31 Mar 2003 14:05:56 -0800 (PST) Message-Id: <200303312205.h2VM5uw2025420@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 14:05:56 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils Makefile ports/sysutils/dwatch Makefile distinfo pkg-descr pkg-plist ports/sysutils/dwatch/files patch-Makefile patch-dwatch.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:05:59 -0000 edwin 2003/03/31 14:05:56 PST FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/dwatch Makefile distinfo pkg-descr pkg-plist sysutils/dwatch/files patch-Makefile patch-dwatch.c Log: New port: dwatch - A daemon watcher Daemon Watch will check if a process is running or if a tcp port is open. PR: ports/41718 Submitted by: Andrew Turner Revision Changes Path 1.346 +1 -0 ports/sysutils/Makefile 1.1 +25 -0 ports/sysutils/dwatch/Makefile (new) 1.1 +1 -0 ports/sysutils/dwatch/distinfo (new) 1.1 +21 -0 ports/sysutils/dwatch/files/patch-Makefile (new) 1.1 +10 -0 ports/sysutils/dwatch/files/patch-dwatch.c (new) 1.1 +4 -0 ports/sysutils/dwatch/pkg-descr (new) 1.1 +2 -0 ports/sysutils/dwatch/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:06:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93C6737B401; Mon, 31 Mar 2003 14:06:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BFFD43F3F; Mon, 31 Mar 2003 14:06:11 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VM6A0U025463; Mon, 31 Mar 2003 14:06:10 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VM6A7V025462; Mon, 31 Mar 2003 14:06:10 -0800 (PST) Message-Id: <200303312206.h2VM6A7V025462@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 14:06:10 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:06:12 -0000 edwin 2003/03/31 14:06:10 PST FreeBSD ports repository Modified files: . modules Log: dwatch --> ports/sysutils/dwatch Revision Changes Path 1.6921 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:10:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0A9437B41A; Mon, 31 Mar 2003 14:10:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7836043FB1; Mon, 31 Mar 2003 14:10:13 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMAD0U025704; Mon, 31 Mar 2003 14:10:13 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMADpi025701; Mon, 31 Mar 2003 14:10:13 -0800 (PST) Message-Id: <200303312210.h2VMADpi025701@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 14:10:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc Makefile ports/misc/spamcalc Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:10:16 -0000 edwin 2003/03/31 14:10:12 PST FreeBSD ports repository Modified files: misc Makefile Added files: misc/spamcalc Makefile distinfo pkg-descr pkg-plist Log: New port: misc/spamcalc Spamcalc takes a hostname or a list of hostnames and determines a dns spam score for each hostname. This value is an indication for the spam-ness of the hostname. The higher the score, the higher the chance that the hostname is actually a dns spam hostname. PR: ports/41625 Submitted by: Harold Gutch Revision Changes Path 1.544 +1 -0 ports/misc/Makefile 1.1 +43 -0 ports/misc/spamcalc/Makefile (new) 1.1 +1 -0 ports/misc/spamcalc/distinfo (new) 1.1 +14 -0 ports/misc/spamcalc/pkg-descr (new) 1.1 +28 -0 ports/misc/spamcalc/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:10:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7379737B407; Mon, 31 Mar 2003 14:10:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03AF943FA3; Mon, 31 Mar 2003 14:10:30 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMAT0U025849; Mon, 31 Mar 2003 14:10:29 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMAT5b025847; Mon, 31 Mar 2003 14:10:29 -0800 (PST) Message-Id: <200303312210.h2VMAT5b025847@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 14:10:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:10:33 -0000 edwin 2003/03/31 14:10:29 PST FreeBSD ports repository Modified files: . modules Log: spamcalc --> ports/misc/spamcalc Revision Changes Path 1.6922 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:12:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B39B437B404; Mon, 31 Mar 2003 14:12:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AD1343FE0; Mon, 31 Mar 2003 14:12:10 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMCA0U026119; Mon, 31 Mar 2003 14:12:10 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMCAGw026118; Mon, 31 Mar 2003 14:12:10 -0800 (PST) Message-Id: <200303312212.h2VMCAGw026118@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 14:12:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_sig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:12:12 -0000 jeff 2003/03/31 14:12:09 PST FreeBSD src repository Modified files: sys/kern kern_sig.c Log: - Mark signals which may be delivered to any thread in the process with SA_PROC. Signals without this flag should be directed to a particular thread if this is possible. Revision Changes Path 1.218 +32 -31 src/sys/kern/kern_sig.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:22:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C60037B401; Mon, 31 Mar 2003 14:22:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8CEC43F85; Mon, 31 Mar 2003 14:22:40 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMMe0U026923; Mon, 31 Mar 2003 14:22:40 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMMefe026922; Mon, 31 Mar 2003 14:22:40 -0800 (PST) Message-Id: <200303312222.h2VMMefe026922@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 14:22:40 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics Makefile ports/graphics/xglurbules Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:22:42 -0000 edwin 2003/03/31 14:22:40 PST FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/xglurbules Makefile distinfo pkg-descr pkg-plist Log: New port: xglurbules Gooey looking highly graphical particle system eyecandy program for X11. PR: ports/42234 Submitted by: Stephen Roome Revision Changes Path 1.569 +1 -0 ports/graphics/Makefile 1.1 +23 -0 ports/graphics/xglurbules/Makefile (new) 1.1 +1 -0 ports/graphics/xglurbules/distinfo (new) 1.1 +6 -0 ports/graphics/xglurbules/pkg-descr (new) 1.1 +3 -0 ports/graphics/xglurbules/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:22:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BDDA37B401; Mon, 31 Mar 2003 14:22:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9EE743FA3; Mon, 31 Mar 2003 14:22:58 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMMw0U026975; Mon, 31 Mar 2003 14:22:58 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMMwgJ026974; Mon, 31 Mar 2003 14:22:58 -0800 (PST) Message-Id: <200303312222.h2VMMwgJ026974@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 14:22:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:23:00 -0000 edwin 2003/03/31 14:22:58 PST FreeBSD ports repository Modified files: . modules Log: xglurbules --> ports/graphics/xglurbules Revision Changes Path 1.6923 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:30:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BFEA37B401; Mon, 31 Mar 2003 14:30:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3404C43F75; Mon, 31 Mar 2003 14:30:09 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMU90U027242; Mon, 31 Mar 2003 14:30:09 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMU85e027241; Mon, 31 Mar 2003 14:30:08 -0800 (PST) Message-Id: <200303312230.h2VMU85e027241@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 14:30:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys signal.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:30:13 -0000 jeff 2003/03/31 14:30:08 PST FreeBSD src repository Modified files: sys/sys signal.h Log: - Add a signal for thread synchronization. Add an XXX so that maybe someone more knowledgeable on standards defined namespaces may ifdef this out. Revision Changes Path 1.41 +4 -0 src/sys/sys/signal.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:32:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B32D37B404; Mon, 31 Mar 2003 14:32:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3BD043FCB; Mon, 31 Mar 2003 14:32:04 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMW40U027737; Mon, 31 Mar 2003 14:32:04 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMW4lS027736; Mon, 31 Mar 2003 14:32:04 -0800 (PST) Message-Id: <200303312232.h2VMW4lS027736@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 14:32:04 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games Makefile ports/games/nwnusers Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:32:07 -0000 edwin 2003/03/31 14:32:04 PST FreeBSD ports repository Modified files: games Makefile Added files: games/nwnusers Makefile distinfo pkg-descr pkg-message pkg-plist Log: new port: games/nwnusers Monitoring Neverwinter Nights Servers with MRTG A very easy to use tool for monitoring the number of active players on a (remote) Neverwinter Nights Server with MRTG. PR: ports/46370 Submitted by: Andreas Heil Revision Changes Path 1.526 +1 -0 ports/games/Makefile 1.1 +27 -0 ports/games/nwnusers/Makefile (new) 1.1 +1 -0 ports/games/nwnusers/distinfo (new) 1.1 +6 -0 ports/games/nwnusers/pkg-descr (new) 1.1 +14 -0 ports/games/nwnusers/pkg-message (new) 1.1 +1 -0 ports/games/nwnusers/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:32:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06D7737B401; Mon, 31 Mar 2003 14:32:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95A1E43F3F; Mon, 31 Mar 2003 14:32:19 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMWJ0U027775; Mon, 31 Mar 2003 14:32:19 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMWJnI027774; Mon, 31 Mar 2003 14:32:19 -0800 (PST) Message-Id: <200303312232.h2VMWJnI027774@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 14:32:19 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:32:21 -0000 edwin 2003/03/31 14:32:19 PST FreeBSD ports repository Modified files: . modules Log: nwnusers --> ports/games/nwnusers Revision Changes Path 1.6924 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:41:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D597037B404; Mon, 31 Mar 2003 14:41:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F07B43FBF; Mon, 31 Mar 2003 14:41:33 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMfX0U028410; Mon, 31 Mar 2003 14:41:33 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMfXXM028409; Mon, 31 Mar 2003 14:41:33 -0800 (PST) Message-Id: <200303312241.h2VMfXXM028409@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 14:41:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 trap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:42:05 -0000 jeff 2003/03/31 14:41:33 PST FreeBSD src repository Modified files: sys/i386/i386 trap.c Log: - Fix two calls to trapsignal() that were still passing in 'struct proc'. These were missed in my last commit. Revision Changes Path 1.245 +2 -2 src/sys/i386/i386/trap.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:42:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E75D737B405; Mon, 31 Mar 2003 14:41:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80BDA43F3F; Mon, 31 Mar 2003 14:41:47 -0800 (PST) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMfl0U028437; Mon, 31 Mar 2003 14:41:47 -0800 (PST) (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMflwh028436; Mon, 31 Mar 2003 14:41:47 -0800 (PST) Message-Id: <200303312241.h2VMflwh028436@repoman.freebsd.org> From: Julian Elischer Date: Mon, 31 Mar 2003 14:41:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_condvar.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:42:37 -0000 julian 2003/03/31 14:41:47 PST FreeBSD src repository Modified files: sys/kern kern_condvar.c Log: Do NOT return from an non-interruptable cv_wait, falsely claiming to have timed out. I don't know what I was thinking.. Revision Changes Path 1.39 +0 -2 src/sys/kern/kern_condvar.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:45:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A105137B401; Mon, 31 Mar 2003 14:45:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4859943F75; Mon, 31 Mar 2003 14:45:24 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMjN0U028709; Mon, 31 Mar 2003 14:45:23 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMjNBW028708; Mon, 31 Mar 2003 14:45:23 -0800 (PST) Message-Id: <200303312245.h2VMjNBW028708@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 14:45:23 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail Makefile ports/mail/jamlib Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:45:26 -0000 edwin 2003/03/31 14:45:23 PST FreeBSD ports repository Modified files: mail Makefile Added files: mail/jamlib Makefile distinfo pkg-descr pkg-plist Log: New ports: mail/jamlib These are a collection of subroutines that encapsulate much of the format-specific and tedious details of the JAM message base format. The idea is that application programmers by using these routines can concentrate on the more high-level issues of their programs instead of worrying about their JAM routines. PR: ports/45467 Submitted by: Cyril Margorin Revision Changes Path 1.368 +1 -0 ports/mail/Makefile 1.1 +50 -0 ports/mail/jamlib/Makefile (new) 1.1 +1 -0 ports/mail/jamlib/distinfo (new) 1.1 +7 -0 ports/mail/jamlib/pkg-descr (new) 1.1 +6 -0 ports/mail/jamlib/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:45:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E31A837B401; Mon, 31 Mar 2003 14:45:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D51C43FCB; Mon, 31 Mar 2003 14:45:37 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMjb0U028747; Mon, 31 Mar 2003 14:45:37 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMjbfI028746; Mon, 31 Mar 2003 14:45:37 -0800 (PST) Message-Id: <200303312245.h2VMjbfI028746@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 14:45:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:45:39 -0000 edwin 2003/03/31 14:45:37 PST FreeBSD ports repository Modified files: . modules Log: jamlib --> ports/mail/jamlib Revision Changes Path 1.6925 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:47:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EC8337B401; Mon, 31 Mar 2003 14:47:07 -0800 (PST) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D81D43F3F; Mon, 31 Mar 2003 14:47:06 -0800 (PST) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.12.9/8.12.9) with SMTP id h2VMlSYY014161; Mon, 31 Mar 2003 17:47:28 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Mon, 31 Mar 2003 17:47:27 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Giorgos Keramidas In-Reply-To: <200303312132.h2VLWbea021811@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/laptop article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:47:09 -0000 On Mon, 31 Mar 2003, Giorgos Keramidas wrote: > Spell "PCI BIOS" as two words. > Google has an impressive 4,000 of hits for "PCIBIOS" (mostly manpage > links) but an overwhelming 27,000 for the two word version. I assume you know about this already, but... http://www.googlefight.com/ Makes it a lot easier to do that sort of comparison. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:49:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA73E37B401; Mon, 31 Mar 2003 14:49:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FBEE43F3F; Mon, 31 Mar 2003 14:49:18 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMnI0U029204; Mon, 31 Mar 2003 14:49:18 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMnIxn029203; Mon, 31 Mar 2003 14:49:18 -0800 (PST) Message-Id: <200303312249.h2VMnIxn029203@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 14:49:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha machdep.c src/sys/alpha/osf1 osf1_signal.c src/sys/coda coda_psdev.c src/sys/compat/linux linux_signal.c src/sys/compat/svr4 svr4_filio.c svr4_signal.c src/sys/i386/i386 machdep.c src/sys/i386/ibcs2 ibcs2_signal.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:49:21 -0000 jeff 2003/03/31 14:49:18 PST FreeBSD src repository Modified files: sys/alpha/alpha machdep.c sys/alpha/osf1 osf1_signal.c sys/coda coda_psdev.c sys/compat/linux linux_signal.c sys/compat/svr4 svr4_filio.c svr4_signal.c sys/i386/i386 machdep.c sys/i386/ibcs2 ibcs2_signal.c sys/i386/linux linux_machdep.c linux_sysvec.c sys/i386/svr4 svr4_machdep.c sys/ia64/ia64 machdep.c sys/kern kern_context.c kern_exit.c kern_proc.c kern_sig.c kern_thread.c subr_smp.c subr_trap.c tty.c tty_pty.c sys/netncp ncp_ncp.c sys/netsmb smb_iod.c smb_rq.c smb_subr.c smb_subr.h sys/nfsclient nfs_socket.c sys/pc98/i386 machdep.c sys/powerpc/powerpc machdep.c sys/sparc64/sparc64 machdep.c sys/sys signalvar.h Log: - Move p->p_sigmask to td->td_sigmask. Signal masks will be per thread with a follow on commit to kern_sig.c - signotify() now operates on a thread since unmasked pending signals are stored in the thread. - PS_NEEDSIGCHK moves to TDF_NEEDSIGCHK. Revision Changes Path 1.198 +9 -9 src/sys/alpha/alpha/machdep.c 1.29 +15 -14 src/sys/alpha/osf1/osf1_signal.c 1.26 +14 -14 src/sys/coda/coda_psdev.c 1.40 +15 -14 src/sys/compat/linux/linux_signal.c 1.27 +2 -2 src/sys/compat/svr4/svr4_filio.c 1.25 +13 -12 src/sys/compat/svr4/svr4_signal.c 1.560 +9 -9 src/sys/i386/i386/machdep.c 1.29 +16 -15 src/sys/i386/ibcs2/ibcs2_signal.c 1.38 +1 -1 src/sys/i386/linux/linux_machdep.c 1.120 +6 -6 src/sys/i386/linux/linux_sysvec.c 1.30 +2 -2 src/sys/i386/svr4/svr4_machdep.c 1.127 +3 -3 src/sys/ia64/ia64/machdep.c 1.2 +4 -4 src/sys/kern/kern_context.c 1.207 +1 -0 src/sys/kern/kern_exit.c 1.177 +6 -3 src/sys/kern/kern_proc.c 1.219 +209 -111 src/sys/kern/kern_sig.c 1.110 +11 -4 src/sys/kern/kern_thread.c 1.173 +2 -2 src/sys/kern/subr_smp.c 1.250 +5 -4 src/sys/kern/subr_trap.c 1.198 +19 -13 src/sys/kern/tty.c 1.107 +1 -1 src/sys/kern/tty_pty.c 1.15 +3 -2 src/sys/netncp/ncp_ncp.c 1.11 +1 -1 src/sys/netsmb/smb_iod.c 1.12 +2 -4 src/sys/netsmb/smb_rq.c 1.15 +8 -4 src/sys/netsmb/smb_subr.c 1.9 +1 -1 src/sys/netsmb/smb_subr.h 1.97 +1 -1 src/sys/nfsclient/nfs_socket.c 1.311 +9 -9 src/sys/pc98/i386/machdep.c 1.50 +3 -3 src/sys/powerpc/powerpc/machdep.c 1.77 +3 -3 src/sys/sparc64/sparc64/machdep.c 1.57 +9 -5 src/sys/sys/signalvar.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:51:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C878A37B401; Mon, 31 Mar 2003 14:51:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 623FC43FBD; Mon, 31 Mar 2003 14:51:20 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMpK0U029750; Mon, 31 Mar 2003 14:51:20 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMpJHA029749; Mon, 31 Mar 2003 14:51:19 -0800 (PST) Message-Id: <200303312251.h2VMpJHA029749@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 14:51:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys proc.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:51:22 -0000 jeff 2003/03/31 14:51:19 PST FreeBSD src repository Modified files: sys/sys proc.h Log: - Move the NEEDSIGCHK and OLDMASK flags from proc to thread. - Move the signal mask to the thread. - Adjust a few comments. Revision Changes Path 1.309 +11 -10 src/sys/sys/proc.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:55:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C19037B401; Mon, 31 Mar 2003 14:55:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E82EC43FAF; Mon, 31 Mar 2003 14:55:54 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMts0U029987; Mon, 31 Mar 2003 14:55:54 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMtsWx029986; Mon, 31 Mar 2003 14:55:54 -0800 (PST) Message-Id: <200303312255.h2VMtsWx029986@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 14:55:54 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail Makefile ports/mail/crashecho Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:55:56 -0000 edwin 2003/03/31 14:55:54 PST FreeBSD ports repository Modified files: mail Makefile Added files: mail/crashecho Makefile distinfo pkg-descr pkg-plist Log: New port: mail/crashecho crashecho is FTN JAM/MSG tosser for a node. CrashEcho is a successor of a CrashMail II tosser originally written by Johan Billing. PR: ports/45468 Submitted by: Cyril Margorin Revision Changes Path 1.369 +1 -0 ports/mail/Makefile 1.1 +31 -0 ports/mail/crashecho/Makefile (new) 1.1 +1 -0 ports/mail/crashecho/distinfo (new) 1.1 +4 -0 ports/mail/crashecho/pkg-descr (new) 1.1 +10 -0 ports/mail/crashecho/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:56:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FAEB37B401; Mon, 31 Mar 2003 14:56:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D7C743F75; Mon, 31 Mar 2003 14:56:09 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMu90U030029; Mon, 31 Mar 2003 14:56:09 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMu9hJ030028; Mon, 31 Mar 2003 14:56:09 -0800 (PST) Message-Id: <200303312256.h2VMu9hJ030028@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 14:56:09 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:56:13 -0000 edwin 2003/03/31 14:56:09 PST FreeBSD ports repository Modified files: . modules Log: crashecho --> ports/mail/crashecho Revision Changes Path 1.6926 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:57:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6076637B401; Mon, 31 Mar 2003 14:57:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B18B43FBF; Mon, 31 Mar 2003 14:57:02 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMv10U030074; Mon, 31 Mar 2003 14:57:01 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMv1fc030073; Mon, 31 Mar 2003 14:57:01 -0800 (PST) Message-Id: <200303312257.h2VMv1fc030073@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 14:57:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_sig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:57:04 -0000 jeff 2003/03/31 14:57:01 PST FreeBSD src repository Modified files: sys/kern kern_sig.c Log: - The siglist in the proc holds signals that were blocked by all threads when they were delivered. In signotify() check to see if we have unblocked any of those signals and post them to the thread. - Use td_sigmask instead of p_sigmask in all cases. - In sigpending return both signals pending on the thread and proc. - Define a function, sigtd(), that finds the appropriate thread to deliver the signal to if psignal() has been called instead of tdsignal(). - Define a function, tdsignal(), that delivers a signal to a specific thread or if that thread has the signal blocked it may deliver it to the process where it will wait for a thread to unblock it. - Since we are delivering signals to a specific thread we do not need to abort the sleep of all threads. - Rename the old tdsignal() to tdsigwakeup(). - Save and restore the old signal mask to and from the thread. Revision Changes Path 1.220 +0 -0 src/sys/kern/kern_sig.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 14:57:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2A6637B401; Mon, 31 Mar 2003 14:57:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C08C43FA3; Mon, 31 Mar 2003 14:57:55 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VMvt0U030126; Mon, 31 Mar 2003 14:57:55 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VMvttR030125; Mon, 31 Mar 2003 14:57:55 -0800 (PST) Message-Id: <200303312257.h2VMvttR030125@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 14:57:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libkvm kvm_proc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 22:57:56 -0000 jeff 2003/03/31 14:57:55 PST FreeBSD src repository Modified files: lib/libkvm kvm_proc.c Log: - Catch up with kernel signal changes. Revision Changes Path 1.64 +2 -1 src/lib/libkvm/kvm_proc.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:08:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2380F37B401; Mon, 31 Mar 2003 15:08:21 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id E169C43F3F; Mon, 31 Mar 2003 15:08:19 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h2VN8Jg97695; Mon, 31 Mar 2003 18:08:19 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Mon, 31 Mar 2003 18:08:19 -0500 (EST) From: Jeff Roberson To: Jeff Roberson In-Reply-To: <200303312257.h2VMv1fc030073@repoman.freebsd.org> Message-ID: <20030331180809.Q64602-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_sig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:08:24 -0000 This was a force commit to get a more verbose comment on recent changes. On Mon, 31 Mar 2003, Jeff Roberson wrote: > jeff 2003/03/31 14:57:01 PST > > FreeBSD src repository > > Modified files: > sys/kern kern_sig.c > Log: > - The siglist in the proc holds signals that were blocked by all threads > when they were delivered. In signotify() check to see if we have > unblocked any of those signals and post them to the thread. > - Use td_sigmask instead of p_sigmask in all cases. > - In sigpending return both signals pending on the thread and proc. > - Define a function, sigtd(), that finds the appropriate thread to deliver > the signal to if psignal() has been called instead of tdsignal(). > - Define a function, tdsignal(), that delivers a signal to a specific thread > or if that thread has the signal blocked it may deliver it to the process > where it will wait for a thread to unblock it. > - Since we are delivering signals to a specific thread we do not need to > abort the sleep of all threads. > - Rename the old tdsignal() to tdsigwakeup(). > - Save and restore the old signal mask to and from the thread. > > Revision Changes Path > 1.220 +0 -0 src/sys/kern/kern_sig.c > From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:09:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 163E937B401; Mon, 31 Mar 2003 15:09:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BBF143FAF; Mon, 31 Mar 2003 15:09:25 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VN9P0U031885; Mon, 31 Mar 2003 15:09:25 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VN9Pbq031884; Mon, 31 Mar 2003 15:09:25 -0800 (PST) Message-Id: <200303312309.h2VN9Pbq031884@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 15:09:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games Makefile ports/games/tractorgen Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:09:29 -0000 edwin 2003/03/31 15:09:25 PST FreeBSD ports repository Modified files: games Makefile Added files: games/tractorgen Makefile distinfo pkg-descr pkg-plist Log: New port: games/tractorgen Generates ASCII tractors. PR: ports/46206 Submitted by: Robin Elfrink Revision Changes Path 1.527 +1 -0 ports/games/Makefile 1.1 +19 -0 ports/games/tractorgen/Makefile (new) 1.1 +1 -0 ports/games/tractorgen/distinfo (new) 1.1 +16 -0 ports/games/tractorgen/pkg-descr (new) 1.1 +1 -0 ports/games/tractorgen/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:09:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CBB537B401; Mon, 31 Mar 2003 15:09:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB93F43FAF; Mon, 31 Mar 2003 15:09:40 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VN9e0U031929; Mon, 31 Mar 2003 15:09:40 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VN9ebQ031928; Mon, 31 Mar 2003 15:09:40 -0800 (PST) Message-Id: <200303312309.h2VN9ebQ031928@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 15:09:40 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:09:42 -0000 edwin 2003/03/31 15:09:40 PST FreeBSD ports repository Modified files: . modules Log: tractorgen --> ports/games/tractorgen Revision Changes Path 1.6927 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:18:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5E4A37B404 for ; Mon, 31 Mar 2003 15:18:01 -0800 (PST) Received: from heaven.gigo.com (heaven.gigo.com [64.57.102.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6407E43FBD for ; Mon, 31 Mar 2003 15:18:01 -0800 (PST) (envelope-from lioux@brturbo.com) Received: from 200-163-006-072.bsace7003.dsl.brasiltelecom.net.br (200-163-006-072.bsace7003.dsl.brasiltelecom.net.br [200.163.6.72]) by heaven.gigo.com (Postfix) with ESMTP id AF1BCB785 for ; Mon, 31 Mar 2003 15:18:00 -0800 (PST) Received: (qmail 66332 invoked by uid 1001); 31 Mar 2003 22:58:47 -0000 Message-ID: <20030331225847.66331.qmail@exxodus.fedaykin.here> Date: Mon, 31 Mar 2003 19:58:25 -0300 From: Mario Sergio Fujikawa Ferreira To: Edwin Groothuis References: <200303312232.h2VMW4lS027736@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200303312232.h2VMW4lS027736@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 4.8-RC X-Disclaimer: I hope you find what you are looking for... in life :) cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/games Makefile ports/games/nwnusers Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:18:03 -0000 On Mon, Mar 31, 2003 at 02:31:42PM -0800, Edwin Groothuis wrote: > edwin 2003/03/31 14:32:04 PST > > FreeBSD ports repository > > Modified files: > games Makefile > Added files: > games/nwnusers Makefile distinfo pkg-descr pkg-message > pkg-plist > Log: > new port: games/nwnusers Monitoring Neverwinter Nights Servers with MRTG > > A very easy to use tool for monitoring the number of active > players on a (remote) Neverwinter Nights Server with MRTG. Is this really a games category port? I would add games as a secondary category but primarily this is a monitoring tool via mrtg. What about net as a primary category? Regards, -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." FreeBSD Committer | CS Developer flames to beloved devnull@someotherworldbeloworabove.org feature, n: a documented bug | bug, n: an undocumented feature From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:26:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42A2B37B401; Mon, 31 Mar 2003 15:26:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE7E143F85; Mon, 31 Mar 2003 15:26:10 -0800 (PST) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VNQA0U033137; Mon, 31 Mar 2003 15:26:10 -0800 (PST) (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VNQALC033136; Mon, 31 Mar 2003 15:26:10 -0800 (PST) Message-Id: <200303312326.h2VNQALC033136@repoman.freebsd.org> From: Thomas Quinot Date: Mon, 31 Mar 2003 15:26:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsclient nfs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:26:12 -0000 thomas 2003/03/31 15:26:10 PST FreeBSD src repository Modified files: sys/nfsclient nfs_vnops.c Log: Revert change 1.201 (removing mapping of VAPPEND to VWRITE). Instead, use the generic vaccess() operation to determine whether an operation is permitted. This avoids embedding knowledge on vnode permission bits such as VAPPEND in the NFS client. PR: kern/46515 vaccess() patch submitted by: "Peter Edwards" Approved by: tjr, roberto (mentor) Revision Changes Path 1.202 +2 -32 src/sys/nfsclient/nfs_vnops.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:28:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8D7D37B401; Mon, 31 Mar 2003 15:28:00 -0800 (PST) Received: from topaz.ad1810.com (topaz.ad1810.com [212.204.230.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0705A43FD7; Mon, 31 Mar 2003 15:28:00 -0800 (PST) (envelope-from edwin@mavetju.org) Received: from k7.mavetju (topaz.ad1810.com [212.204.230.141]) by topaz.ad1810.com (Postfix) with ESMTP id 0128F2BA14; Tue, 1 Apr 2003 01:27:57 +0200 (CEST) Received: by k7.mavetju (Postfix, from userid 1001) id B72266A712B; Tue, 1 Apr 2003 09:27:55 +1000 (EST) Date: Tue, 1 Apr 2003 09:27:55 +1000 From: Edwin Groothuis To: Mario Sergio Fujikawa Ferreira Message-ID: <20030331232755.GZ762@k7.mavetju> References: <200303312232.h2VMW4lS027736@repoman.freebsd.org> <20030331225847.66331.qmail@exxodus.fedaykin.here> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030331225847.66331.qmail@exxodus.fedaykin.here> User-Agent: Mutt/1.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/games Makefile ports/games/nwnusers Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:28:31 -0000 On Mon, Mar 31, 2003 at 07:58:25PM -0300, Mario Sergio Fujikawa Ferreira wrote: > On Mon, Mar 31, 2003 at 02:31:42PM -0800, Edwin Groothuis wrote: > > edwin 2003/03/31 14:32:04 PST > > > > FreeBSD ports repository > > > > Modified files: > > games Makefile > > Added files: > > games/nwnusers Makefile distinfo pkg-descr pkg-message > > pkg-plist > > Log: > > new port: games/nwnusers Monitoring Neverwinter Nights Servers with MRTG > > > > A very easy to use tool for monitoring the number of active > > players on a (remote) Neverwinter Nights Server with MRTG. > > Is this really a games category port? I would add games > as a secondary category but primarily this is a monitoring tool via > mrtg. What about net as a primary category? Like you said, it's a grey area: it's part of a game, but it isn't. You have the same situation with the halflife ports, they're all in the games-directory but some itself are not games but just like this game-related. Edwni -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:29:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB66837B401; Mon, 31 Mar 2003 15:29:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3998643FA3; Mon, 31 Mar 2003 15:29:52 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VNTq0U033329; Mon, 31 Mar 2003 15:29:52 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VNTpg9033328; Mon, 31 Mar 2003 15:29:51 -0800 (PST) Message-Id: <200303312329.h2VNTpg9033328@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 15:29:51 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games Makefile ports/games/moon-buggy Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:29:54 -0000 edwin 2003/03/31 15:29:51 PST FreeBSD ports repository Modified files: games Makefile Added files: games/moon-buggy Makefile distinfo pkg-descr pkg-plist Log: New Port: moon-buggy Port of the amazing game moon-buggy PR: ports/46928 Submitted by: Ralf Becker Revision Changes Path 1.528 +1 -0 ports/games/Makefile 1.1 +29 -0 ports/games/moon-buggy/Makefile (new) 1.1 +1 -0 ports/games/moon-buggy/distinfo (new) 1.1 +6 -0 ports/games/moon-buggy/pkg-descr (new) 1.1 +4 -0 ports/games/moon-buggy/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:30:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9512237B401; Mon, 31 Mar 2003 15:30:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E6CD43F85; Mon, 31 Mar 2003 15:30:15 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VNUF0U033426; Mon, 31 Mar 2003 15:30:15 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VNUEqG033424; Mon, 31 Mar 2003 15:30:14 -0800 (PST) Message-Id: <200303312330.h2VNUEqG033424@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 15:30:14 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:30:16 -0000 edwin 2003/03/31 15:30:14 PST FreeBSD ports repository Modified files: . modules Log: moon-buggy --> ports/games/moon-buggy Revision Changes Path 1.6928 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:30:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB02337B401; Mon, 31 Mar 2003 15:30:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B7A543FAF; Mon, 31 Mar 2003 15:30:42 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VNUg0U033687; Mon, 31 Mar 2003 15:30:42 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VNUfZD033685; Mon, 31 Mar 2003 15:30:41 -0800 (PST) Message-Id: <200303312330.h2VNUfZD033685@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 15:30:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include signal.h src/sys/kern kern_sig.c syscalls.master src/sys/sys signalvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:30:43 -0000 jeff 2003/03/31 15:30:41 PST FreeBSD src repository Modified files: include signal.h sys/kern kern_sig.c syscalls.master sys/sys signalvar.h Log: - Define sigwait, sigtimedwait, and sigwaitinfo in terms of kern_sigtimedwait() which is capable of supporting all of their semantics. - These should be POSIX compliant but more careful review is needed before we announce this. Revision Changes Path 1.24 +1 -1 src/include/signal.h 1.221 +173 -1 src/sys/kern/kern_sig.c 1.145 +5 -2 src/sys/kern/syscalls.master 1.58 +0 -2 src/sys/sys/signalvar.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:31:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7262337B404; Mon, 31 Mar 2003 15:31:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D939243F93; Mon, 31 Mar 2003 15:31:50 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VNVo0U033908; Mon, 31 Mar 2003 15:31:50 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VNVos5033907; Mon, 31 Mar 2003 15:31:50 -0800 (PST) Message-Id: <200303312331.h2VNVos5033907@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 15:31:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys signal.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:31:51 -0000 jeff 2003/03/31 15:31:50 PST FreeBSD src repository Modified files: sys/sys signal.h Log: - According to mike@FreeBSD.org SIGTHR should be hiden by #ifdef __BSD_VISIBLE Revision Changes Path 1.42 +2 -3 src/sys/sys/signal.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:33:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1386E37B401; Mon, 31 Mar 2003 15:33:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9874A43F93; Mon, 31 Mar 2003 15:33:45 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VNXj0U033999; Mon, 31 Mar 2003 15:33:45 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VNXjY0033998; Mon, 31 Mar 2003 15:33:45 -0800 (PST) Message-Id: <200303312333.h2VNXjY0033998@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 15:33:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys syscall.h syscall.mk sysproto.h src/sys/kern init_sysent.c syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:33:46 -0000 jeff 2003/03/31 15:33:45 PST FreeBSD src repository Modified files: sys/sys syscall.h syscall.mk sysproto.h sys/kern init_sysent.c syscalls.c Log: - Regen for the sig*wait* system calls. Revision Changes Path 1.148 +4 -3 src/sys/kern/init_sysent.c 1.134 +4 -3 src/sys/kern/syscalls.c 1.132 +5 -2 src/sys/sys/syscall.h 1.87 +5 -2 src/sys/sys/syscall.mk 1.128 +17 -1 src/sys/sys/sysproto.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:36:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB14337B401; Mon, 31 Mar 2003 15:36:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73EF843FAF; Mon, 31 Mar 2003 15:36:41 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VNaf0U034182; Mon, 31 Mar 2003 15:36:41 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VNaeiE034181; Mon, 31 Mar 2003 15:36:40 -0800 (PST) Message-Id: <200303312336.h2VNaeiE034181@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 15:36:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia32 syscalls.master X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:36:42 -0000 jeff 2003/03/31 15:36:40 PST FreeBSD src repository Modified files: sys/ia64/ia32 syscalls.master Log: - Add a placeholder for sigwait Revision Changes Path 1.17 +1 -0 src/sys/ia64/ia32/syscalls.master From owner-cvs-all@FreeBSD.ORG Mon Mar 31 15:59:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EB7037B401; Mon, 31 Mar 2003 15:59:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A4D743F85; Mon, 31 Mar 2003 15:59:25 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2VNxP0U035797; Mon, 31 Mar 2003 15:59:25 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2VNxPCC035796; Mon, 31 Mar 2003 15:59:25 -0800 (PST) Message-Id: <200303312359.h2VNxPCC035796@repoman.freebsd.org> From: Yen-Ming Lee Date: Mon, 31 Mar 2003 15:59:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/chinese/cwtexttf Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Mar 2003 23:59:26 -0000 leeym 2003/03/31 15:59:25 PST FreeBSD ports repository Modified files: chinese/cwtexttf Makefile distinfo Log: update to 1.1. distfiles update make checksum failures. remove unused MASTER_SITES. PR: 50399 Submitted by: Statue Revision Changes Path 1.3 +1 -2 ports/chinese/cwtexttf/Makefile 1.2 +1 -1 ports/chinese/cwtexttf/distinfo From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:01:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C17837B401; Mon, 31 Mar 2003 16:01:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21ECE43F93; Mon, 31 Mar 2003 16:01:44 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3101h0U036315; Mon, 31 Mar 2003 16:01:43 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3101hsg036314; Mon, 31 Mar 2003 16:01:43 -0800 (PST) Message-Id: <200304010001.h3101hsg036314@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 16:01:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile ports/audio/mppdec Makefile distinfo pkg-descr pkg-plist ports/audio/mppdec/files patch-mppdec.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:01:45 -0000 edwin 2003/03/31 16:01:43 PST FreeBSD ports repository Modified files: audio Makefile Added files: audio/mppdec Makefile distinfo pkg-descr pkg-plist audio/mppdec/files patch-mppdec.h Log: New port: mppdec Command-line player/decoder for musepack audio PR: ports/46574 Submitted by: Stefan Ehmann Revision Changes Path 1.395 +1 -0 ports/audio/Makefile 1.1 +27 -0 ports/audio/mppdec/Makefile (new) 1.1 +1 -0 ports/audio/mppdec/distinfo (new) 1.1 +11 -0 ports/audio/mppdec/files/patch-mppdec.h (new) 1.1 +14 -0 ports/audio/mppdec/pkg-descr (new) 1.1 +1 -0 ports/audio/mppdec/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:01:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B937537B401; Mon, 31 Mar 2003 16:01:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5501643F85; Mon, 31 Mar 2003 16:01:59 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3101x0U036376; Mon, 31 Mar 2003 16:01:59 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3101wun036375; Mon, 31 Mar 2003 16:01:58 -0800 (PST) Message-Id: <200304010001.h3101wun036375@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 16:01:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:02:00 -0000 edwin 2003/03/31 16:01:58 PST FreeBSD ports repository Modified files: . modules Log: mppdec --> ports/audio/mppdec Revision Changes Path 1.6929 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:05:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F99237B401; Mon, 31 Mar 2003 16:05:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1393343F85; Mon, 31 Mar 2003 16:05:36 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3105Z0U037468; Mon, 31 Mar 2003 16:05:35 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3105Zko037467; Mon, 31 Mar 2003 16:05:35 -0800 (PST) Message-Id: <200304010005.h3105Zko037467@repoman.freebsd.org> From: Yen-Ming Lee Date: Mon, 31 Mar 2003 16:05:35 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/p5-File-Scan Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:05:36 -0000 leeym 2003/03/31 16:05:35 PST FreeBSD ports repository Modified files: security/p5-File-Scan Makefile distinfo Log: update to version 0.45 PR: 50506 Submitted by: Martin Matuska Revision Changes Path 1.12 +1 -1 ports/security/p5-File-Scan/Makefile 1.10 +1 -1 ports/security/p5-File-Scan/distinfo From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:16:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92E9037B401; Mon, 31 Mar 2003 16:16:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB52243F93; Mon, 31 Mar 2003 16:16:32 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310GW0U038240; Mon, 31 Mar 2003 16:16:32 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310GWqF038239; Mon, 31 Mar 2003 16:16:32 -0800 (PST) Message-Id: <200304010016.h310GWqF038239@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 16:16:32 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa npx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:16:34 -0000 jeff 2003/03/31 16:16:32 PST FreeBSD src repository Modified files: sys/i386/isa npx.c Log: - In npxgetregs() use the td argument to save the fpu state from and not curthread. Nothing currently depends on this behavior. - Clean up an extra newline. Obtained from: bde Revision Changes Path 1.139 +1 -2 src/sys/i386/isa/npx.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:18:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE29A37B401; Mon, 31 Mar 2003 16:18:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A30F43F85; Mon, 31 Mar 2003 16:18:56 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310Iu0U038410; Mon, 31 Mar 2003 16:18:56 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310Iu68038409; Mon, 31 Mar 2003 16:18:56 -0800 (PST) Message-Id: <200304010018.h310Iu68038409@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 16:18:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha machdep.c src/sys/i386/i386 support.s src/sys/ia64/ia64 machdep.c src/sys/pc98/i386 machdep.c src/sys/powerpc/powerpc machdep.c src/sys/sparc64/sparc64 machdep.c src/sys/sys systm.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:18:57 -0000 jeff 2003/03/31 16:18:56 PST FreeBSD src repository Modified files: sys/alpha/alpha machdep.c sys/i386/i386 support.s sys/ia64/ia64 machdep.c sys/pc98/i386 machdep.c sys/powerpc/powerpc machdep.c sys/sparc64/sparc64 machdep.c sys/sys systm.h Log: - Define a new md function 'casuptr'. This atomically compares and sets a pointer that is in user space. It will be used as the basic primitive for a kernel supported user space lock implementation. - Implement this function in x86's support.s - Provide stubs that return -1 in all other architectures. Implementations will follow along shortly. Reviewed by: jake Revision Changes Path 1.199 +6 -0 src/sys/alpha/alpha/machdep.c 1.94 +31 -0 src/sys/i386/i386/support.s 1.128 +7 -0 src/sys/ia64/ia64/machdep.c 1.312 +8 -0 src/sys/pc98/i386/machdep.c 1.51 +8 -0 src/sys/powerpc/powerpc/machdep.c 1.78 +7 -0 src/sys/sparc64/sparc64/machdep.c 1.192 +1 -0 src/sys/sys/systm.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:19:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F297837B401; Mon, 31 Mar 2003 16:19:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87C0F43F85; Mon, 31 Mar 2003 16:19:33 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310JX0U038488; Mon, 31 Mar 2003 16:19:33 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310JXYi038487; Mon, 31 Mar 2003 16:19:33 -0800 (PST) Message-Id: <200304010019.h310JXYi038487@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 16:19:33 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/pork Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:19:34 -0000 edwin 2003/03/31 16:19:33 PST FreeBSD ports repository Modified files: net Makefile Added files: net/pork Makefile distinfo pkg-descr pkg-plist Log: New Port: irc/pork Pork is a console-based AIM client PR: ports/47936 Submitted by: Bob Bomar Revision Changes Path 1.946 +1 -0 ports/net/Makefile 1.1 +22 -0 ports/net/pork/Makefile (new) 1.1 +1 -0 ports/net/pork/distinfo (new) 1.1 +7 -0 ports/net/pork/pkg-descr (new) 1.1 +253 -0 ports/net/pork/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:19:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03A0E37B404; Mon, 31 Mar 2003 16:19:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9247A43F93; Mon, 31 Mar 2003 16:19:47 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310Jl0U038535; Mon, 31 Mar 2003 16:19:47 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310Jlg8038534; Mon, 31 Mar 2003 16:19:47 -0800 (PST) Message-Id: <200304010019.h310Jlg8038534@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 16:19:47 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:19:48 -0000 edwin 2003/03/31 16:19:47 PST FreeBSD ports repository Modified files: . modules Log: pork --> ports/net/pork Revision Changes Path 1.6930 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:24:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80AD737B401; Mon, 31 Mar 2003 16:24:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2769843FBD; Mon, 31 Mar 2003 16:24:54 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310Or0U039144; Mon, 31 Mar 2003 16:24:53 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310OrU4039143; Mon, 31 Mar 2003 16:24:53 -0800 (PST) Message-Id: <200304010024.h310OrU4039143@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 16:24:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile ports/audio/autocd Makefile distinfo pkg-descr pkg-plist ports/audio/autocd/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:24:54 -0000 edwin 2003/03/31 16:24:53 PST FreeBSD ports repository Modified files: audio Makefile Added files: audio/autocd Makefile distinfo pkg-descr pkg-plist audio/autocd/files patch-Makefile Log: New port: Compact disc control utility Another compact disc control utility PR: ports/49104 Submitted by: Dmitry Afanasiev Revision Changes Path 1.396 +1 -0 ports/audio/Makefile 1.1 +23 -0 ports/audio/autocd/Makefile (new) 1.1 +1 -0 ports/audio/autocd/distinfo (new) 1.1 +11 -0 ports/audio/autocd/files/patch-Makefile (new) 1.1 +5 -0 ports/audio/autocd/pkg-descr (new) 1.1 +5 -0 ports/audio/autocd/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:25:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33B1637B401; Mon, 31 Mar 2003 16:25:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEBE543F3F; Mon, 31 Mar 2003 16:25:24 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310PO0U039220; Mon, 31 Mar 2003 16:25:24 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310POVN039219; Mon, 31 Mar 2003 16:25:24 -0800 (PST) Message-Id: <200304010025.h310POVN039219@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 16:25:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:25:25 -0000 edwin 2003/03/31 16:25:24 PST FreeBSD ports repository Modified files: . modules Log: autocd --> ports/audio/autocd Revision Changes Path 1.6931 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:29:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C44437B404 for ; Mon, 31 Mar 2003 16:29:11 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id C3D2843FA3 for ; Mon, 31 Mar 2003 16:29:09 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 8126 invoked by uid 1000); 1 Apr 2003 00:29:11 -0000 Date: Mon, 31 Mar 2003 16:29:11 -0800 (PST) From: Nate Lawson To: Andrew Gallatin In-Reply-To: <20030331141312.A27442@grasshopper.cs.duke.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.cif_sis.c if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:29:11 -0000 On Mon, 31 Mar 2003, Andrew Gallatin wrote: > Nate Lawson [nate@root.org] wrote: > > On Mon, 31 Mar 2003, Nate Lawson wrote: > > > Modified files: > > > sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c > > > if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c > > > if_wb.c if_xl.c > > > Log: > > > Clean up locking and resource management for pci/if_* > > > > This is a rather large patch so if you begin to experience problems > > attaching or detaching (say on module load/unload) a previously-working > > card, please let me know. > > Very nice. > > Now that the locking is right, do you plan to enable INTR_MPSAFE on > these? The locking is only right on attach. There is still more locking work to be done on the data path. -Nate From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:30:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E19637B401; Mon, 31 Mar 2003 16:30:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3732C43FA3; Mon, 31 Mar 2003 16:30:31 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310UV0U039608; Mon, 31 Mar 2003 16:30:31 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310UUNj039606; Mon, 31 Mar 2003 16:30:30 -0800 (PST) Message-Id: <200304010030.h310UUNj039606@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 16:30:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys thr.h src/sys/kern kern_thr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:30:32 -0000 jeff 2003/03/31 16:30:30 PST FreeBSD src repository Added files: sys/sys thr.h sys/kern kern_thr.c Log: - Add two files to support the thr threading interface. - sys/thr.h contains the user space visible api that is intended only for use in threading library packages. - kern/kern_thr.c contains thr system calls and other thr specific code. Revision Changes Path 1.1 +259 -0 src/sys/kern/kern_thr.c (new) 1.1 +52 -0 src/sys/sys/thr.h (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:30:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8034937B401; Mon, 31 Mar 2003 16:30:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C61D43F75; Mon, 31 Mar 2003 16:30:55 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310Us0U039757; Mon, 31 Mar 2003 16:30:54 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310Us3g039755; Mon, 31 Mar 2003 16:30:54 -0800 (PST) Message-Id: <200304010030.h310Us3g039755@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 16:30:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:30:55 -0000 jeff 2003/03/31 16:30:54 PST FreeBSD src repository Modified files: sys/conf files Log: - Add kern_thr.c Revision Changes Path 1.774 +1 -0 src/sys/conf/files From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:31:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEAB837B401; Mon, 31 Mar 2003 16:31:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A4D343F75; Mon, 31 Mar 2003 16:31:37 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310Vb0U039889; Mon, 31 Mar 2003 16:31:37 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310VbIv039888; Mon, 31 Mar 2003 16:31:37 -0800 (PST) Message-Id: <200304010031.h310VbIv039888@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 16:31:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern syscalls.master X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:31:38 -0000 jeff 2003/03/31 16:31:37 PST FreeBSD src repository Modified files: sys/kern syscalls.master Log: - Add the four thr related system calls. Revision Changes Path 1.146 +4 -0 src/sys/kern/syscalls.master From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:34:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0E0937B404 for ; Mon, 31 Mar 2003 16:34:26 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 70C4643FAF for ; Mon, 31 Mar 2003 16:34:25 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 8160 invoked by uid 1000); 1 Apr 2003 00:34:26 -0000 Date: Mon, 31 Mar 2003 16:34:26 -0800 (PST) From: Nate Lawson To: John Baldwin In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.cif_sis.c if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:34:27 -0000 On Mon, 31 Mar 2003, John Baldwin wrote: > On 31-Mar-2003 Nate Lawson wrote: > > On Mon, 31 Mar 2003, Nate Lawson wrote: > >> Modified files: > >> sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c > >> if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c > >> if_wb.c if_xl.c > >> Log: > >> Clean up locking and resource management for pci/if_* > > > > This is a rather large patch so if you begin to experience problems > > attaching or detaching (say on module load/unload) a previously-working > > card, please let me know. > > Already found a bogon in tl(4) when it conflicted with some local > changes. Might want to double check that you don't call detach() > for very early failures when you have no resources to teardown or > release but just do a direct return in the other drivers. There is only one other driver that does anything before the mtx_init (ti(4), ti_mbuf_sanity case) and I handled that correctly. The KASSERT in detach should find any case that detach is called before mtx_init. Thank you for finding this and fixing it. -Nate From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:34:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B798737B40D; Mon, 31 Mar 2003 16:34:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DB6E43FBD; Mon, 31 Mar 2003 16:34:30 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310YU0U040003; Mon, 31 Mar 2003 16:34:30 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310YTW1040002; Mon, 31 Mar 2003 16:34:29 -0800 (PST) Message-Id: <200304010034.h310YTW1040002@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 16:34:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern init_sysent.c syscalls.c src/sys/sys syscall.h syscall.mk sysproto.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:34:32 -0000 jeff 2003/03/31 16:34:29 PST FreeBSD src repository Modified files: sys/kern init_sysent.c syscalls.c sys/sys syscall.h syscall.mk sysproto.h Log: - Regen for thr related system calls. Revision Changes Path 1.149 +5 -1 src/sys/kern/init_sysent.c 1.135 +5 -1 src/sys/kern/syscalls.c 1.133 +6 -2 src/sys/sys/syscall.h 1.88 +6 -2 src/sys/sys/syscall.mk 1.129 +24 -1 src/sys/sys/sysproto.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:35:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 480DD37B401; Mon, 31 Mar 2003 16:35:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B37543F93; Mon, 31 Mar 2003 16:35:12 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310ZC0U040075; Mon, 31 Mar 2003 16:35:12 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310ZCK7040074; Mon, 31 Mar 2003 16:35:12 -0800 (PST) Message-Id: <200304010035.h310ZCK7040074@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 16:35:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern makesyscalls.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:35:13 -0000 jeff 2003/03/31 16:35:12 PST FreeBSD src repository Modified files: sys/kern makesyscalls.sh Log: - We now have to include umtx.h and ucontext.h in the system call related headers. Revision Changes Path 1.59 +2 -0 src/sys/kern/makesyscalls.sh From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:37:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2211237B405 for ; Mon, 31 Mar 2003 16:37:16 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 97E1343FB1 for ; Mon, 31 Mar 2003 16:37:14 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 8188 invoked by uid 1000); 1 Apr 2003 00:37:15 -0000 Date: Mon, 31 Mar 2003 16:37:15 -0800 (PST) From: Nate Lawson To: John Baldwin In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: RE: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.cif_sis.c if_ste.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:37:16 -0000 On Mon, 31 Mar 2003, John Baldwin wrote: > On 31-Mar-2003 John Baldwin wrote: > > jhb 2003/03/31 12:22:00 PST > > > > FreeBSD src repository > > > > Modified files: > > sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c > > if_ste.c if_tl.c if_vr.c if_wb.c if_xl.c > > Log: > > Add missing ()'s so that these drivers all compile again. > > > > Noticed by: jake > > Tested on: i386 (compile) > > Also, the pcn(4) driver still has some possibly bogus locking in > its probe routine. Not sure if other drivers have locks in their > probe routines. Thank you jhb and jake for fixing the KASSERT ()'s. I had options INVARIANTS in my kernel so I'm not sure why this was not caught. I was compiling them as modules so does INVARIANTS not enable KASSERT in modules? I'll do a quick grep for other bogus locking shortly. -Nate From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:37:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C153E37B401; Mon, 31 Mar 2003 16:37:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87C4843FB1; Mon, 31 Mar 2003 16:37:39 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310bd0U040280; Mon, 31 Mar 2003 16:37:39 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310bddN040279; Mon, 31 Mar 2003 16:37:39 -0800 (PST) Message-Id: <200304010037.h310bddN040279@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 16:37:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games Makefile ports/games/dungeoncrawl Makefile distinfo pkg-descr pkg-plist ports/games/dungeoncrawl/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:37:43 -0000 edwin 2003/03/31 16:37:38 PST FreeBSD ports repository Modified files: games Makefile Added files: games/dungeoncrawl Makefile distinfo pkg-descr pkg-plist games/dungeoncrawl/files patch-aa Log: New port: games/dungeoncrawl A port of dungeon crawl, an old school roguelike. PR: ports/49095 Submitted by: Suleiman Souhlal Revision Changes Path 1.529 +1 -0 ports/games/Makefile 1.1 +34 -0 ports/games/dungeoncrawl/Makefile (new) 1.1 +1 -0 ports/games/dungeoncrawl/distinfo (new) 1.1 +20 -0 ports/games/dungeoncrawl/files/patch-aa (new) 1.1 +11 -0 ports/games/dungeoncrawl/pkg-descr (new) 1.1 +3 -0 ports/games/dungeoncrawl/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:37:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C80037B404; Mon, 31 Mar 2003 16:37:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3968143FB1; Mon, 31 Mar 2003 16:37:58 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310bv0U040337; Mon, 31 Mar 2003 16:37:57 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310bvAO040336; Mon, 31 Mar 2003 16:37:57 -0800 (PST) Message-Id: <200304010037.h310bvAO040336@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 16:37:57 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:37:58 -0000 edwin 2003/03/31 16:37:57 PST FreeBSD ports repository Modified files: . modules Log: dungeoncrawl --> ports/games/dungeoncrawl Revision Changes Path 1.6932 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:45:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D16A837B401; Mon, 31 Mar 2003 16:45:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D17B43FBD; Mon, 31 Mar 2003 16:45:28 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310jS0U040978; Mon, 31 Mar 2003 16:45:28 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310jShK040977; Mon, 31 Mar 2003 16:45:28 -0800 (PST) Message-Id: <200304010045.h310jShK040977@repoman.freebsd.org> From: Yen-Ming Lee Date: Mon, 31 Mar 2003 16:45:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/wmbiff Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:45:29 -0000 leeym 2003/03/31 16:45:27 PST FreeBSD ports repository Modified files: mail/wmbiff Makefile distinfo pkg-plist Log: Update of mail/wmbiff to 0.4.15 and add support for gnutls (SSL). PR: 50510 Submitted by: Simon L. Nielsen Revision Changes Path 1.14 +8 -4 ports/mail/wmbiff/Makefile 1.8 +1 -1 ports/mail/wmbiff/distinfo 1.4 +2 -0 ports/mail/wmbiff/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:49:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C23237B401; Mon, 31 Mar 2003 16:49:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6DEF43F75; Mon, 31 Mar 2003 16:49:48 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310nm0U046463; Mon, 31 Mar 2003 16:49:48 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310nmq8046462; Mon, 31 Mar 2003 16:49:48 -0800 (PST) Message-Id: <200304010049.h310nmq8046462@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 16:49:48 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/socketbind Makefile pkg-descr pkg-plist ports/net/socketbind/files Makefile socketbind.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:49:49 -0000 edwin 2003/03/31 16:49:48 PST FreeBSD ports repository Modified files: net Makefile Added files: net/socketbind Makefile pkg-descr pkg-plist net/socketbind/files Makefile socketbind.c Log: socketbind - new port submission This library allows you to bind any application which is dynamically linked with libc to certain IP address. It provides convient way to bind socket's source IP to one of the multiple IP's available on computer. PR: ports/50147 Submitted by: Gaspar Chilingarov Revision Changes Path 1.947 +1 -0 ports/net/Makefile 1.1 +37 -0 ports/net/socketbind/Makefile (new) 1.1 +11 -0 ports/net/socketbind/files/Makefile (new) 1.1 +46 -0 ports/net/socketbind/files/socketbind.c (new) 1.1 +11 -0 ports/net/socketbind/pkg-descr (new) 1.1 +4 -0 ports/net/socketbind/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:50:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7773937B419; Mon, 31 Mar 2003 16:50:18 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A95043FAF; Mon, 31 Mar 2003 16:50:17 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 2824366CFA; Mon, 31 Mar 2003 16:50:17 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 0434012A6; Mon, 31 Mar 2003 16:50:16 -0800 (PST) Date: Mon, 31 Mar 2003 16:50:16 -0800 From: Kris Kennaway To: Edwin Groothuis Message-ID: <20030401005016.GA48645@rot13.obsecurity.org> References: <200304010037.h310bddN040279@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="n8g4imXOkfNTN/H1" Content-Disposition: inline In-Reply-To: <200304010037.h310bddN040279@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/games Makefile ports/games/dungeoncrawl Makefile distinfo pkg-descr pkg-plist ports/games/dungeoncrawl/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:50:18 -0000 --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 31, 2003 at 04:37:38PM -0800, Edwin Groothuis wrote: > edwin 2003/03/31 16:37:38 PST >=20 > FreeBSD ports repository >=20 > Modified files: > games Makefile=20 > Added files: > games/dungeoncrawl Makefile distinfo pkg-descr pkg-plist=20 > games/dungeoncrawl/files patch-aa=20 > Log: > New port: games/dungeoncrawl > =20 > A port of dungeon crawl, an old school roguelike. b26 is already out. Also, MASTER_SITES=3D ftp://anonymous:dposix@ftp.dungeoncrawl.org/dev/4.0.x/src/ ^^^^^^^^^^^^^^^^ this appears to be superfluous. Kris --n8g4imXOkfNTN/H1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+iOJIWry0BWjoQKURAikmAKCPpeH4PX01tu8DWKSogiWYDP7VZwCgtIob aol+HaVu1jVaRhwiBt3h0ec= =7Gen -----END PGP SIGNATURE----- --n8g4imXOkfNTN/H1-- From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:50:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A575237B415; Mon, 31 Mar 2003 16:50:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41CD643FB1; Mon, 31 Mar 2003 16:50:27 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h310oR0U046590; Mon, 31 Mar 2003 16:50:27 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h310oQpj046589; Mon, 31 Mar 2003 16:50:26 -0800 (PST) Message-Id: <200304010050.h310oQpj046589@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 16:50:26 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:50:28 -0000 edwin 2003/03/31 16:50:26 PST FreeBSD ports repository Modified files: . modules Log: socketbind --> ports/net/socketbind Revision Changes Path 1.6933 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 16:53:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 009D037B401; Mon, 31 Mar 2003 16:53:18 -0800 (PST) Received: from randomservers.com (randomservers.com [198.78.65.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44F9F43FA3; Mon, 31 Mar 2003 16:53:17 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from randomservers.com (randomservers [198.78.65.158]) by randomservers.com (8.12.8/8.12.6) with ESMTP id h310qHdA090664 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 31 Mar 2003 16:52:17 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from localhost (joseph@localhost)h310qHNM090658; Mon, 31 Mar 2003 16:52:17 -0800 (PST) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: joseph owned process doing -bs Date: Mon, 31 Mar 2003 16:52:17 -0800 (PST) From: Joseph Scott X-X-Sender: joseph@randomservers To: Edwin Groothuis In-Reply-To: <200304010037.h310bddN040279@repoman.freebsd.org> Message-ID: <20030331165156.R62231@randomservers> References: <200304010037.h310bddN040279@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-1.5 required=8.0 tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_00_01, X_AUTH_WARNING version=2.44 cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/games Makefile ports/games/dungeoncrawlMakefile distinfo pkg-descr pkg-plist ports/games/dungeoncrawl/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 00:53:18 -0000 On Mon, 31 Mar 2003, Edwin Groothuis wrote: > edwin 2003/03/31 16:37:38 PST > > FreeBSD ports repository > > Modified files: > games Makefile > Added files: > games/dungeoncrawl Makefile distinfo pkg-descr pkg-plist > games/dungeoncrawl/files patch-aa > Log: > New port: games/dungeoncrawl > > A port of dungeon crawl, an old school roguelike. > > PR: ports/49095 > Submitted by: Suleiman Souhlal This looks to be the same as PR ports/48785 by the same person. -Joseph From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:00:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62B9237B401; Mon, 31 Mar 2003 17:00:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F312543F3F; Mon, 31 Mar 2003 17:00:38 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3110c0U047356; Mon, 31 Mar 2003 17:00:38 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3110cJP047354; Mon, 31 Mar 2003 17:00:38 -0800 (PST) Message-Id: <200304010100.h3110cJP047354@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 17:00:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/dungeoncrawl Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:00:39 -0000 edwin 2003/03/31 17:00:38 PST FreeBSD ports repository Modified files: games/dungeoncrawl Makefile Log: remove credentials from the MASTER_SITE Submitted by: kris@ Revision Changes Path 1.2 +1 -1 ports/games/dungeoncrawl/Makefile From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:02:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ABB537B401; Mon, 31 Mar 2003 17:02:04 -0800 (PST) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BCE943F85; Mon, 31 Mar 2003 17:02:03 -0800 (PST) (envelope-from jake@k6.locore.ca) Received: from k6.locore.ca (localhost.locore.ca [127.0.0.1]) by k6.locore.ca (8.12.8/8.12.8) with ESMTP id h3118YxS039878; Mon, 31 Mar 2003 20:08:34 -0500 (EST) (envelope-from jake@k6.locore.ca) Received: (from jake@localhost) by k6.locore.ca (8.12.8/8.12.8/Submit) id h3118Yeo039877; Mon, 31 Mar 2003 20:08:34 -0500 (EST) Date: Mon, 31 Mar 2003 20:08:33 -0500 From: Jake Burkholder To: Nate Lawson Message-ID: <20030401010833.GA39531@locore.ca> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: John Baldwin Subject: Re: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_ste.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:02:04 -0000 Apparently, On Mon, Mar 31, 2003 at 04:37:15PM -0800, Nate Lawson said words to the effect of; > On Mon, 31 Mar 2003, John Baldwin wrote: > > On 31-Mar-2003 John Baldwin wrote: > > > jhb 2003/03/31 12:22:00 PST > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c > > > if_ste.c if_tl.c if_vr.c if_wb.c if_xl.c > > > Log: > > > Add missing ()'s so that these drivers all compile again. > > > > > > Noticed by: jake > > > Tested on: i386 (compile) > > > > Also, the pcn(4) driver still has some possibly bogus locking in > > its probe routine. Not sure if other drivers have locks in their > > probe routines. > > Thank you jhb and jake for fixing the KASSERT ()'s. I had options > INVARIANTS in my kernel so I'm not sure why this was not caught. I was > compiling them as modules so does INVARIANTS not enable KASSERT in > modules? It does not, option headers and not created automatically for modules. Jake From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:10:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63BFD37B401; Mon, 31 Mar 2003 17:10:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12ACE43F85; Mon, 31 Mar 2003 17:10:43 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h311Ag0U049115; Mon, 31 Mar 2003 17:10:42 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h311AgXB049113; Mon, 31 Mar 2003 17:10:42 -0800 (PST) Message-Id: <200304010110.h311AgXB049113@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 17:10:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_umtx.c src/sys/sys umtx.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:10:43 -0000 jeff 2003/03/31 17:10:42 PST FreeBSD src repository Added files: sys/kern kern_umtx.c sys/sys umtx.h Log: - Add an api for doing smp safe locks in userland. - umtx_lock() is defined as an inline in umtx.h. It tries to do an uncontested acquire of a lock which falls back to the _umtx_lock() system-call if that fails. - umtx_unlock() is also an inline which falls back to _umtx_unlock() if the uncontested unlock fails. - Locks are keyed off of the thr_id_t of the currently running thread which is currently just the pointer to the 'struct thread' in kernel. - _umtx_lock() uses the proc pointer to synchronize access to blocked thread queues which are stored in the first blocked thread. Revision Changes Path 1.1 +303 -0 src/sys/kern/kern_umtx.c (new) 1.1 +87 -0 src/sys/sys/umtx.h (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:11:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FA7C37B409; Mon, 31 Mar 2003 17:11:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B262A43FBF; Mon, 31 Mar 2003 17:11:22 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h311BM0U049261; Mon, 31 Mar 2003 17:11:22 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h311BMWN049260; Mon, 31 Mar 2003 17:11:22 -0800 (PST) Message-Id: <200304010111.h311BMWN049260@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 17:11:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys proc.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:11:23 -0000 jeff 2003/03/31 17:11:22 PST FreeBSD src repository Modified files: sys/sys proc.h Log: - Add an entry and a head for the queue of threads blocked on a umtx. - Add a prototype for thr_exit1(). Revision Changes Path 1.310 +4 -0 src/sys/sys/proc.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:12:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1923437B401; Mon, 31 Mar 2003 17:12:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A73C243FA3; Mon, 31 Mar 2003 17:12:24 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h311CO0U049315; Mon, 31 Mar 2003 17:12:24 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h311COOq049314; Mon, 31 Mar 2003 17:12:24 -0800 (PST) Message-Id: <200304010112.h311COOq049314@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 17:12:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern makesyscalls.sh syscalls.master X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:12:25 -0000 jeff 2003/03/31 17:12:24 PST FreeBSD src repository Modified files: sys/kern makesyscalls.sh syscalls.master Log: - Include umtx.h in files generated by makesyscalls.sh - Add system calls for umtx. Revision Changes Path 1.60 +1 -0 src/sys/kern/makesyscalls.sh 1.147 +2 -0 src/sys/kern/syscalls.master From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:13:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60F6637B401; Mon, 31 Mar 2003 17:13:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3F0543F3F; Mon, 31 Mar 2003 17:13:29 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h311DT0U049414; Mon, 31 Mar 2003 17:13:29 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h311DTug049413; Mon, 31 Mar 2003 17:13:29 -0800 (PST) Message-Id: <200304010113.h311DTug049413@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 17:13:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:13:31 -0000 jeff 2003/03/31 17:13:29 PST FreeBSD src repository Modified files: sys/conf files Log: - Add the kern_umtx.c file to the build. Revision Changes Path 1.775 +1 -0 src/sys/conf/files From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:15:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BF6737B401; Mon, 31 Mar 2003 17:15:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC98043F85; Mon, 31 Mar 2003 17:15:56 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h311Fu0U049572; Mon, 31 Mar 2003 17:15:56 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h311Fua8049571; Mon, 31 Mar 2003 17:15:56 -0800 (PST) Message-Id: <200304010115.h311Fua8049571@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 17:15:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia32 syscalls.master X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:15:57 -0000 jeff 2003/03/31 17:15:56 PST FreeBSD src repository Modified files: sys/ia64/ia32 syscalls.master Log: - Add thr and umtx system calls. Revision Changes Path 1.18 +8 -0 src/sys/ia64/ia32/syscalls.master From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:26:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AADC737B401; Mon, 31 Mar 2003 17:26:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 595A943FBD; Mon, 31 Mar 2003 17:26:21 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h311QL0U050454; Mon, 31 Mar 2003 17:26:21 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h311QLxt050453; Mon, 31 Mar 2003 17:26:21 -0800 (PST) Message-Id: <200304010126.h311QLxt050453@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 17:26:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_exec.c kern_exit.c kern_fork.c kern_synch.c kern_thread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:26:22 -0000 jeff 2003/03/31 17:26:21 PST FreeBSD src repository Modified files: sys/kern kern_exec.c kern_exit.c kern_fork.c kern_synch.c kern_thread.c Log: - Borrow the KSE single threading code for exec and exit. We use the check if (p->p_numthreads > 1) and not a flag because action is only necessary if there are other threads. The rest of the system has no need to identify thr threaded processes. - In kern_thread.c use thr_exit1() instead of thread_exit() if P_THREADED is not set. Revision Changes Path 1.218 +1 -1 src/sys/kern/kern_exec.c 1.208 +4 -2 src/sys/kern/kern_exit.c 1.189 +5 -0 src/sys/kern/kern_fork.c 1.216 +1 -1 src/sys/kern/kern_synch.c 1.111 +7 -3 src/sys/kern/kern_thread.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:34:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEF9937B401 for ; Mon, 31 Mar 2003 17:34:20 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 9009143FEC for ; Mon, 31 Mar 2003 17:34:19 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 8320 invoked by uid 1000); 1 Apr 2003 01:34:21 -0000 Date: Mon, 31 Mar 2003 17:34:21 -0800 (PST) From: Nate Lawson To: Jeff Roberson In-Reply-To: <20030401011121.0419C37B4AD@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_umtx.c src/sys/sys umtx.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:34:21 -0000 On Mon, 31 Mar 2003, Jeff Roberson wrote: > Added files: > sys/kern kern_umtx.c > sys/sys umtx.h > Log: > - Add an api for doing smp safe locks in userland. > - umtx_lock() is defined as an inline in umtx.h. It tries to do an > uncontested acquire of a lock which falls back to the _umtx_lock() > system-call if that fails. > - umtx_unlock() is also an inline which falls back to _umtx_unlock() if the > uncontested unlock fails. > - Locks are keyed off of the thr_id_t of the currently running thread which > is currently just the pointer to the 'struct thread' in kernel. > - _umtx_lock() uses the proc pointer to synchronize access to blocked thread > queues which are stored in the first blocked thread. > > Revision Changes Path > 1.1 +303 -0 src/sys/kern/kern_umtx.c (new) > 1.1 +87 -0 src/sys/sys/umtx.h (new) It's great to be getting this. Can you point me to a document indicating how this will be used by KSE? Are we going to have "native threads" (thr), KSE, and pthreads? -Nate From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:20:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3233E37B401; Mon, 31 Mar 2003 17:20:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8650C43FBF; Mon, 31 Mar 2003 17:20:04 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h311K40U049710; Mon, 31 Mar 2003 17:20:04 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h311K3Fh049709; Mon, 31 Mar 2003 17:20:03 -0800 (PST) Message-Id: <200304010120.h311K3Fh049709@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 31 Mar 2003 17:20:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/vim Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:20:05 -0000 obrien 2003/03/31 17:20:02 PST FreeBSD ports repository Modified files: editors/vim Makefile distinfo Log: Update to Vim 6.1 patchlevel 405. Revision Changes Path 1.221 +2 -2 ports/editors/vim/Makefile 1.136 +36 -10 ports/editors/vim/distinfo From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:21:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3B3B37B401; Mon, 31 Mar 2003 17:21:35 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6149A43F3F; Mon, 31 Mar 2003 17:21:35 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 388052ED40D; Mon, 31 Mar 2003 17:21:35 -0800 (PST) Date: Mon, 31 Mar 2003 17:21:35 -0800 From: Alfred Perlstein To: Jeff Roberson Message-ID: <20030401012135.GB17388@elvis.mu.org> References: <200304010115.h311Fua8049571@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304010115.h311Fua8049571@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/ia32 syscalls.master X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:21:36 -0000 * Jeff Roberson [030331 17:16] wrote: > jeff 2003/03/31 17:15:56 PST > > FreeBSD src repository > > Modified files: > sys/ia64/ia32 syscalls.master > Log: > - Add thr and umtx system calls. > > Revision Changes Path > 1.18 +8 -0 src/sys/ia64/ia32/syscalls.master heh, rocking! -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:22:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A960737B401; Mon, 31 Mar 2003 17:22:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42DCF43FBD; Mon, 31 Mar 2003 17:22:19 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h311MI0U050236; Mon, 31 Mar 2003 17:22:18 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h311MIBG050235; Mon, 31 Mar 2003 17:22:18 -0800 (PST) Message-Id: <200304010122.h311MIBG050235@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 17:22:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern init_sysent.c syscalls.c src/sys/sys syscall.h syscall.mk sysproto.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:22:20 -0000 jeff 2003/03/31 17:22:18 PST FreeBSD src repository Modified files: sys/kern init_sysent.c syscalls.c sys/sys syscall.h syscall.mk sysproto.h Log: - Regen for umtx. Revision Changes Path 1.150 +3 -1 src/sys/kern/init_sysent.c 1.136 +3 -1 src/sys/kern/syscalls.c 1.134 +4 -2 src/sys/sys/syscall.h 1.89 +4 -2 src/sys/sys/syscall.mk 1.130 +9 -1 src/sys/sys/sysproto.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:38:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8AFA37B401; Mon, 31 Mar 2003 17:38:17 -0800 (PST) Received: from sccrmhc03.attbi.com (sccrmhc03.attbi.com [204.127.202.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id BACA043FA3; Mon, 31 Mar 2003 17:38:16 -0800 (PST) (envelope-from julian@elischer.org) Received: from interjet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by sccrmhc03.attbi.com (sccrmhc03) with ESMTP id <20030401013815003004kmu8e>; Tue, 1 Apr 2003 01:38:16 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id RAA01060; Mon, 31 Mar 2003 17:38:13 -0800 (PST) Date: Mon, 31 Mar 2003 17:38:13 -0800 (PST) From: Julian Elischer To: Nate Lawson In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_umtx.c src/sys/sys umtx.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:38:18 -0000 On Mon, 31 Mar 2003, Nate Lawson wrote: > On Mon, 31 Mar 2003, Jeff Roberson wrote: > > Added files: > > sys/kern kern_umtx.c > > sys/sys umtx.h > > Log: > > - Add an api for doing smp safe locks in userland. > > - umtx_lock() is defined as an inline in umtx.h. It tries to do an > > uncontested acquire of a lock which falls back to the _umtx_lock() > > system-call if that fails. > > - umtx_unlock() is also an inline which falls back to _umtx_unlock() if the > > uncontested unlock fails. > > - Locks are keyed off of the thr_id_t of the currently running thread which > > is currently just the pointer to the 'struct thread' in kernel. > > - _umtx_lock() uses the proc pointer to synchronize access to blocked thread > > queues which are stored in the first blocked thread. > > > > Revision Changes Path > > 1.1 +303 -0 src/sys/kern/kern_umtx.c (new) > > 1.1 +87 -0 src/sys/sys/umtx.h (new) > > It's great to be getting this. Can you point me to a document indicating > how this will be used by KSE? Are we going to have "native threads" > (thr), KSE, and pthreads? We will have 3 threads schemes.. userland threads thr threads.. Useable by the majority of threaded apps KSE threads.. Useable by threaded apps that have thousands of threads (i.e. KSE is a hybrid if userland and thr threads..) Julian From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:46:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6796237B401; Mon, 31 Mar 2003 17:46:16 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EA7343FD7; Mon, 31 Mar 2003 17:46:15 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h311k7j85496; Mon, 31 Mar 2003 20:46:07 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Mon, 31 Mar 2003 20:46:07 -0500 (EST) From: Jeff Roberson To: Nate Lawson In-Reply-To: Message-ID: <20030331204128.C64602-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_umtx.c src/sys/sys umtx.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:46:16 -0000 On Mon, 31 Mar 2003, Nate Lawson wrote: > On Mon, 31 Mar 2003, Jeff Roberson wrote: > > Added files: > > sys/kern kern_umtx.c > > sys/sys umtx.h > > Log: > > - Add an api for doing smp safe locks in userland. > > - umtx_lock() is defined as an inline in umtx.h. It tries to do an > > uncontested acquire of a lock which falls back to the _umtx_lock() > > system-call if that fails. > > - umtx_unlock() is also an inline which falls back to _umtx_unlock() if the > > uncontested unlock fails. > > - Locks are keyed off of the thr_id_t of the currently running thread which > > is currently just the pointer to the 'struct thread' in kernel. > > - _umtx_lock() uses the proc pointer to synchronize access to blocked thread > > queues which are stored in the first blocked thread. > > > > Revision Changes Path > > 1.1 +303 -0 src/sys/kern/kern_umtx.c (new) > > 1.1 +87 -0 src/sys/sys/umtx.h (new) > > It's great to be getting this. Can you point me to a document indicating > how this will be used by KSE? Are we going to have "native threads" > (thr), KSE, and pthreads? I have not written a document for umtx. I will probably write a man page at some point. I'm not sure that KSE can use umtx directly. Their requirements are different from thr and so this interface is slightly tied to the thr idea of threads. Currently you could use umtx to synchronize two processes if I wasn't using the PROC_LOCK() in kern_umtx.c. I could do this if there was enough interest. It sounds sort of neat anyway. The only reason this is tied to threads is because the thr_id_t is the "struct thread *". I dont think kse currently exposes this to userland although it could. I'm sure I'll talk with the other kse folks at more depth about whether nor not they can use this for the libkse locks. Cheers, Jeff From owner-cvs-all@FreeBSD.ORG Mon Mar 31 17:47:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75DA037B401; Mon, 31 Mar 2003 17:47:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B875A43F3F; Mon, 31 Mar 2003 17:47:09 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h311l90U051880; Mon, 31 Mar 2003 17:47:09 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h311l9T6051879; Mon, 31 Mar 2003 17:47:09 -0800 (PST) Message-Id: <200304010147.h311l9T6051879@repoman.freebsd.org> From: Yen-Ming Lee Date: Mon, 31 Mar 2003 17:47:09 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/chinese/arphicttf Makefile pkg-install X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:47:11 -0000 leeym 2003/03/31 17:47:09 PST FreeBSD ports repository Modified files: chinese/arphicttf Makefile pkg-install Log: remove not-yet-supported CJK module and prevent it from loopback dependence. PR: 35833 Submitted by: Chia-Hsing Yu Approved by: maintainer timeout Revision Changes Path 1.14 +2 -12 ports/chinese/arphicttf/Makefile 1.8 +0 -4 ports/chinese/arphicttf/pkg-install From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:03:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A279B37B401; Mon, 31 Mar 2003 18:03:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C12243FAF; Mon, 31 Mar 2003 18:03:44 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3123i0U054049; Mon, 31 Mar 2003 18:03:44 -0800 (PST) (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3123hc8054048; Mon, 31 Mar 2003 18:03:43 -0800 (PST) Message-Id: <200304010203.h3123hc8054048@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Mon, 31 Mar 2003 18:03:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/chinese/irssi Makefile ports/chinese/irssi/files patch-src::fe-text::gui-readline.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:03:45 -0000 vanilla 2003/03/31 18:03:43 PST FreeBSD ports repository Modified files: chinese/irssi Makefile chinese/irssi/files patch-src::fe-text::gui-readline.c Log: Add a patch to fix readline routine problem. PR: ports/50374 Submitted by: Michael Hsin Revision Changes Path 1.14 +1 -1 ports/chinese/irssi/Makefile 1.2 +37 -8 ports/chinese/irssi/files/patch-src::fe-text::gui-readline.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:14:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0C0F37B401; Mon, 31 Mar 2003 18:14:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 919DA43F93; Mon, 31 Mar 2003 18:14:16 -0800 (PST) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312EG0U054787; Mon, 31 Mar 2003 18:14:16 -0800 (PST) (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312EGf7054786; Mon, 31 Mar 2003 18:14:16 -0800 (PST) Message-Id: <200304010214.h312EGf7054786@repoman.freebsd.org> From: Adam Weinberger Date: Mon, 31 Mar 2003 18:14:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/jumpnbump Makefile distinfo ports/games/jumpnbump/files patch-modify::Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:14:17 -0000 adamw 2003/03/31 18:14:16 PST FreeBSD ports repository Modified files: games/jumpnbump Makefile distinfo games/jumpnbump/files patch-modify::Makefile Log: * Update to 1.41 * Fix error that caused Tk menu to only appear in plist when you DIDN'T want it * I love the soundtrack to this game PR: 50462 Submitted by: Mark Linimon Approved by: Gurkan Sengun (maintainer) Revision Changes Path 1.5 +3 -1 ports/games/jumpnbump/Makefile 1.2 +1 -1 ports/games/jumpnbump/distinfo 1.2 +2 -2 ports/games/jumpnbump/files/patch-modify::Makefile From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:32:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0374637B401; Mon, 31 Mar 2003 18:32:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99F0A43F75; Mon, 31 Mar 2003 18:32:07 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312W70U055988; Mon, 31 Mar 2003 18:32:07 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312W7Yq055987; Mon, 31 Mar 2003 18:32:07 -0800 (PST) Message-Id: <200304010232.h312W7Yq055987@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 18:32:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern syscalls.master X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:32:08 -0000 jeff 2003/03/31 18:32:07 PST FreeBSD src repository Modified files: sys/kern syscalls.master Log: - Mark the various thr syscalls as MP safe. Previously there was a bug if this was not done since thr_exit() unwinds giant. Revision Changes Path 1.148 +4 -4 src/sys/kern/syscalls.master From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:32:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A0F037B401; Mon, 31 Mar 2003 18:32:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BB3343F85; Mon, 31 Mar 2003 18:32:54 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312Ws0U056032; Mon, 31 Mar 2003 18:32:54 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312WrOl056031; Mon, 31 Mar 2003 18:32:53 -0800 (PST) Message-Id: <200304010232.h312WrOl056031@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 18:32:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_thr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:32:55 -0000 jeff 2003/03/31 18:32:53 PST FreeBSD src repository Modified files: sys/kern kern_thr.c Log: - thr_exit() should no longer be called with Giant held. Revision Changes Path 1.2 +0 -2 src/sys/kern/kern_thr.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:34:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A9DC37B401; Mon, 31 Mar 2003 18:34:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB30343F93; Mon, 31 Mar 2003 18:34:21 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312YL0U056144; Mon, 31 Mar 2003 18:34:21 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312YLLn056143; Mon, 31 Mar 2003 18:34:21 -0800 (PST) Message-Id: <200304010234.h312YLLn056143@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 18:34:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys syscall.h syscall.mk sysproto.h src/sys/kern init_sysent.c syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:34:22 -0000 jeff 2003/03/31 18:34:21 PST FreeBSD src repository Modified files: sys/sys syscall.h syscall.mk sysproto.h sys/kern init_sysent.c syscalls.c Log: - Regen. Revision Changes Path 1.151 +5 -5 src/sys/kern/init_sysent.c 1.137 +1 -1 src/sys/kern/syscalls.c 1.135 +1 -1 src/sys/sys/syscall.h 1.90 +1 -1 src/sys/sys/syscall.mk 1.131 +1 -1 src/sys/sys/sysproto.h From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:34:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2997737B401; Mon, 31 Mar 2003 18:34:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C931D43F75; Mon, 31 Mar 2003 18:34:47 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312Yl0U056217; Mon, 31 Mar 2003 18:34:47 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312YlAE056216; Mon, 31 Mar 2003 18:34:47 -0800 (PST) Message-Id: <200304010234.h312YlAE056216@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 18:34:47 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11 Makefile ports/x11/gromit Makefile distinfo pkg-descr pkg-plist ports/x11/gromit/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:34:48 -0000 edwin 2003/03/31 18:34:47 PST FreeBSD ports repository Modified files: x11 Makefile Added files: x11/gromit Makefile distinfo pkg-descr pkg-plist x11/gromit/files patch-Makefile Log: x11/gromit: on-screen annotations Gromit (GRaphics Over MIscellaneous Things) is a small tool to make annotations on the screen. When making presentations of the Gimp I found myself often moving the mousepointer around the point of interest until hopefully everybody noticed it. This annoyed me, since it is a very vague way to highlight something. I dreamt of a small programm which allows me to simply draw on the screen, ignoring any window-borders. PR: ports/48885 Submitted by: Sergei Kolobov Revision Changes Path 1.399 +1 -0 ports/x11/Makefile 1.1 +32 -0 ports/x11/gromit/Makefile (new) 1.1 +1 -0 ports/x11/gromit/distinfo (new) 1.1 +8 -0 ports/x11/gromit/files/patch-Makefile (new) 1.1 +11 -0 ports/x11/gromit/pkg-descr (new) 1.1 +8 -0 ports/x11/gromit/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:35:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1EA237B407; Mon, 31 Mar 2003 18:35:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 543B643F75; Mon, 31 Mar 2003 18:35:11 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312ZB0U056305; Mon, 31 Mar 2003 18:35:11 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312ZBWN056304; Mon, 31 Mar 2003 18:35:11 -0800 (PST) Message-Id: <200304010235.h312ZBWN056304@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 18:35:11 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:35:12 -0000 edwin 2003/03/31 18:35:11 PST FreeBSD ports repository Modified files: . modules Log: gromit --> ports/x11/gromit Revision Changes Path 1.6934 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:36:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACD6C37B401; Mon, 31 Mar 2003 18:36:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5632843FA3; Mon, 31 Mar 2003 18:36:39 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312ad0U056493; Mon, 31 Mar 2003 18:36:39 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312acpI056492; Mon, 31 Mar 2003 18:36:38 -0800 (PST) Message-Id: <200304010236.h312acpI056492@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 18:36:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases Makefile ports/databases/puredb Makefile distinfo pkg-descr pkg-plist ports/databases/puredb/files patch-example_read.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:36:40 -0000 edwin 2003/03/31 18:36:38 PST FreeBSD ports repository Modified files: databases Makefile Added files: databases/puredb Makefile distinfo pkg-descr pkg-plist databases/puredb/files patch-example_read.c Log: databases/puredb: Set of libraries for creating and reading constant databases PureDB is a portable and tiny set of libraries for creating and reading constant databases. It manages data files that contains text or binary key/data pairs of arbitrary sizes. Lookups are very fast (normally only one disk access to match a hash value), overhead is low (a database is 1028 bytes plus only 16 extra bytes per record), multiple concurrent read access are supported, and databases can be up to 4 Gb long, and they are portable across architectures. PR: ports/48901 Submitted by: Sergei Kolobov Revision Changes Path 1.231 +1 -0 ports/databases/Makefile 1.1 +28 -0 ports/databases/puredb/Makefile (new) 1.1 +1 -0 ports/databases/puredb/distinfo (new) 1.1 +12 -0 ports/databases/puredb/files/patch-example_read.c (new) 1.1 +10 -0 ports/databases/puredb/pkg-descr (new) 1.1 +17 -0 ports/databases/puredb/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:36:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D8A237B401; Mon, 31 Mar 2003 18:36:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D62BC43F3F; Mon, 31 Mar 2003 18:36:52 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312aq0U056531; Mon, 31 Mar 2003 18:36:52 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312aqEx056530; Mon, 31 Mar 2003 18:36:52 -0800 (PST) Message-Id: <200304010236.h312aqEx056530@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 18:36:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:36:53 -0000 edwin 2003/03/31 18:36:52 PST FreeBSD ports repository Modified files: . modules Log: puredb --> ports/databases/puredb Revision Changes Path 1.6935 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:37:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BD1037B401; Mon, 31 Mar 2003 18:37:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFFB843F85; Mon, 31 Mar 2003 18:37:04 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312b40U056568; Mon, 31 Mar 2003 18:37:04 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312b40t056567; Mon, 31 Mar 2003 18:37:04 -0800 (PST) Message-Id: <200304010237.h312b40t056567@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 31 Mar 2003 18:37:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 machdep.c support.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:37:05 -0000 jake 2003/03/31 18:37:04 PST FreeBSD src repository Modified files: sys/sparc64/sparc64 machdep.c support.S Log: Implement casuptr. Revision Changes Path 1.79 +0 -7 src/sys/sparc64/sparc64/machdep.c 1.20 +23 -0 src/sys/sparc64/sparc64/support.S From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:38:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57B5A37B401; Mon, 31 Mar 2003 18:38:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04D1943F93; Mon, 31 Mar 2003 18:38:26 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312cP0U056734; Mon, 31 Mar 2003 18:38:25 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312cPXF056733; Mon, 31 Mar 2003 18:38:25 -0800 (PST) Message-Id: <200304010238.h312cPXF056733@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 18:38:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/posadis Makefile distinfo pkg-descr pkg-plist ports/net/posadis/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:38:26 -0000 edwin 2003/03/31 18:38:25 PST FreeBSD ports repository Modified files: net Makefile Added files: net/posadis Makefile distinfo pkg-descr pkg-plist net/posadis/files patch-configure Log: net/posadis, another DNS server implementation Add a new port - net/posadis. It is a new DNS server implementation being actively developed at SourceForge. Posadis is a DNS server project with the goal to create a free, reliable, portable, fast, lightweight, easy to use, standards compliant, and functionally complete, Domain Name System server implementation. PR: ports/48872 Submitted by: Sergei Kolobov Revision Changes Path 1.948 +1 -0 ports/net/Makefile 1.1 +35 -0 ports/net/posadis/Makefile (new) 1.1 +1 -0 ports/net/posadis/distinfo (new) 1.1 +11 -0 ports/net/posadis/files/patch-configure (new) 1.1 +27 -0 ports/net/posadis/pkg-descr (new) 1.1 +12 -0 ports/net/posadis/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:38:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 166AD37B401; Mon, 31 Mar 2003 18:38:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADCBF43F93; Mon, 31 Mar 2003 18:38:41 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312cf0U056772; Mon, 31 Mar 2003 18:38:41 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312cf5w056771; Mon, 31 Mar 2003 18:38:41 -0800 (PST) Message-Id: <200304010238.h312cf5w056771@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 18:38:41 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:38:42 -0000 edwin 2003/03/31 18:38:41 PST FreeBSD ports repository Modified files: . modules Log: posadis --> ports/net/posadis Revision Changes Path 1.6936 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:38:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7562637B404; Mon, 31 Mar 2003 18:38:43 -0800 (PST) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BEE143F93; Mon, 31 Mar 2003 18:38:42 -0800 (PST) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.12.9/8.12.9) with SMTP id h312cvYY016174; Mon, 31 Mar 2003 21:38:57 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Mon, 31 Mar 2003 21:38:57 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Jeff Roberson In-Reply-To: <20030331204128.C64602-100000@mail.chesapeake.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Nate Lawson Subject: Re: cvs commit: src/sys/kern kern_umtx.c src/sys/sys umtx.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:38:44 -0000 On Mon, 31 Mar 2003, Jeff Roberson wrote: > > It's great to be getting this. Can you point me to a document indicating > > how this will be used by KSE? Are we going to have "native threads" > > (thr), KSE, and pthreads? > > I have not written a document for umtx. I will probably write a man > page at some point. I'm not sure that KSE can use umtx directly. Their > requirements are different from thr and so this interface is slightly > tied to the thr idea of threads. > > Currently you could use umtx to synchronize two processes if I wasn't > using the PROC_LOCK() in kern_umtx.c. I could do this if there was > enough interest. It sounds sort of neat anyway. > > The only reason this is tied to threads is because the thr_id_t is the > "struct thread *". I dont think kse currently exposes this to userland > although it could. > > I'm sure I'll talk with the other kse folks at more depth about whether > nor not they can use this for the libkse locks. Do you have any thoughts on how you might authorize inter-process synchronization if not implicitly by requiring that synchronization occur between threads in the same process? One of the nice things about the current model is that there are no concerns about authorization... Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:41:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAC7737B401; Mon, 31 Mar 2003 18:41:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B0BC43F93; Mon, 31 Mar 2003 18:41:35 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312fZ0U057265; Mon, 31 Mar 2003 18:41:35 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312fYKh057264; Mon, 31 Mar 2003 18:41:34 -0800 (PST) Message-Id: <200304010241.h312fYKh057264@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 18:41:34 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security Makefile ports/security/ftpmap Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:41:36 -0000 edwin 2003/03/31 18:41:34 PST FreeBSD ports repository Modified files: security Makefile Added files: security/ftpmap Makefile distinfo pkg-descr pkg-plist Log: security/ftpmap: Identify remote FTP server software by fingerprinting Ftpmap scans remote FTP servers to indentify what software and what versions they are running. It uses program-specific fingerprints to discover the name of the software even when banners have been changed or removed, or when some features have been disabled. IPv6 is fully supported. PR: ports/48899 Submitted by: Sergei Kolobov Revision Changes Path 1.387 +1 -0 ports/security/Makefile 1.1 +26 -0 ports/security/ftpmap/Makefile (new) 1.1 +1 -0 ports/security/ftpmap/distinfo (new) 1.1 +7 -0 ports/security/ftpmap/pkg-descr (new) 1.1 +6 -0 ports/security/ftpmap/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:41:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1810937B401; Mon, 31 Mar 2003 18:41:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE9BC43FBD; Mon, 31 Mar 2003 18:41:48 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312fm0U057306; Mon, 31 Mar 2003 18:41:48 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312fm6J057305; Mon, 31 Mar 2003 18:41:48 -0800 (PST) Message-Id: <200304010241.h312fm6J057305@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 18:41:48 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:41:49 -0000 edwin 2003/03/31 18:41:48 PST FreeBSD ports repository Modified files: . modules Log: ftpmap --> ports/security/ftpmap Revision Changes Path 1.6937 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:42:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FB2637B401; Mon, 31 Mar 2003 18:42:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 431B343F93; Mon, 31 Mar 2003 18:42:03 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312g20U057339; Mon, 31 Mar 2003 18:42:02 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312g2JW057338; Mon, 31 Mar 2003 18:42:02 -0800 (PST) Message-Id: <200304010242.h312g2JW057338@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 31 Mar 2003 18:42:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/smbfs smbfs_vfsops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:42:04 -0000 tjr 2003/03/31 18:42:02 PST FreeBSD src repository Modified files: sys/fs/smbfs smbfs_vfsops.c Log: Give the M_WAITOK flag explicitly to the MALLOC call to silence a runtime warning ("Bad malloc flags: 0"). Revision Changes Path 1.18 +2 -1 src/sys/fs/smbfs/smbfs_vfsops.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 18:47:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA81537B401; Mon, 31 Mar 2003 18:47:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E49C43F93; Mon, 31 Mar 2003 18:47:09 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h312l90U057628; Mon, 31 Mar 2003 18:47:09 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h312l9cZ057627; Mon, 31 Mar 2003 18:47:09 -0800 (PST) Message-Id: <200304010247.h312l9cZ057627@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 31 Mar 2003 18:47:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/nwfs nwfs_vfsops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 02:47:10 -0000 tjr 2003/03/31 18:47:09 PST FreeBSD src repository Modified files: sys/fs/nwfs nwfs_vfsops.c Log: Specify the M_WAITOK flag explicitly in the MALLOC call to silence a runtime warning ("Bad malloc flags: 0"). Revision Changes Path 1.29 +2 -1 src/sys/fs/nwfs/nwfs_vfsops.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 19:02:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94A0137B404; Mon, 31 Mar 2003 19:02:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E361B43F85; Mon, 31 Mar 2003 19:02:56 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3132u0U058872; Mon, 31 Mar 2003 19:02:56 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3132u5f058871; Mon, 31 Mar 2003 19:02:56 -0800 (PST) Message-Id: <200304010302.h3132u5f058871@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 31 Mar 2003 19:02:56 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/openssh-portable Makefile distinfo patch-sshlogin.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 03:02:58 -0000 dinoex 2003/03/31 19:02:56 PST FreeBSD ports repository Modified files: security/openssh-portable Makefile distinfo security/openssh-portable/files patch-session.c Removed files: security/openssh-portable/files patch-sshlogin.c Log: - Update to 3.6p1 Revision Changes Path 1.63 +1 -2 ports/security/openssh-portable/Makefile 1.17 +1 -1 ports/security/openssh-portable/distinfo 1.15 +19 -19 ports/security/openssh-portable/files/patch-session.c 1.2 +0 -11 ports/security/openssh-portable/files/patch-sshlogin.c (dead) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 19:05:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C046137B401; Mon, 31 Mar 2003 19:05:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CBB643F85; Mon, 31 Mar 2003 19:05:47 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3135l0U059953; Mon, 31 Mar 2003 19:05:47 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3135krg059952; Mon, 31 Mar 2003 19:05:46 -0800 (PST) Message-Id: <200304010305.h3135krg059952@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 31 Mar 2003 19:05:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/include pcb.h src/sys/sparc64/sparc64 db_trace.c genassym.c swtch.S vm_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 03:05:48 -0000 jake 2003/03/31 19:05:46 PST FreeBSD src repository Modified files: sys/sparc64/include pcb.h sys/sparc64/sparc64 db_trace.c genassym.c swtch.S vm_machdep.c Log: Rename pcb_fp to pcb_sp, so as to not be confused with floating point state. Revision Changes Path 1.13 +1 -1 src/sys/sparc64/include/pcb.h 1.16 +1 -1 src/sys/sparc64/sparc64/db_trace.c 1.47 +1 -1 src/sys/sparc64/sparc64/genassym.c 1.23 +4 -4 src/sys/sparc64/sparc64/swtch.S 1.40 +2 -2 src/sys/sparc64/sparc64/vm_machdep.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 19:08:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA11037B401; Mon, 31 Mar 2003 19:08:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8704B43F93; Mon, 31 Mar 2003 19:08:30 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3138U0U060108; Mon, 31 Mar 2003 19:08:30 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3138Tl4060107; Mon, 31 Mar 2003 19:08:29 -0800 (PST) Message-Id: <200304010308.h3138Tl4060107@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 19:08:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print Makefile ports/print/foomatic-db Makefile distinfo pkg-descr pkg-plist ports/print/foomatic-db/files preconfigure-patch tarignore X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 03:08:31 -0000 edwin 2003/03/31 19:08:29 PST FreeBSD ports repository Modified files: print Makefile Added files: print/foomatic-db Makefile distinfo pkg-descr pkg-plist print/foomatic-db/files preconfigure-patch tarignore Log: New port: print/foomatic-db foomatic printer driver database PR: ports/48814 Submitted by: Martin Ranne Revision Changes Path 1.234 +1 -0 ports/print/Makefile 1.1 +66 -0 ports/print/foomatic-db/Makefile (new) 1.1 +1 -0 ports/print/foomatic-db/distinfo (new) 1.1 +11 -0 ports/print/foomatic-db/files/preconfigure-patch (new) 1.1 +1 -0 ports/print/foomatic-db/files/tarignore (new) 1.1 +4 -0 ports/print/foomatic-db/pkg-descr (new) 1.1 +1613 -0 ports/print/foomatic-db/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 19:08:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0374837B401; Mon, 31 Mar 2003 19:08:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C78043F93; Mon, 31 Mar 2003 19:08:45 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3138j0U060146; Mon, 31 Mar 2003 19:08:45 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3138j0d060145; Mon, 31 Mar 2003 19:08:45 -0800 (PST) Message-Id: <200304010308.h3138j0d060145@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 19:08:45 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 03:08:46 -0000 edwin 2003/03/31 19:08:45 PST FreeBSD ports repository Modified files: . modules Log: foomatic-db --> ports/print/foomatic-db Revision Changes Path 1.6938 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Mar 31 19:46:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3B2237B401; Mon, 31 Mar 2003 19:46:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E8D743F3F; Mon, 31 Mar 2003 19:46:30 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h313kU0U063166; Mon, 31 Mar 2003 19:46:30 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h313kUtU063165; Mon, 31 Mar 2003 19:46:30 -0800 (PST) Message-Id: <200304010346.h313kUtU063165@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 19:46:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr Makefile src/lib/libthr/arch/i386/i386 _curthread.S _setcurthread.c src/lib/libthr/thread Makefile.inc thr_attr.c thr_autoinit.c thr_cancel.c thr_clean.c thr_cond.c thr_condattr_destroy.c thr_condattr_init.c thr_create.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 03:46:31 -0000 jeff 2003/03/31 19:46:30 PST FreeBSD src repository Added files: lib/libthr Makefile lib/libthr/arch/i386/i386 _curthread.S _setcurthread.c lib/libthr/thread Makefile.inc thr_attr.c thr_autoinit.c thr_cancel.c thr_clean.c thr_cond.c thr_condattr_destroy.c thr_condattr_init.c thr_create.c thr_detach.c thr_equal.c thr_exit.c thr_find_thread.c thr_gc.c thr_getprio.c thr_getschedparam.c thr_info.c thr_init.c thr_join.c thr_kern.c thr_main_np.c thr_mattr_init.c thr_mattr_kind_np.c thr_multi_np.c thr_mutex.c thr_mutex_prioceiling.c thr_mutex_protocol.c thr_mutexattr_destroy.c thr_once.c thr_printf.c thr_private.h thr_resume_np.c thr_rwlock.c thr_rwlockattr.c thr_self.c thr_sem.c thr_seterrno.c thr_setprio.c thr_setschedparam.c thr_sig.c thr_spec.c thr_spinlock.c thr_stack.c thr_suspend_np.c thr_syscalls.c thr_yield.c Log: - Add libthr but don't hook it up to the regular build yet. This is an adaptation of libc_r for the thr system call interface. This is beta quality code. Revision Changes Path 1.1 +26 -0 src/lib/libthr/Makefile (new) 1.1 +17 -0 src/lib/libthr/arch/i386/i386/_curthread.S (new) 1.1 +122 -0 src/lib/libthr/arch/i386/i386/_setcurthread.c (new) 1.1 +50 -0 src/lib/libthr/thread/Makefile.inc (new) 1.1 +450 -0 src/lib/libthr/thread/thr_attr.c (new) 1.1 +61 -0 src/lib/libthr/thread/thr_autoinit.c (new) 1.1 +205 -0 src/lib/libthr/thread/thr_cancel.c (new) 1.1 +72 -0 src/lib/libthr/thread/thr_clean.c (new) 1.1 +544 -0 src/lib/libthr/thread/thr_cond.c (new) 1.1 +53 -0 src/lib/libthr/thread/thr_condattr_destroy.c (new) 1.1 +58 -0 src/lib/libthr/thread/thr_condattr_init.c (new) 1.1 +228 -0 src/lib/libthr/thread/thr_create.c (new) 1.1 +82 -0 src/lib/libthr/thread/thr_detach.c (new) 1.1 +44 -0 src/lib/libthr/thread/thr_equal.c (new) 1.1 +186 -0 src/lib/libthr/thread/thr_exit.c (new) 1.1 +61 -0 src/lib/libthr/thread/thr_find_thread.c (new) 1.1 +211 -0 src/lib/libthr/thread/thr_gc.c (new) 1.1 +56 -0 src/lib/libthr/thread/thr_getprio.c (new) 1.1 +59 -0 src/lib/libthr/thread/thr_getschedparam.c (new) 1.1 +193 -0 src/lib/libthr/thread/thr_info.c (new) 1.1 +363 -0 src/lib/libthr/thread/thr_init.c (new) 1.1 +161 -0 src/lib/libthr/thread/thr_join.c (new) 1.1 +188 -0 src/lib/libthr/thread/thr_kern.c (new) 1.1 +47 -0 src/lib/libthr/thread/thr_main_np.c (new) 1.1 +56 -0 src/lib/libthr/thread/thr_mattr_init.c (new) 1.1 +97 -0 src/lib/libthr/thread/thr_mattr_kind_np.c (new) 1.1 +50 -0 src/lib/libthr/thread/thr_multi_np.c (new) 1.1 +432 -0 src/lib/libthr/thread/thr_mutex.c (new) 1.1 +122 -0 src/lib/libthr/thread/thr_mutex_prioceiling.c (new) 1.1 +70 -0 src/lib/libthr/thread/thr_mutex_protocol.c (new) 1.1 +53 -0 src/lib/libthr/thread/thr_mutexattr_destroy.c (new) 1.1 +53 -0 src/lib/libthr/thread/thr_once.c (new) 1.1 +124 -0 src/lib/libthr/thread/thr_printf.c (new) 1.1 +804 -0 src/lib/libthr/thread/thr_private.h (new) 1.1 +87 -0 src/lib/libthr/thread/thr_resume_np.c (new) 1.1 +341 -0 src/lib/libthr/thread/thr_rwlock.c (new) 1.1 +98 -0 src/lib/libthr/thread/thr_rwlockattr.c (new) 1.1 +44 -0 src/lib/libthr/thread/thr_self.c (new) 1.1 +257 -0 src/lib/libthr/thread/thr_sem.c (new) 1.1 +59 -0 src/lib/libthr/thread/thr_seterrno.c (new) 1.1 +52 -0 src/lib/libthr/thread/thr_setprio.c (new) 1.1 +115 -0 src/lib/libthr/thread/thr_setschedparam.c (new) 1.1 +166 -0 src/lib/libthr/thread/thr_sig.c (new) 1.1 +225 -0 src/lib/libthr/thread/thr_spec.c (new) 1.1 +88 -0 src/lib/libthr/thread/thr_spinlock.c (new) 1.1 +240 -0 src/lib/libthr/thread/thr_stack.c (new) 1.1 +53 -0 src/lib/libthr/thread/thr_suspend_np.c (new) 1.1 +418 -0 src/lib/libthr/thread/thr_syscalls.c (new) 1.1 +45 -0 src/lib/libthr/thread/thr_yield.c (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 19:51:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0F4037B401; Mon, 31 Mar 2003 19:51:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75A8143F75; Mon, 31 Mar 2003 19:51:09 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h313p90U063675; Mon, 31 Mar 2003 19:51:09 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h313p8KI063674; Mon, 31 Mar 2003 19:51:08 -0800 (PST) Message-Id: <200304010351.h313p8KI063674@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 19:51:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/sys Makefile.inc thr_error.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 03:51:10 -0000 jeff 2003/03/31 19:51:08 PST FreeBSD src repository Added files: lib/libthr/sys Makefile.inc thr_error.c Log: - Commit the forgotten libthr/sys bits. Revision Changes Path 1.1 +5 -0 src/lib/libthr/sys/Makefile.inc (new) 1.1 +59 -0 src/lib/libthr/sys/thr_error.c (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 20:02:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB81637B401; Mon, 31 Mar 2003 20:02:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BFD343F85; Mon, 31 Mar 2003 20:02:45 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3142j0U064393; Mon, 31 Mar 2003 20:02:45 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3142jZN064392; Mon, 31 Mar 2003 20:02:45 -0800 (PST) Message-Id: <200304010402.h3142jZN064392@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 31 Mar 2003 20:02:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/include fp.h pcb.h src/sys/sparc64/sparc64 exception.S genassym.c machdep.c swtch.S vm_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 04:02:46 -0000 jake 2003/03/31 20:02:45 PST FreeBSD src repository Modified files: sys/sparc64/include fp.h pcb.h sys/sparc64/sparc64 exception.S genassym.c machdep.c swtch.S vm_machdep.c Log: - Rename pcb_fpstate to pcb_ufp (user floating point), and change it to a simple array of 64 ints. - Use a critical section when saving floating point state in cpu_fork instead of sched_lock. Revision Changes Path 1.9 +3 -16 src/sys/sparc64/include/fp.h 1.14 +2 -3 src/sys/sparc64/include/pcb.h 1.61 +17 -12 src/sys/sparc64/sparc64/exception.S 1.48 +1 -6 src/sys/sparc64/sparc64/genassym.c 1.80 +2 -4 src/sys/sparc64/sparc64/machdep.c 1.24 +9 -24 src/sys/sparc64/sparc64/swtch.S 1.41 +5 -5 src/sys/sparc64/sparc64/vm_machdep.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 20:10:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4611A37B401; Mon, 31 Mar 2003 20:10:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2A0C43FCB; Mon, 31 Mar 2003 20:10:29 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h314AT0U065968; Mon, 31 Mar 2003 20:10:29 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h314ATMn065966; Mon, 31 Mar 2003 20:10:29 -0800 (PST) Message-Id: <200304010410.h314ATMn065966@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 31 Mar 2003 20:10:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/openssh-portable Makefile ports/security/openssh-portable/files patch-regress-Makefile patch-regress-test-exec.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 04:10:30 -0000 dinoex 2003/03/31 20:10:29 PST FreeBSD ports repository Modified files: security/openssh-portable Makefile Added files: security/openssh-portable/files patch-regress-Makefile patch-regress-test-exec.sh Log: - extend regression tests Revision Changes Path 1.64 +1 -1 ports/security/openssh-portable/Makefile 1.1 +19 -0 ports/security/openssh-portable/files/patch-regress-Makefile (new) 1.1 +11 -0 ports/security/openssh-portable/files/patch-regress-test-exec.sh (new) From owner-cvs-all@FreeBSD.ORG Mon Mar 31 20:17:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1926E37B401; Mon, 31 Mar 2003 20:17:38 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67F8843FAF; Mon, 31 Mar 2003 20:17:37 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 4E95A2A7EA; Mon, 31 Mar 2003 20:17:37 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Jeff Roberson In-Reply-To: <200304010346.h313kUtU063165@repoman.freebsd.org> Date: Mon, 31 Mar 2003 20:17:37 -0800 From: Peter Wemm Message-Id: <20030401041737.4E95A2A7EA@canning.wemm.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr Makefile src/lib/libthr/arch/i386/i386 _curthread.S _setcurthread.c src/lib/libthr/thread Makefile.inc thr_attr.c thr_autoinit.c thr_cancel.c thr_clean.c thr_cond.c thr_condattr_destroy.c thr_condattr_init.c thr_create.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 04:17:38 -0000 Jeff Roberson wrote: > Added files: > lib/libthr Makefile > lib/libthr/arch/i386/i386 _curthread.S _setcurthread.c > lib/libthr/thread Makefile.inc thr_attr.c thr_autoinit.c [...] > Log: > - Add libthr but don't hook it up to the regular build yet. This is an > adaptation of libc_r for the thr system call interface. This is beta > quality code. YEEHAR!!!! 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 From owner-cvs-all@FreeBSD.ORG Mon Mar 31 20:19:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFB5D37B401; Mon, 31 Mar 2003 20:19:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7388A43F93; Mon, 31 Mar 2003 20:19:29 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h314JT0U066484; Mon, 31 Mar 2003 20:19:29 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h314JTJp066483; Mon, 31 Mar 2003 20:19:29 -0800 (PST) Message-Id: <200304010419.h314JTJp066483@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 31 Mar 2003 20:19:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 vm_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 04:19:30 -0000 jake 2003/03/31 20:19:29 PST FreeBSD src repository Modified files: sys/sparc64/sparc64 vm_machdep.c Log: Implement cpu_set_upcall. Revision Changes Path 1.42 +13 -1 src/sys/sparc64/sparc64/vm_machdep.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 20:29:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EF6E37B401; Mon, 31 Mar 2003 20:29:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A56D143FAF; Mon, 31 Mar 2003 20:29:03 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h314T30U067186; Mon, 31 Mar 2003 20:29:03 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h314T3SB067185; Mon, 31 Mar 2003 20:29:03 -0800 (PST) Message-Id: <200304010429.h314T3SB067185@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 31 Mar 2003 20:29:03 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 04:29:04 -0000 jake 2003/03/31 20:29:03 PST FreeBSD src repository Modified files: sys/sparc64/sparc64 machdep.c Log: - Don't allow tf_wstate to be set in set_regs. - Clear FPRS_FEF in set_fpregs so the new registers will be reloaded. Revision Changes Path 1.81 +6 -1 src/sys/sparc64/sparc64/machdep.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 20:49:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C45737B401; Mon, 31 Mar 2003 20:49:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 406D643F93; Mon, 31 Mar 2003 20:49:13 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h314nD0U073620; Mon, 31 Mar 2003 20:49:13 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h314nCvJ073619; Mon, 31 Mar 2003 20:49:12 -0800 (PST) Message-Id: <200304010449.h314nCvJ073619@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 20:49:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libkvm kvm_proc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 04:49:14 -0000 jeff 2003/03/31 20:49:12 PST FreeBSD src repository Modified files: lib/libkvm kvm_proc.c Log: - Spell SIGSETOR correctly. Revision Changes Path 1.65 +1 -1 src/lib/libkvm/kvm_proc.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 20:58:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 783AD37B401; Mon, 31 Mar 2003 20:58:33 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9709B43F75; Mon, 31 Mar 2003 20:58:32 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h314wVA7034129; Mon, 31 Mar 2003 21:58:31 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 31 Mar 2003 21:56:21 -0700 (MST) Message-Id: <20030331.215621.102492572.imp@bsdimp.com> To: njl@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200303311729.h2VHTi9k095144@repoman.freebsd.org> References: <200303311729.h2VHTi9k095144@repoman.freebsd.org> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 04:58:34 -0000 thanks for cleaning these things up nate! Warner From owner-cvs-all@FreeBSD.ORG Mon Mar 31 20:58:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA04037B401; Mon, 31 Mar 2003 20:58:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8672E43FBD; Mon, 31 Mar 2003 20:58:50 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h314wo0U074334; Mon, 31 Mar 2003 20:58:50 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h314wo30074333; Mon, 31 Mar 2003 20:58:50 -0800 (PST) Message-Id: <200304010458.h314wo30074333@repoman.freebsd.org> From: Jake Burkholder Date: Mon, 31 Mar 2003 20:58:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/include pcb.h src/sys/sparc64/sparc64 exception.S genassym.c machdep.c swtch.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 04:58:51 -0000 jake 2003/03/31 20:58:50 PST FreeBSD src repository Modified files: sys/sparc64/include pcb.h sys/sparc64/sparc64 exception.S genassym.c machdep.c swtch.S Log: - Add a flags field to struct pcb. Use this to keep track of wether or not the pcb has floating point registers saved in it. - Implement get_mcontext and set_mcontext. Revision Changes Path 1.15 +3 -0 src/sys/sparc64/include/pcb.h 1.62 +4 -0 src/sys/sparc64/sparc64/exception.S 1.49 +2 -0 src/sys/sparc64/sparc64/genassym.c 1.82 +34 -4 src/sys/sparc64/sparc64/machdep.c 1.25 +3 -0 src/sys/sparc64/sparc64/swtch.S From owner-cvs-all@FreeBSD.ORG Mon Mar 31 21:03:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0086C37B401; Mon, 31 Mar 2003 21:03:34 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A18C43F93; Mon, 31 Mar 2003 21:03:33 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h3153WA7034176; Mon, 31 Mar 2003 22:03:33 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 31 Mar 2003 22:01:22 -0700 (MST) Message-Id: <20030331.220122.120912422.imp@bsdimp.com> To: keramida@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200303312132.h2VLWbea021811@repoman.freebsd.org> References: <200303312132.h2VLWbea021811@repoman.freebsd.org> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/laptop article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 05:03:35 -0000 In message: <200303312132.h2VLWbea021811@repoman.freebsd.org> Giorgos Keramidas writes: : keramida 2003/03/31 13:32:37 PST : : FreeBSD doc repository : : Modified files: : en_US.ISO8859-1/articles/laptop article.sgml : Log: : Spell "PCI BIOS" as two words. : Google has an impressive 4,000 of hits for "PCIBIOS" (mostly manpage : links) but an overwhelming 27,000 for the two word version. "PCI BIOS" is what my copy of the pci bios 2.1 specification uses, so this change is correct (oh wow! my acroread is working again). Warner From owner-cvs-all@FreeBSD.ORG Mon Mar 31 21:05:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F42337B401; Mon, 31 Mar 2003 21:05:53 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 192E743FA3; Mon, 31 Mar 2003 21:05:52 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h3155lA7034198; Mon, 31 Mar 2003 22:05:48 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 31 Mar 2003 22:03:37 -0700 (MST) Message-Id: <20030331.220337.54443711.imp@bsdimp.com> To: nate@root.org From: "M. Warner Losh" In-Reply-To: References: <20030331141312.A27442@grasshopper.cs.duke.edu> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: gallatin@cs.duke.edu cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c if_wb.c if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 05:05:53 -0000 In message: Nate Lawson writes: : On Mon, 31 Mar 2003, Andrew Gallatin wrote: : > Nate Lawson [nate@root.org] wrote: : > > On Mon, 31 Mar 2003, Nate Lawson wrote: : > > > Modified files: : > > > sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c : > > > if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c : > > > if_wb.c if_xl.c : > > > Log: : > > > Clean up locking and resource management for pci/if_* : > > : > > This is a rather large patch so if you begin to experience problems : > > attaching or detaching (say on module load/unload) a previously-working : > > card, please let me know. : > : > Very nice. : > : > Now that the locking is right, do you plan to enable INTR_MPSAFE on : > these? : : The locking is only right on attach. There is still more locking work to : be done on the data path. Many of the drivers get the locking almost right, but there may still be issues with the watchdog timeout routines and lock ordering... That's the only corner of most of these drivers that I've seen major locking problems in... Warner From owner-cvs-all@FreeBSD.ORG Mon Mar 31 21:24:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4122D37B401; Mon, 31 Mar 2003 21:24:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D447943F3F; Mon, 31 Mar 2003 21:24:17 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h315OH0U077019; Mon, 31 Mar 2003 21:24:17 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h315OHOg077018; Mon, 31 Mar 2003 21:24:17 -0800 (PST) Message-Id: <200304010524.h315OHOg077018@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 31 Mar 2003 21:24:17 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/news/suck Makefile distinfo ports/news/suck/files patch-Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 05:24:18 -0000 dinoex 2003/03/31 21:24:17 PST FreeBSD ports repository Modified files: news/suck Makefile distinfo news/suck/files patch-Makefile.in Log: - Update to 4.3.2 Revision Changes Path 1.40 +2 -2 ports/news/suck/Makefile 1.21 +1 -1 ports/news/suck/distinfo 1.2 +4 -4 ports/news/suck/files/patch-Makefile.in From owner-cvs-all@FreeBSD.ORG Mon Mar 31 21:25:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B54F37B401; Mon, 31 Mar 2003 21:25:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D32B843F85; Mon, 31 Mar 2003 21:25:16 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h315PG0U077109; Mon, 31 Mar 2003 21:25:16 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h315PGVS077108; Mon, 31 Mar 2003 21:25:16 -0800 (PST) Message-Id: <200304010525.h315PGVS077108@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 31 Mar 2003 21:25:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/news/suck-cnews Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 05:25:17 -0000 dinoex 2003/03/31 21:25:16 PST FreeBSD ports repository Modified files: news/suck-cnews Makefile Log: - Support Makefile.local Revision Changes Path 1.3 +4 -0 ports/news/suck-cnews/Makefile From owner-cvs-all@FreeBSD.ORG Mon Mar 31 21:46:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id 97AB037B401; Mon, 31 Mar 2003 21:46:34 -0800 (PST) Date: Mon, 31 Mar 2003 23:46:34 -0600 From: Juli Mallett To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20030331234634.A84915@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src COPYRIGHT X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 05:46:35 -0000 jmallett 2003/04/01 00:00:42 PST FreeBSD src repository Modified files: src COPYRIGHT Log: Update to GPL version 2. Approved by: negacore Revision Changes Path 1.5 +321 -79 src/COPYRIGHT From owner-cvs-all@FreeBSD.ORG Mon Mar 31 21:50:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B73737B401; Mon, 31 Mar 2003 21:50:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E143943F3F; Mon, 31 Mar 2003 21:50:13 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h315oD0U078575; Mon, 31 Mar 2003 21:50:13 -0800 (PST) (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h315oDpx078572; Mon, 31 Mar 2003 21:50:13 -0800 (PST) Message-Id: <200304010550.h315oDpx078572@repoman.freebsd.org> From: Kevin Lo Date: Mon, 31 Mar 2003 21:50:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/libv3d Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 05:50:14 -0000 kevlo 2003/03/31 21:50:13 PST FreeBSD ports repository Modified files: graphics/libv3d Makefile distinfo pkg-plist Log: Update to 0.1.14 PR: 50512 Submitted by: Kimura Fuyuki Revision Changes Path 1.5 +1 -1 ports/graphics/libv3d/Makefile 1.2 +1 -1 ports/graphics/libv3d/distinfo 1.2 +1 -1 ports/graphics/libv3d/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Mar 31 22:00:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F53537B401; Mon, 31 Mar 2003 22:00:22 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73F1D43FCB; Mon, 31 Mar 2003 22:00:20 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 522CB66CFA; Mon, 31 Mar 2003 22:00:19 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 3067912A5; Mon, 31 Mar 2003 22:00:19 -0800 (PST) Date: Mon, 31 Mar 2003 22:00:19 -0800 From: Kris Kennaway To: Juli Mallett Message-ID: <20030401060019.GA1601@rot13.obsecurity.org> References: <20030331234634.A84915@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4Ckj6UjgE2iN1+kY" Content-Disposition: inline In-Reply-To: <20030331234634.A84915@FreeBSD.org> User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src COPYRIGHT X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 06:00:22 -0000 --4Ckj6UjgE2iN1+kY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 31, 2003 at 11:46:34PM -0600, Juli Mallett wrote: > jmallett 2003/04/01 00:00:42 PST >=20 > FreeBSD src repository >=20 > Modified files: > src COPYRIGHT > Log: > Update to GPL version 2. Why not version 3? Kris --4Ckj6UjgE2iN1+kY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+iSryWry0BWjoQKURAsELAKCInoOjgIeKhjN9CzuCZlGzWwHOSQCeN3Yd T9TZH7IUC+jKL5gqC/pC34c= =h3mb -----END PGP SIGNATURE----- --4Ckj6UjgE2iN1+kY-- From owner-cvs-all@FreeBSD.ORG Mon Mar 31 22:01:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F181937B401 for ; Mon, 31 Mar 2003 22:01:26 -0800 (PST) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 4DC4043FDD for ; Mon, 31 Mar 2003 22:01:25 -0800 (PST) (envelope-from silby@silby.com) Received: (qmail 64356 invoked from network); 1 Apr 2003 06:01:24 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 1 Apr 2003 06:01:24 -0000 X-pair-Authenticated: 209.68.2.70 Date: Mon, 31 Mar 2003 23:57:52 -0600 (CST) From: Mike Silbersack To: Juli Mallett In-Reply-To: <20030331234634.A84915@FreeBSD.org> Message-ID: <20030331235629.J1612@odysseus.silby.com> References: <20030331234634.A84915@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src COPYRIGHT X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 06:01:27 -0000 Juli, I am *quite* mad that you decided to do this now! Your commit causes all sorts of conflicts with my merge-everything-from-NetBSD patch! Now it's going to be weeks before I can fix the patch and commit. Mike "Silby" Silbersack On Mon, 31 Mar 2003, Juli Mallett wrote: > jmallett 2003/04/01 00:00:42 PST > > FreeBSD src repository > > Modified files: > src COPYRIGHT > Log: > Update to GPL version 2. > > Approved by: negacore > > Revision Changes Path > 1.5 +321 -79 src/COPYRIGHT > From owner-cvs-all@FreeBSD.ORG Mon Mar 31 23:07:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44F3437B401; Mon, 31 Mar 2003 23:07:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D472243F3F; Mon, 31 Mar 2003 23:07:38 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3177c0U085363; Mon, 31 Mar 2003 23:07:38 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3177cmF085362; Mon, 31 Mar 2003 23:07:38 -0800 (PST) Message-Id: <200304010707.h3177cmF085362@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 23:07:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr Makefile src/lib/libthr/arch/i386 Makefile.inc src/lib/libthr/sys Makefile.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 07:07:39 -0000 jeff 2003/03/31 23:07:38 PST FreeBSD src repository Modified files: lib/libthr Makefile lib/libthr/sys Makefile.inc Added files: lib/libthr/arch/i386 Makefile.inc Log: - Adjust the makefiles so we have a per architecture makefile. Revision Changes Path 1.2 +1 -0 src/lib/libthr/Makefile 1.1 +5 -0 src/lib/libthr/arch/i386/Makefile.inc (new) 1.2 +1 -1 src/lib/libthr/sys/Makefile.inc From owner-cvs-all@FreeBSD.ORG Mon Mar 31 23:33:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7599A37B401; Mon, 31 Mar 2003 23:33:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1607E43FA3; Mon, 31 Mar 2003 23:33:18 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h317XH0U087060; Mon, 31 Mar 2003 23:33:17 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h317XHKx087059; Mon, 31 Mar 2003 23:33:17 -0800 (PST) Message-Id: <200304010733.h317XHKx087059@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 31 Mar 2003 23:33:17 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/bde g_bde.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 07:33:18 -0000 phk 2003/03/31 23:33:17 PST FreeBSD src repository Modified files: sys/geom/bde g_bde.c Log: Remove the old config interface now that the new OAM is functional. Revision Changes Path 1.16 +0 -153 src/sys/geom/bde/g_bde.c From owner-cvs-all@FreeBSD.ORG Mon Mar 31 23:33:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BF4C37B401; Mon, 31 Mar 2003 23:33:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B74943FA3; Mon, 31 Mar 2003 23:33:57 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h317Xv0U087105; Mon, 31 Mar 2003 23:33:57 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h317XuqQ087104; Mon, 31 Mar 2003 23:33:56 -0800 (PST) Message-Id: <200304010733.h317XuqQ087104@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 31 Mar 2003 23:33:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom.h geom_ctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 07:33:58 -0000 phk 2003/03/31 23:33:56 PST FreeBSD src repository Modified files: sys/geom geom.h geom_ctl.c Log: Remove the old config interface, the new OAM is sufficiently functional now. Revision Changes Path 1.51 +0 -88 src/sys/geom/geom.h 1.13 +0 -50 src/sys/geom/geom_ctl.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:04:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93AA537B409; Tue, 1 Apr 2003 00:04:35 -0800 (PST) Received: from mail.nsu.ru (mx.nsu.ru [193.124.215.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54A20440E1; Tue, 1 Apr 2003 00:04:18 -0800 (PST) (envelope-from danfe@regency.nsu.ru) Received: from drweb by mail.nsu.ru with drweb-scanned (Exim 3.20 #1) id 190Gjs-0002zR-00; Tue, 01 Apr 2003 15:03:24 +0700 Received: from regency.nsu.ru ([193.124.210.26]) by mail.nsu.ru with esmtp (Exim 3.20 #1) id 190Gjh-0002rJ-00; Tue, 01 Apr 2003 15:03:13 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.8/8.12.8) with ESMTP id h3182u1Q056941; Tue, 1 Apr 2003 15:02:56 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.8/8.12.8/Submit) id h3182qVV056940; Tue, 1 Apr 2003 15:02:52 +0700 (NOVST) Date: Tue, 1 Apr 2003 15:02:52 +0700 From: Alexey Dokuchaev To: Julian Elischer Message-ID: <20030401080252.GA56851@regency.nsu.ru> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-Envelope-To: julian@elischer.org, nate@root.org, cvs-src@freebsd.org, jeff@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org cc: cvs-src@freebsd.org cc: Jeff Roberson cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Nate Lawson Subject: Re: cvs commit: src/sys/kern kern_umtx.c src/sys/sys umtx.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:04:38 -0000 On Mon, Mar 31, 2003 at 05:38:13PM -0800, Julian Elischer wrote: > > On Mon, 31 Mar 2003, Nate Lawson wrote: > > > On Mon, 31 Mar 2003, Jeff Roberson wrote: > > > Added files: > > > sys/kern kern_umtx.c > > > sys/sys umtx.h > > > Log: > > > - Add an api for doing smp safe locks in userland. > > > - umtx_lock() is defined as an inline in umtx.h. It tries to do an > > > uncontested acquire of a lock which falls back to the _umtx_lock() > > > system-call if that fails. > > > - umtx_unlock() is also an inline which falls back to _umtx_unlock() if the > > > uncontested unlock fails. > > > - Locks are keyed off of the thr_id_t of the currently running thread which > > > is currently just the pointer to the 'struct thread' in kernel. > > > - _umtx_lock() uses the proc pointer to synchronize access to blocked thread > > > queues which are stored in the first blocked thread. > > > > > > Revision Changes Path > > > 1.1 +303 -0 src/sys/kern/kern_umtx.c (new) > > > 1.1 +87 -0 src/sys/sys/umtx.h (new) > > > > It's great to be getting this. Can you point me to a document indicating > > how this will be used by KSE? Are we going to have "native threads" > > (thr), KSE, and pthreads? > > We will have 3 threads schemes.. > userland threads > thr threads.. Useable by the majority of threaded apps > KSE threads.. Useable by threaded apps that have thousands of threads > > (i.e. KSE is a hybrid if userland and thr threads..) Does this follow from your words that creating of "thousands of threads" is better to be done in userland, versus kernel? Because of M:N model KSE will eventually utilize? Pardon my unawareness; pointing me to some document explaining all of this will also be appreciated. ./danfe From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:04:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 711A337B40D; Tue, 1 Apr 2003 00:04:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 951D544049; Mon, 31 Mar 2003 23:55:40 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h317te0U088598; Mon, 31 Mar 2003 23:55:40 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h317teVK088597; Mon, 31 Mar 2003 23:55:40 -0800 (PST) Message-Id: <200304010755.h317teVK088597@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 23:55:40 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/libconnect Makefile distinfo pkg-descr pkg-plist ports/net/libconnect/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:04:41 -0000 edwin 2003/03/31 23:55:40 PST FreeBSD ports repository Modified files: net Makefile Added files: net/libconnect Makefile distinfo pkg-descr pkg-plist net/libconnect/files patch-aa Log: New port: libconnect This is the shared library which allows change IP-address from which netwoking application will be performing TCP-connection. This is extremely useful when you need to control this but programs you are using have no configuration options specifying to which IP-address they should bind. PR: ports/50436 Submitted by: Alex Semenyaka Revision Changes Path 1.949 +1 -0 ports/net/Makefile 1.1 +27 -0 ports/net/libconnect/Makefile (new) 1.1 +1 -0 ports/net/libconnect/distinfo (new) 1.1 +11 -0 ports/net/libconnect/files/patch-aa (new) 1.1 +17 -0 ports/net/libconnect/pkg-descr (new) 1.1 +6 -0 ports/net/libconnect/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:04:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FC3537B410; Tue, 1 Apr 2003 00:04:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6C9D44058; Mon, 31 Mar 2003 23:55:58 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h317tw0U088636; Mon, 31 Mar 2003 23:55:58 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h317twhf088635; Mon, 31 Mar 2003 23:55:58 -0800 (PST) Message-Id: <200304010755.h317twhf088635@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 31 Mar 2003 23:55:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:04:44 -0000 edwin 2003/03/31 23:55:58 PST FreeBSD ports repository Modified files: . modules Log: libconnect --> ports/net/libconnect Revision Changes Path 1.6939 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:04:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2667437B434; Tue, 1 Apr 2003 00:04:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F9854412B; Tue, 1 Apr 2003 00:04:11 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3184B0U090192; Tue, 1 Apr 2003 00:04:11 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3184AH6090191; Tue, 1 Apr 2003 00:04:10 -0800 (PST) Message-Id: <200304010804.h3184AH6090191@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 00:04:10 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security Makefile ports/security/makepasswd Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:04:48 -0000 edwin 2003/04/01 00:04:10 PST FreeBSD ports repository Modified files: security Makefile Added files: security/makepasswd Makefile distinfo pkg-descr pkg-plist Log: New port: makepasswd, random password generator Random password generator. PR: ports/49008 Submitted by: Toni Viemero Revision Changes Path 1.388 +1 -0 ports/security/Makefile 1.1 +35 -0 ports/security/makepasswd/Makefile (new) 1.1 +1 -0 ports/security/makepasswd/distinfo (new) 1.1 +7 -0 ports/security/makepasswd/pkg-descr (new) 1.1 +4 -0 ports/security/makepasswd/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:04:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C3C337B42B; Tue, 1 Apr 2003 00:04:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 795334414F; Tue, 1 Apr 2003 00:04:24 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3184O0U090230; Tue, 1 Apr 2003 00:04:24 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3184O2b090229; Tue, 1 Apr 2003 00:04:24 -0800 (PST) Message-Id: <200304010804.h3184O2b090229@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 00:04:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:04:55 -0000 edwin 2003/04/01 00:04:24 PST FreeBSD ports repository Modified files: . modules Log: makepasswd --> ports/security/makepasswd Revision Changes Path 1.6940 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:06:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3D5837B48D; Tue, 1 Apr 2003 00:06:10 -0800 (PST) Received: from mail.nsu.ru (mx.nsu.ru [193.124.215.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A80643FAF; Tue, 1 Apr 2003 00:06:05 -0800 (PST) (envelope-from danfe@regency.nsu.ru) Received: from drweb by mail.nsu.ru with drweb-scanned (Exim 3.20 #1) id 190Gm6-0003b0-00; Tue, 01 Apr 2003 15:05:42 +0700 Received: from regency.nsu.ru ([193.124.210.26]) by mail.nsu.ru with esmtp (Exim 3.20 #1) id 190Glm-0003UR-00; Tue, 01 Apr 2003 15:05:23 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.8/8.12.8) with ESMTP id h3185G1Q056974; Tue, 1 Apr 2003 15:05:16 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.8/8.12.8/Submit) id h3185G4A056973; Tue, 1 Apr 2003 15:05:16 +0700 (NOVST) Date: Tue, 1 Apr 2003 15:05:15 +0700 From: Alexey Dokuchaev To: Edwin Groothuis Message-ID: <20030401080515.GB56851@regency.nsu.ru> References: <200304010234.h312YlAE056216@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304010234.h312YlAE056216@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Envelope-To: edwin@freebsd.org, ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/x11 Makefile ports/x11/gromit Makefile distinfo pkg-descr pkg-plist ports/x11/gromit/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:06:11 -0000 On Mon, Mar 31, 2003 at 06:34:47PM -0800, Edwin Groothuis wrote: > edwin 2003/03/31 18:34:47 PST > > FreeBSD ports repository > > Modified files: > x11 Makefile > Added files: > x11/gromit Makefile distinfo pkg-descr pkg-plist > x11/gromit/files patch-Makefile > Log: > x11/gromit: on-screen annotations > > Gromit (GRaphics Over MIscellaneous Things) is a small tool > to make annotations on the screen. > > When making presentations of the Gimp I found myself often > moving the mousepointer around the point of interest until > hopefully everybody noticed it. This annoyed me, since it > is a very vague way to highlight something. I dreamt of a > small programm which allows me to simply draw on the screen, > ignoring any window-borders. Kewl! ;-) ./danfe From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:07:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95D7037B404; Tue, 1 Apr 2003 00:07:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4167143F75; Tue, 1 Apr 2003 00:07:45 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3187j0U090437; Tue, 1 Apr 2003 00:07:45 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3187i7j090436; Tue, 1 Apr 2003 00:07:44 -0800 (PST) Message-Id: <200304010807.h3187i7j090436@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 00:07:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www Makefile ports/www/twiki Makefile distinfo pkg-descr pkg-install pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:07:46 -0000 edwin 2003/04/01 00:07:44 PST FreeBSD ports repository Modified files: www Makefile Added files: www/twiki Makefile distinfo pkg-descr pkg-install pkg-plist Log: FreeBSD port of TWiki TWiki is a flexible, powerful, and easy to use Web-based collaboration platform. PR: ports/49000 Submitted by: Justin Hawkins Revision Changes Path 1.624 +1 -0 ports/www/Makefile 1.1 +38 -0 ports/www/twiki/Makefile (new) 1.1 +1 -0 ports/www/twiki/distinfo (new) 1.1 +8 -0 ports/www/twiki/pkg-descr (new) 1.1 +99 -0 ports/www/twiki/pkg-install (new) 1.1 +690 -0 ports/www/twiki/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:08:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E412137B40D; Tue, 1 Apr 2003 00:07:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AB1443FB1; Tue, 1 Apr 2003 00:07:59 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3187x0U090481; Tue, 1 Apr 2003 00:07:59 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3187xqI090480; Tue, 1 Apr 2003 00:07:59 -0800 (PST) Message-Id: <200304010807.h3187xqI090480@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 00:07:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:08:00 -0000 edwin 2003/04/01 00:07:59 PST FreeBSD ports repository Modified files: . modules Log: twiki --> ports/www/twiki Revision Changes Path 1.6941 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:10:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEAD837B408; Tue, 1 Apr 2003 00:10:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45B2943F93; Tue, 1 Apr 2003 00:10:22 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h318AM0U090710; Tue, 1 Apr 2003 00:10:22 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h318ALLa090709; Tue, 1 Apr 2003 00:10:21 -0800 (PST) Message-Id: <200304010810.h318ALLa090709@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 00:10:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_sk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:10:24 -0000 phk 2003/04/01 00:10:21 PST FreeBSD src repository Modified files: sys/pci if_sk.c Log: Fix KASSERT syntax errors. Please compile LINT before commiting. Revision Changes Path 1.56 +2 -2 src/sys/pci/if_sk.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:21:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91C9337B401; Tue, 1 Apr 2003 00:21:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 335B443F75; Tue, 1 Apr 2003 00:21:45 -0800 (PST) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h318Lj0U091688; Tue, 1 Apr 2003 00:21:45 -0800 (PST) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h318Li4Q091687; Tue, 1 Apr 2003 00:21:44 -0800 (PST) Message-Id: <200304010821.h318Li4Q091687@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Tue, 1 Apr 2003 00:21:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4 inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:21:46 -0000 mdodd 2003/04/01 00:21:44 PST FreeBSD src repository Modified files: sbin/ping ping.8 ping.c share/man/man4 inet.4 ip.4 sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h usr.bin/netstat inet.c Log: Implement support for RFC 3514 (The Security Flag in the IPv4 Header). (See: ftp://ftp.rfc-editor.org/in-notes/rfc3514.txt) This fulfills the host requirements for userland support by way of the setsockopt() IP_EVIL_INTENT message. There are three sysctl tunables provided to govern system behavior. net.inet.ip.rfc3514: Enables support for rfc3514. As this is an Informational RFC and support is not yet widespread this option is disabled by default. net.inet.ip.hear_no_evil If set the host will discard all received evil packets. net.inet.ip.speak_no_evil If set the host will discard all transmitted evil packets. The IP statistics counter 'ips_evil' (available via 'netstat') provides information on the number of 'evil' packets recieved. For reference, the '-E' option to 'ping' has been provided to demonstrate and test the implementation. Revision Changes Path 1.47 +4 -2 src/sbin/ping/ping.8 1.92 +13 -1 src/sbin/ping/ping.c 1.21 +11 -0 src/share/man/man4/inet.4 1.29 +9 -0 src/share/man/man4/ip.4 1.75 +2 -0 src/sys/netinet/in.h 1.59 +1 -0 src/sys/netinet/in_pcb.h 1.22 +1 -0 src/sys/netinet/ip.h 1.232 +14 -0 src/sys/netinet/ip_input.c 1.181 +28 -1 src/sys/netinet/ip_output.c 1.72 +1 -0 src/sys/netinet/ip_var.h 1.57 +1 -0 src/usr.bin/netstat/inet.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:26:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F223837B401; Tue, 1 Apr 2003 00:25:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 903D243F75; Tue, 1 Apr 2003 00:25:59 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h318Px0U091868; Tue, 1 Apr 2003 00:25:59 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h318PxbA091867; Tue, 1 Apr 2003 00:25:59 -0800 (PST) Message-Id: <200304010825.h318PxbA091867@repoman.freebsd.org> From: Martin Blapp Date: Tue, 1 Apr 2003 00:25:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-devel/files openoffice-wrapper X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:26:00 -0000 mbr 2003/04/01 00:25:59 PST FreeBSD ports repository Modified files: editors/openoffice-devel/files openoffice-wrapper Log: This snapshot has a different path for the userdir. Revision Changes Path 1.6 +4 -4 ports/editors/openoffice-devel/files/openoffice-wrapper From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:35:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA53C37B401; Tue, 1 Apr 2003 00:35:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91B6443F3F; Tue, 1 Apr 2003 00:35:00 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h318Z00U092509; Tue, 1 Apr 2003 00:35:00 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h318Z01w092508; Tue, 1 Apr 2003 00:35:00 -0800 (PST) Message-Id: <200304010835.h318Z01w092508@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 00:35:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/irc Makefile ports/irc/darkbot Makefile distinfo pkg-comment pkg-descr pkg-plist ports/irc/darkbot/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:35:01 -0000 edwin 2003/04/01 00:35:00 PST FreeBSD ports repository Modified files: irc Makefile Added files: irc/darkbot Makefile distinfo pkg-comment pkg-descr pkg-plist irc/darkbot/files patch-Makefile Log: irc/darkbot - The talking IRC Bot! Darkbot is a very smart IRC bot with a very fast algorithm for an auto-responder database. More information about Darkbot can be found on http://darkbot.sourceforge.net/ PR: ports/48847 Submitted by: A. Gabriel Revision Changes Path 1.57 +1 -0 ports/irc/Makefile 1.1 +28 -0 ports/irc/darkbot/Makefile (new) 1.1 +1 -0 ports/irc/darkbot/distinfo (new) 1.1 +30 -0 ports/irc/darkbot/files/patch-Makefile (new) 1.1 +2 -0 ports/irc/darkbot/pkg-comment (new) 1.1 +11 -0 ports/irc/darkbot/pkg-descr (new) 1.1 +9 -0 ports/irc/darkbot/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:35:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FD1637B401; Tue, 1 Apr 2003 00:35:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D521F43FA3; Tue, 1 Apr 2003 00:35:15 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h318ZF0U092597; Tue, 1 Apr 2003 00:35:15 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h318ZFdH092591; Tue, 1 Apr 2003 00:35:15 -0800 (PST) Message-Id: <200304010835.h318ZFdH092591@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 00:35:15 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:35:16 -0000 edwin 2003/04/01 00:35:15 PST FreeBSD ports repository Modified files: . modules Log: darkbot --> ports/irc/darkbot Revision Changes Path 1.6942 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:41:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32ECC37B401; Tue, 1 Apr 2003 00:41:46 -0800 (PST) Received: from cirb503493.alcatel.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7792643FB1; Tue, 1 Apr 2003 00:41:44 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1])h318fgM2029376; Tue, 1 Apr 2003 18:41:42 +1000 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.8/8.12.8/Submit) id h318ffrP029375; Tue, 1 Apr 2003 18:41:41 +1000 (EST) Date: Tue, 1 Apr 2003 18:41:41 +1000 From: Peter Jeremy To: "Matthew N. Dodd" Message-ID: <20030401084140.GA29301@cirb503493.alcatel.com.au> References: <200304010821.h318Li4Q091687@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304010821.h318Li4Q091687@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4 inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:41:46 -0000 On Tue, Apr 01, 2003 at 12:21:44AM -0800, Matthew N. Dodd wrote: >mdodd 2003/04/01 00:21:44 PST > Log: > Implement support for RFC 3514 (The Security Flag in the IPv4 Header). > (See: ftp://ftp.rfc-editor.org/in-notes/rfc3514.txt) Great work. It's good to see FreeBSD is staying at the forefront of IP development. This is definitely a security enhancement and I'd like to see it MFC'd back to the various security releases. Peter From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:44:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BD6637B401; Tue, 1 Apr 2003 00:44:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 979E843FA3; Tue, 1 Apr 2003 00:44:28 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h318iS0U093289; Tue, 1 Apr 2003 00:44:28 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h318iSSg093288; Tue, 1 Apr 2003 00:44:28 -0800 (PST) Message-Id: <200304010844.h318iSSg093288@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Apr 2003 00:44:28 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/goblin Makefile distinfo pkg-plist ports/misc/goblin/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:44:29 -0000 ijliao 2003/04/01 00:44:28 PST FreeBSD ports repository Modified files: misc/goblin Makefile distinfo pkg-plist misc/goblin/files patch-Makefile Log: upgrade to 2.6b5 Revision Changes Path 1.7 +7 -5 ports/misc/goblin/Makefile 1.3 +1 -1 ports/misc/goblin/distinfo 1.3 +40 -40 ports/misc/goblin/files/patch-Makefile 1.3 +296 -259 ports/misc/goblin/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:47:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83EF737B401; Tue, 1 Apr 2003 00:47:40 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E5A743FCB; Tue, 1 Apr 2003 00:47:39 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.8/8.12.8) with ESMTP id h318lbSM031677; Tue, 1 Apr 2003 10:47:38 +0200 (CEST) (envelope-from phk@phk.freebsd.dk) To: Peter Jeremy From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 01 Apr 2003 18:41:41 +1000." <20030401084140.GA29301@cirb503493.alcatel.com.au> Date: Tue, 01 Apr 2003 10:47:37 +0200 Message-ID: <31676.1049186857@critter.freebsd.dk> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "Matthew N. Dodd" Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4 inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:47:40 -0000 In message <20030401084140.GA29301@cirb503493.alcatel.com.au>, Peter Jeremy wri tes: >On Tue, Apr 01, 2003 at 12:21:44AM -0800, Matthew N. Dodd wrote: >>mdodd 2003/04/01 00:21:44 PST >> Log: >> Implement support for RFC 3514 (The Security Flag in the IPv4 Header). >> (See: ftp://ftp.rfc-editor.org/in-notes/rfc3514.txt) > >Great work. It's good to see FreeBSD is staying at the forefront of >IP development. This is definitely a security enhancement and I'd >like to see it MFC'd back to the various security releases. Hang in there. I've heard rumours about a CERT advisory. -- 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. From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:57:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41B1837B401; Tue, 1 Apr 2003 00:57:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D604643F3F; Tue, 1 Apr 2003 00:57:28 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h318vS0U099160; Tue, 1 Apr 2003 00:57:28 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h318vSeP099159; Tue, 1 Apr 2003 00:57:28 -0800 (PST) Message-Id: <200304010857.h318vSeP099159@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 00:57:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_ti.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:57:29 -0000 phk 2003/04/01 00:57:28 PST FreeBSD src repository Modified files: sys/pci if_ti.c Log: Fix KASSERT syntax error. Revision Changes Path 1.73 +1 -1 src/sys/pci/if_ti.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 00:59:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3C0B37B401; Tue, 1 Apr 2003 00:59:29 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2036443FBD; Tue, 1 Apr 2003 00:59:29 -0800 (PST) (envelope-from mdodd@FreeBSD.ORG) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.12.9/8.12.9) with ESMTP id h318xREF043409; Tue, 1 Apr 2003 03:59:28 -0500 (EST) (envelope-from mdodd@FreeBSD.ORG) Date: Tue, 1 Apr 2003 03:59:27 -0500 (EST) From: "Matthew N. Dodd" X-X-Sender: winter@sasami.jurai.net To: Peter Jeremy In-Reply-To: <20030401084140.GA29301@cirb503493.alcatel.com.au> Message-ID: <20030401035810.A1365@sasami.jurai.net> References: <200304010821.h318Li4Q091687@repoman.freebsd.org> <20030401084140.GA29301@cirb503493.alcatel.com.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 08:59:30 -0000 On Tue, 1 Apr 2003, Peter Jeremy wrote: > On Tue, Apr 01, 2003 at 12:21:44AM -0800, Matthew N. Dodd wrote: > >mdodd 2003/04/01 00:21:44 PST > > Log: > > Implement support for RFC 3514 (The Security Flag in the IPv4 Header). > > (See: ftp://ftp.rfc-editor.org/in-notes/rfc3514.txt) > > Great work. It's good to see FreeBSD is staying at the forefront of > IP development. This is definitely a security enhancement and I'd > like to see it MFC'd back to the various security releases. If you'd like to test this on -STABLE (RELENG_4, RELENG_4_8) please see: ftp://ftp.jurai.net/users/winter/patches/rfc3514-stable.patch Thanks! -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | From owner-cvs-all@FreeBSD.ORG Tue Apr 1 01:02:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D243037B401; Tue, 1 Apr 2003 01:02:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70EA843FA3; Tue, 1 Apr 2003 01:02:59 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3192x0U099743; Tue, 1 Apr 2003 01:02:59 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3192xn6099742; Tue, 1 Apr 2003 01:02:59 -0800 (PST) Message-Id: <200304010902.h3192xn6099742@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 01:02:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/include physio_proc.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 09:03:00 -0000 phk 2003/04/01 01:02:59 PST FreeBSD src repository Modified files: sys/i386/include physio_proc.h Log: Don't include needlessly. Revision Changes Path 1.5 +2 -1 src/sys/i386/include/physio_proc.h From owner-cvs-all@FreeBSD.ORG Tue Apr 1 01:07:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 212A137B401; Tue, 1 Apr 2003 01:07:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2FA743F75; Tue, 1 Apr 2003 01:07:36 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3197a0U001016; Tue, 1 Apr 2003 01:07:36 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3197a0I001015; Tue, 1 Apr 2003 01:07:36 -0800 (PST) Message-Id: <200304010907.h3197a0I001015@repoman.freebsd.org> From: Jeff Roberson Date: Tue, 1 Apr 2003 01:07:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_sig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 09:07:37 -0000 jeff 2003/04/01 01:07:36 PST FreeBSD src repository Modified files: sys/kern kern_sig.c Log: - p will be unused in cursig() if INVARIANTS is not defined. Access it through td->td_proc to avoid the unused variable. Spotted by: Maxim Konovalov Revision Changes Path 1.222 +1 -3 src/sys/kern/kern_sig.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 01:23:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69AF337B401; Tue, 1 Apr 2003 01:23:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0862C43F85; Tue, 1 Apr 2003 01:23:25 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h319NO0U002134; Tue, 1 Apr 2003 01:23:24 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h319NOaP002133; Tue, 1 Apr 2003 01:23:24 -0800 (PST) Message-Id: <200304010923.h319NOaP002133@repoman.freebsd.org> From: Jeff Roberson Date: Tue, 1 Apr 2003 01:23:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/smbfs smbfs_io.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 09:23:25 -0000 jeff 2003/04/01 01:23:24 PST FreeBSD src repository Modified files: sys/fs/smbfs smbfs_io.c Log: - smb_proc_intr is now spelled smb_td_intr. Noticed by: phk Pointy hat to: jeffr Revision Changes Path 1.19 +1 -1 src/sys/fs/smbfs/smbfs_io.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 01:24:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0BD037B401; Tue, 1 Apr 2003 01:24:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4015143F93; Tue, 1 Apr 2003 01:24:13 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h319OD0U002187; Tue, 1 Apr 2003 01:24:13 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h319OCnL002186; Tue, 1 Apr 2003 01:24:12 -0800 (PST) Message-Id: <200304010924.h319OCnL002186@repoman.freebsd.org> From: Jeff Roberson Date: Tue, 1 Apr 2003 01:24:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/smbfs smbfs_io.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 09:24:14 -0000 jeff 2003/04/01 01:24:12 PST FreeBSD src repository Modified files: sys/fs/smbfs smbfs_io.c Log: - smb_td_intr takes a thread as an argument not a proc. Revision Changes Path 1.20 +1 -1 src/sys/fs/smbfs/smbfs_io.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 01:29:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D68D637B401; Tue, 1 Apr 2003 01:29:00 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8FF343FA3; Tue, 1 Apr 2003 01:28:59 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h319Sx898442; Tue, 1 Apr 2003 04:28:59 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Tue, 1 Apr 2003 04:28:59 -0500 (EST) From: Jeff Roberson To: Jeff Roberson In-Reply-To: <200304010924.h319OCnL002186@repoman.freebsd.org> Message-ID: <20030401042843.P64602-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/smbfs smbfs_io.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 09:29:01 -0000 On Tue, 1 Apr 2003, Jeff Roberson wrote: > jeff 2003/04/01 01:24:12 PST > > FreeBSD src repository > > Modified files: > sys/fs/smbfs smbfs_io.c > Log: > - smb_td_intr takes a thread as an argument not a proc. > > Revision Changes Path > 1.20 +1 -1 src/sys/fs/smbfs/smbfs_io.c > This time it compiles. honest. :-/ From owner-cvs-all@FreeBSD.ORG Tue Apr 1 02:08:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F4F337B401; Tue, 1 Apr 2003 02:08:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2724343FAF; Tue, 1 Apr 2003 02:08:03 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31A820U005818; Tue, 1 Apr 2003 02:08:02 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31A82sn005817; Tue, 1 Apr 2003 02:08:02 -0800 (PST) Message-Id: <200304011008.h31A82sn005817@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Apr 2003 02:08:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc Makefile ports/textproc/doclifter Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 10:08:03 -0000 ijliao 2003/04/01 02:08:02 PST FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/doclifter Makefile distinfo pkg-descr pkg-plist Log: add doclifter 1.0.4 Translates documents written in troff macros to DocBook Revision Changes Path 1.499 +1 -0 ports/textproc/Makefile 1.1 +30 -0 ports/textproc/doclifter/Makefile (new) 1.1 +1 -0 ports/textproc/doclifter/distinfo (new) 1.1 +11 -0 ports/textproc/doclifter/pkg-descr (new) 1.1 +1 -0 ports/textproc/doclifter/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 02:08:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D54E37B405; Tue, 1 Apr 2003 02:08:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F1CA43F3F; Tue, 1 Apr 2003 02:08:11 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31A8B0U005860; Tue, 1 Apr 2003 02:08:11 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31A8Bt1005859; Tue, 1 Apr 2003 02:08:11 -0800 (PST) Message-Id: <200304011008.h31A8Bt1005859@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Apr 2003 02:08:11 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 10:08:12 -0000 ijliao 2003/04/01 02:08:11 PST FreeBSD ports repository Modified files: . modules Log: doclifter --> ports/textproc/doclifter Revision Changes Path 1.6943 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Apr 1 02:25:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 510B337B405; Tue, 1 Apr 2003 02:25:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64DC443FB1; Tue, 1 Apr 2003 02:25:20 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31APK0U007137; Tue, 1 Apr 2003 02:25:20 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31APK0H007136; Tue, 1 Apr 2003 02:25:20 -0800 (PST) Message-Id: <200304011025.h31APK0H007136@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Apr 2003 02:25:20 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc Makefile ports/textproc/xmlindent Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 10:25:21 -0000 ijliao 2003/04/01 02:25:20 PST FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/xmlindent Makefile distinfo pkg-descr pkg-plist Log: add xmlindent 0.2.4 A XML stream reformatter Revision Changes Path 1.500 +1 -0 ports/textproc/Makefile 1.1 +23 -0 ports/textproc/xmlindent/Makefile (new) 1.1 +1 -0 ports/textproc/xmlindent/distinfo (new) 1.1 +3 -0 ports/textproc/xmlindent/pkg-descr (new) 1.1 +1 -0 ports/textproc/xmlindent/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 02:28:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C80E37B401; Tue, 1 Apr 2003 02:28:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35A4143FDF; Tue, 1 Apr 2003 02:28:30 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31ASU0U007300; Tue, 1 Apr 2003 02:28:30 -0800 (PST) (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31ASTci007299; Tue, 1 Apr 2003 02:28:29 -0800 (PST) Message-Id: <200304011028.h31ASTci007299@repoman.freebsd.org> From: Maxim Sobolev Date: Tue, 1 Apr 2003 02:28:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/p5-Authen-Radius Makefile distinfo ports/security/p5-Authen-Radius/files patch-aa patch-ab patch-ac X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 10:28:30 -0000 sobomax 2003/04/01 02:28:29 PST FreeBSD ports repository Modified files: security/p5-Authen-Radius Makefile distinfo Removed files: security/p5-Authen-Radius/files patch-aa patch-ab patch-ac Log: Update to 0.08. Submitted by: Andrew Zhilenko Revision Changes Path 1.19 +4 -6 ports/security/p5-Authen-Radius/Makefile 1.2 +1 -1 ports/security/p5-Authen-Radius/distinfo 1.2 +0 -11 ports/security/p5-Authen-Radius/files/patch-aa (dead) 1.2 +0 -9 ports/security/p5-Authen-Radius/files/patch-ab (dead) 1.2 +0 -13 ports/security/p5-Authen-Radius/files/patch-ac (dead) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 02:44:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30EAA37B401; Tue, 1 Apr 2003 02:44:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC14D43F85; Tue, 1 Apr 2003 02:44:26 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31AiQ0U008490; Tue, 1 Apr 2003 02:44:26 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31AiQcP008489; Tue, 1 Apr 2003 02:44:26 -0800 (PST) Message-Id: <200304011044.h31AiQcP008489@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 02:44:26 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/eights Makefile distinfo ports/games/eights/files patch-eights.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 10:44:27 -0000 edwin 2003/04/01 02:44:26 PST FreeBSD ports repository Modified files: games/eights Makefile distinfo Added files: games/eights/files patch-eights.c Log: kind of reroll, removed line was: [/usr/ports/games/eights] root@k7>diff -b eights/eights.c eights.c.new 8,9d7 < #define debug < Noticed on: bento Revision Changes Path 1.3 +1 -1 ports/games/eights/Makefile 1.2 +1 -1 ports/games/eights/distinfo 1.1 +11 -0 ports/games/eights/files/patch-eights.c (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 02:48:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00AC637B401; Tue, 1 Apr 2003 02:48:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7863D43F3F; Tue, 1 Apr 2003 02:48:02 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31Am20U008621; Tue, 1 Apr 2003 02:48:02 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31Am2Pn008620; Tue, 1 Apr 2003 02:48:02 -0800 (PST) Message-Id: <200304011048.h31Am2Pn008620@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 02:48:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/poink distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 10:48:03 -0000 edwin 2003/04/01 02:48:02 PST FreeBSD ports repository Modified files: net/poink distinfo Log: reroll of distfile: [/usr/ports/net/poink] root@k7>diff -r -b poink-old poink Only in poink-old: poink diff -r -b poink-old/poink.c poink/poink.c 3c3 < Nosuid TCP/IP ping 1.5 beta by Michal Zalewski --- > Nosuid TCP/IP ping 1.6 beta by Michal Zalewski noticed by: bento Revision Changes Path 1.3 +1 -1 ports/net/poink/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 1 02:50:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 696B737B401; Tue, 1 Apr 2003 02:50:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 088FD43F3F; Tue, 1 Apr 2003 02:50:21 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31AoK0U008771; Tue, 1 Apr 2003 02:50:20 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31AoKS5008769; Tue, 1 Apr 2003 02:50:20 -0800 (PST) Message-Id: <200304011050.h31AoKS5008769@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 02:50:20 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/cdonkey Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 10:50:21 -0000 edwin 2003/04/01 02:50:20 PST FreeBSD ports repository Modified files: net/cdonkey Makefile Log: Add USE_LIBTOOL=yes Noticed on: bento Revision Changes Path 1.2 +1 -0 ports/net/cdonkey/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 1 03:11:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C63337B401; Tue, 1 Apr 2003 03:11:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A93543FBD; Tue, 1 Apr 2003 03:11:39 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31BBc0U011566; Tue, 1 Apr 2003 03:11:38 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31BBcXF011565; Tue, 1 Apr 2003 03:11:38 -0800 (PST) Message-Id: <200304011111.h31BBcXF011565@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 1 Apr 2003 03:11:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/devd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 11:11:39 -0000 ru 2003/04/01 03:11:38 PST FreeBSD src repository Modified files: sbin/devd Makefile Log: This can't obviously be cleaner than system headers. Revision Changes Path 1.4 +1 -1 src/sbin/devd/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 1 03:29:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35DDD37B401; Tue, 1 Apr 2003 03:29:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C927A43FB1; Tue, 1 Apr 2003 03:29:29 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31BTT0U012435; Tue, 1 Apr 2003 03:29:29 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31BTTFM012434; Tue, 1 Apr 2003 03:29:29 -0800 (PST) Message-Id: <200304011129.h31BTTFM012434@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 1 Apr 2003 03:29:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 11:29:30 -0000 ru 2003/04/01 03:29:29 PST FreeBSD src repository Modified files: . Makefile.inc1 Log: Pass NO_WARNS to the build-tool stage too; -Wsystem-headers isn't known to the 4.x system compiler. Revision Changes Path 1.329 +1 -1 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Tue Apr 1 03:39:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D726D37B401; Tue, 1 Apr 2003 03:39:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75F9743FAF; Tue, 1 Apr 2003 03:39:04 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31Bd40U013086; Tue, 1 Apr 2003 03:39:04 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31Bd4YY013085; Tue, 1 Apr 2003 03:39:04 -0800 (PST) Message-Id: <200304011139.h31Bd4YY013085@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 1 Apr 2003 03:39:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 11:39:05 -0000 ru 2003/04/01 03:39:04 PST FreeBSD src repository Modified files: . Makefile.inc1 Log: Parallelize (on the top-level SUBDIR list) the "all" stage of buildworld. This gives 5-11% percent gain in real buildworld times on various UP and SMP systems here. I used 4 * hw.ncpu as an argument to "make -j" in my tests. Revision Changes Path 1.330 +2 -2 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Tue Apr 1 04:07:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2625237B401; Tue, 1 Apr 2003 04:07:31 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBC1243F93; Tue, 1 Apr 2003 04:07:20 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h31C7FAP062069 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 1 Apr 2003 15:07:16 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.8/8.12.8/Submit) id h31C7F6Y062064; Tue, 1 Apr 2003 15:07:15 +0300 (EEST) (envelope-from ru) Date: Tue, 1 Apr 2003 15:07:14 +0300 From: Ruslan Ermilov To: "David E. O'Brien" Message-ID: <20030401120714.GA61909@sunbay.com> References: <200303182320.h2INKbNj065802@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="jRHKVT23PllUwdXP" Content-Disposition: inline In-Reply-To: <200303182320.h2INKbNj065802@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/alpha dokern.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 12:07:31 -0000 --jRHKVT23PllUwdXP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Mar 18, 2003 at 03:20:37PM -0800, David E. O'Brien wrote: > obrien 2003/03/18 15:20:37 PST >=20 > FreeBSD src repository >=20 > Modified files: (Branch: RELENG_4) > release/alpha dokern.sh=20 > Log: > txp should have been added here when drivers.conf rev 1.2.2.1 was commi= tted. > =20 > Revision Changes Path > 1.56.2.4 +1 -0 src/release/alpha/dokern.sh >=20 Please back this out. The following lines of doMFSKERN target in release/Makefile take care of removing the driver: =2Eif exists(${.CURDIR}/${TARGET}/drivers.conf) @awk -f ${.CURDIR}/scripts/driver-remove.awk \ ${.CURDIR}/${TARGET}/drivers.conf \ ${.CURDIR}/../sys/${TARGET}/conf/BOOTMFS =2Eendif Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --jRHKVT23PllUwdXP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+iYDyUkv4P6juNwoRAqaGAJ9q+uGmDqxp6bUHGJtST3NM11yDlwCaAkIf EztxEuYMVbKdal2rjtqOlxE= =xM9G -----END PGP SIGNATURE----- --jRHKVT23PllUwdXP-- From owner-cvs-all@FreeBSD.ORG Tue Apr 1 04:08:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D1DA37B401; Tue, 1 Apr 2003 04:08:34 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5717843F85; Tue, 1 Apr 2003 04:08:29 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h31C8PAP062194 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 1 Apr 2003 15:08:25 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.8/8.12.8/Submit) id h31C8Pt4062189; Tue, 1 Apr 2003 15:08:25 +0300 (EEST) (envelope-from ru) Date: Tue, 1 Apr 2003 15:08:25 +0300 From: Ruslan Ermilov To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20030401120825.GB61909@sunbay.com> References: <200304011111.h31BBcXF011565@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4SFOXa2GPu3tIq4H" Content-Disposition: inline In-Reply-To: <200304011111.h31BBcXF011565@repoman.freebsd.org> User-Agent: Mutt/1.5.4i Subject: Re: cvs commit: src/sbin/devd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 12:08:34 -0000 --4SFOXa2GPu3tIq4H Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 01, 2003 at 03:11:38AM -0800, Ruslan Ermilov wrote: > ru 2003/04/01 03:11:38 PST >=20 > FreeBSD src repository >=20 > Modified files: > sbin/devd Makefile=20 > Log: > This can't obviously be cleaner than system headers. > =20 > Revision Changes Path > 1.4 +1 -1 src/sbin/devd/Makefile >=20 I intended to commit this along with the -Wsystem-headers change to bsd.sys.mk, but forgot. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --4SFOXa2GPu3tIq4H Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+iYE5Ukv4P6juNwoRAss3AJ0cQQmWhX8AadTAkpJT9Au3+FNNQQCfVAaX nejnPHadMOiyMAXkA59kDfY= =eyfk -----END PGP SIGNATURE----- --4SFOXa2GPu3tIq4H-- From owner-cvs-all@FreeBSD.ORG Tue Apr 1 04:29:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E048637B401; Tue, 1 Apr 2003 04:29:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A9D343FAF; Tue, 1 Apr 2003 04:29:13 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31CTD0U017174; Tue, 1 Apr 2003 04:29:13 -0800 (PST) (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31CTD5v017173; Tue, 1 Apr 2003 04:29:13 -0800 (PST) Message-Id: <200304011229.h31CTD5v017173@repoman.freebsd.org> From: Maxim Sobolev Date: Tue, 1 Apr 2003 04:29:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/perl5.8 Makefile ports/lang/perl5.8/files patch-ac X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 12:29:14 -0000 sobomax 2003/04/01 04:29:13 PST FreeBSD ports repository Modified files: lang/perl5.8 Makefile lang/perl5.8/files patch-ac Log: Add a new `WITH_THREADS' option to build perl with support for threads and fix threaded build on 5.x. Approved by: maintainer Revision Changes Path 1.54 +7 -0 ports/lang/perl5.8/Makefile 1.9 +13 -2 ports/lang/perl5.8/files/patch-ac From owner-cvs-all@FreeBSD.ORG Tue Apr 1 04:32:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B86C237B401; Tue, 1 Apr 2003 04:32:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FCD643FA3; Tue, 1 Apr 2003 04:32:58 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31CWw0U017694; Tue, 1 Apr 2003 04:32:58 -0800 (PST) (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31CWw3F017693; Tue, 1 Apr 2003 04:32:58 -0800 (PST) Message-Id: <200304011232.h31CWw3F017693@repoman.freebsd.org> From: Maxim Sobolev Date: Tue, 1 Apr 2003 04:32:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail Makefile ports/mail/p5-Sendmail-Milter Makefile distinfo pkg-descr pkg-plist ports/mail/p5-Sendmail-Milter/files patch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 12:32:59 -0000 sobomax 2003/04/01 04:32:58 PST FreeBSD ports repository Modified files: mail Makefile Added files: mail/p5-Sendmail-Milter Makefile distinfo pkg-descr pkg-plist mail/p5-Sendmail-Milter/files patch-Makefile.PL Log: Add p5-Sendmail-Milter 0.18, a module to write mail filters in Perl using sendmail's mail filter API. Revision Changes Path 1.370 +1 -0 ports/mail/Makefile 1.1 +23 -0 ports/mail/p5-Sendmail-Milter/Makefile (new) 1.1 +1 -0 ports/mail/p5-Sendmail-Milter/distinfo (new) 1.1 +56 -0 ports/mail/p5-Sendmail-Milter/files/patch-Makefile.PL (new) 1.1 +9 -0 ports/mail/p5-Sendmail-Milter/pkg-descr (new) 1.1 +9 -0 ports/mail/p5-Sendmail-Milter/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 04:34:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A4D537B401; Tue, 1 Apr 2003 04:34:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEBCD43F75; Tue, 1 Apr 2003 04:34:47 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31CYl0U017753; Tue, 1 Apr 2003 04:34:47 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31CYl2O017752; Tue, 1 Apr 2003 04:34:47 -0800 (PST) Message-Id: <200304011234.h31CYl2O017752@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 04:34:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/linux linux_ioctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 12:34:48 -0000 phk 2003/04/01 04:34:47 PST FreeBSD src repository Modified files: sys/compat/linux linux_ioctl.c Log: Add #include so we don't rely on doing it. Revision Changes Path 1.105 +1 -0 src/sys/compat/linux/linux_ioctl.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 04:35:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95A9337B405; Tue, 1 Apr 2003 04:35:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BDD943FB1; Tue, 1 Apr 2003 04:35:18 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31CZH0U017834; Tue, 1 Apr 2003 04:35:18 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31CZHqJ017833; Tue, 1 Apr 2003 04:35:17 -0800 (PST) Message-Id: <200304011235.h31CZHqJ017833@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 04:35:17 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac_debug.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 12:35:19 -0000 phk 2003/04/01 04:35:17 PST FreeBSD src repository Modified files: sys/dev/aac aac_debug.c Log: Include rather than trusting to do so. Revision Changes Path 1.14 +1 -0 src/sys/dev/aac/aac_debug.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 04:37:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE44537B408; Tue, 1 Apr 2003 04:37:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3525043FBD; Tue, 1 Apr 2003 04:37:55 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31Cbs0U018022; Tue, 1 Apr 2003 04:37:54 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31CbsuV018021; Tue, 1 Apr 2003 04:37:54 -0800 (PST) Message-Id: <200304011237.h31CbsuV018021@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 1 Apr 2003 04:37:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/cc/include Makefilesrc/libexec/save-entropy Makefile src/usr.bin/alias Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 12:37:56 -0000 ru 2003/04/01 04:37:54 PST FreeBSD src repository Modified files: gnu/usr.bin/cc/include Makefile libexec/save-entropy Makefile usr.bin/alias Makefile Log: Mark bits that do not require an object directory as such. Revision Changes Path 1.4 +2 -0 src/gnu/usr.bin/cc/include/Makefile 1.3 +2 -1 src/libexec/save-entropy/Makefile 1.3 +1 -1 src/usr.bin/alias/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 1 04:49:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E96637B401; Tue, 1 Apr 2003 04:49:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BC2D43FB1; Tue, 1 Apr 2003 04:49:41 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31Cne0U023844; Tue, 1 Apr 2003 04:49:40 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31CneLM023843; Tue, 1 Apr 2003 04:49:40 -0800 (PST) Message-Id: <200304011249.h31CneLM023843@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 04:49:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys bio.h src/sys/kern subr_disk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 12:49:41 -0000 phk 2003/04/01 04:49:40 PST FreeBSD src repository Modified files: sys/sys bio.h sys/kern subr_disk.c Log: Introduce bioq_flush() function. Revision Changes Path 1.73 +15 -0 src/sys/kern/subr_disk.c 1.130 +1 -0 src/sys/sys/bio.h From owner-cvs-all@FreeBSD.ORG Tue Apr 1 04:50:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0573F37B401; Tue, 1 Apr 2003 04:50:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B98943F85; Tue, 1 Apr 2003 04:50:41 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31Cof0U024107; Tue, 1 Apr 2003 04:50:41 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31Cof3L024103; Tue, 1 Apr 2003 04:50:41 -0800 (PST) Message-Id: <200304011250.h31Cof3L024103@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 1 Apr 2003 04:50:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/secure/lib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 12:50:42 -0000 ru 2003/04/01 04:50:40 PST FreeBSD src repository Modified files: secure/lib Makefile Log: libtelnet depends on OpenSSL. PR: 50507 Revision Changes Path 1.27 +1 -1 src/secure/lib/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 1 05:00:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDC2037B401; Tue, 1 Apr 2003 05:00:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CA8043F85; Tue, 1 Apr 2003 05:00:43 -0800 (PST) (envelope-from trevor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31D0h0U024763; Tue, 1 Apr 2003 05:00:43 -0800 (PST) (envelope-from trevor@repoman.freebsd.org) Received: (from trevor@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31D0hvU024762; Tue, 1 Apr 2003 05:00:43 -0800 (PST) Message-Id: <200304011300.h31D0hvU024762@repoman.freebsd.org> From: Trevor Johnson Date: Tue, 1 Apr 2003 05:00:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/august Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 13:00:44 -0000 trevor 2003/04/01 05:00:42 PST FreeBSD ports repository Modified files: www/august Makefile pkg-descr Log: Update home site. Submitted by: Martin Klaffenboeck Revision Changes Path 1.6 +2 -1 ports/www/august/Makefile 1.2 +1 -1 ports/www/august/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Apr 1 05:19:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2653837B407; Tue, 1 Apr 2003 05:19:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B91A843F75; Tue, 1 Apr 2003 05:19:14 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31DJE0U026797; Tue, 1 Apr 2003 05:19:14 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31DJEWh026796; Tue, 1 Apr 2003 05:19:14 -0800 (PST) Message-Id: <200304011319.h31DJEWh026796@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 05:19:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_disk.h src/sys/sys disk.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 13:19:15 -0000 phk 2003/04/01 05:19:14 PST FreeBSD src repository Modified files: sys/sys disk.h Added files: sys/geom geom_disk.h Log: Start to split the GEOM/diskdriver specific bits into geom/geom_disk.h Revision Changes Path 1.1 +93 -0 src/sys/geom/geom_disk.h (new) 1.38 +1 -47 src/sys/sys/disk.h From owner-cvs-all@FreeBSD.ORG Tue Apr 1 05:33:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE0FA37B401; Tue, 1 Apr 2003 05:33:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E98A43FA3; Tue, 1 Apr 2003 05:33:29 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31DXT0U027958; Tue, 1 Apr 2003 05:33:29 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31DXT5H027957; Tue, 1 Apr 2003 05:33:29 -0800 (PST) Message-Id: <200304011333.h31DXT5H027957@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 05:33:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/md md.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 13:33:30 -0000 phk 2003/04/01 05:33:29 PST FreeBSD src repository Modified files: sys/dev/md md.c Log: Don't include . Revision Changes Path 1.94 +0 -2 src/sys/dev/md/md.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 06:18:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB2CD37B401; Tue, 1 Apr 2003 06:18:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A08143F85; Tue, 1 Apr 2003 06:18:31 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31EIV0U031855; Tue, 1 Apr 2003 06:18:31 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31EIU0J031854; Tue, 1 Apr 2003 06:18:30 -0800 (PST) Message-Id: <200304011418.h31EIU0J031854@repoman.freebsd.org> From: Yen-Ming Lee Date: Tue, 1 Apr 2003 06:18:30 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/wmbiff pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 14:18:32 -0000 leeym 2003/04/01 06:18:30 PST FreeBSD ports repository Removed files: mail/wmbiff pkg-message Log: remove mail/wmbiff/pkg-message since it is no longer needed Requested by: Simon L. Nielsen Revision Changes Path 1.2 +0 -4 ports/mail/wmbiff/pkg-message (dead) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 06:44:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB48A37B401; Tue, 1 Apr 2003 06:44:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CB2543FAF; Tue, 1 Apr 2003 06:44:54 -0800 (PST) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31Eis0U033599; Tue, 1 Apr 2003 06:44:54 -0800 (PST) (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31Eis4o033598; Tue, 1 Apr 2003 06:44:54 -0800 (PST) Message-Id: <200304011444.h31Eis4o033598@repoman.freebsd.org> From: Yar Tikhiy Date: Tue, 1 Apr 2003 06:44:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/disklabel disklabel.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 14:44:55 -0000 yar 2003/04/01 06:44:54 PST FreeBSD src repository Modified files: sbin/disklabel disklabel.c Log: Don't die of SIGSEGV on a missing fstype field in a saved disklabel file. MFC after: 1 week Revision Changes Path 1.80 +4 -0 src/sbin/disklabel/disklabel.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 07:06:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7C0937B401; Tue, 1 Apr 2003 07:06:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CBCC43F75; Tue, 1 Apr 2003 07:06:27 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31F6Q0U036280; Tue, 1 Apr 2003 07:06:26 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31F6Qw8036279; Tue, 1 Apr 2003 07:06:26 -0800 (PST) Message-Id: <200304011506.h31F6Qw8036279@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 07:06:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam/scsi scsi_cd.c scsi_da.c scsi_pt.c scsi_sa.c src/sys/contrib/dev/fla fla.c src/sys/dev/aac aac.c aac_debug.c aacvar.h src/sys/dev/amr amr.c amr_cam.c amr_disk.c... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 15:06:28 -0000 phk 2003/04/01 07:06:26 PST FreeBSD src repository Modified files: sys/cam/scsi scsi_cd.c scsi_da.c scsi_pt.c scsi_sa.c sys/contrib/dev/fla fla.c sys/dev/aac aac.c aac_debug.c aacvar.h sys/dev/amr amr.c amr_cam.c amr_disk.c amr_pci.c amrvar.h sys/dev/ata ata-all.c ata-disk.c ata-raid.c atapi-cd.c atapi-fd.c atapi-tape.c sys/dev/ccd ccd.c sys/dev/ida ida.c ida_disk.c ida_eisa.c ida_pci.c sys/dev/mcd mcd.c sys/dev/md md.c sys/dev/mlx mlx.c mlx_disk.c mlx_pci.c sys/dev/pst pst-raid.c sys/dev/raidframe rf_freebsdkintf.c sys/dev/scd scd.c sys/dev/twe twe_freebsd.c sys/ia64/ia64 sscdisk.c sys/isa fd.c sys/pc98/pc98 fd.c wd.c wd_cd.c Log: Use bioq_flush() to drain a bio queue with a specific error code. Retain the mistake of not updating the devstat API for now. Spell bioq_disksort() consistently with the remaining bioq_*(). #include where this is more appropriate. Revision Changes Path 1.78 +3 -13 src/sys/cam/scsi/scsi_cd.c 1.136 +5 -15 src/sys/cam/scsi/scsi_da.c 1.37 +2 -14 src/sys/cam/scsi/scsi_pt.c 1.92 +2 -12 src/sys/cam/scsi/scsi_sa.c 1.39 +2 -2 src/sys/contrib/dev/fla/fla.c 1.67 +1 -1 src/sys/dev/aac/aac.c 1.15 +1 -2 src/sys/dev/aac/aac_debug.c 1.33 +2 -0 src/sys/dev/aac/aacvar.h 1.46 +0 -1 src/sys/dev/amr/amr.c 1.7 +0 -1 src/sys/dev/amr/amr_cam.c 1.28 +0 -1 src/sys/dev/amr/amr_disk.c 1.16 +0 -1 src/sys/dev/amr/amr_pci.c 1.18 +1 -0 src/sys/dev/amr/amrvar.h 1.176 +1 -1 src/sys/dev/ata/ata-all.c 1.150 +3 -6 src/sys/dev/ata/ata-disk.c 1.58 +1 -0 src/sys/dev/ata/ata-raid.c 1.137 +3 -8 src/sys/dev/ata/atapi-cd.c 1.85 +3 -7 src/sys/dev/ata/atapi-fd.c 1.78 +1 -5 src/sys/dev/ata/atapi-tape.c 1.132 +1 -0 src/sys/dev/ccd/ccd.c 1.25 +2 -1 src/sys/dev/ida/ida.c 1.40 +2 -1 src/sys/dev/ida/ida_disk.c 1.11 +2 -1 src/sys/dev/ida/ida_eisa.c 1.22 +2 -1 src/sys/dev/ida/ida_pci.c 1.136 +1 -1 src/sys/dev/mcd/mcd.c 1.95 +1 -1 src/sys/dev/md/md.c 1.38 +2 -1 src/sys/dev/mlx/mlx.c 1.30 +2 -1 src/sys/dev/mlx/mlx_disk.c 1.14 +2 -1 src/sys/dev/mlx/mlx_pci.c 1.7 +2 -2 src/sys/dev/pst/pst-raid.c 1.18 +1 -0 src/sys/dev/raidframe/rf_freebsdkintf.c 1.76 +1 -1 src/sys/dev/scd/scd.c 1.26 +1 -0 src/sys/dev/twe/twe_freebsd.c 1.27 +1 -1 src/sys/ia64/ia64/sscdisk.c 1.249 +1 -1 src/sys/isa/fd.c 1.134 +1 -1 src/sys/pc98/pc98/fd.c 1.132 +1 -1 src/sys/pc98/pc98/wd.c 1.47 +1 -1 src/sys/pc98/pc98/wd_cd.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 07:23:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7CC037B401; Tue, 1 Apr 2003 07:23:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7980343FAF; Tue, 1 Apr 2003 07:23:56 -0800 (PST) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31FNu0U037527; Tue, 1 Apr 2003 07:23:56 -0800 (PST) (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31FNtfM037526; Tue, 1 Apr 2003 07:23:55 -0800 (PST) Message-Id: <200304011523.h31FNtfM037526@repoman.freebsd.org> From: Yar Tikhiy Date: Tue, 1 Apr 2003 07:23:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 15:23:57 -0000 yar 2003/04/01 07:23:55 PST FreeBSD src repository Modified files: sbin/mdconfig mdconfig.c Log: Give clearer diagnostics on some cases of invalid combinations of mdconfig(8) command-line arguments. Make mdconfig(8) accept "-a -f file -o options" equally with "-a -f file" (assuming "-t vnode".) Revision Changes Path 1.27 +6 -0 src/sbin/mdconfig/mdconfig.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 07:57:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6971737B404; Tue, 1 Apr 2003 07:57:16 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 801B743F93; Tue, 1 Apr 2003 07:57:15 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.7) with ESMTP id h31FvBD0007212; Tue, 1 Apr 2003 07:57:15 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h31FvBml007211; Tue, 1 Apr 2003 07:57:11 -0800 (PST) Date: Tue, 1 Apr 2003 07:57:11 -0800 From: "David O'Brien" To: Ruslan Ermilov Message-ID: <20030401155711.GA7103@dragon.nuxi.com> References: <200303182320.h2INKbNj065802@repoman.freebsd.org> <20030401120714.GA61909@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030401120714.GA61909@sunbay.com> User-Agent: Mutt/1.4i 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 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/alpha dokern.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 15:57:16 -0000 On Tue, Apr 01, 2003 at 03:07:14PM +0300, Ruslan Ermilov wrote: > On Tue, Mar 18, 2003 at 03:20:37PM -0800, David E. O'Brien wrote: > > obrien 2003/03/18 15:20:37 PST > > > > FreeBSD src repository > > > > Modified files: (Branch: RELENG_4) > > release/alpha dokern.sh > > Log: > > txp should have been added here when drivers.conf rev 1.2.2.1 was committed. > > > > Revision Changes Path > > 1.56.2.4 +1 -0 src/release/alpha/dokern.sh > > > Please back this out. No. Take it to Core as you're so in love with. Do what ever you want. Make 5-CURRENT release/pc98/dokern.sh also agree. From owner-cvs-all@FreeBSD.ORG Tue Apr 1 08:31:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9E4437B401; Tue, 1 Apr 2003 08:31:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C40543FB1; Tue, 1 Apr 2003 08:31:13 -0800 (PST) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31GVD0U042794; Tue, 1 Apr 2003 08:31:13 -0800 (PST) (envelope-from gallatin@repoman.freebsd.org) Received: (from gallatin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31GVDJB042793; Tue, 1 Apr 2003 08:31:13 -0800 (PST) Message-Id: <200304011631.h31GVDJB042793@repoman.freebsd.org> From: Andrew Gallatin Date: Tue, 1 Apr 2003 08:31:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pdq pdq_freebsd.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 16:31:14 -0000 gallatin 2003/04/01 08:31:12 PST FreeBSD src repository Modified files: sys/dev/pdq pdq_freebsd.h Log: Add a crutch so that direct-mapped DMA works on alpha. This is a step toward preventing this driver from crashing an alpha at boot. Tested by: Oliver Lehmann Revision Changes Path 1.6 +4 -0 src/sys/dev/pdq/pdq_freebsd.h From owner-cvs-all@FreeBSD.ORG Tue Apr 1 08:50:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D5BB37B490; Tue, 1 Apr 2003 08:50:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F5AA43F75; Tue, 1 Apr 2003 08:50:04 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31Go40U048859; Tue, 1 Apr 2003 08:50:04 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31Go4o7048858; Tue, 1 Apr 2003 08:50:04 -0800 (PST) Message-Id: <200304011650.h31Go4o7048858@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Apr 2003 08:50:04 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/gofish Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 16:50:09 -0000 ijliao 2003/04/01 08:50:04 PST FreeBSD ports repository Modified files: net Makefile Added files: net/gofish Makefile distinfo pkg-descr pkg-plist Log: add gofish 0.27 GoFish Gopher Server Revision Changes Path 1.950 +1 -0 ports/net/Makefile 1.1 +27 -0 ports/net/gofish/Makefile (new) 1.1 +1 -0 ports/net/gofish/distinfo (new) 1.1 +4 -0 ports/net/gofish/pkg-descr (new) 1.1 +20 -0 ports/net/gofish/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 08:50:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BA0037B412; Tue, 1 Apr 2003 08:50:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EBCD43FB1; Tue, 1 Apr 2003 08:50:24 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31GoN0U048965; Tue, 1 Apr 2003 08:50:23 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31GoNNn048963; Tue, 1 Apr 2003 08:50:23 -0800 (PST) Message-Id: <200304011650.h31GoNNn048963@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Apr 2003 08:50:23 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 16:50:24 -0000 ijliao 2003/04/01 08:50:23 PST FreeBSD ports repository Modified files: . modules Log: gofish --> ports/net/gofish Revision Changes Path 1.6944 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Apr 1 09:25:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC1C437B404 for ; Tue, 1 Apr 2003 09:25:47 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 8995143FB1 for ; Tue, 1 Apr 2003 09:25:44 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 9763 invoked by uid 1000); 1 Apr 2003 17:25:45 -0000 Date: Tue, 1 Apr 2003 09:25:45 -0800 (PST) From: Nate Lawson To: "Matthew N. Dodd" In-Reply-To: <20030401082155.71CE037B4B9@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 17:25:48 -0000 On Tue, 1 Apr 2003, Matthew N. Dodd wrote: > Modified files: > sbin/ping ping.8 ping.c > share/man/man4 inet.4 ip.4 > sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c > ip_var.h > usr.bin/netstat inet.c > Log: > Implement support for RFC 3514 (The Security Flag in the IPv4 Header). > (See: ftp://ftp.rfc-editor.org/in-notes/rfc3514.txt) > > This fulfills the host requirements for userland support by > way of the setsockopt() IP_EVIL_INTENT message. Back this out immediately! It is evil! -Nate From owner-cvs-all@FreeBSD.ORG Tue Apr 1 09:30:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E14937B401; Tue, 1 Apr 2003 09:30:51 -0800 (PST) Received: from ns1.gnf.org (ns1.gnf.org [63.196.132.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2A1743FB1; Tue, 1 Apr 2003 09:30:48 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: from EXCHCLUSTER01.lj.gnf.org (exch02.lj.gnf.org [172.25.10.20]) by ns1.gnf.org (8.12.6p2/8.12.3) with ESMTP id h31HUkZu041196; Tue, 1 Apr 2003 09:30:46 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: from roark.gnf.org ([172.25.24.15]) by EXCHCLUSTER01.lj.gnf.org with Microsoft SMTPSVC(5.0.2195.5329); Tue, 1 Apr 2003 09:30:47 -0800 Received: from roark.gnf.org (localhost [127.0.0.1]) by roark.gnf.org (8.12.6/8.12.6) with ESMTP id h31HUl0L091868; Tue, 1 Apr 2003 09:30:47 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: (from gtetlow@localhost) by roark.gnf.org (8.12.6/8.12.6/Submit) id h31HUhFA091867; Tue, 1 Apr 2003 09:30:43 -0800 (PST) Date: Tue, 1 Apr 2003 09:30:43 -0800 From: Gordon Tetlow To: Nate Lawson Message-ID: <20030401173043.GK71939@roark.gnf.org> References: <20030401082155.71CE037B4B9@hub.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="u3bvv0EcKsvvYeex" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-OriginalArrivalTime: 01 Apr 2003 17:30:47.0372 (UTC) FILETIME=[6E8240C0:01C2F874] cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "Matthew N. Dodd" Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4 inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 17:30:51 -0000 --u3bvv0EcKsvvYeex Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 01, 2003 at 09:25:45AM -0800, Nate Lawson wrote: > On Tue, 1 Apr 2003, Matthew N. Dodd wrote: > > Modified files: > > sbin/ping ping.8 ping.c=20 > > share/man/man4 inet.4 ip.4=20 > > sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c=20 > > ip_var.h=20 > > usr.bin/netstat inet.c=20 > > Log: > > Implement support for RFC 3514 (The Security Flag in the IPv4 Header). > > (See: ftp://ftp.rfc-editor.org/in-notes/rfc3514.txt) > > =20 > > This fulfills the host requirements for userland support by > > way of the setsockopt() IP_EVIL_INTENT message. >=20 > Back this out immediately! It is evil! You need to ask yourself which is better, following the RFC, or being evil? Standards compliant above all else! -gordon --u3bvv0EcKsvvYeex Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+iczDRu2t9DV9ZfsRAtvUAKCusZw9AdJNbbb+ZLKPBI6SmKtTzACfchB1 BS03eTKOseFPsVYLkmcHiQ8= =iJRZ -----END PGP SIGNATURE----- --u3bvv0EcKsvvYeex-- From owner-cvs-all@FreeBSD.ORG Tue Apr 1 09:43:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8497C37B401; Tue, 1 Apr 2003 09:43:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2656243FA3; Tue, 1 Apr 2003 09:43:11 -0800 (PST) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31HhA0U053390; Tue, 1 Apr 2003 09:43:10 -0800 (PST) (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31HhARE053389; Tue, 1 Apr 2003 09:43:10 -0800 (PST) Message-Id: <200304011743.h31HhARE053389@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 1 Apr 2003 09:43:10 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/p5-XML-Sablotron distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 17:43:12 -0000 skv 2003/04/01 09:43:10 PST FreeBSD ports repository Modified files: textproc/p5-XML-Sablotron distinfo Log: Fix distfile checksum. PR: 50210 Revision Changes Path 1.12 +1 -1 ports/textproc/p5-XML-Sablotron/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 1 09:45:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D482737B401; Tue, 1 Apr 2003 09:45:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09ADE43FBD; Tue, 1 Apr 2003 09:45:28 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31HjR0U053561; Tue, 1 Apr 2003 09:45:27 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31HjRZH053560; Tue, 1 Apr 2003 09:45:27 -0800 (PST) Message-Id: <200304011745.h31HjRZH053560@repoman.freebsd.org> From: John Baldwin Date: Tue, 1 Apr 2003 09:45:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/defaults periodic.conf src/etc/periodic/daily 220.backup-distfile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 17:45:29 -0000 jhb 2003/04/01 09:45:27 PST FreeBSD src repository Modified files: etc/defaults periodic.conf Removed files: etc/periodic/daily 220.backup-distfile Log: Complete removal of 320.rdist by removing its entry from periodic.conf and removing the related 220.backup-distfile script and associatd periodic.conf entry. Discussed with: obrien Revision Changes Path 1.25 +0 -6 src/etc/defaults/periodic.conf 1.6 +0 -39 src/etc/periodic/daily/220.backup-distfile (dead) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 09:46:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A55C37B404 for ; Tue, 1 Apr 2003 09:46:38 -0800 (PST) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id D124B43FA3 for ; Tue, 1 Apr 2003 09:46:35 -0800 (PST) (envelope-from silby@silby.com) Received: (qmail 89708 invoked from network); 1 Apr 2003 17:46:34 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 1 Apr 2003 17:46:34 -0000 X-pair-Authenticated: 209.68.2.70 Date: Tue, 1 Apr 2003 11:43:00 -0600 (CST) From: Mike Silbersack To: "Matthew N. Dodd" In-Reply-To: <200304010821.h318Li4Q091687@repoman.freebsd.org> Message-ID: <20030401114055.M1612@odysseus.silby.com> References: <200304010821.h318Li4Q091687@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 17:46:38 -0000 Actually committing to the tree is taking this joke quite a bit too far. Is repo-surgery planned to remove this? Mike "Silby" Silbersack > Implement support for RFC 3514 (The Security Flag in the IPv4 Header). > (See: ftp://ftp.rfc-editor.org/in-notes/rfc3514.txt) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 10:05:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2561037B408; Tue, 1 Apr 2003 10:05:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34F5C43FD7; Tue, 1 Apr 2003 10:05:35 -0800 (PST) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31I5Y0U055761; Tue, 1 Apr 2003 10:05:34 -0800 (PST) (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31I5YBq055760; Tue, 1 Apr 2003 10:05:34 -0800 (PST) Message-Id: <200304011805.h31I5YBq055760@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 1 Apr 2003 10:05:34 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-Apache-DBI Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 18:05:37 -0000 skv 2003/04/01 10:05:34 PST FreeBSD ports repository Modified files: www/p5-Apache-DBI Makefile distinfo pkg-descr pkg-plist Log: Update to 0.91 PR: 50333 Revision Changes Path 1.9 +11 -4 ports/www/p5-Apache-DBI/Makefile 1.4 +1 -1 ports/www/p5-Apache-DBI/distinfo 1.2 +11 -13 ports/www/p5-Apache-DBI/pkg-descr 1.3 +4 -4 ports/www/p5-Apache-DBI/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 1 10:55:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1212137B401; Tue, 1 Apr 2003 10:55:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6A2543FBF; Tue, 1 Apr 2003 10:55:05 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31It50U058815; Tue, 1 Apr 2003 10:55:05 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31It5NZ058814; Tue, 1 Apr 2003 10:55:05 -0800 (PST) Message-Id: <200304011855.h31It5NZ058814@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 10:55:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys disk.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 18:55:06 -0000 phk 2003/04/01 10:55:05 PST FreeBSD src repository Modified files: sys/sys disk.h Log: I think the divorce successed, so stop #including Revision Changes Path 1.39 +1 -2 src/sys/sys/disk.h From owner-cvs-all@FreeBSD.ORG Tue Apr 1 10:55:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E3FA37B401; Tue, 1 Apr 2003 10:55:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E651E43F85; Tue, 1 Apr 2003 10:55:46 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31Itk0U058925; Tue, 1 Apr 2003 10:55:46 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31Itks5058924; Tue, 1 Apr 2003 10:55:46 -0800 (PST) Message-Id: <200304011855.h31Itks5058924@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 10:55:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys bio.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 18:55:47 -0000 phk 2003/04/01 10:55:46 PST FreeBSD src repository Modified files: sys/sys bio.h Log: Remove the #define for bioqdisksort(), it's no longer needed. Revision Changes Path 1.131 +0 -1 src/sys/sys/bio.h From owner-cvs-all@FreeBSD.ORG Tue Apr 1 10:57:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5CAA37B401; Tue, 1 Apr 2003 10:57:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69DD743FB1; Tue, 1 Apr 2003 10:57:14 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31IvE0U058986; Tue, 1 Apr 2003 10:57:14 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31IvEbE058985; Tue, 1 Apr 2003 10:57:14 -0800 (PST) Message-Id: <200304011857.h31IvEbE058985@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 10:57:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_disk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 18:57:15 -0000 phk 2003/04/01 10:57:14 PST FreeBSD src repository Modified files: sys/geom geom_disk.c Log: Include not Revision Changes Path 1.63 +1 -1 src/sys/geom/geom_disk.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 11:00:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 741FF37B401; Tue, 1 Apr 2003 11:00:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1732343F85; Tue, 1 Apr 2003 11:00:39 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31J0c0U059233; Tue, 1 Apr 2003 11:00:38 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31J0cxe059231; Tue, 1 Apr 2003 11:00:38 -0800 (PST) Message-Id: <200304011900.h31J0cxe059231@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 1 Apr 2003 11:00:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_disk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 19:00:39 -0000 phk 2003/04/01 11:00:38 PST FreeBSD src repository Modified files: sys/kern subr_disk.c Log: #include Revision Changes Path 1.74 +1 -0 src/sys/kern/subr_disk.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 11:06:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E85B037B404 for ; Tue, 1 Apr 2003 11:06:50 -0800 (PST) Received: from analog.databits.net (analog.databits.net [198.78.65.155]) by mx1.FreeBSD.org (Postfix) with SMTP id 33A2143FBF for ; Tue, 1 Apr 2003 11:06:49 -0800 (PST) (envelope-from petef@analog.databits.net) Received: (qmail 32774 invoked by uid 1000); 1 Apr 2003 19:05:53 -0000 Date: Tue, 1 Apr 2003 13:05:53 -0600 From: Pete Fritchman To: Mike Silbersack Message-ID: <20030401190553.GB21045@absolutbsd.org> References: <200304010821.h318Li4Q091687@repoman.freebsd.org> <20030401114055.M1612@odysseus.silby.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030401114055.M1612@odysseus.silby.com> User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "Matthew N. Dodd" Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 19:06:51 -0000 ++ 01/04/03 11:43 -0600 - Mike Silbersack: | Actually committing to the tree is taking this joke quite a bit too far. | Is repo-surgery planned to remove this? Please don't back this out, I'll take this to the TRB if necessary. At work, we've already made the appropriate firewall policy changes, and so far, management is quite impressed. Also, if I may make a suggestion, the Evil bit should be set to 0x1 by default - it's the same logic as making a firewall deny everything and just allow the traffic you want. We should explicitly have to say we are _not evil_ when we send packets. --pete From owner-cvs-all@FreeBSD.ORG Tue Apr 1 11:19:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ABE437B404; Tue, 1 Apr 2003 11:19:44 -0800 (PST) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9901C43FAF; Tue, 1 Apr 2003 11:19:42 -0800 (PST) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.8/8.12.8) with ESMTP id h31JJfmk011461; Tue, 1 Apr 2003 21:19:41 +0200 (CEST) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.8/8.12.8/Submit) id h31JJf6n011460; Tue, 1 Apr 2003 21:19:41 +0200 (CEST) Date: Tue, 1 Apr 2003 21:19:41 +0200 From: Wilko Bulte To: Nate Lawson Message-ID: <20030401191941.GA11437@freebie.xs4all.nl> References: <20030401082155.71CE037B4B9@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-OS: FreeBSD 4.8-RC X-PGP: finger wilko@freebsd.org cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: "Matthew N. Dodd" Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4 inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 19:19:45 -0000 On Tue, Apr 01, 2003 at 09:25:45AM -0800, Nate Lawson wrote: > On Tue, 1 Apr 2003, Matthew N. Dodd wrote: > > Modified files: > > sbin/ping ping.8 ping.c > > share/man/man4 inet.4 ip.4 > > sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c > > ip_var.h > > usr.bin/netstat inet.c > > Log: > > Implement support for RFC 3514 (The Security Flag in the IPv4 Header). > > (See: ftp://ftp.rfc-editor.org/in-notes/rfc3514.txt) > > > > This fulfills the host requirements for userland support by > > way of the setsockopt() IP_EVIL_INTENT message. > > Back this out immediately! It is evil! > -Nate It would be better if one would implement IP_EVIL_EMPIRE_REDMOND messages in addition to this one. One could then selectively catch Msoft IP packets. -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte From owner-cvs-all@FreeBSD.ORG Tue Apr 1 11:31:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3197F37B401; Tue, 1 Apr 2003 11:31:06 -0800 (PST) Received: from mailout06.sul.t-online.com (mailout06.sul.t-online.com [194.25.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4B5E43F75; Tue, 1 Apr 2003 11:31:04 -0800 (PST) (envelope-from Alexander@Leidinger.net) Received: from fwd09.sul.t-online.de by mailout06.sul.t-online.com with smtp id 190NdD-0008Ei-0C; Tue, 01 Apr 2003 17:24:59 +0200 Received: from Andro-Beta.Leidinger.net (520065502893-0001@[217.83.31.216]) by fmrl09.sul.t-online.com with esmtp id 190Ncy-0AbTw8C; Tue, 1 Apr 2003 17:24:44 +0200 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) h31FOgOq093313; Tue, 1 Apr 2003 17:24:42 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.7/8.12.7) with SMTP id h31FOe4N080941; Tue, 1 Apr 2003 17:24:40 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Tue, 1 Apr 2003 17:24:40 +0200 From: Alexander Leidinger To: Peter Jeremy Message-Id: <20030401172440.701aaafd.Alexander@Leidinger.net> In-Reply-To: <20030331082023.GE11307@cirb503493.alcatel.com.au> References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030327204935.GA18134@HAL9000.homeunix.com> <20030330175646.281097ad.Alexander@Leidinger.net> <20030331082023.GE11307@cirb503493.alcatel.com.au> X-Mailer: Sylpheed version 0.8.9claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Sender: 520065502893-0001@t-dialin.net cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 19:31:06 -0000 On Mon, 31 Mar 2003 18:20:23 +1000 Peter Jeremy wrote: > It's not clear exactly what this program is intended to test. We noticed that icc does use other values for LDBL_MIN than we do, and instead of just thinking that Intel does it right I wanted to verify it. So I started with tests for float and double. > > The *_MIN > >values (or my test program) at least on i386 machines are wrong. > > The *_MIN values represent the greatest negative value, not the > smallest positive value. *_MIN _is_ the smallest positive value... but the normalized one, not the denormalized one I use. So yes, my program was wrong, but in another way than you suggested. But I have to still say "thank you", your comment resulted in rereading the (hopefully) appropriate docs and noticing the "normalized" in them. Thank you, Alexander. -- 0 and 1. Now what could be so hard about that? http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-cvs-all@FreeBSD.ORG Tue Apr 1 11:38:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F048B37B405 for ; Tue, 1 Apr 2003 11:38:11 -0800 (PST) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 86BD843FBD for ; Tue, 1 Apr 2003 11:38:09 -0800 (PST) (envelope-from silby@silby.com) Received: (qmail 38053 invoked from network); 1 Apr 2003 19:38:08 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 1 Apr 2003 19:38:08 -0000 X-pair-Authenticated: 209.68.2.70 Date: Tue, 1 Apr 2003 13:34:40 -0600 (CST) From: Mike Silbersack To: Pete Fritchman In-Reply-To: <20030401190553.GB21045@absolutbsd.org> Message-ID: <20030401133241.I564@odysseus.silby.com> References: <200304010821.h318Li4Q091687@repoman.freebsd.org> <20030401190553.GB21045@absolutbsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "Matthew N. Dodd" Subject: Re: cvs commit: src/sbin/ping ping.8 ping.csrc/share/man/man4inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 19:38:12 -0000 I bet you wouldn't be laughing if I had committed code which locked out any account named petef as an April Fools joke. Joke commit messages are funny. Committing crap to the repository as a joke is not funny. Mike "Silby" Silbersack On Tue, 1 Apr 2003, Pete Fritchman wrote: > ++ 01/04/03 11:43 -0600 - Mike Silbersack: > | Actually committing to the tree is taking this joke quite a bit too far. > | Is repo-surgery planned to remove this? > > Please don't back this out, I'll take this to the TRB if necessary. At > work, we've already made the appropriate firewall policy changes, and so > far, management is quite impressed. > > Also, if I may make a suggestion, the Evil bit should be set to 0x1 by > default - it's the same logic as making a firewall deny everything and > just allow the traffic you want. We should explicitly have to say we > are _not evil_ when we send packets. > > --pete > From owner-cvs-all@FreeBSD.ORG Tue Apr 1 11:56:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F26B37B404; Tue, 1 Apr 2003 11:56:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9892C43FCB; Tue, 1 Apr 2003 11:56:58 -0800 (PST) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31Juw0U064095; Tue, 1 Apr 2003 11:56:58 -0800 (PST) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31JuwAN064094; Tue, 1 Apr 2003 11:56:58 -0800 (PST) Message-Id: <200304011956.h31JuwAN064094@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Tue, 1 Apr 2003 11:56:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/faad/files patch-frontend-Makefile.am X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 19:56:59 -0000 mdodd 2003/04/01 11:56:58 PST FreeBSD ports repository Modified files: audio/faad/files patch-frontend-Makefile.am Log: Link with CXX to avoid missing symbols in library implemented in C++. Approved by: maintainer Revision Changes Path 1.2 +11 -4 ports/audio/faad/files/patch-frontend-Makefile.am From owner-cvs-all@FreeBSD.ORG Tue Apr 1 11:59:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4842337B401; Tue, 1 Apr 2003 11:59:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9932743FBF; Tue, 1 Apr 2003 11:59:30 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31JxU0U064217; Tue, 1 Apr 2003 11:59:30 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31JxUhO064216; Tue, 1 Apr 2003 11:59:30 -0800 (PST) Message-Id: <200304011959.h31JxUhO064216@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 1 Apr 2003 11:59:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/pc98 dokern.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 19:59:31 -0000 ru 2003/04/01 11:59:30 PST FreeBSD src repository Modified files: release/pc98 dokern.sh Log: Removed redundant lines. Noticed by: obrien Revision Changes Path 1.74 +0 -3 src/release/pc98/dokern.sh From owner-cvs-all@FreeBSD.ORG Tue Apr 1 12:05:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5506137B401; Tue, 1 Apr 2003 12:05:10 -0800 (PST) Received: from cirb503493.alcatel.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85F5143FDF; Tue, 1 Apr 2003 12:05:06 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1])h31K54M2030313; Wed, 2 Apr 2003 06:05:04 +1000 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.8/8.12.8/Submit) id h31K4vEN030309; Wed, 2 Apr 2003 06:04:57 +1000 (EST) Date: Wed, 2 Apr 2003 06:04:57 +1000 From: Peter Jeremy To: Alexander Leidinger Message-ID: <20030401200457.GA30284@cirb503493.alcatel.com.au> References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030327204935.GA18134@HAL9000.homeunix.com> <20030330175646.281097ad.Alexander@Leidinger.net> <20030331082023.GE11307@cirb503493.alcatel.com.au> <20030401172440.701aaafd.Alexander@Leidinger.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030401172440.701aaafd.Alexander@Leidinger.net> User-Agent: Mutt/1.4.1i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 20:05:10 -0000 On Tue, Apr 01, 2003 at 05:24:40PM +0200, Alexander Leidinger wrote: >On Mon, 31 Mar 2003 18:20:23 +1000 >Peter Jeremy wrote: > >> It's not clear exactly what this program is intended to test. > >We noticed that icc does use other values for LDBL_MIN than we do, and >instead of just thinking that Intel does it right I wanted to verify it. >So I started with tests for float and double. The actual digit string forming the constants is not especially important - as long as the compiler interprets that string as the correct FP value. There are a number of test programs intended to verify correct FP behaviour by the CPU and compiler floating around on the net - look at NETLIB or Prof W. Kahan's web site. (I don't have the URL's immediately to hand). >> > The *_MIN >> >values (or my test program) at least on i386 machines are wrong. >> >> The *_MIN values represent the greatest negative value, not the >> smallest positive value. > >*_MIN _is_ the smallest positive value... but the normalized one, not >the denormalized one I use. Mea culpa. I must have disconnected my brain when I was writing that :-(. Peter From owner-cvs-all@FreeBSD.ORG Tue Apr 1 12:18:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 346D837B401; Tue, 1 Apr 2003 12:18:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CADE443FA3; Tue, 1 Apr 2003 12:18:25 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31KIP0U066374; Tue, 1 Apr 2003 12:18:25 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31KIPQ5066373; Tue, 1 Apr 2003 12:18:25 -0800 (PST) Message-Id: <200304012018.h31KIPQ5066373@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 1 Apr 2003 12:18:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gnustep-objc Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 20:18:26 -0000 dinoex 2003/04/01 12:18:25 PST FreeBSD ports repository Modified files: lang/gnustep-objc Makefile Log: - add COMMENT and MAINTAINER - make portlint happier Revision Changes Path 1.35 +5 -2 ports/lang/gnustep-objc/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 1 12:25:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B223737B401; Tue, 1 Apr 2003 12:25:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5419243F3F; Tue, 1 Apr 2003 12:25:47 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31KPl0U067038; Tue, 1 Apr 2003 12:25:47 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31KPlOX067037; Tue, 1 Apr 2003 12:25:47 -0800 (PST) Message-Id: <200304012025.h31KPlOX067037@repoman.freebsd.org> From: Ceri Davies Date: Tue, 1 Apr 2003 12:25:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys connect.2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 20:25:48 -0000 ceri 2003/04/01 12:25:46 PST FreeBSD src repository (doc committer) Modified files: lib/libc/sys connect.2 Log: [1] - Document EHOSTUNREACH as a possible error [2] - Remove a contraction PR: docs/50401 Submitted by: [1] Slaven Rezic MFC after: 1 week Revision Changes Path 1.23 +3 -1 src/lib/libc/sys/connect.2 From owner-cvs-all@FreeBSD.ORG Tue Apr 1 12:32:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DD3737B401; Tue, 1 Apr 2003 12:32:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 412E443FAF; Tue, 1 Apr 2003 12:32:02 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31KW20U067608; Tue, 1 Apr 2003 12:32:02 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31KW1if067607; Tue, 1 Apr 2003 12:32:01 -0800 (PST) Message-Id: <200304012032.h31KW1if067607@repoman.freebsd.org> From: John Baldwin Date: Tue, 1 Apr 2003 12:32:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/periodic/daily Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 20:32:03 -0000 jhb 2003/04/01 12:32:01 PST FreeBSD src repository Modified files: etc/periodic/daily Makefile Log: Remove 220.backup-distfile since it has been deleted. Reported by: mdodd Pointy hat to: jhb Revision Changes Path 1.11 +0 -1 src/etc/periodic/daily/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 1 12:32:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A9BD37B404; Tue, 1 Apr 2003 12:32:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F021A43F93; Tue, 1 Apr 2003 12:32:55 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31KWt0U067701; Tue, 1 Apr 2003 12:32:55 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31KWtMs067700; Tue, 1 Apr 2003 12:32:55 -0800 (PST) Message-Id: <200304012032.h31KWtMs067700@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 1 Apr 2003 12:32:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/mrproject Makefile ports/deskutils/mrproject/files mrproject.sh ports/deskutils/libmrproject Makefile ports/deskutils/libmrproject/files libmrproject.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 20:32:57 -0000 marcus 2003/04/01 12:32:55 PST FreeBSD ports repository Modified files: deskutils/mrproject Makefile deskutils/libmrproject Makefile Added files: deskutils/mrproject/files mrproject.sh deskutils/libmrproject/files libmrproject.sh Log: Make sure to run ldconfig -m for each of the module directories at boot time. This allows mrproject and its API to survive reboots. Reported by: olgeni Adapted from: databases/mysql323-client Revision Changes Path 1.3 +5 -0 ports/deskutils/libmrproject/Makefile 1.1 +16 -0 ports/deskutils/libmrproject/files/libmrproject.sh (new) 1.13 +5 -0 ports/deskutils/mrproject/Makefile 1.1 +16 -0 ports/deskutils/mrproject/files/mrproject.sh (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 13:16:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E30B37B401; Tue, 1 Apr 2003 13:16:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99B0343FA3; Tue, 1 Apr 2003 13:16:47 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31LGl0U076432; Tue, 1 Apr 2003 13:16:47 -0800 (PST) (envelope-from hsu@repoman.freebsd.org) Received: (from hsu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31LGltE076431; Tue, 1 Apr 2003 13:16:47 -0800 (PST) Message-Id: <200304012116.h31LGltE076431@repoman.freebsd.org> From: Jeffrey Hsu Date: Tue, 1 Apr 2003 13:16:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_input.c tcp_var.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 21:16:48 -0000 hsu 2003/04/01 13:16:46 PST FreeBSD src repository Modified files: sys/netinet tcp_input.c tcp_var.h Log: Observe conservation of packets when entering Fast Recovery while doing Limited Transmit. Only artificially inflate the congestion window by 1 segment instead of the usual 3 to take into account the 2 already sent by Limited Transmit. Approved in principle by: Mark Allman , Hari Balakrishnan , Sally Floyd Revision Changes Path 1.203 +21 -3 src/sys/netinet/tcp_input.c 1.88 +1 -0 src/sys/netinet/tcp_var.h From owner-cvs-all@FreeBSD.ORG Tue Apr 1 13:29:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0833137B401; Tue, 1 Apr 2003 13:29:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FA2A43F3F; Tue, 1 Apr 2003 13:29:48 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31LTm0U077148; Tue, 1 Apr 2003 13:29:48 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31LTmQp077147; Tue, 1 Apr 2003 13:29:48 -0800 (PST) Message-Id: <200304012129.h31LTmQp077147@repoman.freebsd.org> From: Ceri Davies Date: Tue, 1 Apr 2003 13:29:48 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/commercial consulting.raw X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 21:29:49 -0000 ceri 2003/04/01 13:29:48 PST FreeBSD doc repository Modified files: en/commercial consulting.raw Log: Add an entry for AYN & Associates. Submitted by: Andrew Y Ng Revision Changes Path 1.83 +8 -0 www/en/commercial/consulting.raw From owner-cvs-all@FreeBSD.ORG Tue Apr 1 14:14:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EF6837B401; Tue, 1 Apr 2003 14:14:27 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 563E543F93; Tue, 1 Apr 2003 14:14:24 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 17E0A66CFA; Tue, 1 Apr 2003 14:14:24 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 05BD412AA; Tue, 1 Apr 2003 14:14:24 -0800 (PST) Date: Tue, 1 Apr 2003 14:14:23 -0800 From: Kris Kennaway To: Sergey Skvortsov Message-ID: <20030401221423.GA5246@rot13.obsecurity.org> References: <200304011743.h31HhARE053389@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline In-Reply-To: <200304011743.h31HhARE053389@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/textproc/p5-XML-Sablotron distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 22:14:27 -0000 --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 01, 2003 at 09:43:10AM -0800, Sergey Skvortsov wrote: > skv 2003/04/01 09:43:10 PST >=20 > FreeBSD ports repository >=20 > Modified files: > textproc/p5-XML-Sablotron distinfo=20 > Log: > Fix distfile checksum. Please note what changed in a followup commit. Kris --2oS5YaxWCcQjTEyO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+ig8/Wry0BWjoQKURAr+6AKD9KorgyYw3pcAJYLMT0wKQhk+mqwCgyAIm PKMguyJm1Dh44KX1d3mp9qY= =BWle -----END PGP SIGNATURE----- --2oS5YaxWCcQjTEyO-- From owner-cvs-all@FreeBSD.ORG Tue Apr 1 14:39:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1172337B405; Tue, 1 Apr 2003 14:39:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E1AF43FCB; Tue, 1 Apr 2003 14:39:32 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31MdW0U082542; Tue, 1 Apr 2003 14:39:32 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31MdWvd082541; Tue, 1 Apr 2003 14:39:32 -0800 (PST) Message-Id: <200304012239.h31MdWvd082541@repoman.freebsd.org> From: Jeff Roberson Date: Tue, 1 Apr 2003 14:39:32 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_mutex.c thr_private.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 22:39:33 -0000 jeff 2003/04/01 14:39:32 PST FreeBSD src repository Modified files: lib/libthr/thread thr_mutex.c thr_private.h Log: - Restore old mutex code from libc_r. It is more standards compliant. This was changed because originally we were blocking on the umtx and allowing the kernel to do the queueing. It was decided that the lib should queue and start the threads in the order it decides and the umtx code would just be used like spinlocks. Revision Changes Path 1.2 +1327 -198 src/lib/libthr/thread/thr_mutex.c 1.2 +36 -6 src/lib/libthr/thread/thr_private.h From owner-cvs-all@FreeBSD.ORG Tue Apr 1 14:40:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F355437B401; Tue, 1 Apr 2003 14:40:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 929EC43F75; Tue, 1 Apr 2003 14:40:30 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31MeU0U082724; Tue, 1 Apr 2003 14:40:30 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31MeUhn082721; Tue, 1 Apr 2003 14:40:30 -0800 (PST) Message-Id: <200304012240.h31MeUhn082721@repoman.freebsd.org> From: Jeff Roberson Date: Tue, 1 Apr 2003 14:40:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_mutex_prioceiling.c thr_setschedparam.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 22:40:31 -0000 jeff 2003/04/01 14:40:30 PST FreeBSD src repository Modified files: lib/libthr/thread thr_mutex_prioceiling.c thr_setschedparam.c Log: - Reenable setschedparam and the prioceiling code now that the mutex code has been restored. Revision Changes Path 1.2 +2 -11 src/lib/libthr/thread/thr_mutex_prioceiling.c 1.2 +8 -8 src/lib/libthr/thread/thr_setschedparam.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 14:41:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F46D37B401; Tue, 1 Apr 2003 14:41:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B82443FB1; Tue, 1 Apr 2003 14:41:42 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31Mff0U083018; Tue, 1 Apr 2003 14:41:41 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31Mff3G083017; Tue, 1 Apr 2003 14:41:41 -0800 (PST) Message-Id: <200304012241.h31Mff3G083017@repoman.freebsd.org> From: Jeff Roberson Date: Tue, 1 Apr 2003 14:41:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_cond.c thr_join.c thr_kern.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 22:41:43 -0000 jeff 2003/04/01 14:41:41 PST FreeBSD src repository Modified files: lib/libthr/thread thr_cond.c thr_join.c thr_kern.c Log: - Don't drop and reacquire giant in thread_suspend(). Change callers to do this manually. This will facilitate the unrolling of giant. - Don't allow giant to recurse anymore. This should never happen. Revision Changes Path 1.2 +2 -0 src/lib/libthr/thread/thr_cond.c 1.2 +2 -0 src/lib/libthr/thread/thr_join.c 1.2 +4 -38 src/lib/libthr/thread/thr_kern.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 14:45:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C038837B401; Tue, 1 Apr 2003 14:45:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CFD343F3F; Tue, 1 Apr 2003 14:45:50 -0800 (PST) (envelope-from anders@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31Mjo0U083235; Tue, 1 Apr 2003 14:45:50 -0800 (PST) (envelope-from anders@repoman.freebsd.org) Received: (from anders@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31Mjonu083234; Tue, 1 Apr 2003 14:45:50 -0800 (PST) Message-Id: <200304012245.h31Mjonu083234@repoman.freebsd.org> From: Anders Nordby Date: Tue, 1 Apr 2003 14:45:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mod_proxy_add_forward Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 22:45:51 -0000 anders 2003/04/01 14:45:50 PST FreeBSD ports repository Modified files: www/mod_proxy_add_forward Makefile distinfo pkg-plist Log: Clean up pkg-plist. Correct bad distfile checksum by updating to version 20020710. Only comments changed. Use a distfile with version number, to avoid unnecessary bad checksums again. Revision Changes Path 1.6 +3 -3 ports/www/mod_proxy_add_forward/Makefile 1.2 +1 -1 ports/www/mod_proxy_add_forward/distinfo 1.2 +2 -2 ports/www/mod_proxy_add_forward/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 1 14:49:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2440737B401; Tue, 1 Apr 2003 14:49:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA86243F3F; Tue, 1 Apr 2003 14:49:30 -0800 (PST) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31MnU0U083339; Tue, 1 Apr 2003 14:49:30 -0800 (PST) (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31MnUEb083338; Tue, 1 Apr 2003 14:49:30 -0800 (PST) Message-Id: <200304012249.h31MnUEb083338@repoman.freebsd.org> From: Gerald Pfeifer Date: Tue, 1 Apr 2003 14:49:30 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc32 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 22:49:31 -0000 gerald 2003/04/01 14:49:30 PST FreeBSD ports repository Modified files: lang/gcc32 Makefile Log: Simplify the shell code used by the pre-patch target. Suggested by: obrien Reviewed by: Dan Nelson Revision Changes Path 1.147 +4 -5 ports/lang/gcc32/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 1 15:06:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2640937B401; Tue, 1 Apr 2003 15:06:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B76A43F75; Tue, 1 Apr 2003 15:06:03 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31N630U085624; Tue, 1 Apr 2003 15:06:03 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31N63dU085623; Tue, 1 Apr 2003 15:06:03 -0800 (PST) Message-Id: <200304012306.h31N63dU085623@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 15:06:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/php-gtk Makefile distinfo pkg-descr pkg-message pkg-plist patch-ext_combobutton_combobutton.defs patch-ext_gtkhtml_config.m4 php.ini-dist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 23:06:04 -0000 edwin 2003/04/01 15:06:03 PST FreeBSD ports repository Modified files: x11-toolkits Makefile Added files: x11-toolkits/php-gtk Makefile distinfo pkg-descr pkg-message pkg-plist x11-toolkits/php-gtk/files patch-ext_combobutton_combobutton.defs patch-ext_gtkhtml_config.m4 patch-ext_gtkhtml_gtkhtml.defs patch-ext_gtkhtml_gtkhtml.overrides php.ini-dist Log: New port: php-gtk Great! I had planned to port this application. Here are some patches to the original submitted PR. They upgrade to v. 0.5.2, force the build of self contained extensions, install examples (all tested and working), fix some typos in the code, USE_GNOMENG, and add a BUILD_DEP towards phpize. I have also added knobs to build gdkpixbuf and gtkhtml extensions (not scintilla). They build OK, but I have been unable to test them => they are not installed. PR: ports/46201 Submitted by: Th. Thomas. Revision Changes Path 1.227 +1 -0 ports/x11-toolkits/Makefile 1.1 +106 -0 ports/x11-toolkits/php-gtk/Makefile (new) 1.1 +1 -0 ports/x11-toolkits/php-gtk/distinfo (new) 1.1 +10 -0 ports/x11-toolkits/php-gtk/files/patch-ext_combobutton_combobutton.defs (new) 1.1 +11 -0 ports/x11-toolkits/php-gtk/files/patch-ext_gtkhtml_config.m4 (new) 1.1 +19 -0 ports/x11-toolkits/php-gtk/files/patch-ext_gtkhtml_gtkhtml.defs (new) 1.1 +12 -0 ports/x11-toolkits/php-gtk/files/patch-ext_gtkhtml_gtkhtml.overrides (new) 1.1 +789 -0 ports/x11-toolkits/php-gtk/files/php.ini-dist (new) 1.1 +10 -0 ports/x11-toolkits/php-gtk/pkg-descr (new) 1.1 +8 -0 ports/x11-toolkits/php-gtk/pkg-message (new) 1.1 +17 -0 ports/x11-toolkits/php-gtk/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 15:06:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5448A37B401; Tue, 1 Apr 2003 15:06:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAA5243F93; Tue, 1 Apr 2003 15:06:32 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31N6W0U085662; Tue, 1 Apr 2003 15:06:32 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31N6W8i085661; Tue, 1 Apr 2003 15:06:32 -0800 (PST) Message-Id: <200304012306.h31N6W8i085661@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 15:06:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 23:06:33 -0000 edwin 2003/04/01 15:06:32 PST FreeBSD ports repository Modified files: . modules Log: php-gtk --> ports/x11-toolkits/php-gtk Revision Changes Path 1.6945 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Apr 1 15:18:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8D1A37B401; Tue, 1 Apr 2003 15:18:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8872243F75; Tue, 1 Apr 2003 15:18:13 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31NID0U086347; Tue, 1 Apr 2003 15:18:13 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31NIDmv086346; Tue, 1 Apr 2003 15:18:13 -0800 (PST) Message-Id: <200304012318.h31NIDmv086346@repoman.freebsd.org> From: Jake Burkholder Date: Tue, 1 Apr 2003 15:18:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 23:18:14 -0000 jake 2003/04/01 15:18:13 PST FreeBSD src repository Modified files: sys/sparc64/sparc64 machdep.c Log: - Set the version number in the mcontext in get_mcontext and check it in set_mcontext. - Don't make assumptions about the alignment of the mcontext inside of the ucontext; we have to save the floating point registers to the pcb and then copy to the mcontext. Revision Changes Path 1.83 +9 -6 src/sys/sparc64/sparc64/machdep.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 15:21:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC54137B401; Tue, 1 Apr 2003 15:21:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E9F343FBD; Tue, 1 Apr 2003 15:21:17 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31NLG0U086581; Tue, 1 Apr 2003 15:21:16 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31NLGkR086580; Tue, 1 Apr 2003 15:21:16 -0800 (PST) Message-Id: <200304012321.h31NLGkR086580@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 15:21:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/dillo Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 23:21:18 -0000 edwin 2003/04/01 15:21:16 PST FreeBSD ports repository Modified files: www/dillo Makefile distinfo Log: dillo port needs updating The latest version of dillo is 0.7.1.2 PR: ports/50530 Submitted by: arlankfo@141.com Revision Changes Path 1.19 +5 -1 ports/www/dillo/Makefile 1.8 +1 -1 ports/www/dillo/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 1 15:25:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CC5137B401; Tue, 1 Apr 2003 15:25:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0CF843FB1; Tue, 1 Apr 2003 15:25:18 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31NPI0U086962; Tue, 1 Apr 2003 15:25:18 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31NPI3p086961; Tue, 1 Apr 2003 15:25:18 -0800 (PST) Message-Id: <200304012325.h31NPI3p086961@repoman.freebsd.org> From: Jake Burkholder Date: Tue, 1 Apr 2003 15:25:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_context.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 23:25:19 -0000 jake 2003/04/01 15:25:18 PST FreeBSD src repository Modified files: sys/kern kern_context.c Log: - Fix UC_COPY_SIZE. Adding up the size of structure fields doesn't take alignment into account. - Return EJUSTRETURN from set_context on success to avoid clobbering the first 2 out registers with td_retval on sparc64. Revision Changes Path 1.3 +3 -4 src/sys/kern/kern_context.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 15:28:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C300737B401; Tue, 1 Apr 2003 15:28:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F2DD43FBD; Tue, 1 Apr 2003 15:28:51 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31NSp0U087102; Tue, 1 Apr 2003 15:28:51 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31NSpY7087101; Tue, 1 Apr 2003 15:28:51 -0800 (PST) Message-Id: <200304012328.h31NSpY7087101@repoman.freebsd.org> From: Jake Burkholder Date: Tue, 1 Apr 2003 15:28:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sparc64/gen Makefile.inc _ctx_start.S makecontext.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 23:28:52 -0000 jake 2003/04/01 15:28:51 PST FreeBSD src repository Modified files: lib/libc/sparc64/gen Makefile.inc Added files: lib/libc/sparc64/gen _ctx_start.S makecontext.c Log: Implement makecontext. Revision Changes Path 1.7 +4 -3 src/lib/libc/sparc64/gen/Makefile.inc 1.1 +36 -0 src/lib/libc/sparc64/gen/_ctx_start.S (new) 1.1 +89 -0 src/lib/libc/sparc64/gen/makecontext.c (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 15:42:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B957337B401; Tue, 1 Apr 2003 15:42:32 -0800 (PST) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id E446943F75; Tue, 1 Apr 2003 15:42:31 -0800 (PST) (envelope-from eischen@pcnet1.pcnet.com) Received: from pcnet1.pcnet.com (localhost [127.0.0.1]) by mail.pcnet.com (8.12.8/8.12.1) with ESMTP id h31NgVBg010876; Tue, 1 Apr 2003 18:42:31 -0500 (EST) Received: from localhost (eischen@localhost)h31NgUoQ010872; Tue, 1 Apr 2003 18:42:30 -0500 (EST) Date: Tue, 1 Apr 2003 18:42:30 -0500 (EST) From: Daniel Eischen To: Jake Burkholder In-Reply-To: <200304012325.h31NPI3p086961@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_context.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 23:42:33 -0000 On Tue, 1 Apr 2003, Jake Burkholder wrote: > jake 2003/04/01 15:25:18 PST > > FreeBSD src repository > > Modified files: > sys/kern kern_context.c > Log: > - Fix UC_COPY_SIZE. Adding up the size of structure fields doesn't take > alignment into account. > - Return EJUSTRETURN from set_context on success to avoid clobbering the > first 2 out registers with td_retval on sparc64. Oh shit. I forgot I have some local changes lying around to fix being able to set/swapcontext on an interrupted context (not formed by getcontext). When getcontext() is called, the return value registers need to be cleared so that 0 is returned after a subsequent setcontext(): ret = getcontext(&uc); ... setcontext(&uc); The above should work as well as: void sighandler(int sig, siginfo_t *info, ucontext_t *ucp) { ... setcontext(ucp); } The latter case doesn't want to return 0 in the syscall; it wants to return EJUSTRETURN. In the former case, you need to be able to return 0. I think you need to fix get_mcontext() so that it clears the return values or it breaks the first case. My changes add a third parameter to get_mcontext(struct thread *td, mcontext_t *mcp, int clear_retval) so that you can tell it to clear the return values. When getcontext() calls get_mcontext() you want to clear the return values in the context, but when get_mcontext() is called by sendsig() or by the KSE system, you don't want to clear the return values. Is this making any sense? -- Dan Eischen From owner-cvs-all@FreeBSD.ORG Tue Apr 1 15:52:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3D1337B401; Tue, 1 Apr 2003 15:52:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54B7843F93; Tue, 1 Apr 2003 15:52:25 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h31NqP0U088949; Tue, 1 Apr 2003 15:52:25 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h31NqPEg088948; Tue, 1 Apr 2003 15:52:25 -0800 (PST) Message-Id: <200304012352.h31NqPEg088948@repoman.freebsd.org> From: Jake Burkholder Date: Tue, 1 Apr 2003 15:52:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/arch/sparc64 Makefile.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 23:52:26 -0000 jake 2003/04/01 15:52:25 PST FreeBSD src repository Added files: lib/libthr/arch/sparc64 Makefile.inc Log: Add MD makefile. Revision Changes Path 1.1 +3 -0 src/lib/libthr/arch/sparc64/Makefile.inc (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 16:42:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A272537B401; Tue, 1 Apr 2003 16:42:20 -0800 (PST) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 641BE43F93; Tue, 1 Apr 2003 16:42:19 -0800 (PST) (envelope-from jake@k6.locore.ca) Received: from k6.locore.ca (localhost.locore.ca [127.0.0.1]) by k6.locore.ca (8.12.8/8.12.8) with ESMTP id h320msxS044815; Tue, 1 Apr 2003 19:48:54 -0500 (EST) (envelope-from jake@k6.locore.ca) Received: (from jake@localhost) by k6.locore.ca (8.12.8/8.12.8/Submit) id h320ms2B044814; Tue, 1 Apr 2003 19:48:54 -0500 (EST) Date: Tue, 1 Apr 2003 19:48:54 -0500 From: Jake Burkholder To: Daniel Eischen Message-ID: <20030402004854.GA44206@locore.ca> References: <200304012325.h31NPI3p086961@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_context.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 00:42:21 -0000 Apparently, On Tue, Apr 01, 2003 at 06:42:30PM -0500, Daniel Eischen said words to the effect of; > On Tue, 1 Apr 2003, Jake Burkholder wrote: > > > jake 2003/04/01 15:25:18 PST > > > > FreeBSD src repository > > > > Modified files: > > sys/kern kern_context.c > > Log: > > - Fix UC_COPY_SIZE. Adding up the size of structure fields doesn't take > > alignment into account. > > - Return EJUSTRETURN from set_context on success to avoid clobbering the > > first 2 out registers with td_retval on sparc64. > > Oh shit. I forgot I have some local changes lying around > to fix being able to set/swapcontext on an interrupted > context (not formed by getcontext). When getcontext() > is called, the return value registers need to be cleared > so that 0 is returned after a subsequent setcontext(): > > ret = getcontext(&uc); > ... > setcontext(&uc); > > The above should work as well as: > > void > sighandler(int sig, siginfo_t *info, ucontext_t *ucp) > { > ... > setcontext(ucp); > } > > The latter case doesn't want to return 0 in the syscall; > it wants to return EJUSTRETURN. In the former case, you > need to be able to return 0. > > I think you need to fix get_mcontext() so that it clears > the return values or it breaks the first case. > > My changes add a third parameter to > get_mcontext(struct thread *td, mcontext_t *mcp, int clear_retval) > so that you can tell it to clear the return values. > When getcontext() calls get_mcontext() you want to clear > the return values in the context, but when get_mcontext() > is called by sendsig() or by the KSE system, you don't > want to clear the return values. > > Is this making any sense? Yes, I see what you mean. The problem on sparc64 is that the arguments setup in makecontext get clobbered. They're passed in the same registers as the return value for the system call, so when syscall copies td_retval into the registers it clobbers the arguments that were set. I can hack around it by just copying the registers that would be clobbered into td_retval if that would work better. execve has the same problem, we use the above hack there. Jake From owner-cvs-all@FreeBSD.ORG Tue Apr 1 17:00:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3D0A37B401; Tue, 1 Apr 2003 17:00:20 -0800 (PST) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83A8A43F3F; Tue, 1 Apr 2003 17:00:19 -0800 (PST) (envelope-from eischen@pcnet1.pcnet.com) Received: from pcnet1.pcnet.com (localhost [127.0.0.1]) by mail.pcnet.com (8.12.8/8.12.1) with ESMTP id h3210IBg020333; Tue, 1 Apr 2003 20:00:18 -0500 (EST) Received: from localhost (eischen@localhost)h3210IUZ020329; Tue, 1 Apr 2003 20:00:18 -0500 (EST) Date: Tue, 1 Apr 2003 20:00:18 -0500 (EST) From: Daniel Eischen To: Jake Burkholder In-Reply-To: <20030402004854.GA44206@locore.ca> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_context.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 01:00:21 -0000 On Tue, 1 Apr 2003, Jake Burkholder wrote: > Apparently, On Tue, Apr 01, 2003 at 06:42:30PM -0500, > Daniel Eischen said words to the effect of; > > > On Tue, 1 Apr 2003, Jake Burkholder wrote: > > > > > jake 2003/04/01 15:25:18 PST > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/kern kern_context.c > > > Log: > > > - Fix UC_COPY_SIZE. Adding up the size of structure fields doesn't take > > > alignment into account. > > > - Return EJUSTRETURN from set_context on success to avoid clobbering the > > > first 2 out registers with td_retval on sparc64. > > > > Oh shit. I forgot I have some local changes lying around > > to fix being able to set/swapcontext on an interrupted > > context (not formed by getcontext). When getcontext() > > is called, the return value registers need to be cleared > > so that 0 is returned after a subsequent setcontext(): > > > > ret = getcontext(&uc); > > ... > > setcontext(&uc); > > > > The above should work as well as: > > > > void > > sighandler(int sig, siginfo_t *info, ucontext_t *ucp) > > { > > ... > > setcontext(ucp); > > } > > > > The latter case doesn't want to return 0 in the syscall; > > it wants to return EJUSTRETURN. In the former case, you > > need to be able to return 0. > > > > I think you need to fix get_mcontext() so that it clears > > the return values or it breaks the first case. > > > > My changes add a third parameter to > > get_mcontext(struct thread *td, mcontext_t *mcp, int clear_retval) > > so that you can tell it to clear the return values. > > When getcontext() calls get_mcontext() you want to clear > > the return values in the context, but when get_mcontext() > > is called by sendsig() or by the KSE system, you don't > > want to clear the return values. > > > > Is this making any sense? > > Yes, I see what you mean. The problem on sparc64 is that the arguments > setup in makecontext get clobbered. They're passed in the same registers > as the return value for the system call, so when syscall copies td_retval > into the registers it clobbers the arguments that were set. I can hack > around it by just copying the registers that would be clobbered into > td_retval if that would work better. execve has the same problem, we > use the above hack there. I think the changes you made are correct; swapcontext() and setcontext() now return EJUSTRETURN if there were no errors. But we just need to fix getcontext() so that it clears the return value registers in the mcontext. This needs to be an option, though, because other uses of get_mcontext don't want that behaviour. This would still work on sparc64, right? Unless I am misunderstanding something. -- Dan Eischen From owner-cvs-all@FreeBSD.ORG Tue Apr 1 17:05:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DBFD37B401; Tue, 1 Apr 2003 17:05:04 -0800 (PST) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 728CB43FB1; Tue, 1 Apr 2003 17:05:03 -0800 (PST) (envelope-from eischen@pcnet1.pcnet.com) Received: from pcnet1.pcnet.com (localhost [127.0.0.1]) by mail.pcnet.com (8.12.8/8.12.1) with ESMTP id h32152Bg020944; Tue, 1 Apr 2003 20:05:02 -0500 (EST) Received: from localhost (eischen@localhost)h3215255020941; Tue, 1 Apr 2003 20:05:02 -0500 (EST) Date: Tue, 1 Apr 2003 20:05:02 -0500 (EST) From: Daniel Eischen To: Jake Burkholder In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_context.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 01:05:04 -0000 On Tue, 1 Apr 2003, Daniel Eischen wrote: > On Tue, 1 Apr 2003, Jake Burkholder wrote: > > Yes, I see what you mean. The problem on sparc64 is that the arguments > > setup in makecontext get clobbered. They're passed in the same registers > > as the return value for the system call, so when syscall copies td_retval > > into the registers it clobbers the arguments that were set. I can hack > > around it by just copying the registers that would be clobbered into > > td_retval if that would work better. execve has the same problem, we > > use the above hack there. > > I think the changes you made are correct; swapcontext() and > setcontext() now return EJUSTRETURN if there were no errors. > But we just need to fix getcontext() so that it clears the and swapcontext() too. > return value registers in the mcontext. This needs to be > an option, though, because other uses of get_mcontext don't > want that behaviour. > > This would still work on sparc64, right? Unless I am > misunderstanding something. -- Dan Eischen From owner-cvs-all@FreeBSD.ORG Tue Apr 1 17:19:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCB5937B401; Tue, 1 Apr 2003 17:19:18 -0800 (PST) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id A253743F75; Tue, 1 Apr 2003 17:19:16 -0800 (PST) (envelope-from jake@k6.locore.ca) Received: from k6.locore.ca (localhost.locore.ca [127.0.0.1]) by k6.locore.ca (8.12.8/8.12.8) with ESMTP id h321PsxS044993; Tue, 1 Apr 2003 20:25:54 -0500 (EST) (envelope-from jake@k6.locore.ca) Received: (from jake@localhost) by k6.locore.ca (8.12.8/8.12.8/Submit) id h321Pr8e044992; Tue, 1 Apr 2003 20:25:53 -0500 (EST) Date: Tue, 1 Apr 2003 20:25:53 -0500 From: Jake Burkholder To: Daniel Eischen Message-ID: <20030402012553.GB44206@locore.ca> References: <20030402004854.GA44206@locore.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_context.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 01:19:19 -0000 Apparently, On Tue, Apr 01, 2003 at 08:00:18PM -0500, Daniel Eischen said words to the effect of; > On Tue, 1 Apr 2003, Jake Burkholder wrote: > > > Apparently, On Tue, Apr 01, 2003 at 06:42:30PM -0500, > > Daniel Eischen said words to the effect of; > > > > > On Tue, 1 Apr 2003, Jake Burkholder wrote: > > > > > > > jake 2003/04/01 15:25:18 PST > > > > > > > > FreeBSD src repository > > > > > > > > Modified files: > > > > sys/kern kern_context.c > > > > Log: > > > > - Fix UC_COPY_SIZE. Adding up the size of structure fields doesn't take > > > > alignment into account. > > > > - Return EJUSTRETURN from set_context on success to avoid clobbering the > > > > first 2 out registers with td_retval on sparc64. > > > > > > Oh shit. I forgot I have some local changes lying around > > > to fix being able to set/swapcontext on an interrupted > > > context (not formed by getcontext). When getcontext() > > > is called, the return value registers need to be cleared > > > so that 0 is returned after a subsequent setcontext(): > > > > > > ret = getcontext(&uc); > > > ... > > > setcontext(&uc); > > > > > > The above should work as well as: > > > > > > void > > > sighandler(int sig, siginfo_t *info, ucontext_t *ucp) > > > { > > > ... > > > setcontext(ucp); > > > } > > > > > > The latter case doesn't want to return 0 in the syscall; > > > it wants to return EJUSTRETURN. In the former case, you > > > need to be able to return 0. > > > > > > I think you need to fix get_mcontext() so that it clears > > > the return values or it breaks the first case. > > > > > > My changes add a third parameter to > > > get_mcontext(struct thread *td, mcontext_t *mcp, int clear_retval) > > > so that you can tell it to clear the return values. > > > When getcontext() calls get_mcontext() you want to clear > > > the return values in the context, but when get_mcontext() > > > is called by sendsig() or by the KSE system, you don't > > > want to clear the return values. > > > > > > Is this making any sense? > > > > Yes, I see what you mean. The problem on sparc64 is that the arguments > > setup in makecontext get clobbered. They're passed in the same registers > > as the return value for the system call, so when syscall copies td_retval > > into the registers it clobbers the arguments that were set. I can hack > > around it by just copying the registers that would be clobbered into > > td_retval if that would work better. execve has the same problem, we > > use the above hack there. > > I think the changes you made are correct; swapcontext() and > setcontext() now return EJUSTRETURN if there were no errors. > But we just need to fix getcontext() so that it clears the > return value registers in the mcontext. This needs to be > an option, though, because other uses of get_mcontext don't > want that behaviour. > > This would still work on sparc64, right? Unless I am > misunderstanding something. I see. Yes that would work fine. Jake From owner-cvs-all@FreeBSD.ORG Tue Apr 1 18:29:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4797437B401; Tue, 1 Apr 2003 18:29:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A99DD43F75; Tue, 1 Apr 2003 18:29:32 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h322TW0U006546; Tue, 1 Apr 2003 18:29:32 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h322TW5e006545; Tue, 1 Apr 2003 18:29:32 -0800 (PST) Message-Id: <200304020229.h322TW5e006545@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 18:29:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/makepasswd pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 02:29:33 -0000 edwin 2003/04/01 18:29:32 PST FreeBSD ports repository Modified files: security/makepasswd pkg-descr Log: reformat the pkg-descr, as pointed out by adamw@ Revision Changes Path 1.2 +3 -5 ports/security/makepasswd/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Apr 1 18:35:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 156BE37B401; Tue, 1 Apr 2003 18:35:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7ED743F85; Tue, 1 Apr 2003 18:34:59 -0800 (PST) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h322Yx0U007038; Tue, 1 Apr 2003 18:34:59 -0800 (PST) (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h322Yxjc007037; Tue, 1 Apr 2003 18:34:59 -0800 (PST) Message-Id: <200304020234.h322Yxjc007037@repoman.freebsd.org> From: Adam Weinberger Date: Tue, 1 Apr 2003 18:34:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/wmmemmon/files patch-src::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 02:35:00 -0000 adamw 2003/04/01 18:34:59 PST FreeBSD ports repository Added files: sysutils/wmmemmon/files patch-src::Makefile.in Log: Use port-supplied dockapp.h instead of the one installed by libdockapp, if present. Approved by: pat (maintainer) Revision Changes Path 1.1 +20 -0 ports/sysutils/wmmemmon/files/patch-src::Makefile.in (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 18:46:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DB6837B401; Tue, 1 Apr 2003 18:46:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A5BF43F85; Tue, 1 Apr 2003 18:46:40 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h322kd0U007817; Tue, 1 Apr 2003 18:46:39 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h322kdQO007816; Tue, 1 Apr 2003 18:46:39 -0800 (PST) Message-Id: <200304020246.h322kdQO007816@repoman.freebsd.org> From: Warner Losh Date: Tue, 1 Apr 2003 18:46:39 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/rio Makefile ports/audio/rio/files patch-ab patch-ad X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 02:46:40 -0000 imp 2003/04/01 18:46:39 PST FreeBSD ports repository Modified files: audio/rio Makefile audio/rio/files patch-ab Added files: audio/rio/files patch-ad Log: Fix building on -current. Kludge around the ffs issue and use time_t where a time_t is ment, not a long. Revision Changes Path 1.11 +0 -4 ports/audio/rio/Makefile 1.3 +3 -1 ports/audio/rio/files/patch-ab 1.1 +20 -0 ports/audio/rio/files/patch-ad (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 19:03:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6851137B401; Tue, 1 Apr 2003 19:03:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0909943F85; Tue, 1 Apr 2003 19:03:40 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3233d0U009931; Tue, 1 Apr 2003 19:03:39 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3233dt7009930; Tue, 1 Apr 2003 19:03:39 -0800 (PST) Message-Id: <200304020303.h3233dt7009930@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 1 Apr 2003 19:03:39 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/wv Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 03:03:40 -0000 edwin 2003/04/01 19:03:39 PST FreeBSD ports repository Modified files: textproc/wv Makefile Log: 'wv' port does not specify lynx as a depends When using 'portinstall wv' nothing is mention about depending on lynx. however when using 'wvText' it mentions that it can't find lynx so the text output will look bad. PR: ports/45611 Submitted by: Nick Jennings Revision Changes Path 1.22 +1 -0 ports/textproc/wv/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 1 19:05:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E74637B401; Tue, 1 Apr 2003 19:05:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98BA143FA3; Tue, 1 Apr 2003 19:05:40 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3235e0U010147; Tue, 1 Apr 2003 19:05:40 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3235ekQ010146; Tue, 1 Apr 2003 19:05:40 -0800 (PST) Message-Id: <200304020305.h3235ekQ010146@repoman.freebsd.org> From: Jeff Roberson Date: Tue, 1 Apr 2003 19:05:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_cancel.c thr_clean.c thr_cond.c thr_create.c thr_detach.c thr_exit.c thr_find_thread.c thr_gc.c thr_info.c thr_init.c thr_join.c thr_mutex.c thr_private.h thr_resume_np.c thr_self.c thr_sem.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 03:05:41 -0000 jeff 2003/04/01 19:05:40 PST FreeBSD src repository Modified files: lib/libthr/thread thr_cancel.c thr_clean.c thr_cond.c thr_create.c thr_detach.c thr_exit.c thr_find_thread.c thr_gc.c thr_info.c thr_init.c thr_join.c thr_mutex.c thr_private.h thr_resume_np.c thr_self.c thr_sem.c thr_setschedparam.c thr_sig.c thr_spec.c thr_spinlock.c Log: - Define curthread as _get_curthread() and remove all direct calls to _get_curthread(). This is similar to the kernel's curthread. Doing this saves stack overhead and is more convenient to the programmer. - Pass the pointer to the newly created thread to _thread_init(). - Remove _get_curthread_slow(). Revision Changes Path 1.2 +0 -10 src/lib/libthr/thread/thr_cancel.c 1.2 +0 -2 src/lib/libthr/thread/thr_clean.c 1.3 +0 -6 src/lib/libthr/thread/thr_cond.c 1.2 +4 -12 src/lib/libthr/thread/thr_create.c 1.2 +0 -4 src/lib/libthr/thread/thr_detach.c 1.2 +0 -3 src/lib/libthr/thread/thr_exit.c 1.2 +0 -2 src/lib/libthr/thread/thr_find_thread.c 1.2 +0 -1 src/lib/libthr/thread/thr_gc.c 1.2 +0 -1 src/lib/libthr/thread/thr_info.c 1.2 +0 -16 src/lib/libthr/thread/thr_init.c 1.3 +0 -1 src/lib/libthr/thread/thr_join.c 1.3 +5 -8 src/lib/libthr/thread/thr_mutex.c 1.3 +9 -5 src/lib/libthr/thread/thr_private.h 1.2 +0 -4 src/lib/libthr/thread/thr_resume_np.c 1.2 +1 -1 src/lib/libthr/thread/thr_self.c 1.2 +0 -2 src/lib/libthr/thread/thr_sem.c 1.3 +0 -2 src/lib/libthr/thread/thr_setschedparam.c 1.2 +0 -1 src/lib/libthr/thread/thr_sig.c 1.2 +2 -9 src/lib/libthr/thread/thr_spec.c 1.2 +0 -6 src/lib/libthr/thread/thr_spinlock.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 19:33:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8815337B401; Tue, 1 Apr 2003 19:33:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2619C43FAF; Tue, 1 Apr 2003 19:33:33 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h323XW0U011877; Tue, 1 Apr 2003 19:33:32 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h323XWrq011876; Tue, 1 Apr 2003 19:33:32 -0800 (PST) Message-Id: <200304020333.h323XWrq011876@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 1 Apr 2003 19:33:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/guppi/files patch-src_libguppispecfns_const.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 03:33:34 -0000 marcus 2003/04/01 19:33:32 PST FreeBSD ports repository Added files: math/guppi/files patch-src_libguppispecfns_const.c Log: Fix build on -CURRENT. PR: 48839 Revision Changes Path 1.1 +12 -0 ports/math/guppi/files/patch-src_libguppispecfns_const.c (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 1 19:44:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC22637B40C; Tue, 1 Apr 2003 19:44:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00A7743FD7; Tue, 1 Apr 2003 19:44:44 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h323ih0U012627; Tue, 1 Apr 2003 19:44:43 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h323ihT6012626; Tue, 1 Apr 2003 19:44:43 -0800 (PST) Message-Id: <200304020344.h323ihT6012626@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 1 Apr 2003 19:44:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ocaml-findlib Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 03:44:45 -0000 ijliao 2003/04/01 19:44:43 PST FreeBSD ports repository Modified files: devel/ocaml-findlib Makefile distinfo Log: upgrade to 0.8.1 Revision Changes Path 1.7 +1 -1 ports/devel/ocaml-findlib/Makefile 1.4 +1 -1 ports/devel/ocaml-findlib/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 1 20:25:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7493F37B401; Tue, 1 Apr 2003 20:25:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14CD543FAF; Tue, 1 Apr 2003 20:25:49 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h324Pm0U016113; Tue, 1 Apr 2003 20:25:48 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h324Pm8G016112; Tue, 1 Apr 2003 20:25:48 -0800 (PST) Message-Id: <200304020425.h324Pm8G016112@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 1 Apr 2003 20:25:48 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/openssh Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 04:25:49 -0000 dinoex 2003/04/01 20:25:48 PST FreeBSD ports repository Modified files: security/openssh Makefile distinfo Log: - Update to 3.6.1 Revision Changes Path 1.115 +1 -1 ports/security/openssh/Makefile 1.37 +2 -2 ports/security/openssh/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 1 20:26:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79F7537B401; Tue, 1 Apr 2003 20:26:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C9DC43F75; Tue, 1 Apr 2003 20:26:55 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h324Qt0U016192; Tue, 1 Apr 2003 20:26:55 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h324Qtsu016191; Tue, 1 Apr 2003 20:26:55 -0800 (PST) Message-Id: <200304020426.h324Qtsu016191@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 1 Apr 2003 20:26:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/openssh-portable Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 04:26:56 -0000 dinoex 2003/04/01 20:26:55 PST FreeBSD ports repository Modified files: security/openssh-portable Makefile distinfo Log: - Update to 3.6.1p1 Revision Changes Path 1.65 +1 -1 ports/security/openssh-portable/Makefile 1.18 +1 -2 ports/security/openssh-portable/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 1 20:29:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1420537B401; Tue, 1 Apr 2003 20:29:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A809C43FD7; Tue, 1 Apr 2003 20:29:03 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h324T30U016321; Tue, 1 Apr 2003 20:29:03 -0800 (PST) (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h324T3FH016320; Tue, 1 Apr 2003 20:29:03 -0800 (PST) Message-Id: <200304020429.h324T3FH016320@repoman.freebsd.org> From: Kevin Lo Date: Tue, 1 Apr 2003 20:29:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/nstreams Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 04:29:04 -0000 kevlo 2003/04/01 20:29:03 PST FreeBSD ports repository Modified files: net/nstreams Makefile distinfo Log: Update to version 1.0.4 PR: 50527 Submitted by: MAINTAINER Revision Changes Path 1.11 +1 -1 ports/net/nstreams/Makefile 1.4 +1 -1 ports/net/nstreams/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 1 20:35:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53ED937B401; Tue, 1 Apr 2003 20:35:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6E7643F3F; Tue, 1 Apr 2003 20:35:21 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h324ZL0U016874; Tue, 1 Apr 2003 20:35:21 -0800 (PST) (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h324ZLQa016873; Tue, 1 Apr 2003 20:35:21 -0800 (PST) Message-Id: <200304020435.h324ZLQa016873@repoman.freebsd.org> From: Kevin Lo Date: Tue, 1 Apr 2003 20:35:21 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/qconfirm Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 04:35:22 -0000 kevlo 2003/04/01 20:35:21 PST FreeBSD ports repository Modified files: mail/qconfirm Makefile distinfo pkg-plist Log: Update to 0.9.2 PR: 50516 Submitted by: MAINTAINER Revision Changes Path 1.12 +15 -9 ports/mail/qconfirm/Makefile 1.9 +1 -1 ports/mail/qconfirm/distinfo 1.6 +25 -19 ports/mail/qconfirm/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 1 20:48:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2E1C37B401; Tue, 1 Apr 2003 20:48:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43EAF43F93; Tue, 1 Apr 2003 20:48:35 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h324mZ0U022759; Tue, 1 Apr 2003 20:48:35 -0800 (PST) (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h324mYtH022758; Tue, 1 Apr 2003 20:48:34 -0800 (PST) Message-Id: <200304020448.h324mYtH022758@repoman.freebsd.org> From: Kevin Lo Date: Tue, 1 Apr 2003 20:48:34 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/global Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 04:48:36 -0000 kevlo 2003/04/01 20:48:34 PST FreeBSD ports repository Modified files: devel/global Makefile distinfo Log: Update to 4.5.2 PR: 50497 Submitted by: MAINTAINER Revision Changes Path 1.13 +1 -1 ports/devel/global/Makefile 1.10 +1 -1 ports/devel/global/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 1 21:09:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1E8737B401; Tue, 1 Apr 2003 21:09:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 811F743FB1; Tue, 1 Apr 2003 21:09:34 -0800 (PST) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3259Y0U025035; Tue, 1 Apr 2003 21:09:34 -0800 (PST) (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3259Y3V025034; Tue, 1 Apr 2003 21:09:34 -0800 (PST) Message-Id: <200304020509.h3259Y3V025034@repoman.freebsd.org> From: Adam Weinberger Date: Tue, 1 Apr 2003 21:09:34 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/xrick Makefile distinfo pkg-plist ports/games/xrick/files patch-Makefile patch-config X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 05:09:35 -0000 adamw 2003/04/01 21:09:34 PST FreeBSD ports repository Modified files: games/xrick Makefile distinfo pkg-plist Added files: games/xrick/files patch-Makefile Removed files: games/xrick/files patch-config Log: Update to 021212. PR: 50508 Submitted by: David Siebörger (maintainer) Revision Changes Path 1.5 +10 -5 ports/games/xrick/Makefile 1.2 +1 -1 ports/games/xrick/distinfo 1.1 +22 -0 ports/games/xrick/files/patch-Makefile (new) 1.2 +0 -40 ports/games/xrick/files/patch-config (dead) 1.2 +2 -0 ports/games/xrick/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 1 21:20:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 125D037B401; Tue, 1 Apr 2003 21:20:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D71B43F93; Tue, 1 Apr 2003 21:20:32 -0800 (PST) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h325KW0U025888; Tue, 1 Apr 2003 21:20:32 -0800 (PST) (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h325KWH3025887; Tue, 1 Apr 2003 21:20:32 -0800 (PST) Message-Id: <200304020520.h325KWH3025887@repoman.freebsd.org> From: Adam Weinberger Date: Tue, 1 Apr 2003 21:20:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/tidy-devel Makefile distinfo ports/www/tidy-devel/files patch-include_platform.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 05:20:33 -0000 adamw 2003/04/01 21:20:32 PST FreeBSD ports repository Modified files: www/tidy-devel Makefile distinfo www/tidy-devel/files patch-include_platform.h Log: Update to 030330. PR: 50505 Submitted by: Thierry Thomas (maintainer) Revision Changes Path 1.33 +1 -1 ports/www/tidy-devel/Makefile 1.24 +1 -1 ports/www/tidy-devel/distinfo 1.3 +2 -20 ports/www/tidy-devel/files/patch-include_platform.h From owner-cvs-all@FreeBSD.ORG Tue Apr 1 21:30:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1422937B401; Tue, 1 Apr 2003 21:30:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A80C343F3F; Tue, 1 Apr 2003 21:30:32 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h325UW0U026578; Tue, 1 Apr 2003 21:30:32 -0800 (PST) (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h325UWlT026576; Tue, 1 Apr 2003 21:30:32 -0800 (PST) Message-Id: <200304020530.h325UWlT026576@repoman.freebsd.org> From: Joseph Koshy Date: Tue, 1 Apr 2003 21:30:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ctags Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 05:30:33 -0000 jkoshy 2003/04/01 21:30:32 PST FreeBSD ports repository Modified files: devel/ctags Makefile distinfo Log: Upgrade to v5.5. Revision Changes Path 1.25 +1 -1 ports/devel/ctags/Makefile 1.15 +1 -1 ports/devel/ctags/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 1 21:51:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4DEE37B401; Tue, 1 Apr 2003 21:51:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 649CB43FCB; Tue, 1 Apr 2003 21:51:59 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h325pw0U028031; Tue, 1 Apr 2003 21:51:58 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h325pvmS028030; Tue, 1 Apr 2003 21:51:57 -0800 (PST) Message-Id: <200304020551.h325pvmS028030@repoman.freebsd.org> From: Peter Wemm Date: Tue, 1 Apr 2003 21:51:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access access.unclassified X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 05:52:00 -0000 peter 2003/04/01 21:51:57 PST FreeBSD src repository Modified files: . access access.unclassified Log: Move lars from access.unclassified to access Revision Changes Path 1.589 +1 -0 CVSROOT/access 1.635 +0 -1 CVSROOT/access.unclassified From owner-cvs-all@FreeBSD.ORG Tue Apr 1 21:54:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFCE537B401; Tue, 1 Apr 2003 21:54:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 919A443F75; Tue, 1 Apr 2003 21:54:43 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h325sh0U028135; Tue, 1 Apr 2003 21:54:43 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h325shx7028134; Tue, 1 Apr 2003 21:54:43 -0800 (PST) Message-Id: <200304020554.h325shx7028134@repoman.freebsd.org> From: Peter Wemm Date: Tue, 1 Apr 2003 21:54:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 05:54:44 -0000 peter 2003/04/01 21:54:43 PST FreeBSD ports repository Modified files: . access Log: Move lars from access.unclassified to access Revision Changes Path 1.534 +1 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Tue Apr 1 22:10:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2584537B401; Tue, 1 Apr 2003 22:10:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B600543F93; Tue, 1 Apr 2003 22:10:10 -0800 (PST) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h326AA0U029974; Tue, 1 Apr 2003 22:10:10 -0800 (PST) (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h326AA5F029973; Tue, 1 Apr 2003 22:10:10 -0800 (PST) Message-Id: <200304020610.h326AA5F029973@repoman.freebsd.org> From: Adam Weinberger Date: Tue, 1 Apr 2003 22:10:10 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/flexbackup Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 06:10:11 -0000 adamw 2003/04/01 22:10:10 PST FreeBSD ports repository Modified files: sysutils/flexbackup Makefile distinfo Log: Update to 1.0.3. PR: 50500 Submitted by: John Reynolds (maintainer) Revision Changes Path 1.16 +1 -1 ports/sysutils/flexbackup/Makefile 1.5 +1 -1 ports/sysutils/flexbackup/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 1 22:21:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB3A837B401; Tue, 1 Apr 2003 22:21:50 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04B7043FA3; Tue, 1 Apr 2003 22:21:49 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id QAA19346; Wed, 2 Apr 2003 16:21:31 +1000 Date: Wed, 2 Apr 2003 16:21:30 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Peter Jeremy In-Reply-To: <20030401200457.GA30284@cirb503493.alcatel.com.au> Message-ID: <20030402154250.X25489@gamplex.bde.org> References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030330175646.281097ad.Alexander@Leidinger.net> <20030331082023.GE11307@cirb503493.alcatel.com.au> <20030401172440.701aaafd.Alexander@Leidinger.net> <20030401200457.GA30284@cirb503493.alcatel.com.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Alexander Leidinger cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 06:21:51 -0000 On Wed, 2 Apr 2003, Peter Jeremy wrote: > On Tue, Apr 01, 2003 at 05:24:40PM +0200, Alexander Leidinger wrote: > >On Mon, 31 Mar 2003 18:20:23 +1000 > >Peter Jeremy wrote: > > > >> It's not clear exactly what this program is intended to test. > > > >We noticed that icc does use other values for LDBL_MIN than we do, and > >instead of just thinking that Intel does it right I wanted to verify it. This might be caused by icc actually understanding the target's default precision for long doubles (FreeBSD changes the hardware default of 64-bit to 53-bit for technical reasons). > >So I started with tests for float and double. > > The actual digit string forming the constants is not especially > important - as long as the compiler interprets that string as the > correct FP value. There are a number of test programs intended to I think compilers are required to diagnose overflow. gcc -Wmumble reports the overflow for the current i386 LDBL_MAX if you increase the last digit in it by 1 (which corresponds to rounding the infinitely precise value up instead of down). However, since gcc doesn't understand the target's precision, its overflow threshold is wrong, so it permits a value of LDBL_MAX (the one in the i386 float.h) that causes overflow when used: %%% $ cat z.c #include #include long double x, y, zero; static void print_ld(long double *dp) { unsigned char *cp; int i; for (cp = (unsigned char *)(void *)dp, i = 0; i < sizeof(*dp); i++) printf("%02x", cp[i]); printf("\n"); } int main(void) { x = LDBL_MAX; y = LDBL_MAX + zero; /* This overflows. */ print_ld(&x); print_ld(&y); } $ cc -o z z.c $ ./z fffffffffffffffffe7f0000 0000000000000080ff7f0000 %%% The first value printed is the 64-bit-precision LDBL_MAX (with 2 bytes of padding). The second value is +Inf. Overflow can also be seen by checking the overflow bit using gdb or fpgetsticky(). Note that although LDBL_MAX is defined as the maximum representable long double value, and the 64-bit-precision LDBL_MAX is representable, it must be considered as an unsupported magic value since there is no way to produce it without invoking undefined behaviour. Undefined behaviour includes compiler/library bugs like generating the wrong bits for LBDL max and not trimming extra precision given by hardware math functions. Script to compute LDBL_MAX to 19 digits with 64 and 63-bit precisions: %%% #!/bin/sh bc < verify correct FP behaviour by the CPU and compiler floating around on > the net - look at NETLIB or Prof W. Kahan's web site. (I don't have > the URL's immediately to hand). ucbtest is good but is too old to cover much of C99. I haven't found anything anywhere near as good and up to date. Bruce From owner-cvs-all@FreeBSD.ORG Tue Apr 1 22:25:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B57F837B401; Tue, 1 Apr 2003 22:25:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 515C043F3F; Tue, 1 Apr 2003 22:25:15 -0800 (PST) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h326PF0U031399; Tue, 1 Apr 2003 22:25:15 -0800 (PST) (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h326PFdt031398; Tue, 1 Apr 2003 22:25:15 -0800 (PST) Message-Id: <200304020625.h326PFdt031398@repoman.freebsd.org> From: Adam Weinberger Date: Tue, 1 Apr 2003 22:25:14 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/socklog Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 06:25:16 -0000 adamw 2003/04/01 22:25:14 PST FreeBSD ports repository Modified files: sysutils/socklog Makefile pkg-plist Log: From PR: - Use socklog's native build mechanism - Allow user to override CC and CFLAGS settings - Install additional documentation (note: COPYING is not a copy of GPL, but a 3-clause BSD-type license) - Bump PORTREVISION due to changed package PR: 50518 Submitted by: Sergei Kolobov (maintainer) Revision Changes Path 1.6 +13 -7 ports/sysutils/socklog/Makefile 1.3 +3 -0 ports/sysutils/socklog/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 1 22:26:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEE0737B401; Tue, 1 Apr 2003 22:26:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D49643FA3; Tue, 1 Apr 2003 22:26:39 -0800 (PST) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h326Qd0U031456; Tue, 1 Apr 2003 22:26:39 -0800 (PST) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h326Qd9U031455; Tue, 1 Apr 2003 22:26:39 -0800 (PST) Message-Id: <200304020626.h326Qd9U031455@repoman.freebsd.org> From: Hiroki Sato Date: Tue, 1 Apr 2003 22:26:38 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/ja index.xsl where.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 06:26:40 -0000 hrs 2003/04/01 22:26:38 PST FreeBSD doc repository Modified files: ja index.xsl where.sgml Log: Fix incorrect links. Pointed out by: Koga Youichirou Revision Changes Path 1.25 +3 -3 www/ja/index.xsl 1.30 +8 -8 www/ja/where.sgml From owner-cvs-all@FreeBSD.ORG Tue Apr 1 22:46:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44EBF37B401; Tue, 1 Apr 2003 22:46:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA2E643F75; Tue, 1 Apr 2003 22:46:43 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h326kh0U032939; Tue, 1 Apr 2003 22:46:43 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h326khcj032938; Tue, 1 Apr 2003 22:46:43 -0800 (PST) Message-Id: <200304020646.h326khcj032938@repoman.freebsd.org> From: Jeff Roberson Date: Tue, 1 Apr 2003 22:46:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 06:46:44 -0000 jeff 2003/04/01 22:46:43 PST FreeBSD src repository Modified files: sys/kern sched_ule.c Log: - Add in support for KSEs with 0 slice values on the run queue. If we try to select a KSE with a slice of 0 we will update its slice and insert it onto the next queue. - Pass the KSE instead of the ksegrp into sched_slice(). This more accurately reflects the behavior of the code. Slices are granted to kses. - Add a function kseq_nice_min() which finds the smallest nice value assigned to the kseg of any KSE on the queue. - Rewrite the logic in sched_slice(). Add a large comment describing the new slice selection scheme. To summarize, slices are assigned based on the nice value. Priorities are still calculated based on the nice and interactivity of a process. Slice sizes of 0 may be granted for KSEs whos nice is 20 or futher away from the lowest nice on the run queue. Other nice values are scaled across the range [min, min+20]. This fixes ULEs bad behavior with positively niced processes. Revision Changes Path 1.17 +91 -35 src/sys/kern/sched_ule.c From owner-cvs-all@FreeBSD.ORG Tue Apr 1 23:59:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26BEA37B401; Tue, 1 Apr 2003 23:59:17 -0800 (PST) Received: from cirb503493.alcatel.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D80343FBD; Tue, 1 Apr 2003 23:59:15 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1])h327xCM2030873; Wed, 2 Apr 2003 17:59:13 +1000 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.8/8.12.8/Submit) id h327x5el030872; Wed, 2 Apr 2003 17:59:06 +1000 (EST) Date: Wed, 2 Apr 2003 17:59:05 +1000 From: Peter Jeremy To: Bruce Evans Message-ID: <20030402075905.GA30835@cirb503493.alcatel.com.au> References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030327204935.GA18134@HAL9000.homeunix.com> <20030330175646.281097ad.Alexander@Leidinger.net> <20030331082023.GE11307@cirb503493.alcatel.com.au> <20030401172440.701aaafd.Alexander@Leidinger.net> <20030401200457.GA30284@cirb503493.alcatel.com.au> <20030402154250.X25489@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030402154250.X25489@gamplex.bde.org> User-Agent: Mutt/1.4.1i cc: Alexander Leidinger cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 07:59:17 -0000 On Wed, Apr 02, 2003 at 04:21:30PM +1000, Bruce Evans wrote: >On Wed, 2 Apr 2003, Peter Jeremy wrote: > >> On Tue, Apr 01, 2003 at 05:24:40PM +0200, Alexander Leidinger wrote: >> >We noticed that icc does use other values for LDBL_MIN than we do, and >> >instead of just thinking that Intel does it right I wanted to verify it. > >This might be caused by icc actually understanding the target's default >precision for long doubles (FreeBSD changes the hardware default of 64-bit >to 53-bit for technical reasons). Is this also true on ia64? And the LDBL_* constants for sparc64 are for 113-bit fractions. I was going to mention this but thought it had changed since all the LDBL_* constants have been changed to 64-bit fraction values (they are 53-bit in -STABLE). Which is more wrong: LDBL_* constants that are "correct" but unusable because the CPU is set to "round to double" or LBDL_* constants that match the CPU rounding but not the compiler's "long double" type? >ucbtest is good but is too old to cover much of C99. I haven't found >anything anywhere near as good and up to date. I was also thinking of paranoia - which has been imported into gcc as enquire. It's even older than ucbtest and does a good job of generating all the float.h constants - but it doesn't check that the CPU actually implements IEEE arithmetic correctly. Peter From owner-cvs-all@FreeBSD.ORG Wed Apr 2 00:02:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 168DF37B401; Wed, 2 Apr 2003 00:02:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6F0243FA3; Wed, 2 Apr 2003 00:02:27 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3282R0U039901; Wed, 2 Apr 2003 00:02:27 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3282RTk039900; Wed, 2 Apr 2003 00:02:27 -0800 (PST) Message-Id: <200304020802.h3282RTk039900@repoman.freebsd.org> From: Jake Burkholder Date: Wed, 2 Apr 2003 00:02:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 support.s src/sys/kern kern_umtx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 08:02:28 -0000 jake 2003/04/02 00:02:27 PST FreeBSD src repository Modified files: sys/i386/i386 support.s sys/kern kern_umtx.c Log: - Make casuptr return the old value of the location we're trying to update, and change the umtx code to expect this. Reviewed by: jeff Revision Changes Path 1.95 +4 -5 src/sys/i386/i386/support.s 1.2 +13 -10 src/sys/kern/kern_umtx.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 00:03:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1350F37B401; Wed, 2 Apr 2003 00:03:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A725743F3F; Wed, 2 Apr 2003 00:03:42 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3283g0U040945; Wed, 2 Apr 2003 00:03:42 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3283gaq040944; Wed, 2 Apr 2003 00:03:42 -0800 (PST) Message-Id: <200304020803.h3283gaq040944@repoman.freebsd.org> From: Jake Burkholder Date: Wed, 2 Apr 2003 00:03:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 vm_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 08:03:43 -0000 jake 2003/04/02 00:03:42 PST FreeBSD src repository Modified files: sys/sparc64/sparc64 vm_machdep.c Log: Implement cpu_thread_setup. Fix cpu_set_upcall. Revision Changes Path 1.43 +9 -3 src/sys/sparc64/sparc64/vm_machdep.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 00:15:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9D7737B401; Wed, 2 Apr 2003 00:15:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5152143F3F; Wed, 2 Apr 2003 00:15:08 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h328F80U042239; Wed, 2 Apr 2003 00:15:08 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h328F8jG042238; Wed, 2 Apr 2003 00:15:08 -0800 (PST) Message-Id: <200304020815.h328F8jG042238@repoman.freebsd.org> From: Jake Burkholder Date: Wed, 2 Apr 2003 00:15:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/arch/sparc64 Makefile.inc src/lib/libthr/arch/sparc64/sparc64 _setcurthread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 08:15:09 -0000 jake 2003/04/02 00:15:08 PST FreeBSD src repository Modified files: lib/libthr/arch/sparc64 Makefile.inc Added files: lib/libthr/arch/sparc64/sparc64 _setcurthread.c Log: Implement _get_curthread and _set_curthread. This is especially easy. Revision Changes Path 1.2 +2 -0 src/lib/libthr/arch/sparc64/Makefile.inc 1.1 +56 -0 src/lib/libthr/arch/sparc64/sparc64/_setcurthread.c (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 00:21:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7C1737B401; Wed, 2 Apr 2003 00:21:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 568D743F75; Wed, 2 Apr 2003 00:21:25 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h328LP0U042741; Wed, 2 Apr 2003 00:21:25 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h328LP2r042736; Wed, 2 Apr 2003 00:21:25 -0800 (PST) Message-Id: <200304020821.h328LP2r042736@repoman.freebsd.org> From: Jeff Roberson Date: Wed, 2 Apr 2003 00:21:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 08:21:26 -0000 jeff 2003/04/02 00:21:25 PST FreeBSD src repository Modified files: sys/kern sched_ule.c Log: - I meant divide by two and not shift by two in SCHED_PRI_NHALF. Revision Changes Path 1.18 +1 -1 src/sys/kern/sched_ule.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 00:22:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EF1437B401; Wed, 2 Apr 2003 00:22:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E81C43F3F; Wed, 2 Apr 2003 00:22:34 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h328MX0U042981; Wed, 2 Apr 2003 00:22:33 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h328MXuY042980; Wed, 2 Apr 2003 00:22:33 -0800 (PST) Message-Id: <200304020822.h328MXuY042980@repoman.freebsd.org> From: Jeff Roberson Date: Wed, 2 Apr 2003 00:22:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 08:22:35 -0000 jeff 2003/04/02 00:22:33 PST FreeBSD src repository Modified files: sys/kern sched_ule.c Log: - Make the interactivity calculator decay faster. - Make the pcpu estimator update faster. Revision Changes Path 1.19 +2 -2 src/sys/kern/sched_ule.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 00:27:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5A1C37B417; Wed, 2 Apr 2003 00:27:10 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACB9E43F93; Wed, 2 Apr 2003 00:27:09 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h328R9t95128; Wed, 2 Apr 2003 03:27:09 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Wed, 2 Apr 2003 03:27:09 -0500 (EST) From: Jeff Roberson To: Jake Burkholder In-Reply-To: <200304020815.h328F8jG042238@repoman.freebsd.org> Message-ID: <20030402032700.F64602-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/arch/sparc64 Makefile.inc src/lib/libthr/arch/sparc64/sparc64 _setcurthread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 08:27:11 -0000 Totally rad. On Wed, 2 Apr 2003, Jake Burkholder wrote: > jake 2003/04/02 00:15:08 PST > > FreeBSD src repository > > Modified files: > lib/libthr/arch/sparc64 Makefile.inc > Added files: > lib/libthr/arch/sparc64/sparc64 _setcurthread.c > Log: > Implement _get_curthread and _set_curthread. This is especially easy. > > Revision Changes Path > 1.2 +2 -0 src/lib/libthr/arch/sparc64/Makefile.inc > 1.1 +56 -0 src/lib/libthr/arch/sparc64/sparc64/_setcurthread.c (new) > From owner-cvs-all@FreeBSD.ORG Wed Apr 2 00:56:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B0D837B401; Wed, 2 Apr 2003 00:56:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33FBA43FA3; Wed, 2 Apr 2003 00:56:54 -0800 (PST) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h328us0U051202; Wed, 2 Apr 2003 00:56:54 -0800 (PST) (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h328urhl051201; Wed, 2 Apr 2003 00:56:53 -0800 (PST) Message-Id: <200304020856.h328urhl051201@repoman.freebsd.org> From: Adam Weinberger Date: Wed, 2 Apr 2003 00:56:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/9menu Makefile distinfo ports/x11-wm/9menu/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 08:56:55 -0000 adamw 2003/04/02 00:56:53 PST FreeBSD ports repository Modified files: x11-wm/9menu Makefile distinfo x11-wm/9menu/files patch-aa Log: Update to 1.6. Also, use MAKEFILE= instead of copying files over other ones in WRKSRC. Fix some formatting, and change MAINTAINER to be the submitter of this PR. PR: 50052 Submitted by: Serge Gagnon Revision Changes Path 1.17 +7 -7 ports/x11-wm/9menu/Makefile 1.3 +1 -1 ports/x11-wm/9menu/distinfo 1.2 +1 -1 ports/x11-wm/9menu/files/patch-aa From owner-cvs-all@FreeBSD.ORG Wed Apr 2 01:20:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 282CC37B405; Wed, 2 Apr 2003 01:20:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CBE743F75; Wed, 2 Apr 2003 01:20:08 -0800 (PST) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h329K80U053511; Wed, 2 Apr 2003 01:20:08 -0800 (PST) (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h329K8M9053509; Wed, 2 Apr 2003 01:20:08 -0800 (PST) Message-Id: <200304020920.h329K8M9053509@repoman.freebsd.org> From: Maxim Konovalov Date: Wed, 2 Apr 2003 01:20:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/jail jail.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 09:20:10 -0000 maxim 2003/04/02 01:20:08 PST FreeBSD src repository Modified files: usr.sbin/jail jail.c Log: o Fix error messages formatting, style. Prodded by: bde Reviewed by: bde Revision Changes Path 1.10 +22 -29 src/usr.sbin/jail/jail.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 02:18:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6F0537B404; Wed, 2 Apr 2003 02:18:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C609743FE1; Wed, 2 Apr 2003 02:18:19 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32AIJ0U058208; Wed, 2 Apr 2003 02:18:19 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32AIJw7058207; Wed, 2 Apr 2003 02:18:19 -0800 (PST) Message-Id: <200304021018.h32AIJw7058207@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 02:18:19 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games Makefile ports/games/tetris Makefile distinfo pkg-descr pkg-plist ports/games/tetris/files mktetristarball patch-Makefile patch-pathnames.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 10:18:21 -0000 edwin 2003/04/02 02:18:19 PST FreeBSD ports repository Modified files: games Makefile Added files: games/tetris Makefile distinfo pkg-descr pkg-plist games/tetris/files mktetristarball patch-Makefile patch-pathnames.h Log: New port: games/tetris, taken from OpenBSD's base This is a textual version of Tetris. OpenBSD took it from NetBSD. PR: ports/50535 Submitted by: Yonatan@xpert.com Revision Changes Path 1.530 +1 -0 ports/games/Makefile 1.1 +28 -0 ports/games/tetris/Makefile (new) 1.1 +1 -0 ports/games/tetris/distinfo (new) 1.1 +12 -0 ports/games/tetris/files/mktetristarball (new) 1.1 +29 -0 ports/games/tetris/files/patch-Makefile (new) 1.1 +8 -0 ports/games/tetris/files/patch-pathnames.h (new) 1.1 +6 -0 ports/games/tetris/pkg-descr (new) 1.1 +2 -0 ports/games/tetris/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 02:20:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9731E37B401; Wed, 2 Apr 2003 02:20:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0180A43FB1; Wed, 2 Apr 2003 02:20:26 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32AKP0U058384; Wed, 2 Apr 2003 02:20:25 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32AKPnu058382; Wed, 2 Apr 2003 02:20:25 -0800 (PST) Message-Id: <200304021020.h32AKPnu058382@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 02:20:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 10:20:26 -0000 edwin 2003/04/02 02:20:25 PST FreeBSD ports repository Modified files: . modules Log: tetris --> ports/games/tetris Revision Changes Path 1.6946 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 02:22:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F85737B401; Wed, 2 Apr 2003 02:22:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2620C43F75; Wed, 2 Apr 2003 02:22:40 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32AMd0U058765; Wed, 2 Apr 2003 02:22:40 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32AMd8f058764; Wed, 2 Apr 2003 02:22:39 -0800 (PST) Message-Id: <200304021022.h32AMd8f058764@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 02:22:39 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security Makefile ports/security/amap Makefile distinfo pkg-descr pkg-plist ports/security/amap/files patch-Makefile.am patch-amap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 10:22:40 -0000 edwin 2003/04/02 02:22:39 PST FreeBSD ports repository Modified files: security Makefile Added files: security/amap Makefile distinfo pkg-descr pkg-plist security/amap/files patch-Makefile.am patch-amap.c Log: New port: security/amap - application mapper This is amap- the application mapper. It tries to identify applications that do not run on thier default port. PR: ports/50218 Submitted by: Yonatan@xpert.com Revision Changes Path 1.389 +1 -0 ports/security/Makefile 1.1 +32 -0 ports/security/amap/Makefile (new) 1.1 +1 -0 ports/security/amap/distinfo (new) 1.1 +16 -0 ports/security/amap/files/patch-Makefile.am (new) 1.1 +12 -0 ports/security/amap/files/patch-amap.c (new) 1.1 +5 -0 ports/security/amap/pkg-descr (new) 1.1 +5 -0 ports/security/amap/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 02:22:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3836837B401; Wed, 2 Apr 2003 02:22:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9BCF43FE1; Wed, 2 Apr 2003 02:22:54 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32AMs0U058803; Wed, 2 Apr 2003 02:22:54 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32AMs0R058802; Wed, 2 Apr 2003 02:22:54 -0800 (PST) Message-Id: <200304021022.h32AMs0R058802@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 02:22:54 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 10:22:55 -0000 edwin 2003/04/02 02:22:54 PST FreeBSD ports repository Modified files: . modules Log: amap --> ports/security/amap Revision Changes Path 1.6947 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 02:28:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4715237B401; Wed, 2 Apr 2003 02:28:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B27DD43FE3; Wed, 2 Apr 2003 02:28:48 -0800 (PST) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32ASm0U059212; Wed, 2 Apr 2003 02:28:48 -0800 (PST) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32ASmXe059211; Wed, 2 Apr 2003 02:28:48 -0800 (PST) Message-Id: <200304021028.h32ASmXe059211@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Wed, 2 Apr 2003 02:28:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip.h ip_input.c ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 10:28:49 -0000 mdodd 2003/04/02 02:28:48 PST FreeBSD src repository Modified files: sys/netinet ip.h ip_input.c ip_output.c Log: Sync constant define with NetBSD. Requested by: Tom Spindler Revision Changes Path 1.23 +1 -1 src/sys/netinet/ip.h 1.233 +1 -1 src/sys/netinet/ip_input.c 1.182 +5 -4 src/sys/netinet/ip_output.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 02:38:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F092C37B401; Wed, 2 Apr 2003 02:38:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F00E43FA3; Wed, 2 Apr 2003 02:38:08 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Ac80U059868; Wed, 2 Apr 2003 02:38:08 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32Ac85l059867; Wed, 2 Apr 2003 02:38:08 -0800 (PST) Message-Id: <200304021038.h32Ac85l059867@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 02:38:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/xw Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 10:38:09 -0000 edwin 2003/04/02 02:38:08 PST FreeBSD ports repository Modified files: sysutils/xw Makefile Log: Give the tarballif sysutils/xw a new home. PR: ports/49071 Submitted by: Yonatan@xpert.com Revision Changes Path 1.12 +1 -1 ports/sysutils/xw/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 02:43:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACB8137B401; Wed, 2 Apr 2003 02:43:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B93243FB1; Wed, 2 Apr 2003 02:43:03 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Ah30U060336; Wed, 2 Apr 2003 02:43:03 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32Ah3rX060335; Wed, 2 Apr 2003 02:43:03 -0800 (PST) Message-Id: <200304021043.h32Ah3rX060335@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 02:43:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/sloth Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 10:43:04 -0000 edwin 2003/04/02 02:43:02 PST FreeBSD ports repository Modified files: sysutils/sloth Makefile Log: remove dead mastersite PR: ports/49068 Submitted by: Yonatan@xpert.com Revision Changes Path 1.6 +1 -2 ports/sysutils/sloth/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 02:49:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D22B537B401; Wed, 2 Apr 2003 02:49:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 369BF43F85; Wed, 2 Apr 2003 02:49:49 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Ann0U060567; Wed, 2 Apr 2003 02:49:49 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32Anmmq060566; Wed, 2 Apr 2003 02:49:48 -0800 (PST) Message-Id: <200304021049.h32Anmmq060566@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Wed, 2 Apr 2003 02:49:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pc98/pc98 syscons.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 10:49:50 -0000 nyan 2003/04/02 02:49:48 PST FreeBSD src repository Modified files: sys/pc98/pc98 syscons.c Log: Merged from sys/dev/syscons/syscons.c revision 1.400. Revision Changes Path 1.189 +1 -1 src/sys/pc98/pc98/syscons.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 02:50:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC07F37B401; Wed, 2 Apr 2003 02:50:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8849F43FA3; Wed, 2 Apr 2003 02:50:38 -0800 (PST) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Aoc0U060750; Wed, 2 Apr 2003 02:50:38 -0800 (PST) (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32AocwF060748; Wed, 2 Apr 2003 02:50:38 -0800 (PST) Message-Id: <200304021050.h32AocwF060748@repoman.freebsd.org> From: Alexander Leidinger Date: Wed, 2 Apr 2003 02:50:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/icc Makefile ports/lang/icc/files patch-ia32::bin::icc patch-ia32::bin::icpc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 10:50:39 -0000 netchild 2003/04/02 02:50:38 PST FreeBSD ports repository Modified files: lang/icc Makefile lang/icc/files patch-ia32::bin::icc patch-ia32::bin::icpc Log: The new version of icc adds -I include paths before the standard include path, thus adding a system path with -I results in not respecting the sunstitute headers. This results in problems because we have some important changes there. Parts of this commit where Submitted by: marius@alchemy.franken.de Revision Changes Path 1.31 +1 -0 ports/lang/icc/Makefile 1.3 +1 -1 ports/lang/icc/files/patch-ia32::bin::icc 1.3 +1 -1 ports/lang/icc/files/patch-ia32::bin::icpc From owner-cvs-all@FreeBSD.ORG Wed Apr 2 02:51:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFF1A37B401; Wed, 2 Apr 2003 02:51:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FE0243FAF; Wed, 2 Apr 2003 02:51:07 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Ap70U060982; Wed, 2 Apr 2003 02:51:07 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32Ap6KE060979; Wed, 2 Apr 2003 02:51:06 -0800 (PST) Message-Id: <200304021051.h32Ap6KE060979@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Wed, 2 Apr 2003 02:51:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pc98/i386 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 10:51:08 -0000 nyan 2003/04/02 02:51:06 PST FreeBSD src repository Modified files: sys/pc98/i386 machdep.c Log: MFi386: revisions 1.556 and 1.557. Backout revision 1.312. Revision Changes Path 1.313 +9 -12 src/sys/pc98/i386/machdep.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:04:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FE1937B401; Wed, 2 Apr 2003 03:04:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D068943FAF; Wed, 2 Apr 2003 03:04:08 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32B480U063067; Wed, 2 Apr 2003 03:04:08 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32B48Ld063066; Wed, 2 Apr 2003 03:04:08 -0800 (PST) Message-Id: <200304021104.h32B48Ld063066@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 03:04:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security Makefile ports/security/finger_mysql Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:04:09 -0000 edwin 2003/04/02 03:04:08 PST FreeBSD ports repository Modified files: security Makefile Added files: security/finger_mysql Makefile distinfo pkg-descr pkg-plist Log: New port: security/finger_mysql - A threaded MySQL scanner This is a one-file-port of a threaded MySQL scanner. If the user "root" is passwordless, then this is even funnier. For some reason is segfaults if you feed it with Class B network, but I'll fix that when time permits. PR: ports/48924 Submitted by: Yonatan@xpert.com Revision Changes Path 1.390 +1 -0 ports/security/Makefile 1.1 +34 -0 ports/security/finger_mysql/Makefile (new) 1.1 +1 -0 ports/security/finger_mysql/distinfo (new) 1.1 +5 -0 ports/security/finger_mysql/pkg-descr (new) 1.1 +1 -0 ports/security/finger_mysql/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:04:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43E9637B40F; Wed, 2 Apr 2003 03:04:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D88AA43FAF; Wed, 2 Apr 2003 03:04:22 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32B4M0U063105; Wed, 2 Apr 2003 03:04:22 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32B4MDG063104; Wed, 2 Apr 2003 03:04:22 -0800 (PST) Message-Id: <200304021104.h32B4MDG063104@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 03:04:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:04:23 -0000 edwin 2003/04/02 03:04:22 PST FreeBSD ports repository Modified files: . modules Log: finger_mysql --> ports/security/finger_mysql Revision Changes Path 1.6948 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:14:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88DE737B401; Wed, 2 Apr 2003 03:14:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEE6C43FAF; Wed, 2 Apr 2003 03:14:00 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32BE00U063840; Wed, 2 Apr 2003 03:14:00 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BE06K063836; Wed, 2 Apr 2003 03:14:00 -0800 (PST) Message-Id: <200304021114.h32BE06K063836@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 03:14:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/hebrew Makefile ports/hebrew/hspell Makefile distinfo pkg-descr pkg-message pkg-plist ports/hebrew/hspell/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:14:02 -0000 edwin 2003/04/02 03:14:00 PST FreeBSD ports repository Modified files: hebrew Makefile Added files: hebrew/hspell Makefile distinfo pkg-descr pkg-message pkg-plist hebrew/hspell/files patch-Makefile Log: new port: Hebrew spellchecker and morphology engine A new and innovative spell checker for hebrew. portlint is happy about this. PR: ports/47265 Submitted by: Yonatan@xpert.com Revision Changes Path 1.7 +1 -0 ports/hebrew/Makefile 1.1 +23 -0 ports/hebrew/hspell/Makefile (new) 1.1 +1 -0 ports/hebrew/hspell/distinfo (new) 1.1 +22 -0 ports/hebrew/hspell/files/patch-Makefile (new) 1.1 +10 -0 ports/hebrew/hspell/pkg-descr (new) 1.1 +13 -0 ports/hebrew/hspell/pkg-message (new) 1.1 +13 -0 ports/hebrew/hspell/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:14:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53F1137B401; Wed, 2 Apr 2003 03:14:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9B9643FCB; Wed, 2 Apr 2003 03:14:16 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32BEG0U063878; Wed, 2 Apr 2003 03:14:16 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BEGiw063877; Wed, 2 Apr 2003 03:14:16 -0800 (PST) Message-Id: <200304021114.h32BEGiw063877@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 03:14:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:14:17 -0000 edwin 2003/04/02 03:14:16 PST FreeBSD ports repository Modified files: . modules Log: iw-hspell --> ports/hebrew/hspell Revision Changes Path 1.6949 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:19:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BED937B401; Wed, 2 Apr 2003 03:19:44 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7274743F85; Wed, 2 Apr 2003 03:19:42 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id VAA26502; Wed, 2 Apr 2003 21:19:22 +1000 Date: Wed, 2 Apr 2003 21:19:21 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Peter Jeremy In-Reply-To: <20030402075905.GA30835@cirb503493.alcatel.com.au> Message-ID: <20030402203725.O26345@gamplex.bde.org> References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030330175646.281097ad.Alexander@Leidinger.net> <20030331082023.GE11307@cirb503493.alcatel.com.au> <20030401172440.701aaafd.Alexander@Leidinger.net> <20030402154250.X25489@gamplex.bde.org> <20030402075905.GA30835@cirb503493.alcatel.com.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Alexander Leidinger cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:19:44 -0000 On Wed, 2 Apr 2003, Peter Jeremy wrote: > On Wed, Apr 02, 2003 at 04:21:30PM +1000, Bruce Evans wrote: > >On Wed, 2 Apr 2003, Peter Jeremy wrote: > > > >> On Tue, Apr 01, 2003 at 05:24:40PM +0200, Alexander Leidinger wrote: > >> >We noticed that icc does use other values for LDBL_MIN than we do, and > >> >instead of just thinking that Intel does it right I wanted to verify it. > > > >This might be caused by icc actually understanding the target's default > >precision for long doubles (FreeBSD changes the hardware default of 64-bit > >to 53-bit for technical reasons). > > Is this also true on ia64? Probably not. ia64's _fpmath.h says that there are 64 mantissa bits, and we don't reduce the precision AFAIK. > And the LDBL_* constants for sparc64 are > for 113-bit fractions. I was going to mention this but thought it had > changed since all the LDBL_* constants have been changed to 64-bit > fraction values (they are 53-bit in -STABLE). sparc64's _fpmath.h says that long doubles have a full 128 bits with 112 mantissa bits, so 113-bit fractions are possible (with an implicit normalization bit). > Which is more wrong: LDBL_* constants that are "correct" but unusable > because the CPU is set to "round to double" or LBDL_* constants that > match the CPU rounding but not the compiler's "long double" type? precision, actually The latter. It's a compiler bug that the compiler's "long double" type doesn't match the hardware (as configured). Differences in rounding cause the same sort or problems and is more important in practice -- C99 has a lot to say about how much the compiler can assume about the runtime rounding matches the compile time rounding (this affects constant folding), but it doesn't say anything about changing the precision at runtime because changing the precision is not very useful and not supported. > >ucbtest is good but is too old to cover much of C99. I haven't found > >anything anywhere near as good and up to date. > > I was also thinking of paranoia - which has been imported into gcc > as enquire. It's even older than ucbtest and does a good job of > generating all the float.h constants - but it doesn't check that > the CPU actually implements IEEE arithmetic correctly. enquire is different from paranioa. paranoia is even older. I first learned about precision problems running paranoia about 15 years ago and enquire a year two so later. 53-bit bit precision "fixes" the problems reported by paranioa but confuses enquire. With 64-bit precision, paranioa compiled with gcc fails for the same reasons (compiler bugfeatures which exploit the fuzziness of floating point in pre-C99 versions of C to get faster code) as it did 15 years ago: %%% --- paranoia-53bitprecision.out Wed Apr 2 21:02:37 2003 +++ paranoia-64bitprecision.out Wed Apr 2 21:02:42 2003 @@ -97,4 +97,8 @@ Radix confirmed. The number of significant digits of the Radix is 53.000000 . +Some subexpressions appear to be calculated extra +precisely with about 11 extra B-digits, i.e. +roughly 3.31133 extra significant decimals. +That feature is not tested further by this program. To continue, press RETURN @@ -109,9 +113,10 @@ Checking rounding on multiply, divide and add/subtract. -Multiplication appears to round correctly. -Division appears to round correctly. -Addition/Subtraction appears to round correctly. -Checking for sticky bit. -Sticky bit apparently used correctly. +* is neither chopped nor correctly rounded. +/ is neither chopped nor correctly rounded. +Addition/Subtraction neither rounds nor chops. +Sticky bit used incorrectly or not at all. +FLAW: lack(s) of guard digits or failure(s) to correctly round or chop +(noted above) count as one flaw in the final tally below. Does Multiplication commute? Testing on 20 random pairs. @@ -123,5 +128,6 @@ sqrt has passed a test for Monotonicity. Testing whether sqrt is rounded or chopped. -Square root appears to be correctly rounded. +Square root is neither chopped nor correctly rounded. +Observed errors run from -5.0000000e-01 to 5.0000000e-01 ulps. To continue, press RETURN @@ -183,8 +189,6 @@ +The number of FLAWs discovered = 1. -No failures, defects nor flaws have been discovered. -Rounding appears to conform to the proposed IEEE standard P754, -except for possibly Double Rounding during Gradual Underflow. -The arithmetic diagnosed appears to be Excellent! +The arithmetic diagnosed seems Satisfactory though flawed. END OF TEST. %%% This is with a version of paranoia.c dated Apr 16 1988. ucbtest forces 53-bit precision to to avoid these problems. It detects just a couple of the rounding problems (ones related to double rounding -- IIRC the i387 does everything in 64-bit precision, including rounding to that precision; then, if the control word specifies a precision of 53 bits, it rounds to 53 bits. This double rounding can cause 1-bit errors). Bruce From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:24:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D40C37B401; Wed, 2 Apr 2003 03:24:59 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94ADA43F93; Wed, 2 Apr 2003 03:24:57 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id VAA27024; Wed, 2 Apr 2003 21:24:55 +1000 Date: Wed, 2 Apr 2003 21:24:54 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Maxim Konovalov In-Reply-To: <200304020920.h329K8M9053509@repoman.freebsd.org> Message-ID: <20030402212411.O26453@gamplex.bde.org> References: <200304020920.h329K8M9053509@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/jail jail.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:25:00 -0000 On Wed, 2 Apr 2003, Maxim Konovalov wrote: > maxim 2003/04/02 01:20:08 PST > > FreeBSD src repository > > Modified files: > usr.sbin/jail jail.c > Log: > o Fix error messages formatting, style. (Formatting as a missing %s in the printf format.). > Prodded by: bde > Reviewed by: bde > > Revision Changes Path > 1.10 +22 -29 src/usr.sbin/jail/jail.c Thanks. Bruce From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:26:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA4DB37B401; Wed, 2 Apr 2003 03:26:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6883943F85; Wed, 2 Apr 2003 03:26:46 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32BQk0U064603; Wed, 2 Apr 2003 03:26:46 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BQkBJ064602; Wed, 2 Apr 2003 03:26:46 -0800 (PST) Message-Id: <200304021126.h32BQkBJ064602@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 03:26:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail Makefile ports/mail/smtprc Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:26:47 -0000 edwin 2003/04/02 03:26:46 PST FreeBSD ports repository Modified files: mail Makefile Added files: mail/smtprc Makefile distinfo pkg-descr pkg-plist Log: New port: mail/smtprc New port. (and my 30st port.. wheeee) [can somebody give him ports-commit access please? - edwin] smtprc is fully configurable, multithreaded open mail relay scanner. It supports scanning of IP blocks, and can print the results to a web page. It is intended for SysAdmins to check IP blocks under their control. PR: ports/48889 Submitted by: Michael L. Hostbaek Revision Changes Path 1.371 +1 -0 ports/mail/Makefile 1.1 +40 -0 ports/mail/smtprc/Makefile (new) 1.1 +1 -0 ports/mail/smtprc/distinfo (new) 1.1 +10 -0 ports/mail/smtprc/pkg-descr (new) 1.1 +7 -0 ports/mail/smtprc/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:27:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 652AA37B401; Wed, 2 Apr 2003 03:27:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0461A43F3F; Wed, 2 Apr 2003 03:27:02 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32BR10U064646; Wed, 2 Apr 2003 03:27:01 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BR19i064645; Wed, 2 Apr 2003 03:27:01 -0800 (PST) Message-Id: <200304021127.h32BR19i064645@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 03:27:01 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:27:02 -0000 edwin 2003/04/02 03:27:01 PST FreeBSD ports repository Modified files: . modules Log: smtprc --> ports/mail/smtprc Revision Changes Path 1.6950 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:29:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78EAD37B401; Wed, 2 Apr 2003 03:29:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 189AD43FBD; Wed, 2 Apr 2003 03:29:26 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32BTP0U064765; Wed, 2 Apr 2003 03:29:25 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BTPvZ064764; Wed, 2 Apr 2003 03:29:25 -0800 (PST) Message-Id: <200304021129.h32BTPvZ064764@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 03:29:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/logrotate Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:29:27 -0000 edwin 2003/04/02 03:29:25 PST FreeBSD ports repository Modified files: sysutils/logrotate Makefile Log: change BUILD_DEPENDS to EXTRACT_DEPENDS for sysutils/logrotate PR: ports/49105 Submitted by: Erwin Lansing Revision Changes Path 1.13 +1 -1 ports/sysutils/logrotate/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:31:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0B9537B401; Wed, 2 Apr 2003 03:31:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EB5543F3F; Wed, 2 Apr 2003 03:31:09 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32BV90U065197; Wed, 2 Apr 2003 03:31:09 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BV9XR065195; Wed, 2 Apr 2003 03:31:09 -0800 (PST) Message-Id: <200304021131.h32BV9XR065195@repoman.freebsd.org> From: Akinori MUSHA Date: Wed, 2 Apr 2003 03:31:09 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/swig13 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:31:10 -0000 knu 2003/04/02 03:31:09 PST FreeBSD ports repository Modified files: devel/swig13 Makefile distinfo pkg-plist Log: Update to 1.3.19. Revision Changes Path 1.49 +2 -1 ports/devel/swig13/Makefile 1.22 +1 -1 ports/devel/swig13/distinfo 1.24 +63 -44 ports/devel/swig13/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:35:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F40037B401; Wed, 2 Apr 2003 03:35:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 401E743F3F; Wed, 2 Apr 2003 03:35:52 -0800 (PST) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32BZp0U065409; Wed, 2 Apr 2003 03:35:51 -0800 (PST) (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BZpX2065408; Wed, 2 Apr 2003 03:35:51 -0800 (PST) Message-Id: <200304021135.h32BZpX2065408@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Wed, 2 Apr 2003 03:35:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/rtadvd config.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:35:53 -0000 suz 2003/04/02 03:35:51 PST FreeBSD src repository Modified files: usr.sbin/rtadvd config.c Log: fixed invalid pointer reference Obtained from: KAME Revision Changes Path 1.13 +1 -0 src/usr.sbin/rtadvd/config.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:36:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2649D37B401; Wed, 2 Apr 2003 03:36:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA64E43F75; Wed, 2 Apr 2003 03:36:44 -0800 (PST) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Bai0U065452; Wed, 2 Apr 2003 03:36:44 -0800 (PST) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BaiOt065451; Wed, 2 Apr 2003 03:36:44 -0800 (PST) Message-Id: <200304021136.h32BaiOt065451@repoman.freebsd.org> From: Søren Schmidt Date: Wed, 2 Apr 2003 03:36:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pst pst-raid.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:36:45 -0000 sos 2003/04/02 03:36:43 PST FreeBSD src repository Modified files: sys/dev/pst pst-raid.c Log: Instead of not grapping a request binfinish(ENOMEM) it if malloc fails. Revision Changes Path 1.8 +2 -1 src/sys/dev/pst/pst-raid.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:43:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2551237B401; Wed, 2 Apr 2003 03:43:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA47C43F93; Wed, 2 Apr 2003 03:43:15 -0800 (PST) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32BhF0U066015; Wed, 2 Apr 2003 03:43:15 -0800 (PST) (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BhFDY066014; Wed, 2 Apr 2003 03:43:15 -0800 (PST) Message-Id: <200304021143.h32BhFDY066014@repoman.freebsd.org> From: Gerald Pfeifer Date: Wed, 2 Apr 2003 03:43:15 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc33/files patch-fc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:43:16 -0000 gerald 2003/04/02 03:43:15 PST FreeBSD ports repository Modified files: lang/gcc33/files patch-fc Log: Remove special alpha optimization warning. alpha support now should be sufficiently stable. Revision Changes Path 1.4 +0 -20 ports/lang/gcc33/files/patch-fc From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:46:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15E1E37B401; Wed, 2 Apr 2003 03:46:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A648A43FA3; Wed, 2 Apr 2003 03:46:43 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Bkh0U066207; Wed, 2 Apr 2003 03:46:43 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BkhwI066206; Wed, 2 Apr 2003 03:46:43 -0800 (PST) Message-Id: <200304021146.h32BkhwI066206@repoman.freebsd.org> From: Akinori MUSHA Date: Wed, 2 Apr 2003 03:46:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-HTTP-MobileAgent Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:46:44 -0000 knu 2003/04/02 03:46:43 PST FreeBSD ports repository Modified files: www/p5-HTTP-MobileAgent Makefile distinfo pkg-plist Log: Update to 0.09. Revision Changes Path 1.2 +1 -1 ports/www/p5-HTTP-MobileAgent/Makefile 1.2 +1 -1 ports/www/p5-HTTP-MobileAgent/distinfo 1.2 +1 -0 ports/www/p5-HTTP-MobileAgent/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:46:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C452A37B401; Wed, 2 Apr 2003 03:46:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6972343F3F; Wed, 2 Apr 2003 03:46:57 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Bkv0U066275; Wed, 2 Apr 2003 03:46:57 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BkvSu066274; Wed, 2 Apr 2003 03:46:57 -0800 (PST) Message-Id: <200304021146.h32BkvSu066274@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 03:46:57 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefileports/net/p5-ResourcePool-Resource-SOAP-Lite Makefile distinfo pkg-descr pkg-plistpatch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:46:58 -0000 edwin 2003/04/02 03:46:57 PST FreeBSD ports repository Modified files: net Makefile Added files: net/p5-ResourcePool-Resource-SOAP-Lite Makefile distinfo pkg-descr pkg-plist net/p5-ResourcePool-Resource-SOAP-Lite/files patch-Makefile.PL Log: new port: net/p5-ResourcePool-Resource-SOAP-Lite A ResourcePool wrapper for SOAP::Lite PR: ports/48773 Submitted by: Erwin Lansing Revision Changes Path 1.951 +1 -0 ports/net/Makefile 1.1 +29 -0 ports/net/p5-ResourcePool-Resource-SOAP-Lite/Makefile (new) 1.1 +1 -0 ports/net/p5-ResourcePool-Resource-SOAP-Lite/distinfo (new) 1.1 +14 -0 ports/net/p5-ResourcePool-Resource-SOAP-Lite/files/patch-Makefile.PL (new) 1.1 +5 -0 ports/net/p5-ResourcePool-Resource-SOAP-Lite/pkg-descr (new) 1.1 +15 -0 ports/net/p5-ResourcePool-Resource-SOAP-Lite/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:47:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2878037B401; Wed, 2 Apr 2003 03:47:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD06F43FBD; Wed, 2 Apr 2003 03:47:12 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32BlC0U066318; Wed, 2 Apr 2003 03:47:12 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BlClm066317; Wed, 2 Apr 2003 03:47:12 -0800 (PST) Message-Id: <200304021147.h32BlClm066317@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 03:47:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:47:13 -0000 edwin 2003/04/02 03:47:12 PST FreeBSD ports repository Modified files: . modules Log: p5-ResourcePool-Resource-SOAP-Lite --> ports/net/p5-ResourcePool-Resource-SOAP-Lite Revision Changes Path 1.6951 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:50:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 281A137B401; Wed, 2 Apr 2003 03:50:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC35543F75; Wed, 2 Apr 2003 03:50:24 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32BoO0U066499; Wed, 2 Apr 2003 03:50:24 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32BoOfa066497; Wed, 2 Apr 2003 03:50:24 -0800 (PST) Message-Id: <200304021150.h32BoOfa066497@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 03:50:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-ResourcePool Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:50:25 -0000 edwin 2003/04/02 03:50:24 PST FreeBSD ports repository Modified files: devel/p5-ResourcePool Makefile distinfo pkg-plist Log: maintainer-update devel/p5-ResourcePool to 1.0101 update to 1.0101 which remove obsoleted dependency on p5-Storable Update to 1.0102 whichs * An obsolete dependency for the Storable module has been removed * Two new LoadBalancer policies have been introduced: FailBack is a alias for FallBack, and FailOver which acts like FailBack but does stay on the fall back node. * Applied patch from Eric Parusel to fix a problem when debuging LoadBalancer. PR: ports/50189 Submitted by: Erwin Lansing Revision Changes Path 1.7 +1 -5 ports/devel/p5-ResourcePool/Makefile 1.5 +1 -1 ports/devel/p5-ResourcePool/distinfo 1.5 +2 -0 ports/devel/p5-ResourcePool/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 03:54:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86EF037B401; Wed, 2 Apr 2003 03:54:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 257D643FAF; Wed, 2 Apr 2003 03:54:04 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Bs30U066900; Wed, 2 Apr 2003 03:54:03 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32Bs3Yo066899; Wed, 2 Apr 2003 03:54:03 -0800 (PST) Message-Id: <200304021154.h32Bs3Yo066899@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 03:54:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Sub-Uplevel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 11:54:04 -0000 edwin 2003/04/02 03:54:03 PST FreeBSD ports repository Modified files: devel/p5-Sub-Uplevel Makefile distinfo Log: maintainer-update devel/p5-Sub-Uplevel to 0.07-2 update to 0.07-2 PR: ports/50190 Submitted by: Erwin Lansing Revision Changes Path 1.4 +2 -2 ports/devel/p5-Sub-Uplevel/Makefile 1.2 +1 -1 ports/devel/p5-Sub-Uplevel/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:01:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33B8F37B401; Wed, 2 Apr 2003 04:01:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C711D43FB1; Wed, 2 Apr 2003 04:01:25 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32C1P0U067627; Wed, 2 Apr 2003 04:01:25 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32C1PMh067626; Wed, 2 Apr 2003 04:01:25 -0800 (PST) Message-Id: <200304021201.h32C1PMh067626@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 04:01:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/libshout Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:01:26 -0000 edwin 2003/04/02 04:01:25 PST FreeBSD ports repository Modified files: audio/libshout Makefile Log: update: audio/libshout (change MAINTAINER) PR: ports/50358 Submitted by: Michael Nottebrock Approved by: zach@pabst.bendnet.com Revision Changes Path 1.7 +1 -1 ports/audio/libshout/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:01:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1CFB37B401; Wed, 2 Apr 2003 04:01:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81B2D43F75; Wed, 2 Apr 2003 04:01:42 -0800 (PST) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32C1g0U067658; Wed, 2 Apr 2003 04:01:42 -0800 (PST) (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32C1gQN067657; Wed, 2 Apr 2003 04:01:42 -0800 (PST) Message-Id: <200304021201.h32C1gQN067657@repoman.freebsd.org> From: Jimmy Olgeni Date: Wed, 2 Apr 2003 04:01:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/syslog-ng pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:01:43 -0000 olgeni 2003/04/02 04:01:42 PST FreeBSD ports repository Modified files: sysutils/syslog-ng pkg-plist Log: Sort plist (no content changes). Revision Changes Path 1.2 +2 -2 ports/sysutils/syslog-ng/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:03:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D519A37B401; Wed, 2 Apr 2003 04:03:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F66943FA3; Wed, 2 Apr 2003 04:03:44 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32C3i0U068691; Wed, 2 Apr 2003 04:03:44 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32C3iRZ068690; Wed, 2 Apr 2003 04:03:44 -0800 (PST) Message-Id: <200304021203.h32C3iRZ068690@repoman.freebsd.org> From: Akinori MUSHA Date: Wed, 2 Apr 2003 04:03:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel Makefile ports/devel/darts Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:03:45 -0000 knu 2003/04/02 04:03:44 PST FreeBSD ports repository Modified files: devel Makefile Added files: devel/darts Makefile distinfo pkg-descr pkg-plist Log: Add darts, a C++ template library that implements Double-Array. Revision Changes Path 1.1076 +1 -0 ports/devel/Makefile 1.1 +33 -0 ports/devel/darts/Makefile (new) 1.1 +1 -0 ports/devel/darts/distinfo (new) 1.1 +14 -0 ports/devel/darts/pkg-descr (new) 1.1 +14 -0 ports/devel/darts/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:06:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 141AA37B429; Wed, 2 Apr 2003 04:06:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E87C43F85; Wed, 2 Apr 2003 04:06:04 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32C640U068878; Wed, 2 Apr 2003 04:06:04 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32C644h068877; Wed, 2 Apr 2003 04:06:04 -0800 (PST) Message-Id: <200304021206.h32C644h068877@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 04:06:04 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/php-dyn Makefile distinfo pkg-plist ports/www/php-dyn/files pkg-message.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:06:05 -0000 edwin 2003/04/02 04:06:04 PST FreeBSD ports repository Modified files: www/php-dyn Makefile distinfo pkg-plist www/php-dyn/files pkg-message.in Log: [Maintainer Update] Port: www/php-dyn Update from 1.2 to 1.2.1 release. Use WANT_ variables. Work with Apache 2. PR: ports/50265 Submitted by: Alex Dupre Revision Changes Path 1.3 +22 -10 ports/www/php-dyn/Makefile 1.2 +1 -1 ports/www/php-dyn/distinfo 1.2 +1 -1 ports/www/php-dyn/files/pkg-message.in 1.2 +2 -1 ports/www/php-dyn/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:08:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC54C37B401; Wed, 2 Apr 2003 04:08:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A88343FDD; Wed, 2 Apr 2003 04:08:39 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32C8d0U068952; Wed, 2 Apr 2003 04:08:39 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32C8c4v068951; Wed, 2 Apr 2003 04:08:38 -0800 (PST) Message-Id: <200304021208.h32C8c4v068951@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 04:08:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/gotmail Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:08:40 -0000 edwin 2003/04/02 04:08:38 PST FreeBSD ports repository Modified files: mail/gotmail Makefile distinfo Log: Update port:mail/gotmail to version 0.7.9 to work with changes in Hotmail Updated gotmail to 0.7.9 to get more hotmail spam. PR: ports/50061 Submitted by: Bjorn Nelson Reviewed by: Erwin Lansing Revision Changes Path 1.12 +1 -1 ports/mail/gotmail/Makefile 1.6 +1 -1 ports/mail/gotmail/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:19:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF64E37B401; Wed, 2 Apr 2003 04:19:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 796D843FA3; Wed, 2 Apr 2003 04:19:52 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32CJq0U069632; Wed, 2 Apr 2003 04:19:52 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32CJqTe069631; Wed, 2 Apr 2003 04:19:52 -0800 (PST) Message-Id: <200304021219.h32CJqTe069631@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 04:19:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/p5-Crypt-OpenPGP Makefile distinfo pkg-descr pkg-plist ports/security/p5-Crypt-OpenPGP/files patch-makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:19:53 -0000 edwin 2003/04/02 04:19:52 PST FreeBSD ports repository Modified files: security/p5-Crypt-OpenPGP Makefile distinfo pkg-descr pkg-plist security/p5-Crypt-OpenPGP/files patch-makefile Log: update and fix security/p5-Crypt-OpenPGP - update to 1.03 to make fetcheable - remove NO_PACKAGE (fix PLIST) - take maintainership - replace homegrown BASEPERL with SITEPERL - remove MANPREFIX - make dependencies dependend on perl version for those included in perl 5.8 - add WWW PR: ports/50488 Submitted by: Erwin Lansing Revision Changes Path 1.10 +30 -22 ports/security/p5-Crypt-OpenPGP/Makefile 1.2 +1 -1 ports/security/p5-Crypt-OpenPGP/distinfo 1.2 +23 -33 ports/security/p5-Crypt-OpenPGP/files/patch-makefile 1.2 +2 -0 ports/security/p5-Crypt-OpenPGP/pkg-descr 1.2 +47 -45 ports/security/p5-Crypt-OpenPGP/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:23:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF1ED37B401; Wed, 2 Apr 2003 04:23:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2891C43F75; Wed, 2 Apr 2003 04:23:20 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32CNJ0U070107; Wed, 2 Apr 2003 04:23:19 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32CNJuA070106; Wed, 2 Apr 2003 04:23:19 -0800 (PST) Message-Id: <200304021223.h32CNJuA070106@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 04:23:19 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/gdome2 Makefile distinfo pkg-plist ports/textproc/gdome2/files patch-ltmain.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:23:21 -0000 ijliao 2003/04/02 04:23:19 PST FreeBSD ports repository Modified files: textproc/gdome2 Makefile distinfo pkg-plist Added files: textproc/gdome2/files patch-ltmain.sh Log: upgrade to 0.7.4 Approved by: knu (maintainer) Revision Changes Path 1.10 +1 -1 ports/textproc/gdome2/Makefile 1.3 +1 -1 ports/textproc/gdome2/distinfo 1.1 +41 -0 ports/textproc/gdome2/files/patch-ltmain.sh (new) 1.3 +3 -0 ports/textproc/gdome2/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:30:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D77BD37B401; Wed, 2 Apr 2003 04:30:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AE2D43F85; Wed, 2 Apr 2003 04:30:32 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32CUW0U070494; Wed, 2 Apr 2003 04:30:32 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32CUWK0070492; Wed, 2 Apr 2003 04:30:32 -0800 (PST) Message-Id: <200304021230.h32CUWK0070492@repoman.freebsd.org> From: Akinori MUSHA Date: Wed, 2 Apr 2003 04:30:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:30:33 -0000 knu 2003/04/02 04:30:32 PST FreeBSD ports repository Modified files: . modules Log: darts -> ports/devel/darts Revision Changes Path 1.6952 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:32:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9E9937B401; Wed, 2 Apr 2003 04:32:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8296243F3F; Wed, 2 Apr 2003 04:32:03 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32CW30U070785; Wed, 2 Apr 2003 04:32:03 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32CW3RK070784; Wed, 2 Apr 2003 04:32:03 -0800 (PST) Message-Id: <200304021232.h32CW3RK070784@repoman.freebsd.org> From: Akinori MUSHA Date: Wed, 2 Apr 2003 04:32:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/ipadic Makefile distinfo pkg-plist ports/japanese/ipadic/files patch-aa patch-ab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:32:04 -0000 knu 2003/04/02 04:32:03 PST FreeBSD ports repository Modified files: japanese/ipadic Makefile distinfo pkg-plist Removed files: japanese/ipadic/files patch-aa patch-ab Log: Apply the 2.5.1.1 update. Add textproc to CATEGORIES. Revision Changes Path 1.6 +7 -2 ports/japanese/ipadic/Makefile 1.3 +1 -0 ports/japanese/ipadic/distinfo 1.2 +0 -13 ports/japanese/ipadic/files/patch-aa (dead) 1.2 +0 -13 ports/japanese/ipadic/files/patch-ab (dead) 1.2 +5 -0 ports/japanese/ipadic/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:32:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6318137B401; Wed, 2 Apr 2003 04:32:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F266E43F85; Wed, 2 Apr 2003 04:32:48 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32CWm0U070850; Wed, 2 Apr 2003 04:32:48 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32CWmst070849; Wed, 2 Apr 2003 04:32:48 -0800 (PST) Message-Id: <200304021232.h32CWmst070849@repoman.freebsd.org> From: Akinori MUSHA Date: Wed, 2 Apr 2003 04:32:48 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/chasen Makefileports/japanese/chasen-base Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:32:49 -0000 knu 2003/04/02 04:32:48 PST FreeBSD ports repository Modified files: japanese/chasen Makefile japanese/chasen-base Makefile distinfo pkg-plist Log: Update to 2.3.0. Add textproc to CATEGORIES. Revision Changes Path 1.8 +5 -3 ports/japanese/chasen-base/Makefile 1.3 +2 -2 ports/japanese/chasen-base/distinfo 1.2 +1 -9 ports/japanese/chasen-base/pkg-plist 1.23 +2 -2 ports/japanese/chasen/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:33:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE6A637B401; Wed, 2 Apr 2003 04:33:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 873E443F75; Wed, 2 Apr 2003 04:33:41 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32CXf0U070963; Wed, 2 Apr 2003 04:33:41 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32CXf1u070962; Wed, 2 Apr 2003 04:33:41 -0800 (PST) Message-Id: <200304021233.h32CXf1u070962@repoman.freebsd.org> From: Akinori MUSHA Date: Wed, 2 Apr 2003 04:33:41 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/kakasi Makefileports/japanese/p5-Text-Kakasi Makefile ports/japanese/ruby-kakasi Makefile ports/japanese/p5-Text-ChaSen Makefile ports/japanese/ruby-chasen Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:33:42 -0000 knu 2003/04/02 04:33:41 PST FreeBSD ports repository Modified files: japanese/kakasi Makefile japanese/p5-Text-Kakasi Makefile japanese/ruby-kakasi Makefile japanese/p5-Text-ChaSen Makefile japanese/ruby-chasen Makefile Log: Add textproc to CATEGORIES. Revision Changes Path 1.25 +1 -1 ports/japanese/kakasi/Makefile 1.5 +1 -1 ports/japanese/p5-Text-ChaSen/Makefile 1.12 +1 -1 ports/japanese/p5-Text-Kakasi/Makefile 1.8 +1 -1 ports/japanese/ruby-chasen/Makefile 1.13 +1 -1 ports/japanese/ruby-kakasi/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:34:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED31D37B401; Wed, 2 Apr 2003 04:34:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AFE543FBD; Wed, 2 Apr 2003 04:34:12 -0800 (PST) (envelope-from foxfair@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32CYC0U071041; Wed, 2 Apr 2003 04:34:12 -0800 (PST) (envelope-from foxfair@repoman.freebsd.org) Received: (from foxfair@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32CYCvC071040; Wed, 2 Apr 2003 04:34:12 -0800 (PST) Message-Id: <200304021234.h32CYCvC071040@repoman.freebsd.org> From: Foxfair Hu Date: Wed, 2 Apr 2003 04:34:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security Makefile ports/security/ftimes Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:34:13 -0000 foxfair 2003/04/02 04:34:12 PST FreeBSD ports repository Modified files: security Makefile Added files: security/ftimes Makefile distinfo pkg-descr pkg-message pkg-plist Log: Add ftimes 3.2.1, a system baselining and evidence collection tool. PR: 50369 Submitted by: Klayton Monroe Revision Changes Path 1.391 +1 -0 ports/security/Makefile 1.1 +29 -0 ports/security/ftimes/Makefile (new) 1.1 +1 -0 ports/security/ftimes/distinfo (new) 1.1 +8 -0 ports/security/ftimes/pkg-descr (new) 1.1 +19 -0 ports/security/ftimes/pkg-message (new) 1.1 +10 -0 ports/security/ftimes/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:35:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4960C37B401; Wed, 2 Apr 2003 04:35:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBD6643FCB; Wed, 2 Apr 2003 04:35:38 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32CZc0U071176; Wed, 2 Apr 2003 04:35:38 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32CZcWO071175; Wed, 2 Apr 2003 04:35:38 -0800 (PST) Message-Id: <200304021235.h32CZcWO071175@repoman.freebsd.org> From: Akinori MUSHA Date: Wed, 2 Apr 2003 04:35:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/p5-Text-ChaSen Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:35:39 -0000 knu 2003/04/02 04:35:38 PST FreeBSD ports repository Modified files: japanese/p5-Text-ChaSen Makefile Log: Update CHASEN_VERSION. (2.3.0) Revision Changes Path 1.6 +2 -1 ports/japanese/p5-Text-ChaSen/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:36:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FD7137B401; Wed, 2 Apr 2003 04:36:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30AE143FB1; Wed, 2 Apr 2003 04:36:53 -0800 (PST) (envelope-from foxfair@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Car0U071255; Wed, 2 Apr 2003 04:36:53 -0800 (PST) (envelope-from foxfair@repoman.freebsd.org) Received: (from foxfair@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32Caqkk071254; Wed, 2 Apr 2003 04:36:52 -0800 (PST) Message-Id: <200304021236.h32Caqkk071254@repoman.freebsd.org> From: Foxfair Hu Date: Wed, 2 Apr 2003 04:36:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:36:54 -0000 foxfair 2003/04/02 04:36:52 PST FreeBSD ports repository Modified files: . modules Log: ftimes --> ports/security/ftimes Revision Changes Path 1.6953 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:39:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D77B237B401; Wed, 2 Apr 2003 04:39:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 859C143FBF; Wed, 2 Apr 2003 04:39:26 -0800 (PST) (envelope-from foxfair@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32CdQ0U071378; Wed, 2 Apr 2003 04:39:26 -0800 (PST) (envelope-from foxfair@repoman.freebsd.org) Received: (from foxfair@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32CdQWx071377; Wed, 2 Apr 2003 04:39:26 -0800 (PST) Message-Id: <200304021239.h32CdQWx071377@repoman.freebsd.org> From: Foxfair Hu Date: Wed, 2 Apr 2003 04:39:26 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils Makefile ports/sysutils/webjob Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:39:27 -0000 foxfair 2003/04/02 04:39:26 PST FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/webjob Makefile distinfo pkg-descr pkg-message pkg-plist Log: Add webjob 1.2.3, download and execute a program over HTTP/HTTPS. PR: 42372 Submitted by: Klayton Monroe Revision Changes Path 1.347 +1 -0 ports/sysutils/Makefile 1.1 +34 -0 ports/sysutils/webjob/Makefile (new) 1.1 +1 -0 ports/sysutils/webjob/distinfo (new) 1.1 +9 -0 ports/sysutils/webjob/pkg-descr (new) 1.1 +12 -0 ports/sysutils/webjob/pkg-message (new) 1.1 +15 -0 ports/sysutils/webjob/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 04:42:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1340337B401; Wed, 2 Apr 2003 04:42:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A753643FA3; Wed, 2 Apr 2003 04:42:34 -0800 (PST) (envelope-from foxfair@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32CgY0U071842; Wed, 2 Apr 2003 04:42:34 -0800 (PST) (envelope-from foxfair@repoman.freebsd.org) Received: (from foxfair@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32CgYc5071841; Wed, 2 Apr 2003 04:42:34 -0800 (PST) Message-Id: <200304021242.h32CgYc5071841@repoman.freebsd.org> From: Foxfair Hu Date: Wed, 2 Apr 2003 04:42:34 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 12:42:35 -0000 foxfair 2003/04/02 04:42:34 PST FreeBSD ports repository Modified files: . modules Log: webjob --> ports/sysutils/webjob Revision Changes Path 1.6954 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 05:02:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8BB437B401; Wed, 2 Apr 2003 05:02:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50E9143F75; Wed, 2 Apr 2003 05:02:41 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32D2f0U078394; Wed, 2 Apr 2003 05:02:41 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32D2fpd078393; Wed, 2 Apr 2003 05:02:41 -0800 (PST) Message-Id: <200304021302.h32D2fpd078393@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 05:02:41 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games Makefile ports/games/bsdtris Makefile distinfo pkg-descr pkg-plist ports/games/bsdtris/files mktetristarball patch-Makefile patch-pathnames.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 13:02:42 -0000 edwin 2003/04/02 05:02:40 PST FreeBSD ports repository Modified files: games Makefile Added files: games/bsdtris Makefile distinfo pkg-descr pkg-plist games/bsdtris/files mktetristarball patch-Makefile patch-pathnames.h Log: games/tetris -> games/bsdtris PR: ports/50535 Revision Changes Path 1.531 +1 -0 ports/games/Makefile 1.1 +28 -0 ports/games/bsdtris/Makefile (new) 1.1 +1 -0 ports/games/bsdtris/distinfo (new) 1.1 +12 -0 ports/games/bsdtris/files/mktetristarball (new) 1.1 +29 -0 ports/games/bsdtris/files/patch-Makefile (new) 1.1 +8 -0 ports/games/bsdtris/files/patch-pathnames.h (new) 1.1 +6 -0 ports/games/bsdtris/pkg-descr (new) 1.1 +2 -0 ports/games/bsdtris/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 05:03:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7135137B41B; Wed, 2 Apr 2003 05:03:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C723643F75; Wed, 2 Apr 2003 05:02:59 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32D2x0U078432; Wed, 2 Apr 2003 05:02:59 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32D2x8i078431; Wed, 2 Apr 2003 05:02:59 -0800 (PST) Message-Id: <200304021302.h32D2x8i078431@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 05:02:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 13:03:01 -0000 edwin 2003/04/02 05:02:59 PST FreeBSD ports repository Modified files: . modules Log: bsdtris --> ports/games/bsdtris Revision Changes Path 1.6955 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 05:03:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A533937B401; Wed, 2 Apr 2003 05:03:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4656943F75; Wed, 2 Apr 2003 05:03:29 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32D3T0U079403; Wed, 2 Apr 2003 05:03:29 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32D3TYn079402; Wed, 2 Apr 2003 05:03:29 -0800 (PST) Message-Id: <200304021303.h32D3TYn079402@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 05:03:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 13:03:30 -0000 edwin 2003/04/02 05:03:28 PST FreeBSD ports repository Modified files: games Makefile Log: tetris -> bsdtris Revision Changes Path 1.532 +0 -1 ports/games/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 05:05:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3C2937B401; Wed, 2 Apr 2003 05:05:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D1F043FB1; Wed, 2 Apr 2003 05:05:08 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32D570U079532; Wed, 2 Apr 2003 05:05:07 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32D57c7079531; Wed, 2 Apr 2003 05:05:07 -0800 (PST) Message-Id: <200304021305.h32D57c7079531@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 05:05:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/tetris Makefile distinfo pkg-descr pkg-plist ports/games/tetris/files mktetristarball patch-Makefile patch-pathnames.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 13:05:09 -0000 edwin 2003/04/02 05:05:07 PST FreeBSD ports repository Removed files: games/tetris Makefile distinfo pkg-descr pkg-plist games/tetris/files mktetristarball patch-Makefile patch-pathnames.h Log: removal of games/tetris Revision Changes Path 1.2 +0 -28 ports/games/tetris/Makefile (dead) 1.2 +0 -1 ports/games/tetris/distinfo (dead) 1.2 +0 -12 ports/games/tetris/files/mktetristarball (dead) 1.2 +0 -29 ports/games/tetris/files/patch-Makefile (dead) 1.2 +0 -8 ports/games/tetris/files/patch-pathnames.h (dead) 1.2 +0 -6 ports/games/tetris/pkg-descr (dead) 1.2 +0 -2 ports/games/tetris/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 05:06:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAA3E37B401; Wed, 2 Apr 2003 05:06:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BCBE43F3F; Wed, 2 Apr 2003 05:06:44 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32D6i0U079637; Wed, 2 Apr 2003 05:06:44 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32D6iZb079636; Wed, 2 Apr 2003 05:06:44 -0800 (PST) Message-Id: <200304021306.h32D6iZb079636@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 05:06:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports MOVED X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 13:06:46 -0000 edwin 2003/04/02 05:06:44 PST FreeBSD ports repository Modified files: . MOVED Log: games/tetris -> games/bsdtris Revision Changes Path 1.86 +2 -1 ports/MOVED From owner-cvs-all@FreeBSD.ORG Wed Apr 2 05:09:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B601537B401; Wed, 2 Apr 2003 05:09:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55A3043F75; Wed, 2 Apr 2003 05:09:51 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32D9p0U079705; Wed, 2 Apr 2003 05:09:51 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32D9p6A079704; Wed, 2 Apr 2003 05:09:51 -0800 (PST) Message-Id: <200304021309.h32D9p6A079704@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 2 Apr 2003 05:09:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_dev.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 13:09:52 -0000 phk 2003/04/02 05:09:51 PST FreeBSD src repository Modified files: sys/geom geom_dev.c Log: Properly handle races between open/close and orphan. KASSERT the race between close and strategy, it is an error in the upper echelons if this happens, Add XXX: comment explaining why the ioctl/orphan race is not closed. Revision Changes Path 1.54 +34 -10 src/sys/geom/geom_dev.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 05:10:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D302237B401; Wed, 2 Apr 2003 05:10:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73EAE43F85; Wed, 2 Apr 2003 05:10:40 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32DAe0U079990; Wed, 2 Apr 2003 05:10:40 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32DAeFM079988; Wed, 2 Apr 2003 05:10:40 -0800 (PST) Message-Id: <200304021310.h32DAeFM079988@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 2 Apr 2003 05:10:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 13:10:41 -0000 phk 2003/04/02 05:10:40 PST FreeBSD src repository Modified files: sys/geom geom_subr.c Log: Only orphan things if the open/close actually succeeded. Revision Changes Path 1.39 +10 -11 src/sys/geom/geom_subr.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 05:18:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2491737B401; Wed, 2 Apr 2003 05:18:46 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE9B443F93; Wed, 2 Apr 2003 05:18:44 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h32DIbA7046147; Wed, 2 Apr 2003 06:18:43 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Wed, 02 Apr 2003 06:17:53 -0700 (MST) Message-Id: <20030402.061753.107142832.imp@bsdimp.com> To: bde@zeta.org.au From: "M. Warner Losh" In-Reply-To: <20030402154250.X25489@gamplex.bde.org> References: <20030401172440.701aaafd.Alexander@Leidinger.net> <20030401200457.GA30284@cirb503493.alcatel.com.au> <20030402154250.X25489@gamplex.bde.org> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Alexander@Leidinger.net Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 13:18:46 -0000 In message: <20030402154250.X25489@gamplex.bde.org> Bruce Evans writes: : This might be caused by icc actually understanding the target's default : precision for long doubles (FreeBSD changes the hardware default of 64-bit : to 53-bit for technical reasons). Yes. That change in precision is bogus, imho. gcc is buggy, and should be fixed, not the kernel. Warner From owner-cvs-all@FreeBSD.ORG Wed Apr 2 05:21:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABBA137B401; Wed, 2 Apr 2003 05:21:10 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8F8E43F85; Wed, 2 Apr 2003 05:21:09 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h32DL8A7046169; Wed, 2 Apr 2003 06:21:08 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Wed, 02 Apr 2003 06:20:25 -0700 (MST) Message-Id: <20030402.062025.132226037.imp@bsdimp.com> To: peterjeremy@optushome.com.au From: "M. Warner Losh" In-Reply-To: <20030402075905.GA30835@cirb503493.alcatel.com.au> References: <20030401200457.GA30284@cirb503493.alcatel.com.au> <20030402154250.X25489@gamplex.bde.org> <20030402075905.GA30835@cirb503493.alcatel.com.au> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: Alexander@Leidinger.net cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: bde@zeta.org.au cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 13:21:11 -0000 In message: <20030402075905.GA30835@cirb503493.alcatel.com.au> Peter Jeremy writes: : Which is more wrong: LDBL_* constants that are "correct" but unusable : because the CPU is set to "round to double" or LBDL_* constants that : match the CPU rounding but not the compiler's "long double" type? Actually, we should have LDBL constants that are correct to match the compiler's notions, and fix the kernel. I've done it at work for testing purposes and I've seen no ill effects. When I changed the LDBL_ constants, it was fully my intention to also change the kernel. Warner From owner-cvs-all@FreeBSD.ORG Wed Apr 2 06:18:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A15E37B401; Wed, 2 Apr 2003 06:18:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8DDD43F93; Wed, 2 Apr 2003 06:18:06 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32EI60U085110; Wed, 2 Apr 2003 06:18:06 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32EI62I085109; Wed, 2 Apr 2003 06:18:06 -0800 (PST) Message-Id: <200304021418.h32EI62I085109@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 06:18:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www Makefile ports/www/hydra Makefile distinfo pkg-descr pkg-plist ports/www/hydra/files patch-defines.h patch-hydra.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 14:18:07 -0000 ijliao 2003/04/02 06:18:06 PST FreeBSD ports repository Modified files: www Makefile Added files: www/hydra Makefile distinfo pkg-descr pkg-plist www/hydra/files patch-defines.h patch-hydra.conf Log: add hydra 0.1.3 A high performance multi-threaded web server Revision Changes Path 1.625 +1 -0 ports/www/Makefile 1.1 +36 -0 ports/www/hydra/Makefile (new) 1.1 +1 -0 ports/www/hydra/distinfo (new) 1.1 +11 -0 ports/www/hydra/files/patch-defines.h (new) 1.1 +20 -0 ports/www/hydra/files/patch-hydra.conf (new) 1.1 +9 -0 ports/www/hydra/pkg-descr (new) 1.1 +6 -0 ports/www/hydra/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 06:18:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 988F537B404; Wed, 2 Apr 2003 06:18:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A15343F75; Wed, 2 Apr 2003 06:18:15 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32EIF0U085148; Wed, 2 Apr 2003 06:18:15 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32EIEXW085147; Wed, 2 Apr 2003 06:18:14 -0800 (PST) Message-Id: <200304021418.h32EIEXW085147@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 06:18:14 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 14:18:15 -0000 ijliao 2003/04/02 06:18:14 PST FreeBSD ports repository Modified files: . modules Log: hydra --> ports/www/hydra Revision Changes Path 1.6956 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 06:47:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8003837B401; Wed, 2 Apr 2003 06:47:24 -0800 (PST) Received: from smtp0.adl1.internode.on.net (smtp0.adl1.internode.on.net [203.16.214.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D2E043F75; Wed, 2 Apr 2003 06:47:23 -0800 (PST) (envelope-from smckay@internode.on.net) Received: from dungeon.home (ppp994.qld.padsl.internode.on.net [150.101.184.225])h32ElJZe088141; Thu, 3 Apr 2003 00:17:20 +0930 (CST) Received: from dungeon.home (localhost [127.0.0.1]) by dungeon.home (8.12.6/8.11.6) with ESMTP id h32ElHYH008677; Thu, 3 Apr 2003 00:47:18 +1000 (EST) (envelope-from mckay) Message-Id: <200304021447.h32ElHYH008677@dungeon.home> To: Mike Silbersack References: <200304010821.h318Li4Q091687@repoman.freebsd.org> <20030401114055.M1612@odysseus.silby.com> In-Reply-To: <20030401114055.M1612@odysseus.silby.com> from Mike Silbersack at "Tue, 01 Apr 2003 17:43:00 +0000" Date: Thu, 03 Apr 2003 00:47:17 +1000 From: Stephen McKay cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Stephen McKay Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4 inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 14:47:25 -0000 On Tuesday, 1st April 2003, Mike Silbersack wrote: >> Implement support for RFC 3514 (The Security Flag in the IPv4 Header). >> (See: ftp://ftp.rfc-editor.org/in-notes/rfc3514.txt) > >Actually committing to the tree is taking this joke quite a bit too far. >Is repo-surgery planned to remove this? You mean this was real? Not just a fake commit message? I was laughing up until now... [Checks local copy of ping.c] Sigh. You know, it's all beer and skittles until someone loses an eye, and my eye feels really sore right now. Can we have this invisibly un-commited? Thanks, Stephen. From owner-cvs-all@FreeBSD.ORG Wed Apr 2 06:52:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68E7A37B401; Wed, 2 Apr 2003 06:52:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BB4043FAF; Wed, 2 Apr 2003 06:52:22 -0800 (PST) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32EqL0U087429; Wed, 2 Apr 2003 06:52:21 -0800 (PST) (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32EqLmf087428; Wed, 2 Apr 2003 06:52:21 -0800 (PST) Message-Id: <200304021452.h32EqLmf087428@repoman.freebsd.org> From: Maxim Konovalov Date: Wed, 2 Apr 2003 06:52:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ping ping.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 14:52:22 -0000 maxim 2003/04/02 06:52:21 PST FreeBSD src repository Modified files: sbin/ping ping.c Log: IP_EVIL -> IP_EF Revision Changes Path 1.93 +2 -2 src/sbin/ping/ping.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 07:24:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5AB937B401; Wed, 2 Apr 2003 07:24:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8819443F75; Wed, 2 Apr 2003 07:24:51 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32FOp0U090717; Wed, 2 Apr 2003 07:24:51 -0800 (PST) (envelope-from hsu@repoman.freebsd.org) Received: (from hsu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32FOphG090716; Wed, 2 Apr 2003 07:24:51 -0800 (PST) Message-Id: <200304021524.h32FOphG090716@repoman.freebsd.org> From: Jeffrey Hsu Date: Wed, 2 Apr 2003 07:24:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sys_pipe.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 15:24:52 -0000 hsu 2003/04/02 07:24:51 PST FreeBSD src repository Modified files: sys/kern sys_pipe.c Log: Need to hold the same SMP lock for (knote) list traversal as for list manipulation. This lock also protects read-modify-write operations on the pipe_state field. Revision Changes Path 1.134 +1 -1 src/sys/kern/sys_pipe.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 07:58:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C23737B401; Wed, 2 Apr 2003 07:58:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDC4443F75; Wed, 2 Apr 2003 07:58:13 -0800 (PST) (envelope-from foxfair@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32FwD0U092785; Wed, 2 Apr 2003 07:58:13 -0800 (PST) (envelope-from foxfair@repoman.freebsd.org) Received: (from foxfair@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32FwDZv092784; Wed, 2 Apr 2003 07:58:13 -0800 (PST) Message-Id: <200304021558.h32FwDZv092784@repoman.freebsd.org> From: Foxfair Hu Date: Wed, 2 Apr 2003 07:58:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/ftimes Makefile pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 15:58:15 -0000 foxfair 2003/04/02 07:58:13 PST FreeBSD ports repository Modified files: security/ftimes Makefile Removed files: security/ftimes pkg-message Log: strip binary, remove pkg-message as MAINTAINER's wish. Revision Changes Path 1.2 +3 -0 ports/security/ftimes/Makefile 1.2 +0 -19 ports/security/ftimes/pkg-message (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 08:06:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D69337B401; Wed, 2 Apr 2003 08:06:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25CF143F93; Wed, 2 Apr 2003 08:06:00 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32G5x0U094375; Wed, 2 Apr 2003 08:05:59 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32G5xxL094374; Wed, 2 Apr 2003 08:05:59 -0800 (PST) Message-Id: <200304021605.h32G5xxL094374@repoman.freebsd.org> From: Peter Wemm Date: Wed, 2 Apr 2003 08:05:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access access.unclassified X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 16:06:02 -0000 peter 2003/04/02 08:05:59 PST FreeBSD src repository Modified files: . access access.unclassified Log: Move truckman from access.unclassified to access Revision Changes Path 1.590 +1 -0 CVSROOT/access 1.636 +0 -1 CVSROOT/access.unclassified From owner-cvs-all@FreeBSD.ORG Wed Apr 2 08:06:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A8D937B401; Wed, 2 Apr 2003 08:06:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7227B43FB1; Wed, 2 Apr 2003 08:06:38 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32G6c0U094417; Wed, 2 Apr 2003 08:06:38 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32G6bJD094416; Wed, 2 Apr 2003 08:06:37 -0800 (PST) Message-Id: <200304021606.h32G6bJD094416@repoman.freebsd.org> From: Peter Wemm Date: Wed, 2 Apr 2003 08:06:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 16:06:41 -0000 peter 2003/04/02 08:06:37 PST FreeBSD ports repository Modified files: . access Log: Move truckman from access.unclassified to access Revision Changes Path 1.535 +1 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Wed Apr 2 08:12:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97C8337B401; Wed, 2 Apr 2003 08:12:35 -0800 (PST) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB2A143FBD; Wed, 2 Apr 2003 08:12:34 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) h32GCYPR085305; Wed, 2 Apr 2003 08:12:34 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost)h32GCWLv085304; Wed, 2 Apr 2003 08:12:32 -0800 (PST) Date: Wed, 2 Apr 2003 08:12:32 -0800 From: Steve Kargl To: Bruce Evans Message-ID: <20030402161232.GA85205@troutmask.apl.washington.edu> References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030330175646.281097ad.Alexander@Leidinger.net> <20030331082023.GE11307@cirb503493.alcatel.com.au> <20030401172440.701aaafd.Alexander@Leidinger.net> <20030401200457.GA30284@cirb503493.alcatel.com.au> <20030402154250.X25489@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030402154250.X25489@gamplex.bde.org> User-Agent: Mutt/1.4i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Alexander Leidinger Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 16:12:36 -0000 On Wed, Apr 02, 2003 at 04:21:30PM +1000, Bruce Evans wrote: > > verify correct FP behaviour by the CPU and compiler floating around on > > the net - look at NETLIB or Prof W. Kahan's web site. (I don't have > > the URL's immediately to hand). > > ucbtest is good but is too old to cover much of C99. I haven't found > anything anywhere near as good and up to date. > Have you looked at John Hauser's SoftFloat package? http://www.jhauser.us/arithmetic/SoftFloat.html. The blurb at the top of the web page states: "SoftFloat fully implements the four most common floating-point formats: single precision (32 bits), double precision (64 bits), extended double precision (80 bits), and quadruple precision (128 bits). All required rounding modes, exception flags, and special values are supported. There is a test program available to compare the machines FP against SoftFloat. -- Steve From owner-cvs-all@FreeBSD.ORG Wed Apr 2 08:20:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8171037B40D; Wed, 2 Apr 2003 08:20:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2158943FAF; Wed, 2 Apr 2003 08:20:03 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32GK20U095110; Wed, 2 Apr 2003 08:20:02 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32GK29R095109; Wed, 2 Apr 2003 08:20:02 -0800 (PST) Message-Id: <200304021620.h32GK29R095109@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 08:20:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/comms/zssh Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 16:20:04 -0000 ijliao 2003/04/02 08:20:02 PST FreeBSD ports repository Modified files: comms/zssh Makefile Log: fix comment PR: 50528 Submitted by: maintainer Revision Changes Path 1.7 +1 -1 ports/comms/zssh/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 08:37:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 526EC37B401; Wed, 2 Apr 2003 08:37:13 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC99D43F3F; Wed, 2 Apr 2003 08:37:08 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id CAA19131; Thu, 3 Apr 2003 02:36:57 +1000 Date: Thu, 3 Apr 2003 02:36:56 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Steve Kargl In-Reply-To: <20030402161232.GA85205@troutmask.apl.washington.edu> Message-ID: <20030403022202.M27329@gamplex.bde.org> References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030330175646.281097ad.Alexander@Leidinger.net> <20030331082023.GE11307@cirb503493.alcatel.com.au> <20030401172440.701aaafd.Alexander@Leidinger.net> <20030402154250.X25489@gamplex.bde.org> <20030402161232.GA85205@troutmask.apl.washington.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Alexander Leidinger Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 16:37:13 -0000 On Wed, 2 Apr 2003, Steve Kargl wrote: > On Wed, Apr 02, 2003 at 04:21:30PM +1000, Bruce Evans wrote: > > ucbtest is good but is too old to cover much of C99. I haven't found > > anything anywhere near as good and up to date. > > Have you looked at John Hauser's SoftFloat package? > > http://www.jhauser.us/arithmetic/SoftFloat.html. > > The blurb at the top of the web page states: "SoftFloat fully implements > the four most common floating-point formats: single precision (32 bits), > double precision (64 bits), extended double precision (80 bits), and > quadruple precision (128 bits). All required rounding modes, exception > flags, and special values are supported. > > There is a test program available to compare the machines > FP against SoftFloat. Only a little. It seemed to do little more than what the blurb says: implement soft-float and test itself. This is not very interesting for us on at least i386's, since we already have hard-float with known properties, and Intel and a few hundred million of Intel's customers tested it. The missing test coverage is mainly of the less commonly used math functions (Gamma, Bessel and lots of new C99 functions). Bruce From owner-cvs-all@FreeBSD.ORG Wed Apr 2 08:44:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6BDD37B407; Wed, 2 Apr 2003 08:44:02 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56AA943FB1; Wed, 2 Apr 2003 08:44:01 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.7) with ESMTP id h32GhND0059139; Wed, 2 Apr 2003 08:43:23 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h32GhNlX059138; Wed, 2 Apr 2003 08:43:23 -0800 (PST) Date: Wed, 2 Apr 2003 08:43:23 -0800 From: "David O'Brien" To: Steve Kargl Message-ID: <20030402164323.GD58949@dragon.nuxi.com> References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030330175646.281097ad.Alexander@Leidinger.net> <20030331082023.GE11307@cirb503493.alcatel.com.au> <20030401172440.701aaafd.Alexander@Leidinger.net> <20030401200457.GA30284@cirb503493.alcatel.com.au> <20030402154250.X25489@gamplex.bde.org> <20030402161232.GA85205@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030402161232.GA85205@troutmask.apl.washington.edu> User-Agent: Mutt/1.4i 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 cc: src-committers@freebsd.org cc: Bruce Evans cc: cvs-src@freebsd.org cc: Alexander Leidinger cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 16:44:03 -0000 On Wed, Apr 02, 2003 at 08:12:32AM -0800, Steve Kargl wrote: > On Wed, Apr 02, 2003 at 04:21:30PM +1000, Bruce Evans wrote: > > > verify correct FP behaviour by the CPU and compiler floating around on > > > the net - look at NETLIB or Prof W. Kahan's web site. (I don't have > > > the URL's immediately to hand). > > > > ucbtest is good but is too old to cover much of C99. I haven't found > > anything anywhere near as good and up to date. > > Have you looked at John Hauser's SoftFloat package? > http://www.jhauser.us/arithmetic/SoftFloat.html. > > The blurb at the top of the web page states: "SoftFloat fully implements > the four most common floating-point formats: single precision (32 bits), NetBSD uses this in their libc for PowerPC, Sparc64, StrongARM. From owner-cvs-all@FreeBSD.ORG Wed Apr 2 08:47:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E20F37B401; Wed, 2 Apr 2003 08:47:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B45E543FAF; Wed, 2 Apr 2003 08:47:16 -0800 (PST) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32GlG0U002337; Wed, 2 Apr 2003 08:47:16 -0800 (PST) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32GlGVU002336; Wed, 2 Apr 2003 08:47:16 -0800 (PST) Message-Id: <200304021647.h32GlGVU002336@repoman.freebsd.org> From: Maxime Henrion Date: Wed, 2 Apr 2003 08:47:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fxp if_fxp.c if_fxpreg.h if_fxpvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 16:47:17 -0000 mux 2003/04/02 08:47:16 PST FreeBSD src repository Modified files: sys/dev/fxp if_fxp.c if_fxpreg.h if_fxpvar.h Log: Convert the fxp(4) driver to the busdma API. This patch is rather big because I had to significantly redesign the driver to make the busdma conversion possible. Most notably, hardware and software structures were carefully splitted to get rid of all the structs overlapping evilness. Special thanks to phk and Richard Puga for providing me with fxp(4) hardware to do this work. Thanks to marcel for testing this on ia64, and to Fred Clift for testing this on alpha. Tested on: i386, ia64, alpha Revision Changes Path 1.152 +396 -206 src/sys/dev/fxp/if_fxp.c 1.28 +2 -14 src/sys/dev/fxp/if_fxpreg.h 1.24 +54 -9 src/sys/dev/fxp/if_fxpvar.h From owner-cvs-all@FreeBSD.ORG Wed Apr 2 08:48:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9940837B408; Wed, 2 Apr 2003 08:48:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3019143F3F; Wed, 2 Apr 2003 08:48:53 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Gmr0U002404; Wed, 2 Apr 2003 08:48:53 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32GmqLM002403; Wed, 2 Apr 2003 08:48:52 -0800 (PST) Message-Id: <200304021648.h32GmqLM002403@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Wed, 2 Apr 2003 08:48:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/understand_c Makefile distinfo pkg-plist ports/devel/understand_ada Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 16:48:54 -0000 lioux 2003/04/02 08:48:52 PST FreeBSD ports repository Modified files: devel/understand_c Makefile distinfo pkg-plist devel/understand_ada Makefile distinfo pkg-plist Log: Update to 1.4 Build 204 Revision Changes Path 1.45 +27 -4 ports/devel/understand_ada/Makefile 1.42 +1 -1 ports/devel/understand_ada/distinfo 1.6 +250 -55 ports/devel/understand_ada/pkg-plist 1.64 +32 -2 ports/devel/understand_c/Makefile 1.60 +1 -1 ports/devel/understand_c/distinfo 1.11 +263 -47 ports/devel/understand_c/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 08:54:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88E9E37B401; Wed, 2 Apr 2003 08:54:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B3AB43F93; Wed, 2 Apr 2003 08:54:41 -0800 (PST) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Gse0U003252; Wed, 2 Apr 2003 08:54:41 -0800 (PST) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32Gse3Q003251; Wed, 2 Apr 2003 08:54:40 -0800 (PST) Message-Id: <200304021654.h32Gse3Q003251@repoman.freebsd.org> From: Maxime Henrion Date: Wed, 2 Apr 2003 08:54:40 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/projects/busdma index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 16:54:42 -0000 mux 2003/04/02 08:54:40 PST FreeBSD doc repository Modified files: en/projects/busdma index.sgml Log: Mark the fxp(4) busdma task as done. Revision Changes Path 1.51 +3 -3 www/en/projects/busdma/index.sgml From owner-cvs-all@FreeBSD.ORG Wed Apr 2 10:02:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C095B37B401; Wed, 2 Apr 2003 10:02:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61A2243F75; Wed, 2 Apr 2003 10:02:59 -0800 (PST) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32I2x0U008635; Wed, 2 Apr 2003 10:02:59 -0800 (PST) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32I2wNC008634; Wed, 2 Apr 2003 10:02:58 -0800 (PST) Message-Id: <200304021802.h32I2wNC008634@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Wed, 2 Apr 2003 10:02:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 18:03:00 -0000 mdodd 2003/04/02 10:02:58 PST FreeBSD src repository Modified files: sys/netinet ip_output.c Log: - Use the correct constant define. - Add a missing break. Revision Changes Path 1.183 +3 -2 src/sys/netinet/ip_output.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 10:18:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E56DA37B405 for ; Wed, 2 Apr 2003 10:18:35 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 2B1FE43FB1 for ; Wed, 2 Apr 2003 10:18:32 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 11960 invoked by uid 1000); 2 Apr 2003 18:18:32 -0000 Date: Wed, 2 Apr 2003 10:18:32 -0800 (PST) From: Nate Lawson To: SUZUKI Shinsuke In-Reply-To: <20030402113558.1A93537B417@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/rtadvd config.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 18:18:36 -0000 On Wed, 2 Apr 2003, SUZUKI Shinsuke wrote: > Modified files: > usr.sbin/rtadvd config.c > Log: > fixed invalid pointer reference > > Obtained from: KAME > > Revision Changes Path > 1.13 +1 -0 src/usr.sbin/rtadvd/config.c > > > Index: src/usr.sbin/rtadvd/config.c > diff -u src/usr.sbin/rtadvd/config.c:1.12 src/usr.sbin/rtadvd/config.c:1.13 > --- src/usr.sbin/rtadvd/config.c:1.12 Mon Dec 30 13:18:15 2002 > +++ src/usr.sbin/rtadvd/config.c Wed Apr 2 03:35:51 2003 > @@ -1,4 +1,4 @@ > -/* $FreeBSD: /repoman/r/ncvs/src/usr.sbin/rtadvd/config.c,v 1.12 2002/12/30 21:18:15 schweikh Exp $ */ > +/* $FreeBSD: /repoman/r/ncvs/src/usr.sbin/rtadvd/config.c,v 1.13 2003/04/02 11:35:51 suz Exp $ */ > /* $KAME: config.c,v 1.37 2001/05/25 07:34:00 itojun Exp $ */ > > /* > @@ -630,6 +630,7 @@ > > /* link into chain */ > insque(pp, &rai->prefix); > + pp->rainfo == rai; > > /* counter increment */ > rai->pfxs++; I think you want assignment, not equivalence test, especially since you deref the pointer immediately afterwards. -Nate From owner-cvs-all@FreeBSD.ORG Wed Apr 2 10:23:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D3B037B407 for ; Wed, 2 Apr 2003 10:23:53 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 9462043FCB for ; Wed, 2 Apr 2003 10:23:51 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 11976 invoked by uid 1000); 2 Apr 2003 18:23:52 -0000 Date: Wed, 2 Apr 2003 10:23:52 -0800 (PST) From: Nate Lawson To: Maxime Henrion In-Reply-To: <20030402164726.ACB6737B401@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/fxp if_fxp.c if_fxpreg.h if_fxpvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 18:23:53 -0000 On Wed, 2 Apr 2003, Maxime Henrion wrote: > Modified files: > sys/dev/fxp if_fxp.c if_fxpreg.h if_fxpvar.h > Log: > Convert the fxp(4) driver to the busdma API. > > This patch is rather big because I had to significantly redesign > the driver to make the busdma conversion possible. Most notably, > hardware and software structures were carefully splitted to get > rid of all the structs overlapping evilness. Nice! I have some locking patches for fxp that I'll post soon. It looks like some nice comments were removed in your diff. It would be good if you rewrote equivalent ones based on the change in behavior. -Nate From owner-cvs-all@FreeBSD.ORG Wed Apr 2 10:44:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50CD837B401; Wed, 2 Apr 2003 10:44:15 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id D757643FB1; Wed, 2 Apr 2003 10:44:14 -0800 (PST) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id BC3F62ED416; Wed, 2 Apr 2003 10:44:14 -0800 (PST) Date: Wed, 2 Apr 2003 20:44:14 +0200 From: Maxime Henrion To: Nate Lawson Message-ID: <20030402184414.GL1750@elvis.mu.org> References: <20030402164726.ACB6737B401@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/fxp if_fxp.c if_fxpreg.h if_fxpvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 18:44:15 -0000 Nate Lawson wrote: > On Wed, 2 Apr 2003, Maxime Henrion wrote: > > Modified files: > > sys/dev/fxp if_fxp.c if_fxpreg.h if_fxpvar.h > > Log: > > Convert the fxp(4) driver to the busdma API. > > > > This patch is rather big because I had to significantly redesign > > the driver to make the busdma conversion possible. Most notably, > > hardware and software structures were carefully splitted to get > > rid of all the structs overlapping evilness. > > Nice! I have some locking patches for fxp that I'll post soon. It looks > like some nice comments were removed in your diff. It would be good if > you rewrote equivalent ones based on the change in behavior. I can't figure out which comments your are talking about. Some comments have been moved to other places where they belong now, and one comment has been removed in if_fxpreg.h because it wasn't meaningful anymore. Cheers, Maxime From owner-cvs-all@FreeBSD.ORG Wed Apr 2 11:16:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BE3D37B404; Wed, 2 Apr 2003 11:16:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12A7B43F3F; Wed, 2 Apr 2003 11:16:51 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32JGo0U015050; Wed, 2 Apr 2003 11:16:50 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32JGoTP015049; Wed, 2 Apr 2003 11:16:50 -0800 (PST) Message-Id: <200304021916.h32JGoTP015049@repoman.freebsd.org> From: Norikatsu Shigemura Date: Wed, 2 Apr 2003 11:16:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/mutt-devel Makefile distinfo pkg-plist ports/japanese/mutt-devel/files prepatch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 19:16:51 -0000 nork 2003/04/02 11:16:50 PST FreeBSD ports repository Modified files: japanese/mutt-devel Makefile distinfo pkg-plist japanese/mutt-devel/files prepatch-aa Log: Update to 1.5.4. PR: ports/50464 Submitted by: SHIOZAKI Takehiko Approved by: IWASHITA Yoji (maintainer) Revision Changes Path 1.42 +9 -1 ports/japanese/mutt-devel/Makefile 1.29 +2 -2 ports/japanese/mutt-devel/distinfo 1.8 +6 -6 ports/japanese/mutt-devel/files/prepatch-aa 1.19 +8 -0 ports/japanese/mutt-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 11:31:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D243837B401; Wed, 2 Apr 2003 11:31:02 -0800 (PST) Received: from mailout06.sul.t-online.com (mailout06.sul.t-online.com [194.25.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2FEC43FB1; Wed, 2 Apr 2003 11:31:01 -0800 (PST) (envelope-from Alexander@Leidinger.net) Received: from fwd10.sul.t-online.de by mailout06.sul.t-online.com with smtp id 190nwo-0006O7-0G; Wed, 02 Apr 2003 21:30:58 +0200 Received: from Andro-Beta.Leidinger.net (520065502893-0001@[217.83.28.130]) by fmrl10.sul.t-online.com with esmtp id 190nwg-1QdFMeC; Wed, 2 Apr 2003 21:30:50 +0200 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) h32JUmOq097898; Wed, 2 Apr 2003 21:30:48 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.7/8.12.7) with SMTP id h32JUmGc055901; Wed, 2 Apr 2003 21:30:49 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Wed, 2 Apr 2003 21:30:48 +0200 From: Alexander Leidinger To: "Matthew N. Dodd" Message-Id: <20030402213048.7d0de613.Alexander@Leidinger.net> In-Reply-To: <200304010821.h318Li4Q091687@repoman.freebsd.org> References: <200304010821.h318Li4Q091687@repoman.freebsd.org> X-Mailer: Sylpheed version 0.8.9claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Sender: 520065502893-0001@t-dialin.net cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Proposal regarding the RFC 3514 handling X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 19:31:03 -0000 On Tue, 1 Apr 2003 00:21:44 -0800 (PST) "Matthew N. Dodd" wrote: > mdodd 2003/04/01 00:21:44 PST > > FreeBSD src repository > > Modified files: > sbin/ping ping.8 ping.c > share/man/man4 inet.4 ip.4 > sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c > ip_var.h > usr.bin/netstat inet.c > Log: > Implement support for RFC 3514 (The Security Flag in the IPv4 Header). In the light of the actual "force" against this commit: perhaps it would be ok for all involved parties to only compile this code in based upon a kernel option... In my POV: people which don't know enough about this topic would IMHO not be concerned about this code, and people which know enough to have a reason to compile or not compile this code into the kernel should also know enough about FreeBSD to not regard this code as a lack of professionalism (and see it as what it is: there are people which enjoy to invest their time into FreeBSD... and this is what makes FreeBSD what it is). We don't have to add it to the release notes if we don't want to add it. Bye, Alexander. -- To boldly go where I surely don't belong. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-cvs-all@FreeBSD.ORG Wed Apr 2 11:46:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C39F37B401; Wed, 2 Apr 2003 11:46:20 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47FFA43FB1; Wed, 2 Apr 2003 11:46:19 -0800 (PST) (envelope-from mdodd@FreeBSD.ORG) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.12.9/8.12.9) with ESMTP id h32JkDEF099402; Wed, 2 Apr 2003 14:46:18 -0500 (EST) (envelope-from mdodd@FreeBSD.ORG) Date: Wed, 2 Apr 2003 14:46:13 -0500 (EST) From: "Matthew N. Dodd" X-X-Sender: winter@sasami.jurai.net To: Alexander Leidinger In-Reply-To: <20030402213048.7d0de613.Alexander@Leidinger.net> Message-ID: <20030402144242.N46852@sasami.jurai.net> References: <200304010821.h318Li4Q091687@repoman.freebsd.org> <20030402213048.7d0de613.Alexander@Leidinger.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: Proposal regarding the RFC 3514 handling X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 19:46:20 -0000 On Wed, 2 Apr 2003, Alexander Leidinger wrote: > In the light of the actual "force" against this commit: perhaps it would > be ok for all involved parties to only compile this code in based upon a > kernel option... How about I just keep this patch up to date on my ftp site? -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | From owner-cvs-all@FreeBSD.ORG Wed Apr 2 11:48:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4A4F37B401; Wed, 2 Apr 2003 11:48:22 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAE1643FAF; Wed, 2 Apr 2003 11:48:21 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id C33692A8A5; Wed, 2 Apr 2003 11:48:21 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Alexander Leidinger In-Reply-To: <20030402213048.7d0de613.Alexander@Leidinger.net> Date: Wed, 02 Apr 2003 11:48:21 -0800 From: Peter Wemm Message-Id: <20030402194821.C33692A8A5@canning.wemm.org> cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: "Matthew N. Dodd" Subject: Re: Proposal regarding the RFC 3514 handling X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 19:48:23 -0000 Alexander Leidinger wrote: > On Tue, 1 Apr 2003 00:21:44 -0800 (PST) > "Matthew N. Dodd" wrote: > > > mdodd 2003/04/01 00:21:44 PST > > > > FreeBSD src repository > > > > Modified files: > > sbin/ping ping.8 ping.c > > share/man/man4 inet.4 ip.4 > > sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c > > ip_var.h > > usr.bin/netstat inet.c > > Log: > > Implement support for RFC 3514 (The Security Flag in the IPv4 Header). > > In the light of the actual "force" against this commit: perhaps it would > be ok for all involved parties to only compile this code in based upon a > kernel option... Personally, I tend to agree. > In my POV: people which don't know enough about this topic would IMHO > not be concerned about this code, and people which know enough to have a > reason to compile or not compile this code into the kernel should also > know enough about FreeBSD to not regard this code as a lack of > professionalism (and see it as what it is: there are people which enjoy > to invest their time into FreeBSD... and this is what makes FreeBSD what > it is). Exactly. We're supposed to be doing FreeBSD for our own enjoyment. If others get use from it then fine. The day that we're no longer allowed to have fun because it might upset somebody in some fortune-500 company will be a sad day indeed. Nobody said we had to be 100% deadly serious the whole time. .. as long as having a bit of fun doesn't get in the way.. An option would stop it being in the code execution paths. On the other hand, we have so much cruft in the ip input/output code paths (2 or 3 different packet filter hooks etc), this is tiny by comparison. Anyway, I think Matthew is going to to remove it, so maybe its a moot point. 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 From owner-cvs-all@FreeBSD.ORG Wed Apr 2 11:56:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5D5937B401; Wed, 2 Apr 2003 11:56:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3496843FE3; Wed, 2 Apr 2003 11:56:55 -0800 (PST) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Jus0U017665; Wed, 2 Apr 2003 11:56:54 -0800 (PST) (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32Jusoe017664; Wed, 2 Apr 2003 11:56:54 -0800 (PST) Message-Id: <200304021956.h32Jusoe017664@repoman.freebsd.org> From: Anton Berezin Date: Wed, 2 Apr 2003 11:56:54 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-libwww Makefile distinfo pkg-plist ports/www/p5-libwww/files patch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 19:56:56 -0000 tobez 2003/04/02 11:56:54 PST FreeBSD ports repository Modified files: www/p5-libwww Makefile distinfo pkg-plist www/p5-libwww/files patch-Makefile.PL Log: Update to 5.69. PR: 50551 Approved by: maintainer Revision Changes Path 1.60 +12 -15 ports/www/p5-libwww/Makefile 1.21 +1 -1 ports/www/p5-libwww/distinfo 1.2 +13 -15 ports/www/p5-libwww/files/patch-Makefile.PL 1.22 +68 -62 ports/www/p5-libwww/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:05:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3BF737B401; Wed, 2 Apr 2003 12:05:53 -0800 (PST) Received: from cirb503493.alcatel.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD19C43F93; Wed, 2 Apr 2003 12:05:51 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1])h32K5nM2031832; Thu, 3 Apr 2003 06:05:49 +1000 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.8/8.12.8/Submit) id h32K5kjb031831; Thu, 3 Apr 2003 06:05:47 +1000 (EST) From: Peter Jeremy Date: Thu, 3 Apr 2003 06:05:46 +1000 To: Stephen McKay Message-ID: <20030402200546.GA31752@cirb503493.alcatel.com.au> References: <200304010821.h318Li4Q091687@repoman.freebsd.org> <20030401114055.M1612@odysseus.silby.com> <200304021447.h32ElHYH008677@dungeon.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304021447.h32ElHYH008677@dungeon.home> User-Agent: Mutt/1.4.1i gFrom: Peter Jeremy cc: cvs-src@freebsd.org cc: Mike Silbersack cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4 inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:05:54 -0000 On Thu, Apr 03, 2003 at 12:47:17AM +1000, Stephen McKay wrote: >On Tuesday, 1st April 2003, Mike Silbersack wrote: >>> Implement support for RFC 3514 (The Security Flag in the IPv4 Header). >>> (See: ftp://ftp.rfc-editor.org/in-notes/rfc3514.txt) >> >>Actually committing to the tree is taking this joke quite a bit too far. >>Is repo-surgery planned to remove this? > >Can we have this invisibly un-commited? If you mean "make it so it never happened" then I don't believe this is possible. To explain, the change means that ping.c (for example) has gone from rev 1.91 to rev 1.92 - and this change has been fairly widely disseminated: Lots of people will have CVSup'd it and it's in the CTM history. If it "never happened" then ping.c will revert to rev 1.91 (etc). Firstly, I believe CVS doesn't cope well with this sort of thing. Secondly, the next person to commit to ping.c will create rev 1.92 - meaning that there are two different rev 1.92 versions in existence. Whatever happens, the "undo" has to increment the CVS revisions. This can most easily be done either by mdodd@ reverting his change normally. If necessary, cvs@ could then perform some surgery to mean that ping.c 1.92 doesn't exist (though this will cause pain for anyone who has 1.92 checked out). IMHO, this joke isn't so off-colour that it has to disappear from the repository. I agree that this joke has probably outlived its purpose but a normal backout should be sufficient for this. Peter From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:12:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5891A37B408; Wed, 2 Apr 2003 12:12:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E62F343F85; Wed, 2 Apr 2003 12:12:08 -0800 (PST) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32KC80U019770; Wed, 2 Apr 2003 12:12:08 -0800 (PST) (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32KC8EQ019769; Wed, 2 Apr 2003 12:12:08 -0800 (PST) Message-Id: <200304022012.h32KC8EQ019769@repoman.freebsd.org> From: Anton Berezin Date: Wed, 2 Apr 2003 12:12:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www Makefile ports/www/p5-WWW-Mechanize Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:12:09 -0000 tobez 2003/04/02 12:12:08 PST FreeBSD ports repository Modified files: www Makefile Added files: www/p5-WWW-Mechanize Makefile distinfo pkg-descr pkg-plist Log: Add www/p5-WWW-Mechanize, a perl module to help you automate interaction with a website. Revision Changes Path 1.626 +1 -0 ports/www/Makefile 1.1 +41 -0 ports/www/p5-WWW-Mechanize/Makefile (new) 1.1 +1 -0 ports/www/p5-WWW-Mechanize/distinfo (new) 1.1 +9 -0 ports/www/p5-WWW-Mechanize/pkg-descr (new) 1.1 +5 -0 ports/www/p5-WWW-Mechanize/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:12:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFB5737B40A; Wed, 2 Apr 2003 12:12:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 518F643F75; Wed, 2 Apr 2003 12:12:22 -0800 (PST) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32KCM0U019808; Wed, 2 Apr 2003 12:12:22 -0800 (PST) (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32KCM6F019807; Wed, 2 Apr 2003 12:12:22 -0800 (PST) Message-Id: <200304022012.h32KCM6F019807@repoman.freebsd.org> From: Anton Berezin Date: Wed, 2 Apr 2003 12:12:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:12:23 -0000 tobez 2003/04/02 12:12:22 PST FreeBSD ports repository Modified files: . modules Log: p5-WWW-Mechanize --> ports/www/p5-WWW-Mechanize Revision Changes Path 1.6957 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:14:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C33737B401; Wed, 2 Apr 2003 12:14:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0831343FBD; Wed, 2 Apr 2003 12:14:00 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32KDx0U019984; Wed, 2 Apr 2003 12:13:59 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32KDx7g019983; Wed, 2 Apr 2003 12:13:59 -0800 (PST) Message-Id: <200304022013.h32KDx7g019983@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 2 Apr 2003 12:13:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc Makefile disktab src/etc/etc.alpha disktab src/etc/etc.i386 disktab src/etc/etc.ia64 disktab src/etc/etc.sparc64 disktab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:14:00 -0000 ru 2003/04/02 12:13:59 PST FreeBSD src repository Modified files: etc Makefile disktab Removed files: etc/etc.alpha disktab etc/etc.i386 disktab etc/etc.ia64 disktab etc/etc.sparc64 disktab Log: Make disktab(5) MI (repo-copied from etc.i386/disktab). Revision Changes Path 1.307 +1 -2 src/etc/Makefile 1.23 +1 -1 src/etc/disktab 1.6 +0 -224 src/etc/etc.alpha/disktab (dead) 1.23 +0 -235 src/etc/etc.i386/disktab (dead) 1.2 +0 -218 src/etc/etc.ia64/disktab (dead) 1.2 +0 -224 src/etc/etc.sparc64/disktab (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:14:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A86237B401; Wed, 2 Apr 2003 12:14:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D596443FBF; Wed, 2 Apr 2003 12:14:44 -0800 (PST) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32KEi0U020099; Wed, 2 Apr 2003 12:14:44 -0800 (PST) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32KEiTQ020098; Wed, 2 Apr 2003 12:14:44 -0800 (PST) Message-Id: <200304022014.h32KEiTQ020098@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Wed, 2 Apr 2003 12:14:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4 inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:14:45 -0000 mdodd 2003/04/02 12:14:44 PST FreeBSD src repository Modified files: sbin/ping ping.8 ping.c share/man/man4 inet.4 ip.4 sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h usr.bin/netstat inet.c Log: Back out support for RFC3514. RFC3514 poses an unacceptale risk to compliant systems. Revision Changes Path 1.48 +2 -4 src/sbin/ping/ping.8 1.94 +1 -13 src/sbin/ping/ping.c 1.22 +0 -11 src/share/man/man4/inet.4 1.30 +0 -9 src/share/man/man4/ip.4 1.76 +0 -2 src/sys/netinet/in.h 1.60 +0 -1 src/sys/netinet/in_pcb.h 1.24 +0 -1 src/sys/netinet/ip.h 1.234 +0 -14 src/sys/netinet/ip_input.c 1.184 +1 -30 src/sys/netinet/ip_output.c 1.73 +0 -1 src/sys/netinet/ip_var.h 1.58 +0 -1 src/usr.bin/netstat/inet.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:15:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 786FB37B401; Wed, 2 Apr 2003 12:15:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18DAE43F85; Wed, 2 Apr 2003 12:15:40 -0800 (PST) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32KFd0U020242; Wed, 2 Apr 2003 12:15:39 -0800 (PST) (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32KFdH1020241; Wed, 2 Apr 2003 12:15:39 -0800 (PST) Message-Id: <200304022015.h32KFdH1020241@repoman.freebsd.org> From: "James E. Housley" Date: Wed, 2 Apr 2003 12:15:39 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/uvscan-dat Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:15:40 -0000 jeh 2003/04/02 12:15:39 PST FreeBSD ports repository Modified files: security/uvscan-dat Makefile distinfo Log: Update to 4255 Revision Changes Path 1.138 +1 -1 ports/security/uvscan-dat/Makefile 1.136 +1 -1 ports/security/uvscan-dat/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:16:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 198DF37B401; Wed, 2 Apr 2003 12:16:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFD1E43F3F; Wed, 2 Apr 2003 12:16:02 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32KG20U020299; Wed, 2 Apr 2003 12:16:02 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32KG2hD020298; Wed, 2 Apr 2003 12:16:02 -0800 (PST) Message-Id: <200304022016.h32KG2hD020298@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 2 Apr 2003 12:16:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc disktab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:16:03 -0000 ru 2003/04/02 12:16:02 PST FreeBSD src repository Modified files: etc disktab Log: Drop the silly notion that fd* entries have both `a' and `b' partitions; this does nothing except upsetting disklabel(8). Revision Changes Path 1.24 +0 -11 src/etc/disktab From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:17:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A1C737B401; Wed, 2 Apr 2003 12:17:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E37B43F3F; Wed, 2 Apr 2003 12:17:26 -0800 (PST) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32KHQ0U020344; Wed, 2 Apr 2003 12:17:26 -0800 (PST) (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32KHQ7w020343; Wed, 2 Apr 2003 12:17:26 -0800 (PST) Message-Id: <200304022017.h32KHQ7w020343@repoman.freebsd.org> From: Gerald Pfeifer Date: Wed, 2 Apr 2003 12:17:26 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc32/files patch-ai X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:17:27 -0000 gerald 2003/04/02 12:17:26 PST FreeBSD ports repository Modified files: lang/gcc32/files patch-ai Log: Finally remove the parts of this patch that date back to 1998 and have now been commented for more than a year. Revision Changes Path 1.4 +0 -24 ports/lang/gcc32/files/patch-ai From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:18:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A86237B401; Wed, 2 Apr 2003 12:18:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDFB343F75; Wed, 2 Apr 2003 12:18:22 -0800 (PST) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32KIM0U020398; Wed, 2 Apr 2003 12:18:22 -0800 (PST) (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32KIMMB020397; Wed, 2 Apr 2003 12:18:22 -0800 (PST) Message-Id: <200304022018.h32KIMMB020397@repoman.freebsd.org> From: Gerald Pfeifer Date: Wed, 2 Apr 2003 12:18:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc33/files patch-ai X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:18:23 -0000 gerald 2003/04/02 12:18:22 PST FreeBSD ports repository Modified files: lang/gcc33/files patch-ai Log: Finally remove the parts of this patch that date back to 1998 and have now been commented for more than a year. Revision Changes Path 1.4 +0 -24 ports/lang/gcc33/files/patch-ai From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:22:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAAC337B401; Wed, 2 Apr 2003 12:22:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D48443FCB; Wed, 2 Apr 2003 12:22:29 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32KMT0U020849; Wed, 2 Apr 2003 12:22:29 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32KMT8e020848; Wed, 2 Apr 2003 12:22:29 -0800 (PST) Message-Id: <200304022022.h32KMT8e020848@repoman.freebsd.org> From: Robert Watson Date: Wed, 2 Apr 2003 12:22:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/finger lprint.c sprint.c util.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:22:30 -0000 rwatson 2003/04/02 12:22:29 PST FreeBSD src repository Modified files: usr.bin/finger lprint.c sprint.c util.c Log: If stat() on the terminal specified in utmp fails due to ENOENT, don't print a warning, and set the idletime variable for the entry to -1; then pick up the -1 later in sprint() and lprint() and ignore those idle times by printing just whitespace. When third party applications, such as kdm, insert utmp entries, they sometimes use strings like ":0", which can't be stat()'d and currently result in warnings that are not helpful to the user. Revision Changes Path 1.24 +2 -1 src/usr.bin/finger/lprint.c 1.22 +5 -0 src/usr.bin/finger/sprint.c 1.21 +14 -1 src/usr.bin/finger/util.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:23:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9919037B401; Wed, 2 Apr 2003 12:23:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 376E843FAF; Wed, 2 Apr 2003 12:23:32 -0800 (PST) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32KNW0U020890; Wed, 2 Apr 2003 12:23:32 -0800 (PST) (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32KNVdK020889; Wed, 2 Apr 2003 12:23:31 -0800 (PST) Message-Id: <200304022023.h32KNVdK020889@repoman.freebsd.org> From: Anton Berezin Date: Wed, 2 Apr 2003 12:23:31 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/p5-Email-Find Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:23:33 -0000 tobez 2003/04/02 12:23:31 PST FreeBSD ports repository Modified files: mail/p5-Email-Find Makefile pkg-plist Log: Fix plist and the list of manpages. PR: 50431 Submitted by: Erwin Lansing Revision Changes Path 1.11 +2 -2 ports/mail/p5-Email-Find/Makefile 1.3 +2 -0 ports/mail/p5-Email-Find/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:30:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A95E337B401; Wed, 2 Apr 2003 12:30:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E3DC43FB1; Wed, 2 Apr 2003 12:30:48 -0800 (PST) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32KUm0U021338; Wed, 2 Apr 2003 12:30:48 -0800 (PST) (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32KUlv7021335; Wed, 2 Apr 2003 12:30:47 -0800 (PST) Message-Id: <200304022030.h32KUlv7021335@repoman.freebsd.org> From: Anton Berezin Date: Wed, 2 Apr 2003 12:30:47 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/p5-Text-Balanced Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:30:50 -0000 tobez 2003/04/02 12:30:47 PST FreeBSD ports repository Modified files: textproc/p5-Text-Balanced Makefile Log: It looks like something is wrong with CPAN propagation author -> category. Use author's directory instead. My apologies to the PR's submitter, I closed the PR prematurely thinking that the situation will correct itself. PR: 50491 Reported by: Larry Rosenman Revision Changes Path 1.6 +1 -1 ports/textproc/p5-Text-Balanced/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 12:41:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AEFD37B401; Wed, 2 Apr 2003 12:41:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 022CD43FA3; Wed, 2 Apr 2003 12:41:19 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32KfI0U022182; Wed, 2 Apr 2003 12:41:18 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32KfIBM022181; Wed, 2 Apr 2003 12:41:18 -0800 (PST) Message-Id: <200304022041.h32KfIBM022181@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 2 Apr 2003 12:41:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom.h geom_bsd.c geom_disk.c geom_disk.h geom_dump.c geom_event.c geom_int.h geom_kern.c geom_mbr.c geom_pc98.c geom_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 20:41:20 -0000 phk 2003/04/02 12:41:18 PST FreeBSD src repository Modified files: sys/geom geom.h geom_bsd.c geom_disk.c geom_disk.h geom_dump.c geom_event.c geom_int.h geom_kern.c geom_mbr.c geom_pc98.c geom_subr.c Log: Change events to have an array of "void *" references, and give the event posting functions varargs to fill these. Attribute g_call_me() to appropriate g_geom's where necessary. Add a flag argument to g_call_me() methods which will be used to signal cancellation of events in the future. This commit should be a no-op. Revision Changes Path 1.52 +2 -2 src/sys/geom/geom.h 1.43 +4 -4 src/sys/geom/geom_bsd.c 1.64 +4 -4 src/sys/geom/geom_disk.c 1.2 +4 -0 src/sys/geom/geom_disk.h 1.23 +3 -3 src/sys/geom/geom_dump.c 1.25 +51 -62 src/sys/geom/geom_event.c 1.18 +8 -9 src/sys/geom/geom_int.h 1.26 +3 -3 src/sys/geom/geom_kern.c 1.35 +2 -2 src/sys/geom/geom_mbr.c 1.28 +2 -2 src/sys/geom/geom_pc98.c 1.40 +7 -7 src/sys/geom/geom_subr.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 13:07:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7858737B401; Wed, 2 Apr 2003 13:07:17 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 486D243FA3; Wed, 2 Apr 2003 13:07:16 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by ns1.xcllnt.net (8.12.8/8.12.8) with ESMTP id h32L7FKu081514; Wed, 2 Apr 2003 13:07:15 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.9/8.12.8) with ESMTP id h32L7FTH065314; Wed, 2 Apr 2003 13:07:15 -0800 (PST) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.9/8.12.9/Submit) id h32L7EGj065313; Wed, 2 Apr 2003 13:07:14 -0800 (PST) Date: Wed, 2 Apr 2003 13:07:14 -0800 From: Marcel Moolenaar To: Bruce Evans Message-ID: <20030402210714.GB65073@dhcp01.pn.xcllnt.net> References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030327204935.GA18134@HAL9000.homeunix.com> <20030330175646.281097ad.Alexander@Leidinger.net> <20030331082023.GE11307@cirb503493.alcatel.com.au> <20030401172440.701aaafd.Alexander@Leidinger.net> <20030401200457.GA30284@cirb503493.alcatel.com.au> <20030402154250.X25489@gamplex.bde.org> <20030402075905.GA30835@cirb503493.alcatel.com.au> <20030402203725.O26345@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030402203725.O26345@gamplex.bde.org> User-Agent: Mutt/1.5.3i cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Alexander Leidinger Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 21:07:17 -0000 On Wed, Apr 02, 2003 at 09:19:21PM +1000, Bruce Evans wrote: > On Wed, 2 Apr 2003, Peter Jeremy wrote: > > > On Wed, Apr 02, 2003 at 04:21:30PM +1000, Bruce Evans wrote: > > >On Wed, 2 Apr 2003, Peter Jeremy wrote: > > > > > >> On Tue, Apr 01, 2003 at 05:24:40PM +0200, Alexander Leidinger wrote: > > >> >We noticed that icc does use other values for LDBL_MIN than we do, and > > >> >instead of just thinking that Intel does it right I wanted to verify it. > > > > > >This might be caused by icc actually understanding the target's default > > >precision for long doubles (FreeBSD changes the hardware default of 64-bit > > >to 53-bit for technical reasons). > > > > Is this also true on ia64? > > Probably not. ia64's _fpmath.h says that there are 64 mantissa bits, > and we don't reduce the precision AFAIK. Correct. Note that the 64-bit significand includes an explicit integer bit. The binary point is assumed to be between bits 62 and 63. Note also that the 82-bit FP registers have a 17-bit exponent to aid in near-overflow and near-underflow computations in IEEE754 double- extended format. Of course an exception is still raised if the result does not fit the target if the target is in double-extended format. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Wed Apr 2 13:10:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 836C737B401; Wed, 2 Apr 2003 13:10:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0028243FAF; Wed, 2 Apr 2003 13:10:04 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32LA40U029840; Wed, 2 Apr 2003 13:10:04 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32LA4WX029838; Wed, 2 Apr 2003 13:10:04 -0800 (PST) Message-Id: <200304022110.h32LA4WX029838@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 2 Apr 2003 13:10:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom.h geom_bsd.c geom_disk.c geom_dump.c geom_event.c geom_int.h geom_mbr.c geom_pc98.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 21:10:06 -0000 phk 2003/04/02 13:10:04 PST FreeBSD src repository Modified files: sys/geom geom.h geom_bsd.c geom_disk.c geom_dump.c geom_event.c geom_int.h geom_mbr.c geom_pc98.c Log: Add handling for cancelled events in the g_call_me() methods. Revision Changes Path 1.53 +2 -0 src/sys/geom/geom.h 1.44 +8 -4 src/sys/geom/geom_bsd.c 1.65 +15 -2 src/sys/geom/geom_disk.c 1.24 +6 -3 src/sys/geom/geom_dump.c 1.26 +2 -0 src/sys/geom/geom_event.c 1.19 +0 -1 src/sys/geom/geom_int.h 1.36 +5 -2 src/sys/geom/geom_mbr.c 1.29 +5 -2 src/sys/geom/geom_pc98.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 13:11:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3270D37B401; Wed, 2 Apr 2003 13:11:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2D3243FA3; Wed, 2 Apr 2003 13:11:44 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32LBi0U030250; Wed, 2 Apr 2003 13:11:44 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32LBiJc030249; Wed, 2 Apr 2003 13:11:44 -0800 (PST) Message-Id: <200304022111.h32LBiJc030249@repoman.freebsd.org> From: Ceri Davies Date: Wed, 2 Apr 2003 13:11:44 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/porters-handbook book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 21:11:45 -0000 ceri 2003/04/02 13:11:44 PST FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: ${WRKSRC} should be an absolute path; reflect this in the documentation. PR: docs/50182 Submitted by: Henrik Motakef , yar Revision Changes Path 1.298 +2 -2 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Wed Apr 2 13:24:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1091937B401; Wed, 2 Apr 2003 13:24:30 -0800 (PST) Received: from jkh-gw.queasyweasel.com (adsl-64-173-3-158.dsl.sntc01.pacbell.net [64.173.3.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9634943FAF; Wed, 2 Apr 2003 13:24:28 -0800 (PST) (envelope-from jkh@queasyweasel.com) Received: from queasyweasel.com (jkh@narcissus.freebsd.com [64.173.15.99]) h32LONNB002987; Wed, 2 Apr 2003 13:24:24 -0800 (PST) (envelope-from jkh@queasyweasel.com) Date: Wed, 2 Apr 2003 13:24:30 -0800 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v551) To: Peter Wemm From: Jordan K Hubbard In-Reply-To: <20030402194821.C33692A8A5@canning.wemm.org> Message-Id: <7DDCFFBC-6551-11D7-87AF-000393BB9222@queasyweasel.com> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.551) cc: Alexander Leidinger cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "Matthew N. Dodd" cc: cvs-src@FreeBSD.org Subject: Re: Proposal regarding the RFC 3514 handling X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 21:24:30 -0000 All of this discussion begs the question, however: Since we've set a precedent here, when does Jim Fleming's IPv8 support get rolled in? FreeBSD could certainly use "stargates" as a way of impressing Julian's Linux-using friends! - Jordan On Wednesday, April 2, 2003, at 11:48 AM, Peter Wemm wrote: > Alexander Leidinger wrote: >> On Tue, 1 Apr 2003 00:21:44 -0800 (PST) >> "Matthew N. Dodd" wrote: >> >>> mdodd 2003/04/01 00:21:44 PST >>> >>> FreeBSD src repository >>> >>> Modified files: >>> sbin/ping ping.8 ping.c >>> share/man/man4 inet.4 ip.4 >>> sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c >>> ip_var.h >>> usr.bin/netstat inet.c >>> Log: >>> Implement support for RFC 3514 (The Security Flag in the IPv4 >>> Header). >> >> In the light of the actual "force" against this commit: perhaps it >> would >> be ok for all involved parties to only compile this code in based >> upon a >> kernel option... > > Personally, I tend to agree. > >> In my POV: people which don't know enough about this topic would IMHO >> not be concerned about this code, and people which know enough to >> have a >> reason to compile or not compile this code into the kernel should also >> know enough about FreeBSD to not regard this code as a lack of >> professionalism (and see it as what it is: there are people which >> enjoy >> to invest their time into FreeBSD... and this is what makes FreeBSD >> what >> it is). > > Exactly. We're supposed to be doing FreeBSD for our own enjoyment. If > others get use from it then fine. The day that we're no longer > allowed to > have fun because it might upset somebody in some fortune-500 company > will > be a sad day indeed. Nobody said we had to be 100% deadly serious the > whole time. > > .. as long as having a bit of fun doesn't get in the way.. An option > would > stop it being in the code execution paths. > > On the other hand, we have so much cruft in the ip input/output code > paths > (2 or 3 different packet filter hooks etc), this is tiny by comparison. > > Anyway, I think Matthew is going to to remove it, so maybe its a moot > point. > > 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 > > -- Jordan K. Hubbard Engineering Manager, BSD technology group Apple Computer From owner-cvs-all@FreeBSD.ORG Wed Apr 2 13:54:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CE3C37B404; Wed, 2 Apr 2003 13:54:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D51F443F93; Wed, 2 Apr 2003 13:54:51 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Lsp0U032874; Wed, 2 Apr 2003 13:54:51 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32Lspe7032873; Wed, 2 Apr 2003 13:54:51 -0800 (PST) Message-Id: <200304022154.h32Lspe7032873@repoman.freebsd.org> From: John Baldwin Date: Wed, 2 Apr 2003 13:54:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_bus.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 21:54:53 -0000 jhb 2003/04/02 13:54:51 PST FreeBSD src repository Modified files: sys/kern subr_bus.c Log: Lock the process before sending it a SIGIO. Not doing so is a panic(2) implementation with INVARIANTS. Revision Changes Path 1.125 +7 -2 src/sys/kern/subr_bus.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 14:02:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEEDD37B401 for ; Wed, 2 Apr 2003 14:02:25 -0800 (PST) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id EC43A43FBD for ; Wed, 2 Apr 2003 14:02:23 -0800 (PST) (envelope-from silby@silby.com) Received: (qmail 55524 invoked from network); 2 Apr 2003 22:02:23 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 2 Apr 2003 22:02:23 -0000 X-pair-Authenticated: 209.68.2.70 Date: Wed, 2 Apr 2003 15:58:53 -0600 (CST) From: Mike Silbersack To: Peter Jeremy In-Reply-To: <20030402200546.GA31752@cirb503493.alcatel.com.au> Message-ID: <20030402155327.R662@odysseus.silby.com> References: <200304010821.h318Li4Q091687@repoman.freebsd.org> <200304021447.h32ElHYH008677@dungeon.home> <20030402200546.GA31752@cirb503493.alcatel.com.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Stephen McKay Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4 inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 22:02:26 -0000 On Thu, 3 Apr 2003, Peter Jeremy wrote: > >Can we have this invisibly un-commited? > > If you mean "make it so it never happened" then I don't believe this > is possible. To explain, the change means that ping.c (for example) > has gone from rev 1.91 to rev 1.92 - and this change has been fairly > widely disseminated: Lots of people will have CVSup'd it and it's > in the CTM history. If it "never happened" then ping.c will revert > to rev 1.91 (etc). Firstly, I believe CVS doesn't cope well with > this sort of thing. Secondly, the next person to commit to ping.c > will create rev 1.92 - meaning that there are two different rev 1.92 > versions in existence. Hasn't this been done to fix up botched commits in other parts of the tree? > IMHO, this joke isn't so off-colour that it has to disappear from the > repository. I agree that this joke has probably outlived its purpose > but a normal backout should be sufficient for this. > > Peter It's an eyesore in the cvs logs, and it's going to be a point of annoyance for anyone who is looking back through them in the future. Right now you have to scroll down two pages before you see the last real change to ip_output.c in cvsweb. But, if such a rollback would break too many things, I can live with it, assuming that such pranks *never happen again*. Mike "Silby" Silbersack From owner-cvs-all@FreeBSD.ORG Wed Apr 2 14:05:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B258837B401; Wed, 2 Apr 2003 14:05:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4958C43FB1; Wed, 2 Apr 2003 14:05:46 -0800 (PST) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32M5k0U034617; Wed, 2 Apr 2003 14:05:46 -0800 (PST) (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32M5jml034614; Wed, 2 Apr 2003 14:05:45 -0800 (PST) Message-Id: <200304022205.h32M5jml034614@repoman.freebsd.org> From: Anton Berezin Date: Wed, 2 Apr 2003 14:05:45 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/p5-Geo-IPfree Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 22:05:47 -0000 tobez 2003/04/02 14:05:45 PST FreeBSD ports repository Modified files: net Makefile Added files: net/p5-Geo-IPfree Makefile distinfo pkg-descr pkg-plist Log: Add net/p5-Geo-IPfree, a perl module to lookup country from an IP address. This module makes such lookups off-line and the database of IPs is free. Revision Changes Path 1.952 +1 -0 ports/net/Makefile 1.1 +31 -0 ports/net/p5-Geo-IPfree/Makefile (new) 1.1 +1 -0 ports/net/p5-Geo-IPfree/distinfo (new) 1.1 +8 -0 ports/net/p5-Geo-IPfree/pkg-descr (new) 1.1 +8 -0 ports/net/p5-Geo-IPfree/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 14:05:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32A9137B413; Wed, 2 Apr 2003 14:05:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BFA843FB1; Wed, 2 Apr 2003 14:05:57 -0800 (PST) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32M5v0U034669; Wed, 2 Apr 2003 14:05:57 -0800 (PST) (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32M5uA7034668; Wed, 2 Apr 2003 14:05:56 -0800 (PST) Message-Id: <200304022205.h32M5uA7034668@repoman.freebsd.org> From: Anton Berezin Date: Wed, 2 Apr 2003 14:05:56 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 22:05:58 -0000 tobez 2003/04/02 14:05:56 PST FreeBSD ports repository Modified files: . modules Log: p5-Geo-IPfree --> ports/net/p5-Geo-IPfree Revision Changes Path 1.6958 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 14:09:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79A9937B426; Wed, 2 Apr 2003 14:09:44 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6F7B43FAF; Wed, 2 Apr 2003 14:09:42 -0800 (PST) (envelope-from winter@jurai.net) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.12.9/8.12.9) with ESMTP id h32M9fEF004235; Wed, 2 Apr 2003 17:09:41 -0500 (EST) (envelope-from winter@jurai.net) Date: Wed, 2 Apr 2003 17:09:41 -0500 (EST) From: "Matthew N. Dodd" To: Mike Silbersack In-Reply-To: <20030402155327.R662@odysseus.silby.com> Message-ID: <20030402170725.T46852@sasami.jurai.net> References: <200304010821.h318Li4Q091687@repoman.freebsd.org> <200304021447.h32ElHYH008677@dungeon.home> <20030402155327.R662@odysseus.silby.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Stephen McKay Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4 inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 22:09:45 -0000 On Wed, 2 Apr 2003, Mike Silbersack wrote: > But, if such a rollback would break too many things, I can live with it, > assuming that such pranks *never happen again*. I'm fairly sure that if expressed your need on the donations page someone would probably be able to find a sense of humor for you. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | From owner-cvs-all@FreeBSD.ORG Wed Apr 2 14:12:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B01637B401; Wed, 2 Apr 2003 14:12:21 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7C1543F93; Wed, 2 Apr 2003 14:12:19 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.8/8.12.8) with ESMTP id h32MCA9o001657; Thu, 3 Apr 2003 00:12:12 +0200 (CEST) (envelope-from phk@phk.freebsd.dk) To: Mike Silbersack From: "Poul-Henning Kamp" In-Reply-To: Your message of "Wed, 02 Apr 2003 15:58:53 MDT." <20030402155327.R662@odysseus.silby.com> Date: Thu, 03 Apr 2003 00:12:10 +0200 Message-ID: <1656.1049321530@critter.freebsd.dk> cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Stephen McKay Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4 inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 22:12:21 -0000 In message <20030402155327.R662@odysseus.silby.com>, Mike Silbersack writes: >But, if such a rollback would break too many things, I can live with it, >assuming that such pranks *never happen again*. I've often had a nagging suspicion that you might be in the wrong project. The lack of smiley on the above confirms it. -- 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. From owner-cvs-all@FreeBSD.ORG Wed Apr 2 14:13:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CDE837B401; Wed, 2 Apr 2003 14:13:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0161743FA3; Wed, 2 Apr 2003 14:13:08 -0800 (PST) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32MD70U035208; Wed, 2 Apr 2003 14:13:07 -0800 (PST) (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32MD7nA035207; Wed, 2 Apr 2003 14:13:07 -0800 (PST) Message-Id: <200304022213.h32MD7nA035207@repoman.freebsd.org> From: Anton Berezin Date: Wed, 2 Apr 2003 14:13:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/p5-GraphViz Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 22:13:10 -0000 tobez 2003/04/02 14:13:07 PST FreeBSD ports repository Modified files: graphics/p5-GraphViz Makefile distinfo Log: Update to 1.8. PR: 50430 Submitted by: Erwin Lansing Revision Changes Path 1.4 +1 -3 ports/graphics/p5-GraphViz/Makefile 1.3 +1 -1 ports/graphics/p5-GraphViz/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 2 14:13:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6B4337B401; Wed, 2 Apr 2003 14:13:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 649E743F75; Wed, 2 Apr 2003 14:13:56 -0800 (PST) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32MDu0U035277; Wed, 2 Apr 2003 14:13:56 -0800 (PST) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32MDu1p035276; Wed, 2 Apr 2003 14:13:56 -0800 (PST) Message-Id: <200304022213.h32MDu1p035276@repoman.freebsd.org> From: Robert Watson Date: Wed, 2 Apr 2003 14:13:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/reboot reboot.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 22:13:57 -0000 rwatson 2003/04/02 14:13:56 PST FreeBSD src repository Modified files: sbin/reboot reboot.c Log: When kill(-1) returns ESRCH, it could be because the current process doesn't have a process group, which can occur if you're working with a custom init that doesn't set up a full tty context. Rather than refusing to reboot, ignore ESRCH from the kill attempt in reboot(8). Revision Changes Path 1.18 +1 -1 src/sbin/reboot/reboot.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 14:20:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0350C37B404 for ; Wed, 2 Apr 2003 14:20:08 -0800 (PST) Received: from mail.speakeasy.net (mail13.speakeasy.net [216.254.0.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9261D43FD7 for ; Wed, 2 Apr 2003 14:20:05 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 17956 invoked from network); 2 Apr 2003 22:20:13 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender )encrypted SMTP for ; 2 Apr 2003 22:20:13 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.8/8.12.8) with ESMTP id h32MK1Ov024269; Wed, 2 Apr 2003 17:20:02 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20030402155327.R662@odysseus.silby.com> Date: Wed, 02 Apr 2003 17:20:01 -0500 (EST) From: John Baldwin To: Mike Silbersack cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Stephen McKay Subject: Re: cvs commit: src/sbin/ping ping.8 ping.c src/share/man/man4 inet.4 ip.4 src/sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c ip_var.h src/usr.bin/netstat inet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 22:20:08 -0000 On 02-Apr-2003 Mike Silbersack wrote: > But, if such a rollback would break too many things, I can live with it, > assuming that such pranks *never happen again*. Do the following log messages greatly offend your sensibilities? > lcvs log -r1.158 -r1.159 -r1.160 init_main.c ... total revisions: 252; selected revisions: 3 description: ---------------------------- revision 1.160 date: 2001/02/24 03:40:23; author: jhb; state: Exp; lines: +1 -24 It turns out the kernel console works fine and thus doesn't need quite this much extra testing. ---------------------------- revision 1.159 date: 2001/02/23 23:05:46; author: peter; state: Exp; lines: +1 -3 Stricter style(9) conformance - remove unnecessary blank lines in previous commit. ---------------------------- revision 1.158 date: 2001/02/23 19:44:25; author: jhb; state: Exp; lines: +25 -1 Test out the kernel console just before launching the AP's. ============================================================================= -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-all@FreeBSD.ORG Wed Apr 2 14:53:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEA5737B404; Wed, 2 Apr 2003 14:53:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C029B43FCB; Wed, 2 Apr 2003 14:53:52 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32Mrq0U037727; Wed, 2 Apr 2003 14:53:52 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32MrqJG037726; Wed, 2 Apr 2003 14:53:52 -0800 (PST) Message-Id: <200304022253.h32MrqJG037726@repoman.freebsd.org> From: Jeff Roberson Date: Wed, 2 Apr 2003 14:53:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/arch/i386/i386 _setcurthread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 22:53:54 -0000 jeff 2003/04/02 14:53:52 PST FreeBSD src repository Modified files: lib/libthr/arch/i386/i386 _setcurthread.c Log: - Don't overrun the ldt buffer. Submitted by: gordan@freebsd.org Revision Changes Path 1.2 +2 -2 src/lib/libthr/arch/i386/i386/_setcurthread.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 15:08:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E242E37B401; Wed, 2 Apr 2003 15:08:16 -0800 (PST) Received: from ns2.gnf.org (ns2.gnf.org [63.196.132.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id A41D443F85; Wed, 2 Apr 2003 15:08:15 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: from EXCHCLUSTER01.lj.gnf.org (exch02.lj.gnf.org [172.25.10.20]) by ns2.gnf.org (8.12.6p2/8.12.3) with ESMTP id h32N8C8V016840; Wed, 2 Apr 2003 15:08:12 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: from roark.gnf.org ([172.25.24.15]) by EXCHCLUSTER01.lj.gnf.org with Microsoft SMTPSVC(5.0.2195.5329); Wed, 2 Apr 2003 15:08:15 -0800 Received: from roark.gnf.org (localhost [127.0.0.1]) by roark.gnf.org (8.12.9/8.12.9) with ESMTP id h32N8FNB071893; Wed, 2 Apr 2003 15:08:15 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: (from gtetlow@localhost) by roark.gnf.org (8.12.9/8.12.9/Submit) id h32N8Fge071892; Wed, 2 Apr 2003 15:08:15 -0800 (PST) Date: Wed, 2 Apr 2003 15:08:15 -0800 From: Gordon Tetlow To: Jeff Roberson Message-ID: <20030402230815.GD69100@roark.gnf.org> References: <200304022253.h32MrqJG037726@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="F8dlzb82+Fcn6AgP" Content-Disposition: inline In-Reply-To: <200304022253.h32MrqJG037726@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-OriginalArrivalTime: 02 Apr 2003 23:08:15.0465 (UTC) FILETIME=[BDB9CD90:01C2F96C] cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/arch/i386/i386 _setcurthread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 23:08:17 -0000 --F8dlzb82+Fcn6AgP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 02, 2003 at 02:53:52PM -0800, Jeff Roberson wrote: > jeff 2003/04/02 14:53:52 PST >=20 > FreeBSD src repository >=20 > Modified files: > lib/libthr/arch/i386/i386 _setcurthread.c=20 > Log: > - Don't overrun the ldt buffer. > =20 > Submitted by: gordan@freebsd.org This was actually jake's patch, I just tested it and reported it. My name is gordon too =3D) -gordon --F8dlzb82+Fcn6AgP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+i21fRu2t9DV9ZfsRAsLAAJ9Ps1fb87idCGZQ7TGnK5fDEi3TGQCeLlHn JNcaAMr6vmDrnyEFJEILPBU= =Z5H5 -----END PGP SIGNATURE----- --F8dlzb82+Fcn6AgP-- From owner-cvs-all@FreeBSD.ORG Wed Apr 2 15:10:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F325137B401; Wed, 2 Apr 2003 15:10:25 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF6B343F93; Wed, 2 Apr 2003 15:10:24 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h32NANN72587; Wed, 2 Apr 2003 18:10:23 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Wed, 2 Apr 2003 18:10:23 -0500 (EST) From: Jeff Roberson To: Jeff Roberson In-Reply-To: <200304022253.h32MrqJG037726@repoman.freebsd.org> Message-ID: <20030402180958.G64602-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/arch/i386/i386 _setcurthread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 23:10:26 -0000 On Wed, 2 Apr 2003, Jeff Roberson wrote: > jeff 2003/04/02 14:53:52 PST > > FreeBSD src repository > > Modified files: > lib/libthr/arch/i386/i386 _setcurthread.c > Log: > - Don't overrun the ldt buffer. > > Submitted by: gordan@freebsd.org uhm, crack again. tetlow@freebsd.org That's spelled Gordon, not gordan. From owner-cvs-all@FreeBSD.ORG Wed Apr 2 15:21:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBBEF37B401; Wed, 2 Apr 2003 15:21:36 -0800 (PST) Received: from ns2.gnf.org (ns2.gnf.org [63.196.132.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id E01EB43FB1; Wed, 2 Apr 2003 15:21:35 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: from EXCHCLUSTER01.lj.gnf.org (exch02.lj.gnf.org [172.25.10.20]) by ns2.gnf.org (8.12.6p2/8.12.3) with ESMTP id h32NLW8V017096; Wed, 2 Apr 2003 15:21:32 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: from roark.gnf.org ([172.25.24.15]) by EXCHCLUSTER01.lj.gnf.org with Microsoft SMTPSVC(5.0.2195.5329); Wed, 2 Apr 2003 15:21:35 -0800 Received: from roark.gnf.org (localhost [127.0.0.1]) by roark.gnf.org (8.12.9/8.12.9) with ESMTP id h32NLZNB072304; Wed, 2 Apr 2003 15:21:35 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: (from gtetlow@localhost) by roark.gnf.org (8.12.9/8.12.9/Submit) id h32NLZit072303; Wed, 2 Apr 2003 15:21:35 -0800 (PST) Date: Wed, 2 Apr 2003 15:21:35 -0800 From: Gordon Tetlow To: Jeff Roberson Message-ID: <20030402232135.GI69100@roark.gnf.org> References: <200304022253.h32MrqJG037726@repoman.freebsd.org> <20030402180958.G64602-100000@mail.chesapeake.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EdRE1UL8d3mMOE6m" Content-Disposition: inline In-Reply-To: <20030402180958.G64602-100000@mail.chesapeake.net> User-Agent: Mutt/1.4i X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-OriginalArrivalTime: 02 Apr 2003 23:21:35.0709 (UTC) FILETIME=[9AB558D0:01C2F96E] cc: cvs-src@FreeBSD.org cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libthr/arch/i386/i386 _setcurthread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 23:21:37 -0000 --EdRE1UL8d3mMOE6m Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 02, 2003 at 06:10:23PM -0500, Jeff Roberson wrote: >=20 > On Wed, 2 Apr 2003, Jeff Roberson wrote: >=20 > > jeff 2003/04/02 14:53:52 PST > > > > FreeBSD src repository > > > > Modified files: > > lib/libthr/arch/i386/i386 _setcurthread.c > > Log: > > - Don't overrun the ldt buffer. > > > > Submitted by: gordan@freebsd.org >=20 > uhm, crack again. tetlow@freebsd.org >=20 > That's spelled Gordon, not gordan. Close enough, it's actually gordon@freebsd.org. I suppose I should get admins to give me some aliases now =3D) -gordon --EdRE1UL8d3mMOE6m Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+i3B/Ru2t9DV9ZfsRAsbjAJ4kXVcL1t/bAVPdTmSJ0PxJ6czVTQCgw13Q EjyDbiitKLcEGDUUfN48hPE= =uvbr -----END PGP SIGNATURE----- --EdRE1UL8d3mMOE6m-- From owner-cvs-all@FreeBSD.ORG Wed Apr 2 15:53:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C4A137B401; Wed, 2 Apr 2003 15:53:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F06D543FAF; Wed, 2 Apr 2003 15:53:30 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32NrU0U042514; Wed, 2 Apr 2003 15:53:30 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32NrUVZ042513; Wed, 2 Apr 2003 15:53:30 -0800 (PST) Message-Id: <200304022353.h32NrUVZ042513@repoman.freebsd.org> From: Peter Wemm Date: Wed, 2 Apr 2003 15:53:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 machdep.c mp_machdep.c pmap.c swtch.s src/sys/i386/include md_var.h pmap.h smp.h src/sys/i386/isa apic_vector.s intr_machdep.h src/sys/kern... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 23:53:31 -0000 peter 2003/04/02 15:53:30 PST FreeBSD src repository Modified files: sys/conf options.i386 sys/i386/i386 machdep.c mp_machdep.c pmap.c swtch.s sys/i386/include md_var.h pmap.h smp.h sys/i386/isa apic_vector.s intr_machdep.h sys/kern kern_switch.c kern_synch.c kern_thr.c kern_thread.c subr_witness.c sys/sparc64/sparc64 mp_machdep.c swtch.S sys/sys proc.h Log: Commit a partial lazy thread switch mechanism for i386. it isn't as lazy as it could be and can do with some more cleanup. Currently its under options LAZY_SWITCH. What this does is avoid %cr3 reloads for short context switches that do not involve another user process. ie: we can take an interrupt, switch to a kthread and return to the user without explicitly flushing the tlb. However, this isn't as exciting as it could be, the interrupt overhead is still high and too much blocks on Giant still. There are some debug sysctls, for stats and for an on/off switch. The main problem with doing this has been "what if the process that you're running on exits while we're borrowing its address space?" - in this case we use an IPI to give it a kick when we're about to reclaim the pmap. Its not compiled in unless you add the LAZY_SWITCH option. I want to fix a few more things and get some more feedback before turning it on by default. This is NOT a replacement for Bosko's lazy interrupt stuff. This was more meant for the kthread case, while his was for interrupts. Mine helps a little for interrupts, but his helps a lot more. The stats are enabled with options SWTCH_OPTIM_STATS - this has been a pseudo-option for years, I just added a bunch of stuff to it. One non-trivial change was to select a new thread before calling cpu_switch() in the first place. This allows us to catch the silly case of doing a cpu_switch() to the current process. This happens uncomfortably often. This simplifies a bit of the asm code in cpu_switch (no longer have to call choosethread() in the middle). This has been implemented on i386 and (thanks to jake) sparc64. The others will come soon. This is actually seperate to the lazy switch stuff. Glanced at by: jake, jhb Revision Changes Path 1.188 +2 -0 src/sys/conf/options.i386 1.561 +33 -3 src/sys/i386/i386/machdep.c 1.207 +8 -1 src/sys/i386/i386/mp_machdep.c 1.402 +128 -1 src/sys/i386/i386/pmap.c 1.136 +112 -78 src/sys/i386/i386/swtch.s 1.61 +16 -0 src/sys/i386/include/md_var.h 1.94 +1 -1 src/sys/i386/include/pmap.h 1.76 +1 -0 src/sys/i386/include/smp.h 1.87 +22 -0 src/sys/i386/isa/apic_vector.s 1.43 +5 -1 src/sys/i386/isa/intr_machdep.h 1.57 +17 -1 src/sys/kern/kern_switch.c 1.217 +23 -3 src/sys/kern/kern_synch.c 1.3 +4 -0 src/sys/kern/kern_thr.c 1.112 +6 -0 src/sys/kern/kern_thread.c 1.150 +6 -0 src/sys/kern/subr_witness.c 1.20 +1 -1 src/sys/sparc64/sparc64/mp_machdep.c 1.26 +12 -14 src/sys/sparc64/sparc64/swtch.S 1.311 +5 -0 src/sys/sys/proc.h From owner-cvs-all@FreeBSD.ORG Wed Apr 2 15:58:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6601037B401; Wed, 2 Apr 2003 15:58:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13D5243FA3; Wed, 2 Apr 2003 15:58:14 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h32NwD0U042819; Wed, 2 Apr 2003 15:58:13 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h32NwDbX042818; Wed, 2 Apr 2003 15:58:13 -0800 (PST) Message-Id: <200304022358.h32NwDbX042818@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 15:58:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/ringtonetools Makefile distinfo pkg-descr pkg-plist ports/misc/ringtonetools/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 23:58:14 -0000 edwin 2003/04/02 15:58:13 PST FreeBSD ports repository Modified files: misc/ringtonetools Makefile distinfo pkg-descr pkg-plist Removed files: misc/ringtonetools/files patch-aa Log: misc/ringtonetunes: Master site has changed. Also this is a major upgrade in versions Master site has changed. 2.09 is the newest version too PR: ports/48061 Submitted by: Michael A. Kohn Revision Changes Path 1.3 +5 -4 ports/misc/ringtonetools/Makefile 1.2 +1 -1 ports/misc/ringtonetools/distinfo 1.2 +0 -44 ports/misc/ringtonetools/files/patch-aa (dead) 1.2 +8 -7 ports/misc/ringtonetools/pkg-descr 1.3 +1 -1 ports/misc/ringtonetools/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 16:03:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88A1537B401; Wed, 2 Apr 2003 16:03:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2801643FAF; Wed, 2 Apr 2003 16:03:17 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3303G0U044265; Wed, 2 Apr 2003 16:03:16 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3303G9X044264; Wed, 2 Apr 2003 16:03:16 -0800 (PST) Message-Id: <200304030003.h3303G9X044264@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 16:03:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/news/newsgrab Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 00:03:17 -0000 edwin 2003/04/02 16:03:16 PST FreeBSD ports repository Modified files: news/newsgrab Makefile distinfo Log: Update port: news/newsgrab PR: ports/50480 Submitted by: Michael L. Hostbaek Approved by: maintainer timeout Revision Changes Path 1.11 +2 -1 ports/news/newsgrab/Makefile 1.7 +1 -1 ports/news/newsgrab/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 2 16:13:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2926F37B401; Wed, 2 Apr 2003 16:13:12 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-131.client.attbi.com [12.233.57.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEBD543F3F; Wed, 2 Apr 2003 16:13:10 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) h330CvKj074745; Wed, 2 Apr 2003 16:12:57 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6p2/8.12.5/Submit) id h330CooI074713; Wed, 2 Apr 2003 16:12:50 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Wed, 2 Apr 2003 16:12:50 -0800 From: David Schultz To: Marcel Moolenaar Message-ID: <20030403001250.GA55715@HAL9000.homeunix.com> Mail-Followup-To: Marcel Moolenaar , Bruce Evans , Peter Jeremy , Alexander Leidinger , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200303272038.h2RKcM7L096560@repoman.freebsd.org> <20030327204935.GA18134@HAL9000.homeunix.com> <20030330175646.281097ad.Alexander@Leidinger.net> <20030331082023.GE11307@cirb503493.alcatel.com.au> <20030401172440.701aaafd.Alexander@Leidinger.net> <20030401200457.GA30284@cirb503493.alcatel.com.au> <20030402154250.X25489@gamplex.bde.org> <20030402075905.GA30835@cirb503493.alcatel.com.au> <20030402203725.O26345@gamplex.bde.org> <20030402210714.GB65073@dhcp01.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030402210714.GB65073@dhcp01.pn.xcllnt.net> cc: src-committers@FreeBSD.ORG cc: Bruce Evans cc: cvs-src@FreeBSD.ORG cc: Alexander Leidinger cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 00:13:12 -0000 Thus spake Marcel Moolenaar : > On Wed, Apr 02, 2003 at 09:19:21PM +1000, Bruce Evans wrote: > > On Wed, 2 Apr 2003, Peter Jeremy wrote: > > > > > On Wed, Apr 02, 2003 at 04:21:30PM +1000, Bruce Evans wrote: > > > >On Wed, 2 Apr 2003, Peter Jeremy wrote: > > > > > > > >> On Tue, Apr 01, 2003 at 05:24:40PM +0200, Alexander Leidinger wrote: > > > >> >We noticed that icc does use other values for LDBL_MIN than we do, and > > > >> >instead of just thinking that Intel does it right I wanted to verify it. > > > > > > > >This might be caused by icc actually understanding the target's default > > > >precision for long doubles (FreeBSD changes the hardware default of 64-bit > > > >to 53-bit for technical reasons). > > > > > > Is this also true on ia64? > > > > Probably not. ia64's _fpmath.h says that there are 64 mantissa bits, > > and we don't reduce the precision AFAIK. > > Correct. Note that the 64-bit significand includes an explicit integer > bit. The binary point is assumed to be between bits 62 and 63. It seems like all architectures that use the 80-bit format have an explicit MSB, including i386 and M68K. I don't think the standard says anything one way or the other about it, but it's a PITA when it comes to writing MI library code. > Note also that the 82-bit FP registers have a 17-bit exponent to aid > in near-overflow and near-underflow computations in IEEE754 double- > extended format. Of course an exception is still raised if the result > does not fit the target if the target is in double-extended format. Right. I think the LDBL_{MIN,MAX}* constants need to refer to the memory format, not the FPU-internal format. If we *really* want to be pedantic, we can clear the WRE bit in the FPU control register and sacrifice the extra range in the interests of being predictable. That's similar to what we do with i386 now, where we sacrifice precision so gcc bugs don't cause strange things to happen in the lower echelons. It's rather annoying. We don't change the default precision control setting on IA64, do we? From owner-cvs-all@FreeBSD.ORG Wed Apr 2 16:28:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F300637B401; Wed, 2 Apr 2003 16:28:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 898E643F85; Wed, 2 Apr 2003 16:28:51 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h330Sp0U045712; Wed, 2 Apr 2003 16:28:51 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h330SpLh045711; Wed, 2 Apr 2003 16:28:51 -0800 (PST) Message-Id: <200304030028.h330SpLh045711@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 16:28:51 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/p5-GD2 Makefile distinfo pkg-plist ports/graphics/p5-GD2/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 00:28:52 -0000 edwin 2003/04/02 16:28:51 PST FreeBSD ports repository Modified files: graphics/p5-GD2 Makefile distinfo pkg-plist graphics/p5-GD2/files patch-aa Log: New Port graphics/p5-GD2 This port was based directly on p5-GD PR: ports/49097 Submitted by: Philip M. Gollucci Revision Changes Path 1.31 +10 -9 ports/graphics/p5-GD2/Makefile 1.12 +1 -1 ports/graphics/p5-GD2/distinfo 1.8 +57 -27 ports/graphics/p5-GD2/files/patch-aa 1.9 +2 -1 ports/graphics/p5-GD2/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 16:29:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6CBA37B401; Wed, 2 Apr 2003 16:29:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55B5743F85; Wed, 2 Apr 2003 16:29:29 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h330TT0U045761; Wed, 2 Apr 2003 16:29:29 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h330TT4H045760; Wed, 2 Apr 2003 16:29:29 -0800 (PST) Message-Id: <200304030029.h330TT4H045760@repoman.freebsd.org> From: Jeff Roberson Date: Wed, 2 Apr 2003 16:29:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 00:29:30 -0000 jeff 2003/04/02 16:29:28 PST FreeBSD src repository Modified files: sys/kern sched_ule.c Log: - Keep seperate statistics and run queues for different scheduling classes. - Treat each class specially in kseq_{choose,add,rem}. Let the rest of the code be less aware of scheduling classes. - Skip the interactivity calculation for non TIMESHARE ksegrps. - Move slice and runq selection into kseq_add(). Uninline it now that it's big. Revision Changes Path 1.20 +134 -48 src/sys/kern/sched_ule.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 16:30:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30D4537B401; Wed, 2 Apr 2003 16:30:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C153D43FBD; Wed, 2 Apr 2003 16:30:39 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h330Ud0U045991; Wed, 2 Apr 2003 16:30:39 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h330UdSx045989; Wed, 2 Apr 2003 16:30:39 -0800 (PST) Message-Id: <200304030030.h330UdSx045989@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 16:30:39 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 00:30:40 -0000 edwin 2003/04/02 16:30:39 PST FreeBSD ports repository Modified files: graphics Makefile Log: New Port graphics/p5-GD2 PR: ports/49097 Submitted by: Philip M. Gollucci Revision Changes Path 1.570 +1 -0 ports/graphics/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 16:32:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47E7A37B401; Wed, 2 Apr 2003 16:32:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC25943FAF; Wed, 2 Apr 2003 16:32:31 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h330WV0U046276; Wed, 2 Apr 2003 16:32:31 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h330WVkS046275; Wed, 2 Apr 2003 16:32:31 -0800 (PST) Message-Id: <200304030032.h330WVkS046275@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 2 Apr 2003 16:32:31 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 00:32:32 -0000 edwin 2003/04/02 16:32:31 PST FreeBSD ports repository Modified files: . modules Log: p5-GD2 -> ports/graphics/p5-GD2 Revision Changes Path 1.6959 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 17:08:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 128F137B401; Wed, 2 Apr 2003 17:08:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6DFD43F3F; Wed, 2 Apr 2003 17:08:36 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3318a0U054387; Wed, 2 Apr 2003 17:08:36 -0800 (PST) (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3318arA054386; Wed, 2 Apr 2003 17:08:36 -0800 (PST) Message-Id: <200304030108.h3318arA054386@repoman.freebsd.org> From: Kevin Lo Date: Wed, 2 Apr 2003 17:08:36 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/gliv Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 01:08:37 -0000 kevlo 2003/04/02 17:08:36 PST FreeBSD ports repository Modified files: graphics/gliv Makefile distinfo Log: Update to 1.7 PR: 50513 Submitted by: Kimura Fuyuki Revision Changes Path 1.19 +3 -5 ports/graphics/gliv/Makefile 1.11 +1 -1 ports/graphics/gliv/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 2 17:16:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 098BD37B407 for ; Wed, 2 Apr 2003 17:16:26 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id D1A8443FA3 for ; Wed, 2 Apr 2003 17:16:23 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 12803 invoked by uid 1000); 3 Apr 2003 01:16:25 -0000 Date: Wed, 2 Apr 2003 17:16:25 -0800 (PST) From: Nate Lawson To: Peter Wemm In-Reply-To: <20030402235345.90F4737B418@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386machdep.c mp_machdep.c pmap.c swtch.s src/sys/i386/include md_var.h pmap.h smp.h src/sys/i386/isa apic_vector.s intr_machdep.h src/sys/kern kern_switch.c kern_synch.c kern_thr.c kern_thread.c subr_witness.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 01:16:26 -0000 On Wed, 2 Apr 2003, Peter Wemm wrote: > Commit a partial lazy thread switch mechanism for i386. it isn't as lazy > as it could be and can do with some more cleanup. Currently its under > options LAZY_SWITCH. What this does is avoid %cr3 reloads for short > context switches that do not involve another user process. This is awesome! > One non-trivial change was to select a new thread before calling > cpu_switch() in the first place. This allows us to catch the silly > case of doing a cpu_switch() to the current process. This happens > uncomfortably often. This simplifies a bit of the asm code in cpu_switch > (no longer have to call choosethread() in the middle). This has been > implemented on i386 and (thanks to jake) sparc64. The others will come > soon. This is actually seperate to the lazy switch stuff. Shouldn't there be a "if (thread == curthread) return;" in the scheduling code somewhere? -Nate From owner-cvs-all@FreeBSD.ORG Wed Apr 2 17:17:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23A7F37B404; Wed, 2 Apr 2003 17:17:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2D6743FAF; Wed, 2 Apr 2003 17:17:38 -0800 (PST) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h331Hc0U055017; Wed, 2 Apr 2003 17:17:38 -0800 (PST) (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h331HcnN055016; Wed, 2 Apr 2003 17:17:38 -0800 (PST) Message-Id: <200304030117.h331HcnN055016@repoman.freebsd.org> From: Kevin Lo Date: Wed, 2 Apr 2003 17:17:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/e3 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 01:17:39 -0000 kevlo 2003/04/02 17:17:38 PST FreeBSD ports repository Modified files: editors/e3 Makefile distinfo Log: Update to 2.42 PR: 50552 Submitted by: MAINTAINER Revision Changes Path 1.13 +1 -1 ports/editors/e3/Makefile 1.11 +1 -1 ports/editors/e3/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 2 17:23:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B601737B401; Wed, 2 Apr 2003 17:23:42 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07D1643FDD; Wed, 2 Apr 2003 17:23:41 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id B55B32A8A7; Wed, 2 Apr 2003 17:23:41 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Nate Lawson In-Reply-To: Date: Wed, 02 Apr 2003 17:23:41 -0800 From: Peter Wemm Message-Id: <20030403012341.B55B32A8A7@canning.wemm.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 machdep.c mp_machdep.c pmap.c swtch.s src/sys/i386/include md_var.h pmap.h smp.h src/sys/i386/isa apic_vector.s intr_machdep.h src/sys/kern kern_switch.c kern_synch.c kern_thr.c kern_thread.c subr_witness.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 01:23:43 -0000 Nate Lawson wrote: > On Wed, 2 Apr 2003, Peter Wemm wrote: > > Commit a partial lazy thread switch mechanism for i386. it isn't as lazy > > as it could be and can do with some more cleanup. Currently its under > > options LAZY_SWITCH. What this does is avoid %cr3 reloads for short > > context switches that do not involve another user process. > > This is awesome! > > > One non-trivial change was to select a new thread before calling > > cpu_switch() in the first place. This allows us to catch the silly > > case of doing a cpu_switch() to the current process. This happens > > uncomfortably often. This simplifies a bit of the asm code in cpu_switch > > (no longer have to call choosethread() in the middle). This has been > > implemented on i386 and (thanks to jake) sparc64. The others will come > > soon. This is actually seperate to the lazy switch stuff. > > Shouldn't there be a "if (thread == curthread) return;" in the scheduling > code somewhere? There is now. :-) newtd = choosethread(); if (td != newtd) cpu_switch(td, newtd); /* SHAZAM!! */ #ifdef SWTCH_OPTIM_STATS else stupid_switch++; #endif sparc64's cpu_switch() already optimized this case. i386 didn't. I haven't checked alpha/ia64 yet, but they're still using the old no-args API. > -Nate > 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 From owner-cvs-all@FreeBSD.ORG Wed Apr 2 18:08:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0569037B401; Wed, 2 Apr 2003 18:08:54 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B85643F3F; Wed, 2 Apr 2003 18:08:53 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 704CC2A8A7; Wed, 2 Apr 2003 18:08:53 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200304022353.h32NrUVZ042513@repoman.freebsd.org> Date: Wed, 02 Apr 2003 18:08:53 -0800 From: Peter Wemm Message-Id: <20030403020853.704CC2A8A7@canning.wemm.org> Subject: Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 machdep.c mp_machdep.c pmap.c swtch.s src/sys/i386/include md_var.h pmap.h smp.h src/sys/i386/isa apic_vector.s intr_machdep.h src/sys/kern kern_switch.c kern_synch.c kern_thr.c kern_thread.c subr_witness.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 02:08:54 -0000 Peter Wemm wrote: > Log: > Commit a partial lazy thread switch mechanism for i386. I'd been wanting to do this for ages, but Jake implemented it on the sparc64 a while ago now and he kinda shamed me into doing it. :-) The main difference is that sparc64 doesn't have to go to the trouble of intercepting the pmap_release() since the VM hardware is different and it doesn't have to worry about a potentially borrowed page directory getting bzero()'ed. 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 From owner-cvs-all@FreeBSD.ORG Wed Apr 2 18:55:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5874137B401; Wed, 2 Apr 2003 18:55:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B965443FA3; Wed, 2 Apr 2003 18:55:05 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h332t50U062117; Wed, 2 Apr 2003 18:55:05 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h332t5jQ062116; Wed, 2 Apr 2003 18:55:05 -0800 (PST) Message-Id: <200304030255.h332t5jQ062116@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 2 Apr 2003 18:55:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/AbiWord Makefile distinfo patch-src_wp_ap_unix_gnome_ap_UnixGnomeApp.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 02:55:06 -0000 marcus 2003/04/02 18:55:05 PST FreeBSD ports repository Modified files: editors/AbiWord Makefile distinfo editors/AbiWord/files patch-autogen.sh Added files: editors/AbiWord/files patch-src_wp_ap_unix_gnome_ap_UnixGnomeApp.cpp Log: Update to 1.0.5. Revision Changes Path 1.53 +11 -2 ports/editors/AbiWord/Makefile 1.23 +1 -1 ports/editors/AbiWord/distinfo 1.4 +7 -10 ports/editors/AbiWord/files/patch-autogen.sh 1.1 +11 -0 ports/editors/AbiWord/files/patch-src_wp_ap_unix_gnome_ap_UnixGnomeApp.cpp (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 18:56:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9C7037B401; Wed, 2 Apr 2003 18:56:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 802E143FA3; Wed, 2 Apr 2003 18:56:10 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h332uA0U062216; Wed, 2 Apr 2003 18:56:10 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h332uArB062215; Wed, 2 Apr 2003 18:56:10 -0800 (PST) Message-Id: <200304030256.h332uArB062215@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 2 Apr 2003 18:56:10 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/balsa Makefile distinfo pkg-plist ports/mail/balsa/files patch-configure patch-libmutt::configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 02:56:11 -0000 marcus 2003/04/02 18:56:10 PST FreeBSD ports repository Modified files: mail/balsa Makefile distinfo pkg-plist mail/balsa/files patch-configure patch-libmutt::configure Log: Update to 1.4.3. Revision Changes Path 1.68 +1 -1 ports/mail/balsa/Makefile 1.35 +1 -1 ports/mail/balsa/distinfo 1.7 +57 -78 ports/mail/balsa/files/patch-configure 1.2 +12 -6 ports/mail/balsa/files/patch-libmutt::configure 1.26 +1 -2 ports/mail/balsa/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 18:57:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51D5B37B401; Wed, 2 Apr 2003 18:57:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3DCA43FA3; Wed, 2 Apr 2003 18:57:03 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h332v30U062280; Wed, 2 Apr 2003 18:57:03 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h332v3Eq062279; Wed, 2 Apr 2003 18:57:03 -0800 (PST) Message-Id: <200304030257.h332v3Eq062279@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 2 Apr 2003 18:57:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/finance/gnucash Makefile distinfo pkg-plist ports/finance/gnucash/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 02:57:04 -0000 marcus 2003/04/02 18:57:03 PST FreeBSD ports repository Modified files: finance/gnucash Makefile distinfo pkg-plist finance/gnucash/files patch-configure Log: Update to 1.8.2. Revision Changes Path 1.57 +1 -2 ports/finance/gnucash/Makefile 1.22 +1 -1 ports/finance/gnucash/distinfo 1.10 +7 -10 ports/finance/gnucash/files/patch-configure 1.22 +1 -0 ports/finance/gnucash/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 18:57:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5868737B401; Wed, 2 Apr 2003 18:57:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F39F843FA3; Wed, 2 Apr 2003 18:57:32 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h332vW0U062316; Wed, 2 Apr 2003 18:57:32 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h332vWXI062315; Wed, 2 Apr 2003 18:57:32 -0800 (PST) Message-Id: <200304030257.h332vWXI062315@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 2 Apr 2003 18:57:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mplayer-plugin Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 02:57:35 -0000 marcus 2003/04/02 18:57:32 PST FreeBSD ports repository Modified files: www/mplayer-plugin Makefile distinfo Log: Update to 0.60. Revision Changes Path 1.4 +1 -1 ports/www/mplayer-plugin/Makefile 1.3 +1 -1 ports/www/mplayer-plugin/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 2 18:58:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C964637B401; Wed, 2 Apr 2003 18:58:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6813243F93; Wed, 2 Apr 2003 18:58:06 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h332w60U062381; Wed, 2 Apr 2003 18:58:06 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h332w6kk062380; Wed, 2 Apr 2003 18:58:06 -0800 (PST) Message-Id: <200304030258.h332w6kk062380@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 2 Apr 2003 18:58:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/openslp Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 02:58:07 -0000 marcus 2003/04/02 18:58:06 PST FreeBSD ports repository Modified files: net/openslp Makefile distinfo Log: Update to 1.0.11. Revision Changes Path 1.10 +8 -1 ports/net/openslp/Makefile 1.8 +1 -1 ports/net/openslp/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 2 19:02:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C516837B401; Wed, 2 Apr 2003 19:02:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CF3D43F75; Wed, 2 Apr 2003 19:02:32 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3332W0U062901; Wed, 2 Apr 2003 19:02:32 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3332WBr062900; Wed, 2 Apr 2003 19:02:32 -0800 (PST) Message-Id: <200304030302.h3332WBr062900@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 2 Apr 2003 19:02:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/anjuta Makefile distinfo pkg-plist ports/devel/anjuta/files patch-Makefile.in patch-configure patch-data::Makefile.in patch-src-Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 03:02:33 -0000 marcus 2003/04/02 19:02:32 PST FreeBSD ports repository Modified files: devel/anjuta Makefile distinfo pkg-plist devel/anjuta/files patch-Makefile.in patch-configure patch-data::Makefile.in patch-src-Makefile.in Log: Update to 1.0.2. Parts submitted by: Koop Mast Revision Changes Path 1.14 +5 -3 ports/devel/anjuta/Makefile 1.8 +1 -1 ports/devel/anjuta/distinfo 1.7 +4 -4 ports/devel/anjuta/files/patch-Makefile.in 1.7 +9 -9 ports/devel/anjuta/files/patch-configure 1.3 +3 -14 ports/devel/anjuta/files/patch-data::Makefile.in 1.8 +13 -13 ports/devel/anjuta/files/patch-src-Makefile.in 1.8 +13 -0 ports/devel/anjuta/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 2 19:09:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 395DC37B401; Wed, 2 Apr 2003 19:09:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA70643FB1; Wed, 2 Apr 2003 19:09:07 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h333970U064035; Wed, 2 Apr 2003 19:09:07 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33397Gq064034; Wed, 2 Apr 2003 19:09:07 -0800 (PST) Message-Id: <200304030309.h33397Gq064034@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 2 Apr 2003 19:09:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/gimp-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 03:09:08 -0000 marcus 2003/04/02 19:09:07 PST FreeBSD ports repository Modified files: graphics/gimp-devel Makefile Log: Allow one to disable GIMP print support with the WITHOUT_PRINT macro. PR: 48998 Submitted by: Seva Gluschenko Revision Changes Path 1.114 +8 -2 ports/graphics/gimp-devel/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 19:17:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 594DB37B401; Wed, 2 Apr 2003 19:17:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9F6943F3F; Wed, 2 Apr 2003 19:17:12 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h333HC0U064648; Wed, 2 Apr 2003 19:17:12 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h333HC9M064647; Wed, 2 Apr 2003 19:17:12 -0800 (PST) Message-Id: <200304030317.h333HC9M064647@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 19:17:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/glgraph Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 03:17:14 -0000 ijliao 2003/04/02 19:17:12 PST FreeBSD ports repository Modified files: math/glgraph Makefile Log: drop depends on p5-math-Trig ; it's in base perl5 suite Revision Changes Path 1.3 +1 -1 ports/math/glgraph/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 19:20:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6952C37B401; Wed, 2 Apr 2003 19:20:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16BE543F75; Wed, 2 Apr 2003 19:20:23 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h333KM0U064869; Wed, 2 Apr 2003 19:20:22 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h333KM5g064862; Wed, 2 Apr 2003 19:20:22 -0800 (PST) Message-Id: <200304030320.h333KM5g064862@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 19:20:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports MOVED ports/math Makefile ports/math/p5-Math-Trig Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 03:20:23 -0000 ijliao 2003/04/02 19:20:22 PST FreeBSD ports repository Modified files: . MOVED math Makefile Removed files: math/p5-Math-Trig Makefile distinfo pkg-descr pkg-plist Log: remove p5-Math-Trig Submitted by: Matthew Seaman Revision Changes Path 1.87 +2 -1 ports/MOVED 1.205 +0 -1 ports/math/Makefile 1.3 +0 -24 ports/math/p5-Math-Trig/Makefile (dead) 1.2 +0 -1 ports/math/p5-Math-Trig/distinfo (dead) 1.2 +0 -4 ports/math/p5-Math-Trig/pkg-descr (dead) 1.2 +0 -5 ports/math/p5-Math-Trig/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 19:21:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 563FC37B404; Wed, 2 Apr 2003 19:21:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8AA443FBF; Wed, 2 Apr 2003 19:21:25 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h333LP0U065178; Wed, 2 Apr 2003 19:21:25 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h333LPWj065177; Wed, 2 Apr 2003 19:21:25 -0800 (PST) Message-Id: <200304030321.h333LPWj065177@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 19:21:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 03:21:28 -0000 ijliao 2003/04/02 19:21:25 PST FreeBSD ports repository Modified files: . modules Log: remove p5-Math-Trig Submitted by: Matthew Seaman Revision Changes Path 1.6960 +0 -1 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 19:34:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFCB637B401; Wed, 2 Apr 2003 19:34:42 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADDE443F85; Wed, 2 Apr 2003 19:34:41 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by ns1.xcllnt.net (8.12.8/8.12.8) with ESMTP id h333YfKu083414; Wed, 2 Apr 2003 19:34:41 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.9/8.12.8) with ESMTP id h333YeTH066741; Wed, 2 Apr 2003 19:34:41 -0800 (PST) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.9/8.12.9/Submit) id h333YeoX066740; Wed, 2 Apr 2003 19:34:40 -0800 (PST) Date: Wed, 2 Apr 2003 19:34:40 -0800 From: Marcel Moolenaar To: Bruce Evans , Peter Jeremy , Alexander Leidinger , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20030403033440.GA66355@dhcp01.pn.xcllnt.net> References: <20030327204935.GA18134@HAL9000.homeunix.com> <20030330175646.281097ad.Alexander@Leidinger.net> <20030331082023.GE11307@cirb503493.alcatel.com.au> <20030401172440.701aaafd.Alexander@Leidinger.net> <20030401200457.GA30284@cirb503493.alcatel.com.au> <20030402154250.X25489@gamplex.bde.org> <20030402075905.GA30835@cirb503493.alcatel.com.au> <20030402203725.O26345@gamplex.bde.org> <20030402210714.GB65073@dhcp01.pn.xcllnt.net> <20030403001250.GA55715@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030403001250.GA55715@HAL9000.homeunix.com> User-Agent: Mutt/1.5.3i Subject: Re: cvs commit: src/sys/ia64/include float.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 03:34:43 -0000 On Wed, Apr 02, 2003 at 04:12:50PM -0800, David Schultz wrote: > > > Note also that the 82-bit FP registers have a 17-bit exponent to aid > > in near-overflow and near-underflow computations in IEEE754 double- > > extended format. Of course an exception is still raised if the result > > does not fit the target if the target is in double-extended format. > > Right. I think the LDBL_{MIN,MAX}* constants need to refer to the > memory format, not the FPU-internal format. Agreed. > If we *really* want > to be pedantic, we can clear the WRE bit in the FPU control > register and sacrifice the extra range in the interests of being > predictable. This is already the default, except for SF1. SF1 is documented to be reserved for math library implementations and has WRE enabled by default. > That's similar to what we do with i386 now, where we > sacrifice precision so gcc bugs don't cause strange things to > happen in the lower echelons. It's rather annoying. We don't > change the default precision control setting on IA64, do we? Correct, we don't. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Wed Apr 2 19:34:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61E4937B40B; Wed, 2 Apr 2003 19:34:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0E5543FA3; Wed, 2 Apr 2003 19:34:50 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h333Yo0U065904; Wed, 2 Apr 2003 19:34:50 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h333YowN065903; Wed, 2 Apr 2003 19:34:50 -0800 (PST) Message-Id: <200304030334.h333YowN065903@repoman.freebsd.org> From: Jake Burkholder Date: Wed, 2 Apr 2003 19:34:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/arch/i386/i386 _setcurthread.c src/lib/libthr/arch/sparc64/sparc64 _setcurthread.c src/lib/libthr/thread thr_create.c thr_init.c thr_private.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 03:34:53 -0000 jake 2003/04/02 19:34:50 PST FreeBSD src repository Modified files: lib/libthr/arch/i386/i386 _setcurthread.c lib/libthr/arch/sparc64/sparc64 _setcurthread.c lib/libthr/thread thr_create.c thr_init.c thr_private.h Log: - Pass a ucontext_t to _set_curthread. If non-NULL the new thread is set as curthread in the new context, so that it will be set automatically when the thread is switched to. This fixes a race where we'd run for a little while with curthread unset in _thread_start. Reviewed by: jeff Revision Changes Path 1.3 +6 -2 src/lib/libthr/arch/i386/i386/_setcurthread.c 1.2 +5 -2 src/lib/libthr/arch/sparc64/sparc64/_setcurthread.c 1.3 +4 -4 src/lib/libthr/thread/thr_create.c 1.3 +1 -1 src/lib/libthr/thread/thr_init.c 1.4 +2 -2 src/lib/libthr/thread/thr_private.h From owner-cvs-all@FreeBSD.ORG Wed Apr 2 20:21:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBC5337B401; Wed, 2 Apr 2003 20:21:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73A9B43F75; Wed, 2 Apr 2003 20:21:50 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h334Lo0U069964; Wed, 2 Apr 2003 20:21:50 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h334Lo1g069963; Wed, 2 Apr 2003 20:21:50 -0800 (PST) Message-Id: <200304030421.h334Lo1g069963@repoman.freebsd.org> From: Dirk Meyer Date: Wed, 2 Apr 2003 20:21:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/tcl82 Makefile ports/lang/tcl83 Makefile ports/lang/tcl84 Makefile ports/x11-toolkits/tk82 Makefile ports/x11-toolkits/tk83 Makefile ports/x11-toolkits/tk84 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 04:21:51 -0000 dinoex 2003/04/02 20:21:50 PST FreeBSD ports repository Modified files: lang/tcl82 Makefile lang/tcl83 Makefile lang/tcl84 Makefile x11-toolkits/tk82 Makefile x11-toolkits/tk83 Makefile x11-toolkits/tk84 Makefile Log: - Fix some problems for other ports when WRKDIRPREFIX= is not set. (packages are not affected) Revision Changes Path 1.45 +1 -1 ports/lang/tcl82/Makefile 1.59 +1 -1 ports/lang/tcl83/Makefile 1.68 +1 -1 ports/lang/tcl84/Makefile 1.48 +1 -1 ports/x11-toolkits/tk82/Makefile 1.58 +1 -1 ports/x11-toolkits/tk83/Makefile 1.66 +1 -1 ports/x11-toolkits/tk84/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 20:36:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 512F437B401; Wed, 2 Apr 2003 20:36:03 -0800 (PST) Received: from newsguy.com (smtp.newsguy.com [129.250.170.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id A644E43F93; Wed, 2 Apr 2003 20:36:02 -0800 (PST) (envelope-from dcs@newsguy.com) Received: from newsguy.com (200-140-006-213.bsace7026.dsl.brasiltelecom.net.br [200.140.6.213]) by newsguy.com (8.9.1a/8.9.1) with ESMTP id NAA12338; Wed, 2 Apr 2003 13:47:31 -0800 (PST) Message-ID: <3E8B5A72.9090603@newsguy.com> Date: Wed, 02 Apr 2003 18:47:30 -0300 From: "Daniel C. Sobral" User-Agent: Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.3b) Gecko/20030210 X-Accept-Language: en,pt-BR,pt,en-GB,en-US,ja MIME-Version: 1.0 To: Jordan K Hubbard References: <7DDCFFBC-6551-11D7-87AF-000393BB9222@queasyweasel.com> In-Reply-To: <7DDCFFBC-6551-11D7-87AF-000393BB9222@queasyweasel.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: src-committers@FreeBSD.org cc: "Matthew N. Dodd" cc: Peter Wemm cc: cvs-src@FreeBSD.org cc: Alexander Leidinger cc: cvs-all@FreeBSD.org Subject: Re: Proposal regarding the RFC 3514 handling X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 04:36:03 -0000 Mmmmmm. I fear the repecursion of my planned loader regex support changes... :-) Jordan K Hubbard wrote: > All of this discussion begs the question, however: Since we've set a > precedent here, when does Jim Fleming's IPv8 support get rolled in? > FreeBSD could certainly use "stargates" as a way of impressing Julian's > Linux-using friends! > > - Jordan > > On Wednesday, April 2, 2003, at 11:48 AM, Peter Wemm wrote: > >> Alexander Leidinger wrote: >> >>> On Tue, 1 Apr 2003 00:21:44 -0800 (PST) >>> "Matthew N. Dodd" wrote: >>> >>>> mdodd 2003/04/01 00:21:44 PST >>>> >>>> FreeBSD src repository >>>> >>>> Modified files: >>>> sbin/ping ping.8 ping.c >>>> share/man/man4 inet.4 ip.4 >>>> sys/netinet in.h in_pcb.h ip.h ip_input.c ip_output.c >>>> ip_var.h >>>> usr.bin/netstat inet.c >>>> Log: >>>> Implement support for RFC 3514 (The Security Flag in the IPv4 >>>> Header). >>> >>> >>> In the light of the actual "force" against this commit: perhaps it would >>> be ok for all involved parties to only compile this code in based upon a >>> kernel option... >> >> >> Personally, I tend to agree. >> >>> In my POV: people which don't know enough about this topic would IMHO >>> not be concerned about this code, and people which know enough to have a >>> reason to compile or not compile this code into the kernel should also >>> know enough about FreeBSD to not regard this code as a lack of >>> professionalism (and see it as what it is: there are people which enjoy >>> to invest their time into FreeBSD... and this is what makes FreeBSD what >>> it is). >> >> >> Exactly. We're supposed to be doing FreeBSD for our own enjoyment. If >> others get use from it then fine. The day that we're no longer >> allowed to >> have fun because it might upset somebody in some fortune-500 company will >> be a sad day indeed. Nobody said we had to be 100% deadly serious the >> whole time. >> >> .. as long as having a bit of fun doesn't get in the way.. An option >> would >> stop it being in the code execution paths. >> >> On the other hand, we have so much cruft in the ip input/output code >> paths >> (2 or 3 different packet filter hooks etc), this is tiny by comparison. >> >> Anyway, I think Matthew is going to to remove it, so maybe its a moot >> point. >> >> 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 >> >> > -- > Jordan K. Hubbard > Engineering Manager, BSD technology group > Apple Computer > > -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@professional.bsdconspiracy.net Spellng is overated anywy. From owner-cvs-all@FreeBSD.ORG Wed Apr 2 20:38:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05B3D37B401; Wed, 2 Apr 2003 20:38:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9825A43F75; Wed, 2 Apr 2003 20:38:14 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h334cE0U070772; Wed, 2 Apr 2003 20:38:14 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h334cErB070771; Wed, 2 Apr 2003 20:38:14 -0800 (PST) Message-Id: <200304030438.h334cErB070771@repoman.freebsd.org> From: Murray Stokely Date: Wed, 2 Apr 2003 20:38:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_8 Subject: cvs commit: src/release/i386 dokern.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 04:38:15 -0000 murray 2003/04/02 20:38:14 PST FreeBSD src repository Modified files: (Branch: RELENG_4_8) release/i386 dokern.sh Log: Remove dokern.sh from the boot floppies once again. There is no associated module so the removal goes here, rather than in drivers.conf(5). Submitted by: bmah Approved by: re@ cabal Revision Changes Path 1.58.2.4.2.1 +1 -0 src/release/i386/dokern.sh From owner-cvs-all@FreeBSD.ORG Wed Apr 2 20:39:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 159F537B401; Wed, 2 Apr 2003 20:39:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA7B143FAF; Wed, 2 Apr 2003 20:39:44 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h334di0U070830; Wed, 2 Apr 2003 20:39:44 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h334diV6070829; Wed, 2 Apr 2003 20:39:44 -0800 (PST) Message-Id: <200304030439.h334diV6070829@repoman.freebsd.org> From: Murray Stokely Date: Wed, 2 Apr 2003 20:39:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/i386 dokern.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 04:39:45 -0000 murray 2003/04/02 20:39:44 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release/i386 dokern.sh Log: MFR48: Remove awi driver from boot kernel -- we are short of space. Approved by: re Revision Changes Path 1.58.2.5 +1 -0 src/release/i386/dokern.sh From owner-cvs-all@FreeBSD.ORG Wed Apr 2 20:44:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E93F37B401; Wed, 2 Apr 2003 20:44:32 -0800 (PST) Received: from builder.freebsdmall.com (builder.freebsdmall.com [65.86.180.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 003DD43FAF; Wed, 2 Apr 2003 20:44:32 -0800 (PST) (envelope-from murray@builder.freebsdmall.com) Received: (from root@localhost) by builder.freebsdmall.com (8.12.8/8.11.6) id h334iVvu020663; Wed, 2 Apr 2003 20:44:31 -0800 (PST) (envelope-from murray) Date: Wed, 2 Apr 2003 20:44:31 -0800 From: Murray Stokely To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20030402204431.H43794@freebsdmall.com> References: <200304030438.h334cErB070771@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200304030438.h334cErB070771@repoman.freebsd.org>; from murray@FreeBSD.org on Wed, Apr 02, 2003 at 08:38:14PM -0800 X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Subject: Re: cvs commit: src/release/i386 dokern.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 04:44:33 -0000 On Wed, Apr 02, 2003 at 08:38:14PM -0800, Murray Stokely wrote: > FreeBSD src repository > > Modified files: (Branch: RELENG_4_8) > release/i386 dokern.sh > Log: > Remove dokern.sh from the boot floppies once again. There is no ^^^^^^ I meant awi(4). - Murray From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:02:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADDCD37B401; Wed, 2 Apr 2003 21:02:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45B0643F3F; Wed, 2 Apr 2003 21:02:46 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3352k0U077756; Wed, 2 Apr 2003 21:02:46 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3352kVW077755; Wed, 2 Apr 2003 21:02:46 -0800 (PST) Message-Id: <200304030502.h3352kVW077755@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 21:02:45 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel Makefile ports/devel/p5-Curses-Forms Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:02:47 -0000 ijliao 2003/04/02 21:02:45 PST FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Curses-Forms Makefile distinfo pkg-descr pkg-plist Log: add p5-Curses-Forms 1.997 Provide high level APIs for rapid UI design on the console Revision Changes Path 1.1077 +1 -0 ports/devel/Makefile 1.1 +31 -0 ports/devel/p5-Curses-Forms/Makefile (new) 1.1 +1 -0 ports/devel/p5-Curses-Forms/distinfo (new) 1.1 +8 -0 ports/devel/p5-Curses-Forms/pkg-descr (new) 1.1 +9 -0 ports/devel/p5-Curses-Forms/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:02:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BBA237B407; Wed, 2 Apr 2003 21:02:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 086B143FA3; Wed, 2 Apr 2003 21:02:54 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3352r0U077794; Wed, 2 Apr 2003 21:02:53 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3352rtK077793; Wed, 2 Apr 2003 21:02:53 -0800 (PST) Message-Id: <200304030502.h3352rtK077793@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 21:02:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:02:54 -0000 ijliao 2003/04/02 21:02:53 PST FreeBSD ports repository Modified files: . modules Log: p5-Curses-Forms --> ports/devel/p5-Curses-Forms Revision Changes Path 1.6961 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:09:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C82B837B401; Wed, 2 Apr 2003 21:09:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F6B143FB1; Wed, 2 Apr 2003 21:09:35 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3359Z0U078981; Wed, 2 Apr 2003 21:09:35 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3359ZCw078980; Wed, 2 Apr 2003 21:09:35 -0800 (PST) Message-Id: <200304030509.h3359ZCw078980@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 21:09:35 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel Makefile ports/devel/p5-Curses-Application Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:09:36 -0000 ijliao 2003/04/02 21:09:35 PST FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Curses-Application Makefile distinfo pkg-descr pkg-plist Log: add p5-Curses-Application 0.2 Curses application development framework Revision Changes Path 1.1078 +1 -0 ports/devel/Makefile 1.1 +28 -0 ports/devel/p5-Curses-Application/Makefile (new) 1.1 +1 -0 ports/devel/p5-Curses-Application/distinfo (new) 1.1 +7 -0 ports/devel/p5-Curses-Application/pkg-descr (new) 1.1 +4 -0 ports/devel/p5-Curses-Application/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:09:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5703137B40A; Wed, 2 Apr 2003 21:09:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A92A643FDD; Wed, 2 Apr 2003 21:09:43 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3359h0U079019; Wed, 2 Apr 2003 21:09:43 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3359hkG079018; Wed, 2 Apr 2003 21:09:43 -0800 (PST) Message-Id: <200304030509.h3359hkG079018@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 21:09:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:09:45 -0000 ijliao 2003/04/02 21:09:43 PST FreeBSD ports repository Modified files: . modules Log: p5-Curses-Application --> ports/devel/p5-Curses-Application Revision Changes Path 1.6962 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:13:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16BE137B401; Wed, 2 Apr 2003 21:13:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA82E43F75; Wed, 2 Apr 2003 21:13:27 -0800 (PST) (envelope-from jmallett@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h335DR0U079545; Wed, 2 Apr 2003 21:13:27 -0800 (PST) (envelope-from jmallett@repoman.freebsd.org) Received: (from jmallett@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h335DR60079544; Wed, 2 Apr 2003 21:13:27 -0800 (PST) Message-Id: <200304030513.h335DR60079544@repoman.freebsd.org> From: Juli Mallett Date: Wed, 2 Apr 2003 21:13:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:13:30 -0000 jmallett 2003/04/02 21:13:27 PST FreeBSD src repository Modified files: libexec/talkd announce.c extern.h print.c table.c talkd.c Log: MFp4 @27667: WARNS=5 cleanup on i386. Remove the unused FILE\ *tf from print_mesg args, and the bogus passing in of an uninitialised FILE* for it. Call a timeval 'now' instead of 'clock' due to shadowing. Remove a nested localtime declaration. Make the delete invite argument match the ID type, u_int32_t. Use const for pointers to const items. Cast to long where printing as such. Include netinet/in.h for htonl/htons. Reviewed by: imp Revision Changes Path 1.16 +5 -7 src/libexec/talkd/announce.c 1.3 +2 -2 src/libexec/talkd/extern.h 1.12 +7 -5 src/libexec/talkd/print.c 1.9 +2 -1 src/libexec/talkd/table.c 1.14 +1 -0 src/libexec/talkd/talkd.c From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:16:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id F08CB37B401; Wed, 2 Apr 2003 21:16:40 -0800 (PST) Date: Wed, 2 Apr 2003 23:16:40 -0600 From: Juli Mallett To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20030402231638.A81523@FreeBSD.org> References: <200304030513.h335DR60079544@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200304030513.h335DR60079544@repoman.freebsd.org>; from jmallett@FreeBSD.org on Wed, Apr 02, 2003 at 09:13:27PM -0800 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-Negacore: Yes X-Title: Code Maven X-Authentication-Warning: localhost: juli pwned teh intarweb Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:16:41 -0000 * De: Juli Mallett [ Data: 2003-04-02 ] [ Subjecte: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c ] > jmallett 2003/04/02 21:13:27 PST > > FreeBSD src repository > > Modified files: > libexec/talkd announce.c extern.h print.c table.c > talkd.c > Log: > MFp4 @27667: WARNS=5 cleanup on i386. On platforms with pointer alignment warnings, it's not really WARNS=5, and I have not marked it as such for that reason. It is however now WARNS=3 on those platforms, plus everything except the alignment issues. Thanx, juli. -- juli mallett. email: jmallett@freebsd.org; aim: bsdflata; efnet: juli; From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:18:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B4C337B401; Wed, 2 Apr 2003 21:18:57 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id B013F43F75; Wed, 2 Apr 2003 21:18:56 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h335ItA7052688; Wed, 2 Apr 2003 22:18:56 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Wed, 02 Apr 2003 22:18:33 -0700 (MST) Message-Id: <20030402.221833.68983726.imp@bsdimp.com> To: murray@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20030402204431.H43794@freebsdmall.com> References: <200304030438.h334cErB070771@repoman.freebsd.org> <20030402204431.H43794@freebsdmall.com> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/i386 dokern.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:18:58 -0000 In message: <20030402204431.H43794@freebsdmall.com> Murray Stokely writes: : On Wed, Apr 02, 2003 at 08:38:14PM -0800, Murray Stokely wrote: : > FreeBSD src repository : > : > Modified files: (Branch: RELENG_4_8) : > release/i386 dokern.sh : > Log: : > Remove dokern.sh from the boot floppies once again. There is no : ^^^^^^ : I meant awi(4). Unlike 5.0, the awi driver does work in 4.8. However, the number of supported cards deployed makes this a good choice. Warner From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:26:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F40C37B401; Wed, 2 Apr 2003 21:26:27 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C01643FAF; Wed, 2 Apr 2003 21:26:12 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h335Q0s4015009 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 3 Apr 2003 08:26:00 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.8/8.12.8/Submit) id h335Q0Sw015004; Thu, 3 Apr 2003 08:26:00 +0300 (EEST) (envelope-from ru) Date: Thu, 3 Apr 2003 08:25:59 +0300 From: Ruslan Ermilov To: Juli Mallett Message-ID: <20030403052559.GE12620@sunbay.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="h56sxpGKRmy85csR" Content-Disposition: inline In-Reply-To: <20030402231638.A81523@FreeBSD.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:26:27 -0000 --h56sxpGKRmy85csR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 02, 2003 at 11:16:40PM -0600, Juli Mallett wrote: > * De: Juli Mallett [ Data: 2003-04-02 ] > [ Subjecte: cvs commit: src/libexec/talkd announce.c extern.h print.c ta= ble.c talkd.c ] > > jmallett 2003/04/02 21:13:27 PST > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > libexec/talkd announce.c extern.h print.c table.c=20 > > talkd.c=20 > > Log: > > MFp4 @27667: WARNS=3D5 cleanup on i386. >=20 > On platforms with pointer alignment warnings, it's not really WARNS=3D5, > and I have not marked it as such for that reason. It is however now > WARNS=3D3 on those platforms, plus everything except the alignment issues. >=20 I recall a requirement that the WARNS be the same for all arches. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --h56sxpGKRmy85csR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+i8XnUkv4P6juNwoRAusdAJ4xlsKRMq1hDx88Y885+rPiVFPWOgCfXlbA mgbTne5suwcttFKoS+pm7qA= =9vHF -----END PGP SIGNATURE----- --h56sxpGKRmy85csR-- From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:28:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFB0437B401; Wed, 2 Apr 2003 21:28:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CA6343FA3; Wed, 2 Apr 2003 21:28:10 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h335SA0U080289; Wed, 2 Apr 2003 21:28:10 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h335SA7h080288; Wed, 2 Apr 2003 21:28:10 -0800 (PST) Message-Id: <200304030528.h335SA7h080288@repoman.freebsd.org> From: Warner Losh Date: Wed, 2 Apr 2003 21:28:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile Makefile.upgrade X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:28:11 -0000 imp 2003/04/02 21:28:09 PST FreeBSD src repository Modified files: . Makefile Removed files: . Makefile.upgrade Log: Kill aout to elf upgrade path. From an old comment in the makefile: # If -DWANT_AOUT is specified, a `make world' with OBJFORMAT=elf will # update the legacy support for aout. This includes all libraries, ld.so # and boot objects. This part of build should be regarded as # deprecated and you should _not_ expect to be able to do this past the # release of 4.0. You have exactly one major release to move entirely # to elf. Now that we're past 5.0, these aren't needed at all anymore and it is well past its freshness date. Revision Changes Path 1.279 +0 -46 src/Makefile 1.19 +0 -255 src/Makefile.upgrade (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:28:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id F28F737B437; Wed, 2 Apr 2003 21:28:17 -0800 (PST) Date: Wed, 2 Apr 2003 23:28:17 -0600 From: Juli Mallett To: Ruslan Ermilov Message-ID: <20030402232817.A83217@FreeBSD.org> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403052559.GE12620@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030403052559.GE12620@sunbay.com>; from ru@FreeBSD.org on Thu, Apr 03, 2003 at 08:25:59AM +0300 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-Negacore: Yes X-Title: Code Maven X-Authentication-Warning: localhost: juli pwned teh intarweb cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:28:22 -0000 * De: Ruslan Ermilov [ Data: 2003-04-02 ] [ Subjecte: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c ] > On Wed, Apr 02, 2003 at 11:16:40PM -0600, Juli Mallett wrote: > > * De: Juli Mallett [ Data: 2003-04-02 ] > > [ Subjecte: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c ] > > > jmallett 2003/04/02 21:13:27 PST > > > > > > FreeBSD src repository > > > > > > Modified files: > > > libexec/talkd announce.c extern.h print.c table.c > > > talkd.c > > > Log: > > > MFp4 @27667: WARNS=5 cleanup on i386. > > > > On platforms with pointer alignment warnings, it's not really WARNS=5, > > and I have not marked it as such for that reason. It is however now > > WARNS=3 on those platforms, plus everything except the alignment issues. > > I recall a requirement that the WARNS be the same for all arches. Of course, which is why I didn't bump the WARNS level. I cleaned up code, and left some things untouched. -- juli mallett. email: jmallett@freebsd.org; aim: bsdflata; efnet: juli; From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:32:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4578A37B401; Wed, 2 Apr 2003 21:32:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF60A43F3F; Wed, 2 Apr 2003 21:32:58 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h335Ww0U080915; Wed, 2 Apr 2003 21:32:58 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h335Wwkd080914; Wed, 2 Apr 2003 21:32:58 -0800 (PST) Message-Id: <200304030532.h335Wwkd080914@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 21:32:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games Makefile ports/games/jtans Makefile distinfo pkg-descr pkg-plist ports/games/jtans/files jtans X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:32:59 -0000 ijliao 2003/04/02 21:32:58 PST FreeBSD ports repository Modified files: games Makefile Added files: games/jtans Makefile distinfo pkg-descr pkg-plist games/jtans/files jtans Log: add jtans 1.0 A (not so) ancient puzzle Revision Changes Path 1.533 +1 -0 ports/games/Makefile 1.1 +35 -0 ports/games/jtans/Makefile (new) 1.1 +1 -0 ports/games/jtans/distinfo (new) 1.1 +3 -0 ports/games/jtans/files/jtans (new) 1.1 +5 -0 ports/games/jtans/pkg-descr (new) 1.1 +2 -0 ports/games/jtans/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:33:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8536C37B41A; Wed, 2 Apr 2003 21:33:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2668143F93; Wed, 2 Apr 2003 21:33:07 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h335X60U080961; Wed, 2 Apr 2003 21:33:06 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h335X69O080960; Wed, 2 Apr 2003 21:33:06 -0800 (PST) Message-Id: <200304030533.h335X69O080960@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 21:33:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:33:09 -0000 ijliao 2003/04/02 21:33:06 PST FreeBSD ports repository Modified files: . modules Log: jtans --> ports/games/jtans Revision Changes Path 1.6963 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:34:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A53137B41F; Wed, 2 Apr 2003 21:34:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0D6F43F93; Wed, 2 Apr 2003 21:34:36 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h335Ya0U081030; Wed, 2 Apr 2003 21:34:36 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h335Yacb081029; Wed, 2 Apr 2003 21:34:36 -0800 (PST) Message-Id: <200304030534.h335Yacb081029@repoman.freebsd.org> From: Warner Losh Date: Wed, 2 Apr 2003 21:34:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:34:37 -0000 imp 2003/04/02 21:34:36 PST FreeBSD src repository Modified files: . Makefile Log: Kill upgrade target docs. It too is stale. Submitted by: ru Revision Changes Path 1.280 +0 -1 src/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:44:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8A3A37B401; Wed, 2 Apr 2003 21:44:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8608D43F93; Wed, 2 Apr 2003 21:44:08 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h335i80U081727; Wed, 2 Apr 2003 21:44:08 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h335i8IA081726; Wed, 2 Apr 2003 21:44:08 -0800 (PST) Message-Id: <200304030544.h335i8IA081726@repoman.freebsd.org> From: Warner Losh Date: Wed, 2 Apr 2003 21:44:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/3.0-upgrade Makefile README cvt-wtmp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:44:09 -0000 imp 2003/04/02 21:44:08 PST FreeBSD src repository Removed files: tools/3.0-upgrade Makefile README cvt-wtmp.c Log: 2.x->3.0 upgrade tools are no longer needed. 5.x is unlikely to fit on a 2.1/2.2 root disk anyway. OK'd by: peter Revision Changes Path 1.4 +0 -6 src/tools/3.0-upgrade/Makefile (dead) 1.4 +0 -31 src/tools/3.0-upgrade/README (dead) 1.7 +0 -284 src/tools/3.0-upgrade/cvt-wtmp.c (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:50:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FAE837B401; Wed, 2 Apr 2003 21:50:51 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id E66D043F3F; Wed, 2 Apr 2003 21:50:49 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by ns1.xcllnt.net (8.12.8/8.12.8) with ESMTP id h335onKu084019; Wed, 2 Apr 2003 21:50:49 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.9/8.12.8) with ESMTP id h335onTH067312; Wed, 2 Apr 2003 21:50:49 -0800 (PST) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.9/8.12.9/Submit) id h335onE4067311; Wed, 2 Apr 2003 21:50:49 -0800 (PST) Date: Wed, 2 Apr 2003 21:50:49 -0800 From: Marcel Moolenaar To: Juli Mallett Message-ID: <20030403055049.GA67232@dhcp01.pn.xcllnt.net> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030402231638.A81523@FreeBSD.org> User-Agent: Mutt/1.5.3i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:50:51 -0000 On Wed, Apr 02, 2003 at 11:16:40PM -0600, Juli Mallett wrote: > > On platforms with pointer alignment warnings, it's not really WARNS=5, > and I have not marked it as such for that reason. It is however now > WARNS=3 on those platforms, plus everything except the alignment issues. [Not picking on this particular commit] Please, everybody, do not set WARNS=5 on anything because it breaks non-optimized builds: cc -g -mcpu=pentiumpro -I/usr/local/src/fpi/cpu/.. -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wuninitialized -c decode.c cc1: warnings being treated as errors cc1: warning: -Wuninitialized is not supported without -O *** Error code 1 The same happens with -O0 instead of -g. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Wed Apr 2 21:56:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5221337B401; Wed, 2 Apr 2003 21:56:31 -0800 (PST) Received: from smtp-relay.omnis.com (smtp-relay.omnis.com [216.239.128.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFBD243FBD; Wed, 2 Apr 2003 21:56:30 -0800 (PST) (envelope-from wes@softweyr.com) Received: from softweyr.homeunix.net (66-91-236-204.san.rr.com [66.91.236.204]) by smtp-relay.omnis.com (Postfix) with ESMTP id DE04A43909; Wed, 2 Apr 2003 21:56:29 -0800 (PST) From: Wes Peters Organization: Softweyr To: Jordan K Hubbard , Peter Wemm Date: Wed, 2 Apr 2003 21:55:17 -0800 User-Agent: KMail/1.5 References: <7DDCFFBC-6551-11D7-87AF-000393BB9222@queasyweasel.com> In-Reply-To: <7DDCFFBC-6551-11D7-87AF-000393BB9222@queasyweasel.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200304022155.17659.wes@softweyr.com> cc: Alexander Leidinger cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "Matthew N. Dodd" cc: cvs-src@FreeBSD.org Subject: Re: Proposal regarding the RFC 3514 handling X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 05:56:31 -0000 On Wednesday 02 April 2003 13:24, Jordan K Hubbard wrote: > All of this discussion begs the question, however: Since we've set a > precedent here, when does Jim Fleming's IPv8 support get rolled in? > FreeBSD could certainly use "stargates" as a way of impressing Julian's > Linux-using friends! Have him send me the patch, I can throw it on a couple dozen machines and give it a good wringing out. ;^) -- Where am I, and what am I doing in this handbasket? Wes Peters wes@softweyr.com From owner-cvs-all@FreeBSD.ORG Wed Apr 2 22:30:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E71A37B401; Wed, 2 Apr 2003 22:30:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA06843F3F; Wed, 2 Apr 2003 22:30:56 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h336Uu0U085713; Wed, 2 Apr 2003 22:30:56 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h336UuGh085711; Wed, 2 Apr 2003 22:30:56 -0800 (PST) Message-Id: <200304030630.h336UuGh085711@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 22:30:56 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics Makefile ports/graphics/xenomorph Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 06:30:57 -0000 ijliao 2003/04/02 22:30:56 PST FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/xenomorph Makefile distinfo pkg-descr pkg-plist Log: add xenomorph 0.5.1 An image filter system based on volterra and morphologic filters Revision Changes Path 1.571 +1 -0 ports/graphics/Makefile 1.1 +27 -0 ports/graphics/xenomorph/Makefile (new) 1.1 +1 -0 ports/graphics/xenomorph/distinfo (new) 1.1 +9 -0 ports/graphics/xenomorph/pkg-descr (new) 1.1 +1 -0 ports/graphics/xenomorph/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 2 22:31:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BE6337B419; Wed, 2 Apr 2003 22:31:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07F7C43F75; Wed, 2 Apr 2003 22:31:04 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h336V30U085792; Wed, 2 Apr 2003 22:31:03 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h336V3m9085791; Wed, 2 Apr 2003 22:31:03 -0800 (PST) Message-Id: <200304030631.h336V3m9085791@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 2 Apr 2003 22:31:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 06:31:07 -0000 ijliao 2003/04/02 22:31:03 PST FreeBSD ports repository Modified files: . modules Log: xenomorph --> ports/graphics/xenomorph Revision Changes Path 1.6964 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 2 22:34:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2698437B404; Wed, 2 Apr 2003 22:34:24 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 922ED43F85; Wed, 2 Apr 2003 22:34:22 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.8/8.12.8) with ESMTP id h336YK9o055217; Thu, 3 Apr 2003 08:34:21 +0200 (CEST) (envelope-from phk@phk.freebsd.dk) To: Peter Wemm From: "Poul-Henning Kamp" In-Reply-To: Your message of "Wed, 02 Apr 2003 15:53:30 -0800." <200304022353.h32NrUVZ042513@repoman.freebsd.org> Date: Thu, 03 Apr 2003 08:34:20 +0200 Message-ID: <55216.1049351660@critter.freebsd.dk> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 machdep.c mp_machdep.c pmap.c swtch.s src/sys/i386/include md_var.h pmap.h smp.h src/sys/i386/isa apic_vector.s intr_machdep.h src/sys/kern kern_switch.c kern_synch.c kern_thr.c kern_thread.c subr_witness.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 06:34:24 -0000 In message <200304022353.h32NrUVZ042513@repoman.freebsd.org>, Peter Wemm writes : >peter 2003/04/02 15:53:30 PST > > FreeBSD src repository > > Modified files: > sys/conf options.i386 > sys/i386/i386 machdep.c mp_machdep.c pmap.c swtch.s > sys/i386/include md_var.h pmap.h smp.h > sys/i386/isa apic_vector.s intr_machdep.h > sys/kern kern_switch.c kern_synch.c kern_thr.c > kern_thread.c subr_witness.c > sys/sparc64/sparc64 mp_machdep.c swtch.S > sys/sys proc.h > Log: > Commit a partial lazy thread switch mechanism for i386. it isn't as lazy > as it could be and can do with some more cleanup. Currently its under > options LAZY_SWITCH. What this does is avoid %cr3 reloads for short > context switches that do not involve another user process. A naïve benchmark consisting of dd if=/dev/ad0 of=/dev/null count=200000 run five times on a disk-less Athlon 700 in singleuser mode from a serial console indicates a pezzimization of about 2 microseconds for each sector read: With LAZY_SWITCH: S+ N 5 Average: 0.000310656 Stddev: 0.000000443 Without LAZY_SWITCH: S- N 5 Average: 0.000307986 Stddev: 0.000000618 Raw data: # S/U + LAZY echo -n "S+ " echo ' 102400000 bytes transferred in 61.990546 secs (1651865 bytes/sec) 102400000 bytes transferred in 62.175809 secs (1646943 bytes/sec) 102400000 bytes transferred in 62.144970 secs (1647760 bytes/sec) 102400000 bytes transferred in 62.117270 secs (1648495 bytes/sec) 102400000 bytes transferred in 62.227536 secs (1645574 bytes/sec) ' | awk 'NR > 0 && NF > 5 {print$5 / 200000.0}' | stddev # S/U - LAZY echo -n "S- " echo ' 102400000 bytes transferred in 61.495447 secs (1665164 bytes/sec) 102400000 bytes transferred in 61.732293 secs (1658775 bytes/sec) 102400000 bytes transferred in 61.688183 secs (1659961 bytes/sec) 102400000 bytes transferred in 61.444021 secs (1666558 bytes/sec) 102400000 bytes transferred in 61.626133 secs (1661633 bytes/sec) ' | awk 'NR > 0 && NF > 5 {print$5 / 200000.0}' | stddev -- 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. From owner-cvs-all@FreeBSD.ORG Thu Apr 3 00:01:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E60737B401; Thu, 3 Apr 2003 00:01:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A9CE43F75; Thu, 3 Apr 2003 00:01:43 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3381h0U092241; Thu, 3 Apr 2003 00:01:43 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3381he5092240; Thu, 3 Apr 2003 00:01:43 -0800 (PST) Message-Id: <200304030801.h3381he5092240@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 3 Apr 2003 00:01:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/ogmtools Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 08:01:44 -0000 lioux 2003/04/03 00:01:43 PST FreeBSD ports repository Modified files: multimedia/ogmtools Makefile distinfo Log: Update to 1.0.1 Revision Changes Path 1.11 +1 -1 ports/multimedia/ogmtools/Makefile 1.8 +1 -1 ports/multimedia/ogmtools/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 00:04:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EBFC37B401; Thu, 3 Apr 2003 00:04:43 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id E168A43F93; Thu, 3 Apr 2003 00:04:41 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id SAA30938; Thu, 3 Apr 2003 18:04:26 +1000 Date: Thu, 3 Apr 2003 18:04:25 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Marcel Moolenaar In-Reply-To: <20030403055049.GA67232@dhcp01.pn.xcllnt.net> Message-ID: <20030403180026.A29934@gamplex.bde.org> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.ctable.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 08:04:44 -0000 On Wed, 2 Apr 2003, Marcel Moolenaar wrote: > Please, everybody, do not set WARNS=5 on anything because it breaks > non-optimized builds: > > cc -g -mcpu=pentiumpro -I/usr/local/src/fpi/cpu/.. -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith > -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wuninitialized -c decode.c > cc1: warnings being treated as errors > cc1: warning: -Wuninitialized is not supported without -O > *** Error code 1 Too late: ./bin/df/Makefile:WARNS?= 5 ./games/random/Makefile:WARNS?= 5 ./lib/csu/alpha/Makefile:WARNS?= 6 ./lib/libypclnt/Makefile:WARNS?= 5 ./sbin/devfs/Makefile:WARNS?= 5 ./sbin/nfsiod/Makefile:WARNS?= 6 ./tools/regression/geom/ConfCmp/Makefile:WARNS= 5 ./tools/regression/geom/GLib/Makefile:WARNS = 5 ./tools/regression/geom/Test/Makefile.inc:WARNS= 5 ./usr.bin/chpass/Makefile:WARNS?= 5 ./usr.bin/fetch/Makefile:WARNS?= 5 ./usr.bin/lsvfs/Makefile:WARNS?= 6 ./usr.bin/unifdef/Makefile:WARNS?= 5 ./usr.bin/whereis/Makefile:WARNS?= 5 ./usr.bin/xargs/Makefile:WARNS?= 6 ./usr.sbin/burncd/Makefile:WARNS?= 5 ./usr.sbin/extattr/Makefile:WARNS?= 5 This is mostly a bug in the implementation of WARNS. Bruce From owner-cvs-all@FreeBSD.ORG Thu Apr 3 00:13:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90C5937B401; Thu, 3 Apr 2003 00:13:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2209843FBF; Thu, 3 Apr 2003 00:13:05 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h338D40U093857; Thu, 3 Apr 2003 00:13:04 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h338D47W093856; Thu, 3 Apr 2003 00:13:04 -0800 (PST) Message-Id: <200304030813.h338D47W093856@repoman.freebsd.org> From: Murray Stokely Date: Thu, 3 Apr 2003 00:13:04 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/news press.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 08:13:05 -0000 murray 2003/04/03 00:13:04 PST FreeBSD doc repository Modified files: en/news press.xml Log: Add a link to the press release about the short live FreeBSD segment on TechTV. This includes a link to a RealVideo stream of the episode. Submitted by: many Revision Changes Path 1.67 +22 -1 www/en/news/press.xml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 00:35:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8723E37B401; Thu, 3 Apr 2003 00:35:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26DD443F3F; Thu, 3 Apr 2003 00:35:01 -0800 (PST) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h338Z00U095109; Thu, 3 Apr 2003 00:35:00 -0800 (PST) (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h338Z0Pf095108; Thu, 3 Apr 2003 00:35:00 -0800 (PST) Message-Id: <200304030835.h338Z0Pf095108@repoman.freebsd.org> From: Anton Berezin Date: Thu, 3 Apr 2003 00:35:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/p5-Net-Whois-RIPE Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 08:35:02 -0000 tobez 2003/04/03 00:35:00 PST FreeBSD ports repository Modified files: net/p5-Net-Whois-RIPE Makefile Log: Give maintainership to Michael L. Hostbaek , the original submitter of this port (PR 40956). Revision Changes Path 1.5 +1 -1 ports/net/p5-Net-Whois-RIPE/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 00:39:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A5E737B401; Thu, 3 Apr 2003 00:39:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED58C43F75; Thu, 3 Apr 2003 00:39:06 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h338d60U095277; Thu, 3 Apr 2003 00:39:06 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h338d6Lq095276; Thu, 3 Apr 2003 00:39:06 -0800 (PST) Message-Id: <200304030839.h338d6Lq095276@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 3 Apr 2003 00:39:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/p5-GD2 pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 08:39:07 -0000 edwin 2003/04/03 00:39:06 PST FreeBSD ports repository Modified files: graphics/p5-GD2 pkg-descr Log: fix pkg-descr Submitted by: Matthew Seaman Revision Changes Path 1.2 +6 -4 ports/graphics/p5-GD2/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Apr 3 00:49:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 869CC37B401; Thu, 3 Apr 2003 00:49:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 281FC43FA3; Thu, 3 Apr 2003 00:49:50 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h338nn0U001178; Thu, 3 Apr 2003 00:49:49 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h338nnOb001177; Thu, 3 Apr 2003 00:49:49 -0800 (PST) Message-Id: <200304030849.h338nnOb001177@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 00:49:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pc98/pc98 wd_cd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 08:49:50 -0000 phk 2003/04/03 00:49:49 PST FreeBSD src repository Modified files: sys/pc98/pc98 wd_cd.c Log: Don't use dkmakeminor(), it has nothing to do with CDroms. Revision Changes Path 1.48 +2 -6 src/sys/pc98/pc98/wd_cd.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 00:50:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BD1137B401; Thu, 3 Apr 2003 00:50:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 307AA43F93; Thu, 3 Apr 2003 00:50:36 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h338oZ0U001390; Thu, 3 Apr 2003 00:50:36 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h338oZ1G001387; Thu, 3 Apr 2003 00:50:35 -0800 (PST) Message-Id: <200304030850.h338oZ1G001387@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 00:50:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata atapi-tape.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 08:50:37 -0000 phk 2003/04/03 00:50:35 PST FreeBSD src repository Modified files: sys/dev/ata atapi-tape.c Log: Don't use dkmakeminor(), create our own minor encoding instead. Revision Changes Path 1.79 +2 -3 src/sys/dev/ata/atapi-tape.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 00:51:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A304B37B401; Thu, 3 Apr 2003 00:51:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41A6043F93; Thu, 3 Apr 2003 00:51:23 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h338pN0U001699; Thu, 3 Apr 2003 00:51:23 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h338pMnw001698; Thu, 3 Apr 2003 00:51:22 -0800 (PST) Message-Id: <200304030851.h338pMnw001698@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 00:51:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys disklabel.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 08:51:24 -0000 phk 2003/04/03 00:51:22 PST FreeBSD src repository Modified files: sys/sys disklabel.h Log: NO_GEOM cleanup: Remove dkmakeminor(). Revision Changes Path 1.100 +0 -32 src/sys/sys/disklabel.h From owner-cvs-all@FreeBSD.ORG Thu Apr 3 00:54:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23AC337B408; Thu, 3 Apr 2003 00:54:12 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AA5E43F93; Thu, 3 Apr 2003 00:54:07 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h338rxgg037362 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 3 Apr 2003 11:53:59 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h338rowP037348; Thu, 3 Apr 2003 11:53:50 +0300 (EEST) (envelope-from ru) Date: Thu, 3 Apr 2003 11:53:50 +0300 From: Ruslan Ermilov To: Bruce Evans Message-ID: <20030403085350.GA37174@sunbay.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="n8g4imXOkfNTN/H1" Content-Disposition: inline In-Reply-To: <20030403180026.A29934@gamplex.bde.org> User-Agent: Mutt/1.5.4i cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 08:54:12 -0000 --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2003 at 06:04:25PM +1000, Bruce Evans wrote: > On Wed, 2 Apr 2003, Marcel Moolenaar wrote: >=20 > > Please, everybody, do not set WARNS=3D5 on anything because it breaks > > non-optimized builds: > > > > cc -g -mcpu=3Dpentiumpro -I/usr/local/src/fpi/cpu/.. -Wsystem-headers= -Werror -Wall -Wno-format-y2k -W -Wstrict-prototypes -Wmissing-prototypes = -Wpointer-arith > > -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-alig= n -Wuninitialized -c decode.c > > cc1: warnings being treated as errors > > cc1: warning: -Wuninitialized is not supported without -O > > *** Error code 1 >=20 > Too late: >=20 [...] > This is mostly a bug in the implementation of WARNS. >=20 How's this bugfix? %%% Index: bsd.sys.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/share/mk/bsd.sys.mk,v retrieving revision 1.12 diff -u -r1.12 bsd.sys.mk --- bsd.sys.mk 31 Mar 2003 13:10:51 -0000 1.12 +++ bsd.sys.mk 3 Apr 2003 08:48:40 -0000 @@ -25,7 +25,7 @@ . if ${WARNS} > 3 CFLAGS +=3D -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -= Wcast-align . endif -. if ${WARNS} > 4 +. if ${WARNS} > 4 && !empty(CFLAGS:M-O*) && empty(CFLAGS:M-O0) CFLAGS +=3D -Wuninitialized . endif # BDECFLAGS %%% Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --n8g4imXOkfNTN/H1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+i/aeUkv4P6juNwoRAvMfAJ92BfE7tdmhSGhqOLvIFqIkkxMdTgCfdZ/b lJLGBqenQwsC3JViOISySQU= =z7fa -----END PGP SIGNATURE----- --n8g4imXOkfNTN/H1-- From owner-cvs-all@FreeBSD.ORG Thu Apr 3 00:58:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C37CC37B404; Thu, 3 Apr 2003 00:58:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60D8943F75; Thu, 3 Apr 2003 00:58:05 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h338w50U001944; Thu, 3 Apr 2003 00:58:05 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h338w5tr001943; Thu, 3 Apr 2003 00:58:05 -0800 (PST) Message-Id: <200304030858.h338w5tr001943@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 00:58:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 08:58:06 -0000 phk 2003/04/03 00:58:05 PST FreeBSD src repository Modified files: sys/sys endian.h share/man/man9 byteorder.9 Log: Add inline functions {be,le}{16,32,64}{enc,dec}() for encoding decoding into byte strings of unknown alignment. Revision Changes Path 1.3 +39 -1 src/share/man/man9/byteorder.9 1.3 +108 -0 src/sys/sys/endian.h From owner-cvs-all@FreeBSD.ORG Thu Apr 3 01:22:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 749CA37B401; Thu, 3 Apr 2003 01:22:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 133AB43FA3; Thu, 3 Apr 2003 01:22:03 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h339M20U004625; Thu, 3 Apr 2003 01:22:02 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h339M2f0004624; Thu, 3 Apr 2003 01:22:02 -0800 (PST) Message-Id: <200304030922.h339M2f0004624@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 3 Apr 2003 01:22:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/mahjong Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 09:22:04 -0000 ijliao 2003/04/03 01:22:02 PST FreeBSD ports repository Modified files: games/mahjong Makefile distinfo Log: upgrade to 1.5.2 Revision Changes Path 1.19 +3 -3 ports/games/mahjong/Makefile 1.14 +1 -1 ports/games/mahjong/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 01:38:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39A2037B401; Thu, 3 Apr 2003 01:38:03 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id D634F43F3F; Thu, 3 Apr 2003 01:38:01 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by ns1.xcllnt.net (8.12.8/8.12.8) with ESMTP id h339c1Ku085064; Thu, 3 Apr 2003 01:38:01 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.9/8.12.8) with ESMTP id h339c1TH068223; Thu, 3 Apr 2003 01:38:01 -0800 (PST) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.9/8.12.9/Submit) id h339c04g068222; Thu, 3 Apr 2003 01:38:00 -0800 (PST) Date: Thu, 3 Apr 2003 01:38:00 -0800 From: Marcel Moolenaar To: Ruslan Ermilov Message-ID: <20030403093800.GA68012@dhcp01.pn.xcllnt.net> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030403085350.GA37174@sunbay.com> User-Agent: Mutt/1.5.3i cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Bruce Evans Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 09:38:03 -0000 On Thu, Apr 03, 2003 at 11:53:50AM +0300, Ruslan Ermilov wrote: > > > How's this bugfix? > > %%% > Index: bsd.sys.mk > =================================================================== > RCS file: /home/ncvs/src/share/mk/bsd.sys.mk,v > retrieving revision 1.12 > diff -u -r1.12 bsd.sys.mk > --- bsd.sys.mk 31 Mar 2003 13:10:51 -0000 1.12 > +++ bsd.sys.mk 3 Apr 2003 08:48:40 -0000 > @@ -25,7 +25,7 @@ > . if ${WARNS} > 3 > CFLAGS += -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align > . endif > -. if ${WARNS} > 4 > +. if ${WARNS} > 4 && !empty(CFLAGS:M-O*) && empty(CFLAGS:M-O0) > CFLAGS += -Wuninitialized > . endif > # BDECFLAGS > %%% Should work in most cases, but beware DEBUG_FLAGS. The above does not catch the case where DEBUG_FLAGS is defined to something like "-O0 -g". I think this is a reasonable use of DEBUG_FLAGS. \begin{log} dhcp01% setenv DEBUG_FLAGS "-O0 -g" dhcp01% setenv CFLAGS -O dhcp01% make cc -O -mcpu=pentiumpro -I/usr/local/src/fpi/cpu/.. -O0 -g -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wuninitialized -c decode.c cc1: warnings being treated as errors cc1: warning: -Wuninitialized is not supported without -O *** Error code 1 \end{log} -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Thu Apr 3 01:40:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B150737B477; Thu, 3 Apr 2003 01:40:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EB7843F85; Thu, 3 Apr 2003 01:40:14 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h339eE0U005508; Thu, 3 Apr 2003 01:40:14 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h339eDOt005504; Thu, 3 Apr 2003 01:40:13 -0800 (PST) Message-Id: <200304030940.h339eDOt005504@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 3 Apr 2003 01:40:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/p5-GD2/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 09:40:15 -0000 edwin 2003/04/03 01:40:13 PST FreeBSD ports repository Modified files: graphics/p5-GD2/files patch-aa Log: Fix $ENV{} in the patchfile Submitted by: Matthew Seaman Revision Changes Path 1.9 +4 -6 ports/graphics/p5-GD2/files/patch-aa From owner-cvs-all@FreeBSD.ORG Thu Apr 3 01:44:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D24E37B401; Thu, 3 Apr 2003 01:44:09 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8F0343F75; Thu, 3 Apr 2003 01:44:05 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h339hvgg043823 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 3 Apr 2003 12:43:58 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h339hvts043818; Thu, 3 Apr 2003 12:43:57 +0300 (EEST) (envelope-from ru) Date: Thu, 3 Apr 2003 12:43:57 +0300 From: Ruslan Ermilov To: Marcel Moolenaar Message-ID: <20030403094357.GA43282@sunbay.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403093800.GA68012@dhcp01.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cWoXeonUoKmBZSoM" Content-Disposition: inline In-Reply-To: <20030403093800.GA68012@dhcp01.pn.xcllnt.net> User-Agent: Mutt/1.5.4i cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Bruce Evans Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 09:44:09 -0000 --cWoXeonUoKmBZSoM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2003 at 01:38:00AM -0800, Marcel Moolenaar wrote: > On Thu, Apr 03, 2003 at 11:53:50AM +0300, Ruslan Ermilov wrote: > > >=20 > > How's this bugfix? > >=20 > > %%% > > Index: bsd.sys.mk > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > RCS file: /home/ncvs/src/share/mk/bsd.sys.mk,v > > retrieving revision 1.12 > > diff -u -r1.12 bsd.sys.mk > > --- bsd.sys.mk 31 Mar 2003 13:10:51 -0000 1.12 > > +++ bsd.sys.mk 3 Apr 2003 08:48:40 -0000 > > @@ -25,7 +25,7 @@ > > . if ${WARNS} > 3 > > CFLAGS +=3D -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshad= ow -Wcast-align > > . endif > > -. if ${WARNS} > 4 > > +. if ${WARNS} > 4 && !empty(CFLAGS:M-O*) && empty(CFLAGS:M-O0) > > CFLAGS +=3D -Wuninitialized > > . endif > > # BDECFLAGS > > %%% >=20 > Should work in most cases, but beware DEBUG_FLAGS. The above does not > catch the case where DEBUG_FLAGS is defined to something like "-O0 -g". > I think this is a reasonable use of DEBUG_FLAGS. >=20 > \begin{log} > dhcp01% setenv DEBUG_FLAGS "-O0 -g" > dhcp01% setenv CFLAGS -O > dhcp01% make > cc -O -mcpu=3Dpentiumpro -I/usr/local/src/fpi/cpu/.. -O0 -g -Wsystem-hea= ders -Werror -Wall -Wno-format-y2k -W -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh= adow -Wcast-align -Wuninitialized -c decode.c > cc1: warnings being treated as errors > cc1: warning: -Wuninitialized is not supported without -O > *** Error code 1 > \end{log}=20 >=20 I doubt you have really tried my patch. DEBUG_FLAGS becomes part of CFLAGS in bsd.{prog,lib}.mk, and bsd.sys.mk is only parsed after, so it covers this case too: # make devfs.o cc -O -pipe -march=3Dpentiumpro -Wsystem-headers -Werror -Wall -Wno-forma= t-y2k - W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -W= cast- qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wuninitialized -c dev= fs.c # make DEBUG_FLAGS=3D-O0 devfs.o cc -O -pipe -march=3Dpentiumpro -O0 -Wsystem-headers -Werror -Wall -Wno-fo= rmat-y2 k -W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type= -Wca st-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -c devfs.c Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --cWoXeonUoKmBZSoM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jAJdUkv4P6juNwoRAq+QAJ41SAwaEX/wZeaOYgmPI9V2mJ+iPgCdFhLo ep9yez0OxJLvxrcLQeGk+Ig= =gv6O -----END PGP SIGNATURE----- --cWoXeonUoKmBZSoM-- From owner-cvs-all@FreeBSD.ORG Thu Apr 3 01:45:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7A7837B401; Thu, 3 Apr 2003 01:45:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC91043F75; Thu, 3 Apr 2003 01:45:31 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h339jV0U006097; Thu, 3 Apr 2003 01:45:31 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h339jVJG006096; Thu, 3 Apr 2003 01:45:31 -0800 (PST) Message-Id: <200304030945.h339jVJG006096@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 3 Apr 2003 01:45:31 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/p5-GD2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 09:45:35 -0000 edwin 2003/04/03 01:45:31 PST FreeBSD ports repository Modified files: graphics/p5-GD2 Makefile Log: graphics/gd2 installs libgd.so.4. Submitted by: Matthew Seaman Revision Changes Path 1.32 +1 -1 ports/graphics/p5-GD2/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 01:45:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3706437B401; Thu, 3 Apr 2003 01:45:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6AB743FBF; Thu, 3 Apr 2003 01:45:45 -0800 (PST) (envelope-from gj@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h339jj0U006146; Thu, 3 Apr 2003 01:45:45 -0800 (PST) (envelope-from gj@repoman.freebsd.org) Received: (from gj@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h339jjsn006145; Thu, 3 Apr 2003 01:45:45 -0800 (PST) Message-Id: <200304030945.h339jjsn006145@repoman.freebsd.org> From: Gary Jennejohn Date: Thu, 3 Apr 2003 01:45:45 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/vile Makefile distinfo ports/editors/xvile Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 09:45:46 -0000 gj 2003/04/03 01:45:45 PST FreeBSD ports repository Modified files: editors/vile Makefile distinfo editors/xvile Makefile distinfo Log: Update to version 9.3n. Revision Changes Path 1.54 +4 -2 ports/editors/vile/Makefile 1.34 +2 -0 ports/editors/vile/distinfo 1.55 +4 -2 ports/editors/xvile/Makefile 1.35 +2 -0 ports/editors/xvile/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 01:47:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58CA337B401; Thu, 3 Apr 2003 01:47:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED1A243F75; Thu, 3 Apr 2003 01:47:15 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h339lF0U006206; Thu, 3 Apr 2003 01:47:15 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h339lF7f006205; Thu, 3 Apr 2003 01:47:15 -0800 (PST) Message-Id: <200304030947.h339lF7f006205@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 01:47:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/puc pucdata.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 09:47:16 -0000 phk 2003/04/03 01:47:15 PST FreeBSD src repository Modified files: sys/dev/puc pucdata.c Log: Add support for Moxa Technologies Co., Ltd. PCI I/O Card 4S RS232 Submitted by: sst@cybercity.dk Revision Changes Path 1.18 +13 -0 src/sys/dev/puc/pucdata.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 01:53:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 526CC37B401; Thu, 3 Apr 2003 01:53:40 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64CDC43FB1; Thu, 3 Apr 2003 01:53:39 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by ns1.xcllnt.net (8.12.8/8.12.8) with ESMTP id h339rdKu085147; Thu, 3 Apr 2003 01:53:39 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.9/8.12.8) with ESMTP id h339rcTH068351; Thu, 3 Apr 2003 01:53:38 -0800 (PST) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.9/8.12.9/Submit) id h339rcT9068350; Thu, 3 Apr 2003 01:53:38 -0800 (PST) Date: Thu, 3 Apr 2003 01:53:38 -0800 From: Marcel Moolenaar To: Ruslan Ermilov Message-ID: <20030403095338.GA68268@dhcp01.pn.xcllnt.net> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403093800.GA68012@dhcp01.pn.xcllnt.net> <20030403094357.GA43282@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030403094357.GA43282@sunbay.com> User-Agent: Mutt/1.5.3i cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Bruce Evans Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 09:53:40 -0000 On Thu, Apr 03, 2003 at 12:43:57PM +0300, Ruslan Ermilov wrote: > > > I doubt you have really tried my patch. DEBUG_FLAGS becomes > part of CFLAGS in bsd.{prog,lib}.mk, and bsd.sys.mk is only > parsed after, so it covers this case too: In that case I'm happy. And no, I did not try your patch. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Thu Apr 3 01:55:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBC6037B401; Thu, 3 Apr 2003 01:55:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A91C43FBD; Thu, 3 Apr 2003 01:55:58 -0800 (PST) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h339tw0U006870; Thu, 3 Apr 2003 01:55:58 -0800 (PST) (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h339twXN006869; Thu, 3 Apr 2003 01:55:58 -0800 (PST) Message-Id: <200304030955.h339twXN006869@repoman.freebsd.org> From: Gerald Pfeifer Date: Thu, 3 Apr 2003 01:55:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc32 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 09:55:59 -0000 gerald 2003/04/03 01:55:58 PST FreeBSD ports repository Modified files: lang/gcc32 Makefile Log: Appease portlint by using ${GMAKE}, ${GREP}, and some whitespace changes. Revision Changes Path 1.148 +10 -11 ports/lang/gcc32/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 02:21:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA44837B401; Thu, 3 Apr 2003 02:21:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59A7943F75; Thu, 3 Apr 2003 02:21:59 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33ALx0U009547; Thu, 3 Apr 2003 02:21:59 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33ALwoW009546; Thu, 3 Apr 2003 02:21:58 -0800 (PST) Message-Id: <200304031021.h33ALwoW009546@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 02:21:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys endian.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 10:22:00 -0000 phk 2003/04/03 02:21:58 PST FreeBSD src repository Modified files: sys/sys endian.h Log: Use "unsigned char" instead of "u_char" to avoid trouble. Revision Changes Path 1.4 +12 -12 src/sys/sys/endian.h From owner-cvs-all@FreeBSD.ORG Thu Apr 3 02:26:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 276BE37B401; Thu, 3 Apr 2003 02:26:23 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BEE143FAF; Thu, 3 Apr 2003 02:26:21 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id UAA11984; Thu, 3 Apr 2003 20:26:11 +1000 Date: Thu, 3 Apr 2003 20:26:05 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Marcel Moolenaar In-Reply-To: <20030403093800.GA68012@dhcp01.pn.xcllnt.net> Message-ID: <20030403200459.H30311@gamplex.bde.org> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403085350.GA37174@sunbay.com> <20030403093800.GA68012@dhcp01.pn.xcllnt.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Ruslan Ermilov cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.ctable.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 10:26:23 -0000 On Thu, 3 Apr 2003, Marcel Moolenaar wrote: > On Thu, Apr 03, 2003 at 11:53:50AM +0300, Ruslan Ermilov wrote: > > > > > How's this bugfix? > > > > %%% > > Index: bsd.sys.mk > > =================================================================== > > RCS file: /home/ncvs/src/share/mk/bsd.sys.mk,v > > retrieving revision 1.12 > > diff -u -r1.12 bsd.sys.mk > > --- bsd.sys.mk 31 Mar 2003 13:10:51 -0000 1.12 > > +++ bsd.sys.mk 3 Apr 2003 08:48:40 -0000 > > @@ -25,7 +25,7 @@ > > . if ${WARNS} > 3 > > CFLAGS += -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align > > . endif > > -. if ${WARNS} > 4 > > +. if ${WARNS} > 4 && !empty(CFLAGS:M-O*) && empty(CFLAGS:M-O0) > > CFLAGS += -Wuninitialized > > . endif > > # BDECFLAGS > > %%% > > Should work in most cases, but beware DEBUG_FLAGS. The above does not > catch the case where DEBUG_FLAGS is defined to something like "-O0 -g". > I think this is a reasonable use of DEBUG_FLAGS. > > \begin{log} > dhcp01% setenv DEBUG_FLAGS "-O0 -g" > dhcp01% setenv CFLAGS -O > dhcp01% make > cc -O -mcpu=pentiumpro -I/usr/local/src/fpi/cpu/.. -O0 -g -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wuninitialized -c decode.c > cc1: warnings being treated as errors > cc1: warning: -Wuninitialized is not supported without -O > *** Error code 1 > \end{log} The patch works for me, as it should since ${DEBUG_FLAGS} is added to CFLAGS before including bsd.sys.mk in at least bsd.prog.mk. Similarly for COPTS, except it is actually documented in mk/bsd.README. There are some other minor ordering problems. -Winitialized is not set for "-O -O0 -O" in ${CFLAGS}, and there may be hackish makefiles that set CFLAGS after including . Bruce From owner-cvs-all@FreeBSD.ORG Thu Apr 3 03:19:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78C5C37B401; Thu, 3 Apr 2003 03:19:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17F8443F3F; Thu, 3 Apr 2003 03:19:25 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33BJO0U014013; Thu, 3 Apr 2003 03:19:24 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33BJO3J014012; Thu, 3 Apr 2003 03:19:24 -0800 (PST) Message-Id: <200304031119.h33BJO3J014012@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 03:19:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_ctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 11:19:25 -0000 phk 2003/04/03 03:19:24 PST FreeBSD src repository Modified files: sys/geom geom_ctl.c Log: Make sure we don't ignore error codes. Revision Changes Path 1.14 +24 -32 src/sys/geom/geom_ctl.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 03:32:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23B6737B401; Thu, 3 Apr 2003 03:32:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B86CA43FDF; Thu, 3 Apr 2003 03:32:01 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33BW10U015082; Thu, 3 Apr 2003 03:32:01 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33BW14J015081; Thu, 3 Apr 2003 03:32:01 -0800 (PST) Message-Id: <200304031132.h33BW14J015081@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 03:32:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys endian.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 11:32:02 -0000 phk 2003/04/03 03:32:01 PST FreeBSD src repository Modified files: sys/sys endian.h Log: Pointy hat commit: Don't Cut&Paste from big endian to little endian function without subsequent adjustments. Revision Changes Path 1.5 +3 -3 src/sys/sys/endian.h From owner-cvs-all@FreeBSD.ORG Thu Apr 3 03:33:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5539537B401; Thu, 3 Apr 2003 03:33:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5EC843FBF; Thu, 3 Apr 2003 03:33:51 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33BXp0U015136; Thu, 3 Apr 2003 03:33:51 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33BXp89015135; Thu, 3 Apr 2003 03:33:51 -0800 (PST) Message-Id: <200304031133.h33BXp89015135@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 03:33:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/bde g_bde_crypt.c g_bde_lock.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 11:33:52 -0000 phk 2003/04/03 03:33:51 PST FreeBSD src repository Modified files: sys/geom/bde g_bde_crypt.c g_bde_lock.c Log: Use sys/endian.h instead of geom_enc.c for endian-agnostfication. Revision Changes Path 1.11 +2 -1 src/sys/geom/bde/g_bde_crypt.c 1.11 +17 -16 src/sys/geom/bde/g_bde_lock.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 03:36:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68DBA37B401; Thu, 3 Apr 2003 03:36:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0150C43FB1; Thu, 3 Apr 2003 03:36:54 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Bar0U015330; Thu, 3 Apr 2003 03:36:53 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33Bar2j015329; Thu, 3 Apr 2003 03:36:53 -0800 (PST) Message-Id: <200304031136.h33Bar2j015329@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 03:36:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_apple.c geom_bsd.c geom_mbr.c geom_pc98.c geom_sunlabel.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 11:36:55 -0000 phk 2003/04/03 03:36:53 PST FreeBSD src repository Modified files: sys/geom geom_apple.c geom_bsd.c geom_mbr.c geom_pc98.c geom_sunlabel.c Log: Use instead of geom_enc.c for endianess-agnostification. Revision Changes Path 1.4 +6 -6 src/sys/geom/geom_apple.c 1.45 +82 -81 src/sys/geom/geom_bsd.c 1.37 +3 -2 src/sys/geom/geom_mbr.c 1.30 +3 -3 src/sys/geom/geom_pc98.c 1.23 +25 -24 src/sys/geom/geom_sunlabel.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 03:40:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A7EF37B401; Thu, 3 Apr 2003 03:40:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA47A43F75; Thu, 3 Apr 2003 03:40:06 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Be60U015444; Thu, 3 Apr 2003 03:40:06 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33Be68u015443; Thu, 3 Apr 2003 03:40:06 -0800 (PST) Message-Id: <200304031140.h33Be68u015443@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 03:40:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/geom geom.h geom_enc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 11:40:07 -0000 phk 2003/04/03 03:40:06 PST FreeBSD src repository Modified files: sys/conf files sys/geom geom.h Removed files: sys/geom geom_enc.c Log: Remove geom_enc.c, a superset of these functions are now available in Revision Changes Path 1.776 +0 -1 src/sys/conf/files 1.54 +0 -10 src/sys/geom/geom.h 1.11 +0 -124 src/sys/geom/geom_enc.c (dead) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 03:56:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A92CB37B401; Thu, 3 Apr 2003 03:56:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 479EF43F3F; Thu, 3 Apr 2003 03:56:11 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33BuB0U016652; Thu, 3 Apr 2003 03:56:11 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33BuAmO016651; Thu, 3 Apr 2003 03:56:10 -0800 (PST) Message-Id: <200304031156.h33BuAmO016651@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 03:56:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_apple.c geom_pc98.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 11:56:12 -0000 phk 2003/04/03 03:56:10 PST FreeBSD src repository Modified files: sys/geom geom_apple.c geom_pc98.c Log: #include as needed. Revision Changes Path 1.5 +1 -0 src/sys/geom/geom_apple.c 1.31 +1 -0 src/sys/geom/geom_pc98.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 04:36:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 623B137B401; Thu, 3 Apr 2003 04:36:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0254243FBD; Thu, 3 Apr 2003 04:36:57 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Cau0U020547; Thu, 3 Apr 2003 04:36:56 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33CauqJ020546; Thu, 3 Apr 2003 04:36:56 -0800 (PST) Message-Id: <200304031236.h33CauqJ020546@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 04:36:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/gbde Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 12:36:57 -0000 phk 2003/04/03 04:36:56 PST FreeBSD src repository Modified files: sbin/gbde Makefile Log: Don't pull in geom_enc.c any more. Revision Changes Path 1.8 +1 -3 src/sbin/gbde/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 04:39:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93F0337B401; Thu, 3 Apr 2003 04:39:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 351CF43F3F; Thu, 3 Apr 2003 04:39:19 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33CdJ0U020642; Thu, 3 Apr 2003 04:39:19 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33CdId7020641; Thu, 3 Apr 2003 04:39:18 -0800 (PST) Message-Id: <200304031239.h33CdId7020641@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Thu, 3 Apr 2003 04:39:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pc98/i386 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 12:39:19 -0000 nyan 2003/04/03 04:39:18 PST FreeBSD src repository Modified files: sys/pc98/i386 machdep.c Log: MFi386: revision 1.561 Revision Changes Path 1.314 +33 -3 src/sys/pc98/i386/machdep.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 04:39:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17E6537B401; Thu, 3 Apr 2003 04:39:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACC0643FB1; Thu, 3 Apr 2003 04:39:51 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Cdp0U020694; Thu, 3 Apr 2003 04:39:51 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33CdpPp020693; Thu, 3 Apr 2003 04:39:51 -0800 (PST) Message-Id: <200304031239.h33CdpPp020693@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Thu, 3 Apr 2003 04:39:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf options.pc98 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 12:39:52 -0000 nyan 2003/04/03 04:39:51 PST FreeBSD src repository Modified files: sys/conf options.pc98 Log: MFi386: revision 1.188 Revision Changes Path 1.161 +2 -0 src/sys/conf/options.pc98 From owner-cvs-all@FreeBSD.ORG Thu Apr 3 05:13:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA57137B401; Thu, 3 Apr 2003 05:13:37 -0800 (PST) Received: from mta01bw.bigpond.com (mta01bw.bigpond.com [139.134.6.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1409543FBD; Thu, 3 Apr 2003 05:13:33 -0800 (PST) (envelope-from darrenr@reed.wattle.id.au) Received: from CPE-61-9-164-106.vic.bigpond.net.au ([144.135.24.75]) by mta01bw.bigpond.com (Netscape Messaging Server 4.15 mta01bw Jul 16 2002 22:47:55) with SMTP id HCRREN00.244; Thu, 3 Apr 2003 23:13:35 +1000 Received: from CPE-203-51-132-201.vic.bigpond.net.au ([203.51.132.201]) by bwmam03bpa.bigpond.com(MailRouter V3.2g 26/12073298); 03 Apr 2003 23:13:29 Received: (from root@localhost)h33DD9d26686; Thu, 3 Apr 2003 23:13:09 +1000 From: Darren Reed Message-Id: <200304031312.XAA13954@avalon.reed.wattle.id.au> In-Reply-To: <20030402194821.C33692A8A5@canning.wemm.org> To: Peter Wemm Date: Thu, 3 Apr 2003 23:12:39 +1000 X-Mailer: ELM [version 2.4ME+ PL99d (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII cc: Alexander Leidinger cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "Matthew N. Dodd" cc: cvs-src@FreeBSD.org Subject: Re: Proposal regarding the RFC 3514 handling X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 13:13:38 -0000 In some email I received from Peter Wemm, sie wrote: [...] > On the other hand, we have so much cruft in the ip input/output code paths > (2 or 3 different packet filter hooks etc), this is tiny by comparison. Now that April 1 is far behind, I'll mention that I've been looking at ways to amalgamate the mechanisms used by ipfw/ipfilter to address this problem. Without being insulting, my 5 second grab on this is that ipfw has grown like a tumour inside the ip stack with bits and pieces hooked in here and there and everywhere (exageration.) That is to say I think should be and can be better than they are. Cheers, Darren From owner-cvs-all@FreeBSD.ORG Thu Apr 3 05:20:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5212137B401; Thu, 3 Apr 2003 05:20:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEB4843F75; Thu, 3 Apr 2003 05:20:58 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33DKw0U029614; Thu, 3 Apr 2003 05:20:58 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33DKwUt029611; Thu, 3 Apr 2003 05:20:58 -0800 (PST) Message-Id: <200304031320.h33DKwUt029611@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 3 Apr 2003 05:20:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math Makefile ports/math/it++ Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 13:21:00 -0000 ijliao 2003/04/03 05:20:58 PST FreeBSD ports repository Modified files: math Makefile Added files: math/it++ Makefile distinfo pkg-descr pkg-plist Log: add it++ 3.7.0 Mathematical, signal processing and communication library Revision Changes Path 1.206 +1 -0 ports/math/Makefile 1.1 +34 -0 ports/math/it++/Makefile (new) 1.1 +1 -0 ports/math/it++/distinfo (new) 1.1 +5 -0 ports/math/it++/pkg-descr (new) 1.1 +69 -0 ports/math/it++/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 05:21:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B572C37B40E; Thu, 3 Apr 2003 05:21:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FAC843FBD; Thu, 3 Apr 2003 05:21:08 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33DL80U029713; Thu, 3 Apr 2003 05:21:08 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33DL7aR029712; Thu, 3 Apr 2003 05:21:07 -0800 (PST) Message-Id: <200304031321.h33DL7aR029712@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 3 Apr 2003 05:21:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 13:21:09 -0000 ijliao 2003/04/03 05:21:07 PST FreeBSD ports repository Modified files: . modules Log: it++ --> ports/math/it++ Revision Changes Path 1.6965 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 3 06:08:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63A3637B401; Thu, 3 Apr 2003 06:08:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 023C743F75; Thu, 3 Apr 2003 06:08:36 -0800 (PST) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33E8Z0U033390; Thu, 3 Apr 2003 06:08:35 -0800 (PST) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33E8ZGn033389; Thu, 3 Apr 2003 06:08:35 -0800 (PST) Message-Id: <200304031408.h33E8ZGn033389@repoman.freebsd.org> From: Maxime Henrion Date: Thu, 3 Apr 2003 06:08:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fxp if_fxp.c if_fxpreg.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 14:08:36 -0000 mux 2003/04/03 06:08:35 PST FreeBSD src repository Modified files: sys/dev/fxp if_fxp.c if_fxpreg.h Log: Remove all the bogus volatile qualifiers from the structs definitions and associated evil casts to discard them. Revision Changes Path 1.153 +2 -4 src/sys/dev/fxp/if_fxp.c 1.29 +144 -144 src/sys/dev/fxp/if_fxpreg.h From owner-cvs-all@FreeBSD.ORG Thu Apr 3 06:36:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFCD537B401; Thu, 3 Apr 2003 06:36:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61A3643F3F; Thu, 3 Apr 2003 06:36:02 -0800 (PST) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Ea20U035211; Thu, 3 Apr 2003 06:36:02 -0800 (PST) (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33Ea1hH035210; Thu, 3 Apr 2003 06:36:01 -0800 (PST) Message-Id: <200304031436.h33Ea1hH035210@repoman.freebsd.org> From: Max Khon Date: Thu, 3 Apr 2003 06:36:01 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/oops Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 14:36:03 -0000 fjoe 2003/04/03 06:36:01 PST FreeBSD ports repository Modified files: www/oops Makefile distinfo Log: Update to 1.5.22.20030403 PR: 50562 Revision Changes Path 1.24 +1 -1 ports/www/oops/Makefile 1.13 +1 -1 ports/www/oops/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 06:55:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4814E37B401; Thu, 3 Apr 2003 06:55:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E300943F3F; Thu, 3 Apr 2003 06:55:37 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Etb0U036509; Thu, 3 Apr 2003 06:55:37 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33EtbO5036508; Thu, 3 Apr 2003 06:55:37 -0800 (PST) Message-Id: <200304031455.h33EtbO5036508@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 3 Apr 2003 06:55:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel Makefile ports/devel/linux-understand_java Makefile distinfo pkg-descr pkg-message pkg-plist ports/devel/linux-understand_java/files wrapper.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 14:55:38 -0000 lioux 2003/04/03 06:55:37 PST FreeBSD ports repository Modified files: devel Makefile Added files: devel/linux-understand_java Makefile distinfo pkg-descr pkg-message pkg-plist devel/linux-understand_java/files wrapper.sh Log: New port linux-understand_java version 1.4 Build 204: Understand can parse a Java project helping reverse engineer it Revision Changes Path 1.1079 +1 -0 ports/devel/Makefile 1.1 +151 -0 ports/devel/linux-understand_java/Makefile (new) 1.1 +1 -0 ports/devel/linux-understand_java/distinfo (new) 1.1 +6 -0 ports/devel/linux-understand_java/files/wrapper.sh (new) 1.1 +13 -0 ports/devel/linux-understand_java/pkg-descr (new) 1.1 +25 -0 ports/devel/linux-understand_java/pkg-message (new) 1.1 +676 -0 ports/devel/linux-understand_java/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 06:55:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1200337B401; Thu, 3 Apr 2003 06:55:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BAC443F93; Thu, 3 Apr 2003 06:55:57 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Etv0U036548; Thu, 3 Apr 2003 06:55:57 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33Etvkb036547; Thu, 3 Apr 2003 06:55:57 -0800 (PST) Message-Id: <200304031455.h33Etvkb036547@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 3 Apr 2003 06:55:57 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 14:55:58 -0000 lioux 2003/04/03 06:55:57 PST FreeBSD ports repository Modified files: . modules Log: linux-understand_java --> ports/devel/linux-understand_java Revision Changes Path 1.6966 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 3 07:06:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ABD837B401; Thu, 3 Apr 2003 07:06:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32EE143F75; Thu, 3 Apr 2003 07:06:13 -0800 (PST) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33F6C0U038166; Thu, 3 Apr 2003 07:06:12 -0800 (PST) (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33F6Ch4038165; Thu, 3 Apr 2003 07:06:12 -0800 (PST) Message-Id: <200304031506.h33F6Ch4038165@repoman.freebsd.org> From: Oliver Braun Date: Thu, 3 Apr 2003 07:06:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/samba Makefile ports/net/samba/files patch-source::nsswitch::pam_winbind.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 15:06:14 -0000 obraun 2003/04/03 07:06:12 PST FreeBSD ports repository Modified files: net/samba Makefile Added files: net/samba/files patch-source::nsswitch::pam_winbind.h Log: Fix building with Winbind under 5.0. PR: ports/50519 Submitted by: Sergey A.Osokin Approved by: maintainer Revision Changes Path 1.119 +1 -0 ports/net/samba/Makefile 1.1 +19 -0 ports/net/samba/files/patch-source::nsswitch::pam_winbind.h (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 07:07:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E25EC37B401; Thu, 3 Apr 2003 07:07:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82EB643FBF; Thu, 3 Apr 2003 07:07:51 -0800 (PST) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33F7p0U038242; Thu, 3 Apr 2003 07:07:51 -0800 (PST) (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33F7p3c038241; Thu, 3 Apr 2003 07:07:51 -0800 (PST) Message-Id: <200304031507.h33F7p3c038241@repoman.freebsd.org> From: Oliver Braun Date: Thu, 3 Apr 2003 07:07:51 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/hs-hmake Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 15:07:52 -0000 obraun 2003/04/03 07:07:51 PST FreeBSD ports repository Modified files: devel/hs-hmake Makefile distinfo Log: Upgrade to 3.07. Approved by: maintainer Revision Changes Path 1.8 +1 -1 ports/devel/hs-hmake/Makefile 1.4 +1 -1 ports/devel/hs-hmake/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 07:16:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A3ED37B401; Thu, 3 Apr 2003 07:16:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B785743FA3; Thu, 3 Apr 2003 07:16:48 -0800 (PST) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33FGm0U038926; Thu, 3 Apr 2003 07:16:48 -0800 (PST) (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33FGm24038925; Thu, 3 Apr 2003 07:16:48 -0800 (PST) Message-Id: <200304031516.h33FGm24038925@repoman.freebsd.org> From: Oliver Braun Date: Thu, 3 Apr 2003 07:16:48 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www Makefile ports/www/ocaml-net Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 15:16:49 -0000 obraun 2003/04/03 07:16:48 PST FreeBSD ports repository Modified files: www Makefile Added files: www/ocaml-net Makefile distinfo pkg-descr pkg-plist Log: Add ocaml-net 0.95, OCaml modules for Internet applications. PR: ports/48818 Submitted by: Stephane Legrand Revision Changes Path 1.627 +1 -0 ports/www/Makefile 1.1 +31 -0 ports/www/ocaml-net/Makefile (new) 1.1 +1 -0 ports/www/ocaml-net/distinfo (new) 1.1 +18 -0 ports/www/ocaml-net/pkg-descr (new) 1.1 +73 -0 ports/www/ocaml-net/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 07:17:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7B1B37B404; Thu, 3 Apr 2003 07:17:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79AAA43F93; Thu, 3 Apr 2003 07:17:00 -0800 (PST) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33FH00U038967; Thu, 3 Apr 2003 07:17:00 -0800 (PST) (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33FH0ZA038964; Thu, 3 Apr 2003 07:17:00 -0800 (PST) Message-Id: <200304031517.h33FH0ZA038964@repoman.freebsd.org> From: Oliver Braun Date: Thu, 3 Apr 2003 07:17:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 15:17:01 -0000 obraun 2003/04/03 07:17:00 PST FreeBSD ports repository Modified files: . modules Log: ocaml-net --> ports/www/ocaml-net Revision Changes Path 1.6967 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 3 07:20:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9CA837B401; Thu, 3 Apr 2003 07:20:01 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 550C043FBF; Thu, 3 Apr 2003 07:19:52 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h33FJXgg085897 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 3 Apr 2003 18:19:33 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h33FJN7R085855; Thu, 3 Apr 2003 18:19:23 +0300 (EEST) (envelope-from ru) Date: Thu, 3 Apr 2003 18:19:22 +0300 From: Ruslan Ermilov To: Bruce Evans Message-ID: <20030403151922.GA76895@sunbay.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403093800.GA68012@dhcp01.pn.xcllnt.net> <20030403200459.H30311@gamplex.bde.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DocE+STaALJfprDB" Content-Disposition: inline In-Reply-To: <20030403200459.H30311@gamplex.bde.org> User-Agent: Mutt/1.5.4i cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 15:20:02 -0000 --DocE+STaALJfprDB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2003 at 08:26:05PM +1000, Bruce Evans wrote: > On Thu, 3 Apr 2003, Marcel Moolenaar wrote: >=20 > > On Thu, Apr 03, 2003 at 11:53:50AM +0300, Ruslan Ermilov wrote: > > > > > > > How's this bugfix? > > > > > > %%% > > > Index: bsd.sys.mk > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > > RCS file: /home/ncvs/src/share/mk/bsd.sys.mk,v > > > retrieving revision 1.12 > > > diff -u -r1.12 bsd.sys.mk > > > --- bsd.sys.mk 31 Mar 2003 13:10:51 -0000 1.12 > > > +++ bsd.sys.mk 3 Apr 2003 08:48:40 -0000 > > > @@ -25,7 +25,7 @@ > > > . if ${WARNS} > 3 > > > CFLAGS +=3D -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh= adow -Wcast-align > > > . endif > > > -. if ${WARNS} > 4 > > > +. if ${WARNS} > 4 && !empty(CFLAGS:M-O*) && empty(CFLAGS:M-O0) > > > CFLAGS +=3D -Wuninitialized > > > . endif > > > # BDECFLAGS > > > %%% > > > > Should work in most cases, but beware DEBUG_FLAGS. The above does not > > catch the case where DEBUG_FLAGS is defined to something like "-O0 -g". > > I think this is a reasonable use of DEBUG_FLAGS. > > > > \begin{log} > > dhcp01% setenv DEBUG_FLAGS "-O0 -g" > > dhcp01% setenv CFLAGS -O > > dhcp01% make > > cc -O -mcpu=3Dpentiumpro -I/usr/local/src/fpi/cpu/.. -O0 -g -Wsystem-h= eaders -Werror -Wall -Wno-format-y2k -W -Wstrict-prototypes -Wmissing-proto= types -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -W= shadow -Wcast-align -Wuninitialized -c decode.c > > cc1: warnings being treated as errors > > cc1: warning: -Wuninitialized is not supported without -O > > *** Error code 1 > > \end{log} >=20 > The patch works for me, as it should since ${DEBUG_FLAGS} is added to > CFLAGS before including bsd.sys.mk in at least bsd.prog.mk. Similarly > for COPTS, except it is actually documented in mk/bsd.README. >=20 > There are some other minor ordering problems. -Winitialized is not set > for "-O -O0 -O" in ${CFLAGS}, >=20 I can fix this: %%% Index: bsd.sys.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/share/mk/bsd.sys.mk,v retrieving revision 1.12 diff -u -r1.12 bsd.sys.mk --- bsd.sys.mk 31 Mar 2003 13:10:51 -0000 1.12 +++ bsd.sys.mk 3 Apr 2003 15:12:56 -0000 @@ -25,8 +25,13 @@ . if ${WARNS} > 3 CFLAGS +=3D -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -= Wcast-align . endif -. if ${WARNS} > 4 +. if ${WARNS} > 4 && !empty(CFLAGS:M-O*) +. for entry in ${CFLAGS:M-O*} +_Oflag=3D ${entry} +. endfor +. if ${_Oflag} !=3D "-O0" CFLAGS +=3D -Wuninitialized +. endif . endif # BDECFLAGS . if ${WARNS} > 5 %%% > and there may be hackish makefiles that set > CFLAGS after including . >=20 That set -O's after including? ;-) These shouldn't probably be set to WARNS=3D5. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --DocE+STaALJfprDB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jFD6Ukv4P6juNwoRAj3YAJ9dPOGI8LwhymuvtS3rqiW+ise7WQCdHE6u OVqHMIy8XtfYBbEwWxal6ts= =LSdD -----END PGP SIGNATURE----- --DocE+STaALJfprDB-- From owner-cvs-all@FreeBSD.ORG Thu Apr 3 07:50:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15AB537B401; Thu, 3 Apr 2003 07:50:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB03943F3F; Thu, 3 Apr 2003 07:50:17 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33FoH0U040955; Thu, 3 Apr 2003 07:50:17 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33FoHYY040952; Thu, 3 Apr 2003 07:50:17 -0800 (PST) Message-Id: <200304031550.h33FoHYY040952@repoman.freebsd.org> From: Jake Burkholder Date: Thu, 3 Apr 2003 07:50:17 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 15:50:18 -0000 jake 2003/04/03 07:50:17 PST FreeBSD src repository Modified files: sys/sparc64/sparc64 machdep.c Log: Fix typos (don't use * when taking the size of an array). Revision Changes Path 1.84 +2 -2 src/sys/sparc64/sparc64/machdep.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 07:55:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 065EF37B401; Thu, 3 Apr 2003 07:55:34 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B56E43F75; Thu, 3 Apr 2003 07:55:33 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.7) with ESMTP id h33FtDD0017961; Thu, 3 Apr 2003 07:55:14 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h33FtCuR017960; Thu, 3 Apr 2003 07:55:12 -0800 (PST) Date: Thu, 3 Apr 2003 07:55:12 -0800 From: "David O'Brien" To: Bruce Evans Message-ID: <20030403155512.GB17860@dragon.nuxi.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030403180026.A29934@gamplex.bde.org> User-Agent: Mutt/1.4i 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 cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 15:55:34 -0000 On Thu, Apr 03, 2003 at 06:04:25PM +1000, Bruce Evans wrote: > On Wed, 2 Apr 2003, Marcel Moolenaar wrote: > > > Please, everybody, do not set WARNS=5 on anything because it breaks > > non-optimized builds: > > > > cc -g -mcpu=pentiumpro -I/usr/local/src/fpi/cpu/.. -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith > > -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wuninitialized -c decode.c > > cc1: warnings being treated as errors > > cc1: warning: -Wuninitialized is not supported without -O > > *** Error code 1 ... > This is mostly a bug in the implementation of WARNS. Agreed. Lets fix it instead of not using warns 5 & 6. From owner-cvs-all@FreeBSD.ORG Thu Apr 3 07:59:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D78C37B401; Thu, 3 Apr 2003 07:59:41 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A0F843FA3; Thu, 3 Apr 2003 07:59:40 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.7) with ESMTP id h33FxPD0018009; Thu, 3 Apr 2003 07:59:25 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h33FxHue018002; Thu, 3 Apr 2003 07:59:17 -0800 (PST) Date: Thu, 3 Apr 2003 07:59:17 -0800 From: "David O'Brien" To: Ruslan Ermilov Message-ID: <20030403155917.GC17860@dragon.nuxi.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030403085350.GA37174@sunbay.com> User-Agent: Mutt/1.4i 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 cc: src-committers@FreeBSD.org cc: Bruce Evans cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 15:59:41 -0000 On Thu, Apr 03, 2003 at 11:53:50AM +0300, Ruslan Ermilov wrote: > -. if ${WARNS} > 4 > +. if ${WARNS} > 4 && !empty(CFLAGS:M-O*) && empty(CFLAGS:M-O0) > CFLAGS += -Wuninitialized > . endif Why not just get rid of it totally? We have this already: . if ${WARNS} > 1 && ${WARNS} < 5 # XXX Delete -Wuninitialized by default for now -- the compiler doesn't # XXX always get it right. CFLAGS += -Wno-uninitialized . endif so we already know it is problematic. OR rather than use: . if ${WARNS} > 4 CFLAGS += -Wuninitialized . endif use . if ${WARNS} == 4 CFLAGS += -Wuninitialized . endif From owner-cvs-all@FreeBSD.ORG Thu Apr 3 08:00:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1322837B401; Thu, 3 Apr 2003 08:00:41 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40E0F43FA3; Thu, 3 Apr 2003 08:00:40 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.7) with ESMTP id h33G0PD0018042; Thu, 3 Apr 2003 08:00:25 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h33G0HBb018039; Thu, 3 Apr 2003 08:00:17 -0800 (PST) Date: Thu, 3 Apr 2003 08:00:17 -0800 From: "David O'Brien" To: Bruce Evans Message-ID: <20030403160017.GD17860@dragon.nuxi.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403093800.GA68012@dhcp01.pn.xcllnt.net> <20030403200459.H30311@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030403200459.H30311@gamplex.bde.org> User-Agent: Mutt/1.4i 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 cc: src-committers@FreeBSD.org cc: Ruslan Ermilov cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 16:00:41 -0000 On Thu, Apr 03, 2003 at 08:26:05PM +1000, Bruce Evans wrote: > There are some other minor ordering problems. -Winitialized is not set > for "-O -O0 -O" in ${CFLAGS}, and there may be hackish makefiles that set > CFLAGS after including . There are a few. Also you can set gcc flags using the GCC_OPTIONS environmental variable. From owner-cvs-all@FreeBSD.ORG Thu Apr 3 08:03:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A848B37B404; Thu, 3 Apr 2003 08:03:25 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46ED843FBF; Thu, 3 Apr 2003 08:03:24 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.7) with ESMTP id h33G39D0018077; Thu, 3 Apr 2003 08:03:09 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h33G318l018075; Thu, 3 Apr 2003 08:03:01 -0800 (PST) Date: Thu, 3 Apr 2003 08:03:01 -0800 From: "David O'Brien" To: Ruslan Ermilov Message-ID: <20030403160301.GE17860@dragon.nuxi.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403093800.GA68012@dhcp01.pn.xcllnt.net> <20030403200459.H30311@gamplex.bde.org> <20030403151922.GA76895@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030403151922.GA76895@sunbay.com> User-Agent: Mutt/1.4i 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 cc: src-committers@FreeBSD.org cc: Bruce Evans cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 16:03:26 -0000 On Thu, Apr 03, 2003 at 06:19:22PM +0300, Ruslan Ermilov wrote: > I can fix this: > > %%% > Index: bsd.sys.mk Would this be better? Index: bsd.sys.mk =================================================================== RCS file: /home/ncvs/src/share/mk/bsd.sys.mk,v retrieving revision 1.11 diff -u -r1.11 bsd.sys.mk --- bsd.sys.mk 13 Nov 2002 13:49:29 -0000 1.11 +++ bsd.sys.mk 3 Apr 2003 16:02:28 -0000 @@ -24,17 +24,11 @@ . if ${WARNS} > 3 CFLAGS += -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align . endif -. if ${WARNS} > 4 -CFLAGS += -Wuninitialized -. endif +# XXX: the warning that was here became problematic. +#. if ${WARNS} > 4 # BDECFLAGS . if ${WARNS} > 5 CFLAGS += -ansi -pedantic -Wbad-function-cast -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -. endif -. if ${WARNS} > 1 && ${WARNS} < 5 -# XXX Delete -Wuninitialized by default for now -- the compiler doesn't -# XXX always get it right. -CFLAGS += -Wno-uninitialized . endif . endif From owner-cvs-all@FreeBSD.ORG Thu Apr 3 08:04:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C21F937B401; Thu, 3 Apr 2003 08:04:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 637A443FB1; Thu, 3 Apr 2003 08:04:19 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33G4J0U042928; Thu, 3 Apr 2003 08:04:19 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33G4JVB042927; Thu, 3 Apr 2003 08:04:19 -0800 (PST) Message-Id: <200304031604.h33G4JVB042927@repoman.freebsd.org> From: Jake Burkholder Date: Thu, 3 Apr 2003 08:04:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 swtch.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 16:04:20 -0000 jake 2003/04/03 08:04:19 PST FreeBSD src repository Modified files: sys/sparc64/sparc64 swtch.S Log: Don't assume the fp state is at offset 0 in the pcb. Revision Changes Path 1.27 +1 -1 src/sys/sparc64/sparc64/swtch.S From owner-cvs-all@FreeBSD.ORG Thu Apr 3 08:08:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16D4837B401; Thu, 3 Apr 2003 08:08:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A969843FAF; Thu, 3 Apr 2003 08:08:12 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33G8C0U043132; Thu, 3 Apr 2003 08:08:12 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33G8CTQ043131; Thu, 3 Apr 2003 08:08:12 -0800 (PST) Message-Id: <200304031608.h33G8CTQ043131@repoman.freebsd.org> From: Tom Rhodes Date: Thu, 3 Apr 2003 08:08:12 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 16:08:13 -0000 trhodes 2003/04/03 08:08:12 PST FreeBSD doc repository Modified files: en/donations donors.sgml Log: Catch up with some recent donations: List the Alpha sent to will. List the tape drive sent to kris. Revision Changes Path 1.70 +16 -1 www/en/donations/donors.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 08:17:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E3B737B401; Thu, 3 Apr 2003 08:17:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FAAD43F3F; Thu, 3 Apr 2003 08:17:25 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33GHO0U043763; Thu, 3 Apr 2003 08:17:25 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33GHOYH043762; Thu, 3 Apr 2003 08:17:24 -0800 (PST) Message-Id: <200304031617.h33GHOYH043762@repoman.freebsd.org> From: Tom Rhodes Date: Thu, 3 Apr 2003 08:17:24 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 16:17:25 -0000 trhodes 2003/04/03 08:17:24 PST FreeBSD doc repository Modified files: en/donations donors.sgml Log: Catch up with recent donations: Add an SMP system shipped to rwatson. Add a Sun AXI board shipped to obrien (Listed as unknown for now). Revision Changes Path 1.71 +15 -1 www/en/donations/donors.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 08:17:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 937D637B408; Thu, 3 Apr 2003 08:17:42 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6012B43FA3; Thu, 3 Apr 2003 08:17:41 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id E00B05309; Thu, 3 Apr 2003 18:17:39 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Poul-Henning Kamp From: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Thu, 03 Apr 2003 18:17:39 +0200 In-Reply-To: <200304011855.h31It5NZ058814@repoman.freebsd.org> (Poul-Henning Kamp's message of "Tue, 1 Apr 2003 10:55:05 -0800 (PST)") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <200304011855.h31It5NZ058814@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys disk.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 16:17:43 -0000 Poul-Henning Kamp writes: > Log: > I think the divorce successed, so stop #including I think this breaks the ofw driver (and thus also the powerpc build) DES --=20 Dag-Erling Sm=F8rgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Thu Apr 3 08:20:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E105837B401; Thu, 3 Apr 2003 08:20:16 -0800 (PST) Received: from critter.freebsd.dk (esplanaden.cybercity.dk [212.242.40.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4441E43F3F; Thu, 3 Apr 2003 08:20:15 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.9/8.12.9) with ESMTP id h33GKDGQ004541; Thu, 3 Apr 2003 18:20:13 +0200 (CEST) (envelope-from phk@phk.freebsd.dk) To: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) From: "Poul-Henning Kamp" In-Reply-To: Your message of "Thu, 03 Apr 2003 18:17:39 +0200." Date: Thu, 03 Apr 2003 18:20:13 +0200 Message-ID: <4540.1049386813@critter.freebsd.dk> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys disk.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 16:20:17 -0000 In message , Dag-Erling =?iso-8859-1?q?Sm=F8 rgrav?= writes: >Poul-Henning Kamp writes: >> Log: >> I think the divorce successed, so stop #including > >I think this breaks the ofw driver (and thus also the powerpc build) Unless it is in "make universe" I don't test the powerpc build. You should be able to just change the include in the ofw driver from to and make it work. -- 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. From owner-cvs-all@FreeBSD.ORG Thu Apr 3 08:28:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3089637B401; Thu, 3 Apr 2003 08:28:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C54F543FAF; Thu, 3 Apr 2003 08:28:57 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33GSv0U054821; Thu, 3 Apr 2003 08:28:57 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33GSvax054820; Thu, 3 Apr 2003 08:28:57 -0800 (PST) Message-Id: <200304031628.h33GSvax054820@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 3 Apr 2003 08:28:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ofw ofw_disk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 16:28:58 -0000 des 2003/04/03 08:28:57 PST FreeBSD src repository Modified files: sys/dev/ofw ofw_disk.c Log: -> Revision Changes Path 1.6 +1 -1 src/sys/dev/ofw/ofw_disk.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 08:36:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9130337B401; Thu, 3 Apr 2003 08:36:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3228243F3F; Thu, 3 Apr 2003 08:36:02 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Ga20U056678; Thu, 3 Apr 2003 08:36:02 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33Ga1Oj056677; Thu, 3 Apr 2003 08:36:01 -0800 (PST) Message-Id: <200304031636.h33Ga1Oj056677@repoman.freebsd.org> From: Jake Burkholder Date: Thu, 3 Apr 2003 08:36:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 swtch.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 16:36:03 -0000 jake 2003/04/03 08:36:01 PST FreeBSD src repository Modified files: sys/sparc64/sparc64 swtch.S Log: - Generally improve register usage in cpu_switch. Use the 'in' registers for temporaries relating to the state of the new process instead of the outs, so that functions can be called without fear of clobbering them. - Use savefpctx instead of rolling our own. Revision Changes Path 1.28 +63 -71 src/sys/sparc64/sparc64/swtch.S From owner-cvs-all@FreeBSD.ORG Thu Apr 3 08:56:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86D7637B401; Thu, 3 Apr 2003 08:56:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0755843FCB; Thu, 3 Apr 2003 08:56:57 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Guu0U063161; Thu, 3 Apr 2003 08:56:56 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33GuuW0063160; Thu, 3 Apr 2003 08:56:56 -0800 (PST) Message-Id: <200304031656.h33GuuW0063160@repoman.freebsd.org> From: Tom Rhodes Date: Thu, 3 Apr 2003 08:56:56 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 16:56:57 -0000 trhodes 2003/04/03 08:56:56 PST FreeBSD doc repository Modified files: en/donations donors.sgml Log: Add two HP laptops which were shipped to imp. Revision Changes Path 1.72 +8 -1 www/en/donations/donors.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 09:12:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF18337B401; Thu, 3 Apr 2003 09:12:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D9A043FBD; Thu, 3 Apr 2003 09:12:36 -0800 (PST) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33HCa0U065217; Thu, 3 Apr 2003 09:12:36 -0800 (PST) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33HCaKZ065216; Thu, 3 Apr 2003 09:12:36 -0800 (PST) Message-Id: <200304031712.h33HCaKZ065216@repoman.freebsd.org> From: Wilko Bulte Date: Thu, 3 Apr 2003 09:12:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/alpha dokern.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 17:12:37 -0000 wilko 2003/04/03 09:12:36 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release/alpha dokern.sh Log: We ran out of floppy space again. Remove atapifd and TurboLaser support from the bootfloppy. Approved by: re Revision Changes Path 1.56.2.5 +2 -0 src/release/alpha/dokern.sh From owner-cvs-all@FreeBSD.ORG Thu Apr 3 09:25:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4124B37B401; Thu, 3 Apr 2003 09:25:09 -0800 (PST) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id B46CB43FA3; Thu, 3 Apr 2003 09:25:07 -0800 (PST) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.9/8.12.9) with ESMTP id h33HP6ik005955; Thu, 3 Apr 2003 19:25:06 +0200 (CEST) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.9/8.12.9/Submit) id h33HP6eV005954; Thu, 3 Apr 2003 19:25:06 +0200 (CEST) Date: Thu, 3 Apr 2003 19:25:06 +0200 From: Wilko Bulte To: Tom Rhodes Message-ID: <20030403172506.GB5921@freebie.xs4all.nl> References: <200304031656.h33GuuW0063160@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304031656.h33GuuW0063160@repoman.freebsd.org> User-Agent: Mutt/1.4i X-OS: FreeBSD 4.8-RC X-PGP: finger wilko@freebsd.org cc: doc-committers@FreeBSD.ORG cc: cvs-doc@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 17:25:09 -0000 On Thu, Apr 03, 2003 at 08:56:56AM -0800, Tom Rhodes wrote: > trhodes 2003/04/03 08:56:56 PST > > FreeBSD doc repository > > Modified files: > en/donations donors.sgml > Log: > Add two HP laptops which were shipped to imp. imp is building a RAIL? -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte From owner-cvs-all@FreeBSD.ORG Thu Apr 3 09:35:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B347237B404; Thu, 3 Apr 2003 09:35:49 -0800 (PST) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AA9A43F3F; Thu, 3 Apr 2003 09:35:48 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from mobile.pittgoth.com (acs-24-154-229-196.zoominternet.net [24.154.229.196]) by pittgoth.com (8.12.8/8.12.8) with SMTP id h33HZjBG036441; Thu, 3 Apr 2003 12:35:45 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Thu, 3 Apr 2003 12:34:22 -0500 From: Tom Rhodes To: Wilko Bulte Message-Id: <20030403123422.36b2b0e9.trhodes@FreeBSD.org> In-Reply-To: <20030403172506.GB5921@freebie.xs4all.nl> References: <200304031656.h33GuuW0063160@repoman.freebsd.org> <20030403172506.GB5921@freebie.xs4all.nl> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 17:35:50 -0000 On Thu, 3 Apr 2003 19:25:06 +0200 Wilko Bulte wrote: > On Thu, Apr 03, 2003 at 08:56:56AM -0800, Tom Rhodes wrote: > > trhodes 2003/04/03 08:56:56 PST > > > > FreeBSD doc repository > > > > Modified files: > > en/donations donors.sgml > > Log: > > Add two HP laptops which were shipped to imp. > > imp is building a RAIL? > Brother Wilko, To be honest I'm not at liberty to divulge any information about imp's fiendishly clever plots for world domination through FreeBSD PCMCIA and wireless support. Er... something like that. -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Thu Apr 3 09:41:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D86337B401; Thu, 3 Apr 2003 09:41:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F34FD43F93; Thu, 3 Apr 2003 09:41:29 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33HfT0U067055; Thu, 3 Apr 2003 09:41:29 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33HfTWt067054; Thu, 3 Apr 2003 09:41:29 -0800 (PST) Message-Id: <200304031741.h33HfTWt067054@repoman.freebsd.org> From: Ceri Davies Date: Thu, 3 Apr 2003 09:41:29 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/commercial consulting.raw X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 17:41:30 -0000 ceri 2003/04/03 09:41:29 PST FreeBSD doc repository Modified files: en/commercial consulting.raw Log: GNUTEC, Inc have changed their name to BackWatcher, Inc.; update accordingly. Submitted by: Kyle Amon Revision Changes Path 1.84 +4 -4 www/en/commercial/consulting.raw From owner-cvs-all@FreeBSD.ORG Thu Apr 3 09:50:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4F2737B404; Thu, 3 Apr 2003 09:50:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BFD243F3F; Thu, 3 Apr 2003 09:50:13 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33HoD0U067426; Thu, 3 Apr 2003 09:50:13 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33HoDmE067425; Thu, 3 Apr 2003 09:50:13 -0800 (PST) Message-Id: <200304031750.h33HoDmE067425@repoman.freebsd.org> From: Ceri Davies Date: Thu, 3 Apr 2003 09:50:13 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/eresources chapter.sgml doc/en_US.ISO8859-1/share/sgml mailing-lists.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 17:50:15 -0000 ceri 2003/04/03 09:50:13 PST FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/eresources chapter.sgml en_US.ISO8859-1/share/sgml mailing-lists.ent Log: Add the new mailing list for discussions regarding threads on FreeBSD, as announced on -arch yesterday. Revision Changes Path 1.111 +5 -0 doc/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml 1.12 +3 -0 doc/en_US.ISO8859-1/share/sgml/mailing-lists.ent From owner-cvs-all@FreeBSD.ORG Thu Apr 3 09:55:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73D3E37B401 for ; Thu, 3 Apr 2003 09:55:46 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 46B9443FBD for ; Thu, 3 Apr 2003 09:55:45 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 14543 invoked by uid 1000); 3 Apr 2003 17:55:46 -0000 Date: Thu, 3 Apr 2003 09:55:45 -0800 (PST) From: Nate Lawson To: Peter Wemm In-Reply-To: <20030403012341.B55B32A8A7@canning.wemm.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386machdep.c mp_machdep.c pmap.c swtch.s src/sys/i386/include md_var.h pmap.h smp.h src/sys/i386/isa apic_vector.s intr_machdep.h src/sys/kern kern_switch.c kern_synch.c kern_thr.c kern_thread.c subr_witness.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 17:55:47 -0000 On Wed, 2 Apr 2003, Peter Wemm wrote: > Nate Lawson wrote: > > Shouldn't there be a "if (thread == curthread) return;" in the scheduling > > code somewhere? > > There is now. :-) > > newtd = choosethread(); > if (td != newtd) > cpu_switch(td, newtd); /* SHAZAM!! */ > #ifdef SWTCH_OPTIM_STATS > else > stupid_switch++; > #endif > > sparc64's cpu_switch() already optimized this case. i386 didn't. I haven't > checked alpha/ia64 yet, but they're still using the old no-args API. The more things change... "Probably 30% of the performance improvements came from fixing things in the Sun kernel. I mean like, really, guys: If the current task doesn't change, and it doesn't 80% of the time swtch is called, there's no need to do a full context save and restore. Adding the two lines cmpl _masterprocp,a0 jeq 6f restore of current proc is easy just before the call to "resume" in sun3/vax.s:swtch got me a quick 70 KB/s performance increase but felt more like a bug fix than progress." -- van http://www.root.org/ip-development/news/vanj.88jul20.txt -Nate From owner-cvs-all@FreeBSD.ORG Thu Apr 3 09:58:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B228037B401; Thu, 3 Apr 2003 09:58:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CB4243FBF; Thu, 3 Apr 2003 09:58:47 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Hwl0U068011; Thu, 3 Apr 2003 09:58:47 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33HwkBU068010; Thu, 3 Apr 2003 09:58:46 -0800 (PST) Message-Id: <200304031758.h33HwkBU068010@repoman.freebsd.org> From: Ceri Davies Date: Thu, 3 Apr 2003 09:58:46 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/eresources chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 17:58:48 -0000 ceri 2003/04/03 09:58:46 PST FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/eresources chapter.sgml Log: Reword a sentence that had grammatical issues. Revision Changes Path 1.112 +2 -2 doc/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:00:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC12237B404; Thu, 3 Apr 2003 10:00:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6298C43FA3; Thu, 3 Apr 2003 10:00:23 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33I0N0U068091; Thu, 3 Apr 2003 10:00:23 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33I0MwD068090; Thu, 3 Apr 2003 10:00:22 -0800 (PST) Message-Id: <200304031800.h33I0MwD068090@repoman.freebsd.org> From: Ceri Davies Date: Thu, 3 Apr 2003 10:00:22 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/eresources chapter.sgml doc/en_US.ISO8859-1/books/handbook/mirrors chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:00:24 -0000 ceri 2003/04/03 10:00:22 PST FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/eresources chapter.sgml en_US.ISO8859-1/books/handbook/mirrors chapter.sgml Log: Make the capitalisation of "CVSweb" consistent (with the project page at http://www.freebsd.org/projects/cvsweb.html) throughout doc/en_US.ISO8859-1/. Revision Changes Path 1.113 +1 -1 doc/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml 1.283 +1 -1 doc/en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:10:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E93A37B401; Thu, 3 Apr 2003 10:10:56 -0800 (PST) Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 561A243FBF; Thu, 3 Apr 2003 10:10:55 -0800 (PST) (envelope-from mwlucas@blackhelicopters.org) Received: from blackhelicopters.org (mwlucas@localhost [127.0.0.1]) by blackhelicopters.org (8.12.8/8.12.8) with ESMTP id h33IAmDn042821; Thu, 3 Apr 2003 13:10:48 -0500 (EST) (envelope-from mwlucas@blackhelicopters.org) Received: (from mwlucas@localhost) by blackhelicopters.org (8.12.8/8.12.8/Submit) id h33IAm6q042820; Thu, 3 Apr 2003 13:10:48 -0500 (EST) Date: Thu, 3 Apr 2003 13:10:47 -0500 From: "Michael W . Lucas" To: Tom Rhodes Message-ID: <20030403131047.A42599@blackhelicopters.org> References: <200304031656.h33GuuW0063160@repoman.freebsd.org> <20030403172506.GB5921@freebie.xs4all.nl> <20030403123422.36b2b0e9.trhodes@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: <20030403123422.36b2b0e9.trhodes@FreeBSD.org>; from trhodes@FreeBSD.org on Thu, Apr 03, 2003 at 12:34:22PM -0500 cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Wilko Bulte Subject: Re: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:10:56 -0000 On Thu, Apr 03, 2003 at 12:34:22PM -0500, Tom Rhodes wrote: > On Thu, 3 Apr 2003 19:25:06 +0200 > Wilko Bulte wrote: > > > On Thu, Apr 03, 2003 at 08:56:56AM -0800, Tom Rhodes wrote: > > > trhodes 2003/04/03 08:56:56 PST > > > > > > FreeBSD doc repository > > > > > > Modified files: > > > en/donations donors.sgml > > > Log: > > > Add two HP laptops which were shipped to imp. > > > > imp is building a RAIL? > > > > Brother Wilko, > > To be honest I'm not at liberty to divulge any information about > imp's fiendishly clever plots for world domination through FreeBSD > PCMCIA and wireless support. > > Er... something like that. Tom, You just publically admitted that you Know Things Mortal Developers Were Not Meant To Know. "They" are most unhappy with you. Please arrange a fatal accident for yourself in the near future. Thank you. ==ml -- Michael Lucas mwlucas@FreeBSD.org, mwlucas@BlackHelicopters.org http://www.BlackHelicopters.org/~mwlucas/ Absolute BSD: http://www.AbsoluteBSD.com/ From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:17:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6034737B401; Thu, 3 Apr 2003 10:17:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF23A43F3F; Thu, 3 Apr 2003 10:17:29 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33IHT0U070309; Thu, 3 Apr 2003 10:17:29 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33IHT1a070308; Thu, 3 Apr 2003 10:17:29 -0800 (PST) Message-Id: <200304031817.h33IHT1a070308@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 3 Apr 2003 10:17:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases Makefile ports/databases/dbf Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:17:30 -0000 ijliao 2003/04/03 10:17:29 PST FreeBSD ports repository Modified files: databases Makefile Added files: databases/dbf Makefile distinfo pkg-descr pkg-plist Log: add dbf 0.5.1 Show and convert the content of dBASE III, IV, and 5.0 files Revision Changes Path 1.232 +1 -0 ports/databases/Makefile 1.1 +25 -0 ports/databases/dbf/Makefile (new) 1.1 +1 -0 ports/databases/dbf/distinfo (new) 1.1 +7 -0 ports/databases/dbf/pkg-descr (new) 1.1 +1 -0 ports/databases/dbf/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:17:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76D2337B404; Thu, 3 Apr 2003 10:17:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 179F243FA3; Thu, 3 Apr 2003 10:17:37 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33IHa0U070347; Thu, 3 Apr 2003 10:17:36 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33IHaTo070346; Thu, 3 Apr 2003 10:17:36 -0800 (PST) Message-Id: <200304031817.h33IHaTo070346@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 3 Apr 2003 10:17:36 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:17:37 -0000 ijliao 2003/04/03 10:17:36 PST FreeBSD ports repository Modified files: . modules Log: dbf --> ports/databases/dbf Revision Changes Path 1.6968 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:24:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 799E437B401; Thu, 3 Apr 2003 10:24:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 187BB43FA3; Thu, 3 Apr 2003 10:24:32 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33IOV0U070852; Thu, 3 Apr 2003 10:24:31 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33IOV9a070851; Thu, 3 Apr 2003 10:24:31 -0800 (PST) Message-Id: <200304031824.h33IOV9a070851@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 3 Apr 2003 10:24:31 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/openssl bsd.openssl.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:24:33 -0000 dinoex 2003/04/03 10:24:31 PST FreeBSD ports repository Added files: security/openssl bsd.openssl.mk Log: - rename Makefile.ssl to bsd.openssl.mk Revision Changes Path 1.1 +108 -0 ports/security/openssl/bsd.openssl.mk (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:24:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF69337B401; Thu, 3 Apr 2003 10:24:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59F7B43FE1; Thu, 3 Apr 2003 10:24:53 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33IOr0U070906; Thu, 3 Apr 2003 10:24:53 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33IOrrb070905; Thu, 3 Apr 2003 10:24:53 -0800 (PST) Message-Id: <200304031824.h33IOrrb070905@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 3 Apr 2003 10:24:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/openssl Makefileports/security/openssl/files patch-Configure patch-config X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:24:54 -0000 dinoex 2003/04/03 10:24:53 PST FreeBSD ports repository Modified files: security/openssl Makefile security/openssl/files patch-Configure Added files: security/openssl/files patch-config Log: - honor CC and use PTHREAD_LIBS and PTHREAD_FLAGS marius@alchemy.franken.de Revision Changes Path 1.81 +1 -0 ports/security/openssl/Makefile 1.2 +3 -3 ports/security/openssl/files/patch-Configure 1.4 +20 -0 ports/security/openssl/files/patch-config (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:25:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74A5B37B401; Thu, 3 Apr 2003 10:25:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B627B43FDD; Thu, 3 Apr 2003 10:25:48 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33IPm0U071027; Thu, 3 Apr 2003 10:25:48 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33IPm7N071026; Thu, 3 Apr 2003 10:25:48 -0800 (PST) Message-Id: <200304031825.h33IPm7N071026@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 3 Apr 2003 10:25:48 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/openssl-beta Makefile ports/security/openssl-beta/files patch-Configure patch-config X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:25:50 -0000 dinoex 2003/04/03 10:25:48 PST FreeBSD ports repository Modified files: security/openssl-beta Makefile security/openssl-beta/files patch-Configure Added files: security/openssl-beta/files patch-config Log: - honor CC and use PHREAD_LIBS and PTHREAD_FLAGS Submitted by: marius@alchemy.franken.de Revision Changes Path 1.86 +1 -0 ports/security/openssl-beta/Makefile 1.2 +3 -3 ports/security/openssl-beta/files/patch-Configure 1.4 +20 -0 ports/security/openssl-beta/files/patch-config (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:28:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 861F837B401; Thu, 3 Apr 2003 10:28:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35E0043FAF; Thu, 3 Apr 2003 10:28:04 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33IS40U071125; Thu, 3 Apr 2003 10:28:04 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33IS3L9071124; Thu, 3 Apr 2003 10:28:03 -0800 (PST) Message-Id: <200304031828.h33IS3L9071124@repoman.freebsd.org> From: Jake Burkholder Date: Thu, 3 Apr 2003 10:28:03 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/include pcb.h src/sys/sparc64/sparc64 genassym.c machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:28:05 -0000 jake 2003/04/03 10:28:03 PST FreeBSD src repository Modified files: sys/sparc64/include pcb.h sys/sparc64/sparc64 genassym.c machdep.c Log: - Add space for kernel floating point registers to the pcb. These will be used to support block copy and zero operations in the kernel which use the floating point registers. - While I'm changing the size, improve the layout of struct pcb, sort by size, then alphabetical etc. - Add some assertions to validate assumptions made about how the pcb is allocated. Revision Changes Path 1.16 +8 -6 src/sys/sparc64/include/pcb.h 1.50 +5 -4 src/sys/sparc64/sparc64/genassym.c 1.85 +5 -0 src/sys/sparc64/sparc64/machdep.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:34:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABFE137B401; Thu, 3 Apr 2003 10:34:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A04543FBD; Thu, 3 Apr 2003 10:34:06 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33IY60U071697; Thu, 3 Apr 2003 10:34:06 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33IY6MR071696; Thu, 3 Apr 2003 10:34:06 -0800 (PST) Message-Id: <200304031834.h33IY6MR071696@repoman.freebsd.org> From: Jake Burkholder Date: Thu, 3 Apr 2003 10:34:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 exception.S swtch.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:34:07 -0000 jake 2003/04/03 10:34:05 PST FreeBSD src repository Modified files: sys/sparc64/sparc64 exception.S swtch.S Log: Add support for saving and restoring kernel floating point state. The state will be saved if we context switch as a result of an interrupt which occured while using the floating point registers in the kernel (which actually can't happen right now). This allows fp disabled traps in the kernel, which normally shouldn't happen, so make sure the trapping code is what we expect it is. Revision Changes Path 1.63 +31 -1 src/sys/sparc64/sparc64/exception.S 1.29 +14 -0 src/sys/sparc64/sparc64/swtch.S From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:37:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 381BC37B401; Thu, 3 Apr 2003 10:37:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCACB43F75; Thu, 3 Apr 2003 10:37:49 -0800 (PST) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Ibn0U071933; Thu, 3 Apr 2003 10:37:49 -0800 (PST) (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33IbnBc071932; Thu, 3 Apr 2003 10:37:49 -0800 (PST) Message-Id: <200304031837.h33IbnBc071932@repoman.freebsd.org> From: Yar Tikhiy Date: Thu, 3 Apr 2003 10:37:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc syslog.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:37:50 -0000 yar 2003/04/03 10:37:49 PST FreeBSD src repository Modified files: etc syslog.conf Log: Stop logging ``authpriv'' messages to the world-readable file /var/log/messages. Such messages are for the eyes of authorized personnel only. PR: conf/48170 Discussed in: freebsd-security MFC after: 2 weeks Revision Changes Path 1.24 +1 -1 src/etc/syslog.conf From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:39:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06FC037B401; Thu, 3 Apr 2003 10:39:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AD1C43FBD; Thu, 3 Apr 2003 10:39:48 -0800 (PST) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Idm0U072007; Thu, 3 Apr 2003 10:39:48 -0800 (PST) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33Idmmm072006; Thu, 3 Apr 2003 10:39:48 -0800 (PST) Message-Id: <200304031839.h33Idmmm072006@repoman.freebsd.org> From: Maxime Henrion Date: Thu, 3 Apr 2003 10:39:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fxp if_fxpreg.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:39:49 -0000 mux 2003/04/03 10:39:48 PST FreeBSD src repository Modified files: sys/dev/fxp if_fxpreg.h Log: Fix fxp(4), this changed shouldn't have crept in. Pointy hat to: mux Reported by: Pawel Worach Revision Changes Path 1.30 +2 -2 src/sys/dev/fxp/if_fxpreg.h From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:43:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E495437B401; Thu, 3 Apr 2003 10:43:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9559743FBD; Thu, 3 Apr 2003 10:43:40 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Ihe0U072553; Thu, 3 Apr 2003 10:43:40 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33Ihep9072552; Thu, 3 Apr 2003 10:43:40 -0800 (PST) Message-Id: <200304031843.h33Ihep9072552@repoman.freebsd.org> From: Jake Burkholder Date: Thu, 3 Apr 2003 10:43:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/include cpufunc.hsrc/sys/sparc64/sparc64 support.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:43:41 -0000 jake 2003/04/03 10:43:40 PST FreeBSD src repository Modified files: sys/sparc64/include cpufunc.h sys/sparc64/sparc64 support.S Log: Add optimized block copy and zero functions using vis instructions, which can do 64 bytes at a time and don't allocate lines in the L2 cache. These assume that everything is 64 byte aligned, and that there's more than 128 bytes of data (best for whole pages). The block load and store instructions don't follow normal memory ordering rules and require either a memory barrier or move between registers before the data can actually be used. This implementation correctly shuffles around 3 out of the 4 sets of registers in order to avoid memory barriers expect for the last 2 blocks. Revision Changes Path 1.15 +3 -0 src/sys/sparc64/include/cpufunc.h 1.21 +137 -0 src/sys/sparc64/sparc64/support.S From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:45:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1194D37B401; Thu, 3 Apr 2003 10:45:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D3E043FAF; Thu, 3 Apr 2003 10:45:57 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Ijv0U072740; Thu, 3 Apr 2003 10:45:57 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33IjvMf072739; Thu, 3 Apr 2003 10:45:57 -0800 (PST) Message-Id: <200304031845.h33IjvMf072739@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 3 Apr 2003 10:45:57 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/wmapp Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:45:58 -0000 ijliao 2003/04/03 10:45:57 PST FreeBSD ports repository Modified files: x11-toolkits Makefile Added files: x11-toolkits/wmapp Makefile distinfo pkg-descr pkg-plist Log: add wmapp 0.0.4.1 A DockApp Graphics Library Revision Changes Path 1.228 +1 -0 ports/x11-toolkits/Makefile 1.1 +31 -0 ports/x11-toolkits/wmapp/Makefile (new) 1.1 +1 -0 ports/x11-toolkits/wmapp/distinfo (new) 1.1 +9 -0 ports/x11-toolkits/wmapp/pkg-descr (new) 1.1 +1 -0 ports/x11-toolkits/wmapp/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:46:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26E3137B404; Thu, 3 Apr 2003 10:46:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9249043FB1; Thu, 3 Apr 2003 10:46:11 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33IkB0U072783; Thu, 3 Apr 2003 10:46:11 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33IkBCQ072782; Thu, 3 Apr 2003 10:46:11 -0800 (PST) Message-Id: <200304031846.h33IkBCQ072782@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 3 Apr 2003 10:46:11 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:46:12 -0000 ijliao 2003/04/03 10:46:11 PST FreeBSD ports repository Modified files: . modules Log: wmapp --> ports/x11-toolkits/wmapp Revision Changes Path 1.6969 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:49:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E30CB37B408; Thu, 3 Apr 2003 10:49:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A487943FD7; Thu, 3 Apr 2003 10:49:22 -0800 (PST) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33InM0U072930; Thu, 3 Apr 2003 10:49:22 -0800 (PST) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33InMqA072929; Thu, 3 Apr 2003 10:49:22 -0800 (PST) Message-Id: <200304031849.h33InMqA072929@repoman.freebsd.org> From: Wilko Bulte Date: Thu, 3 Apr 2003 10:49:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_8 Subject: cvs commit: src/release/alpha dokern.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:49:24 -0000 wilko 2003/04/03 10:49:22 PST FreeBSD src repository Modified files: (Branch: RELENG_4_8) release/alpha dokern.sh Log: We ran out of floppy space again. Remove atapifd and TurboLaser support from the bootfloppy. Approved by: re Revision Changes Path 1.56.2.4.2.1 +2 -0 src/release/alpha/dokern.sh From owner-cvs-all@FreeBSD.ORG Thu Apr 3 10:55:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 735BC37B401; Thu, 3 Apr 2003 10:55:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1257D43FA3; Thu, 3 Apr 2003 10:55:17 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33ItG0U073601; Thu, 3 Apr 2003 10:55:16 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33ItGuq073600; Thu, 3 Apr 2003 10:55:16 -0800 (PST) Message-Id: <200304031855.h33ItGuq073600@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 10:55:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys diskmbr.h src/sys/geom geom_mbr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:55:18 -0000 phk 2003/04/03 10:55:16 PST FreeBSD src repository Modified files: sys/sys diskmbr.h sys/geom geom_mbr.c Log: Add #define for DOSPTYP_PMBR, and use it. Revision Changes Path 1.38 +1 -1 src/sys/geom/geom_mbr.c 1.95 +1 -0 src/sys/sys/diskmbr.h From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:00:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5714937B401; Thu, 3 Apr 2003 11:00:00 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 839EF43FA3; Thu, 3 Apr 2003 10:59:56 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h33Ixqgg021224 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 3 Apr 2003 21:59:52 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h33Ixg3Q021207; Thu, 3 Apr 2003 21:59:42 +0300 (EEST) (envelope-from ru) Date: Thu, 3 Apr 2003 21:59:42 +0300 From: Ruslan Ermilov To: "David O'Brien" Message-ID: <20030403185942.GA20191@sunbay.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403155917.GC17860@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/9DWx/yDrRhgMJTb" Content-Disposition: inline In-Reply-To: <20030403155917.GC17860@dragon.nuxi.com> User-Agent: Mutt/1.5.4i cc: src-committers@FreeBSD.org cc: Bruce Evans cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:00:00 -0000 --/9DWx/yDrRhgMJTb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2003 at 07:59:17AM -0800, David O'Brien wrote: > On Thu, Apr 03, 2003 at 11:53:50AM +0300, Ruslan Ermilov wrote: > > -. if ${WARNS} > 4 > > +. if ${WARNS} > 4 && !empty(CFLAGS:M-O*) && empty(CFLAGS:M-O0) > > CFLAGS +=3D -Wuninitialized > > . endif >=20 > Why not just get rid of it totally? We have this already: >=20 > . if ${WARNS} > 1 && ${WARNS} < 5 > # XXX Delete -Wuninitialized by default for now -- the compiler doesn= 't > # XXX always get it right. > CFLAGS +=3D -Wno-uninitialized > . endif >=20 > so we already know it is problematic. OR rather than use: >=20 > . if ${WARNS} > 4=20 > CFLAGS +=3D -Wuninitialized > . endif >=20 > use >=20 > . if ${WARNS} =3D=3D 4=20 > CFLAGS +=3D -Wuninitialized > . endif >=20 -Wuninitialized may be fixed at some point, but it will still be unsupported without -O. Why would we remove the support for it if we can handle it right? I find the -Wuninitialized very useful, it saved me lot of crashes. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --/9DWx/yDrRhgMJTb Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jISeUkv4P6juNwoRAk9zAJ9gphtIBUy9mOaa20ZmqhYZW+JJVQCeMnVl ceS5EvWOKcf4X9pED51zfkE= =8ydh -----END PGP SIGNATURE----- --/9DWx/yDrRhgMJTb-- From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:05:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1B8037B401; Thu, 3 Apr 2003 11:05:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9266443FBF; Thu, 3 Apr 2003 11:05:03 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33J530U075290; Thu, 3 Apr 2003 11:05:03 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33J53sV075289; Thu, 3 Apr 2003 11:05:03 -0800 (PST) Message-Id: <200304031905.h33J53sV075289@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 11:05:03 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_mbr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:05:04 -0000 phk 2003/04/03 11:05:03 PST FreeBSD src repository Modified files: sys/geom geom_mbr.c Log: Update the initializer for GEOM_MBREXT, I overlooked it previously. Revision Changes Path 1.39 +2 -3 src/sys/geom/geom_mbr.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:11:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC43F37B401; Thu, 3 Apr 2003 11:11:18 -0800 (PST) Received: from newtrinity.zeist.de (newtrinity.zeist.de [195.49.175.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E8E843FCB; Thu, 3 Apr 2003 11:11:17 -0800 (PST) (envelope-from marius@newtrinity.zeist.de) Received: from newtrinity.zeist.de (localhost [127.0.0.1]) h33JBFKk030626; Thu, 3 Apr 2003 21:11:15 +0200 (CEST) (envelope-from marius@newtrinity.zeist.de) Received: (from marius@localhost) by newtrinity.zeist.de (8.12.9/8.12.9/Submit) id h33JBAgs030625; Thu, 3 Apr 2003 21:11:10 +0200 (CEST) (envelope-from marius) Date: Thu, 3 Apr 2003 21:11:10 +0200 From: marius@alchemy.franken.de To: Dirk Meyer Message-ID: <20030403211110.A999@newtrinity.zeist.de> References: <200304031824.h33IOrrb070905@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200304031824.h33IOrrb070905@repoman.freebsd.org>; from dinoex@freebsd.org on Thu, Apr 03, 2003 at 10:24:53AM -0800 cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/security/openssl Makefileports/security/openssl/files patch-Configure patch-config X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:11:19 -0000 On Thu, Apr 03, 2003 at 10:24:53AM -0800, Dirk Meyer wrote: > dinoex 2003/04/03 10:24:53 PST > > FreeBSD ports repository > > Modified files: > security/openssl Makefile > security/openssl/files patch-Configure > Added files: > security/openssl/files patch-config > Log: > - honor CC and use PTHREAD_LIBS and PTHREAD_FLAGS > marius@alchemy.franken.de > Well, thanks, but did you dig into why -pthread was added in the first place as none of the executables, i.e. c_rehash, openssl and the regression tests, seem to not require it like I wrote. Also the in-base version of the openssl binary isn't linked against libc_r. Is this something a future version of the regression tests will require ? Now if only NO_OPENSSL would get fixed... From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:11:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A8D237B404; Thu, 3 Apr 2003 11:11:51 -0800 (PST) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C74643F85; Thu, 3 Apr 2003 11:11:47 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from mobile.pittgoth.com (acs-24-154-229-196.zoominternet.net [24.154.229.196]) by pittgoth.com (8.12.8/8.12.8) with SMTP id h33JBhBG036621; Thu, 3 Apr 2003 14:11:43 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Thu, 3 Apr 2003 14:10:20 -0500 From: Tom Rhodes To: "Michael W . Lucas" Message-Id: <20030403141020.77c4ccf6.trhodes@FreeBSD.org> In-Reply-To: <20030403131047.A42599@blackhelicopters.org> References: <200304031656.h33GuuW0063160@repoman.freebsd.org> <20030403172506.GB5921@freebie.xs4all.nl> <20030403123422.36b2b0e9.trhodes@FreeBSD.org> <20030403131047.A42599@blackhelicopters.org> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org cc: wkb@freebie.xs4all.nl Subject: Re: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:11:52 -0000 On Thu, 3 Apr 2003 13:10:47 -0500 "Michael W . Lucas" wrote: > On Thu, Apr 03, 2003 at 12:34:22PM -0500, Tom Rhodes wrote: > > On Thu, 3 Apr 2003 19:25:06 +0200 > > Wilko Bulte wrote: > > > > > On Thu, Apr 03, 2003 at 08:56:56AM -0800, Tom Rhodes wrote: > > > > trhodes 2003/04/03 08:56:56 PST > > > > > > > > FreeBSD doc repository > > > > > > > > Modified files: > > > > en/donations donors.sgml > > > > Log: > > > > Add two HP laptops which were shipped to imp. > > > > > > imp is building a RAIL? > > > > > > > Brother Wilko, > > > > To be honest I'm not at liberty to divulge any information about > > imp's fiendishly clever plots for world domination through FreeBSD > > PCMCIA and wireless support. > > > > Er... something like that. > > Tom, > > You just publically admitted that you Know Things Mortal Developers > Were Not Meant To Know. > > "They" are most unhappy with you. Please arrange a fatal accident for > yourself in the near future. > > Thank you. > Do you think a falling off of a bridge accident would be good, or did you have something else in mind? -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:19:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EBB837B405; Thu, 3 Apr 2003 11:19:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BECEE43F75; Thu, 3 Apr 2003 11:19:37 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33JJb0U076260; Thu, 3 Apr 2003 11:19:37 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33JJbQg076259; Thu, 3 Apr 2003 11:19:37 -0800 (PST) Message-Id: <200304031919.h33JJbQg076259@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 11:19:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/md md.c src/sys/geom geom.h geom_aes.c geom_bsd.c geom_disk.c geom_io.c geom_slice.c src/sys/geom/bde g_bde.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:19:38 -0000 phk 2003/04/03 11:19:37 PST FreeBSD src repository Modified files: sys/dev/md md.c sys/geom geom.h geom_aes.c geom_bsd.c geom_disk.c geom_io.c geom_slice.c sys/geom/bde g_bde.c Log: Remove all references to BIO_SETATTR. We will not be using it. Revision Changes Path 1.96 +0 -1 src/sys/dev/md/md.c 1.17 +0 -1 src/sys/geom/bde/g_bde.c 1.55 +0 -1 src/sys/geom/geom.h 1.13 +0 -1 src/sys/geom/geom_aes.c 1.46 +0 -2 src/sys/geom/geom_bsd.c 1.66 +0 -3 src/sys/geom/geom_disk.c 1.36 +0 -21 src/sys/geom/geom_io.c 1.39 +0 -1 src/sys/geom/geom_slice.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:22:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6007F37B401; Thu, 3 Apr 2003 11:22:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2D7343F93; Thu, 3 Apr 2003 11:22:32 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33JMW0U076750; Thu, 3 Apr 2003 11:22:32 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33JMWEZ076749; Thu, 3 Apr 2003 11:22:32 -0800 (PST) Message-Id: <200304031922.h33JMWEZ076749@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 11:22:32 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_disk.c src/sys/sys bio.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:22:33 -0000 phk 2003/04/03 11:22:32 PST FreeBSD src repository Modified files: sys/kern subr_disk.c sys/sys bio.h Log: Remove BIO_SETATTR from non-GEOM part of kernel as well. Revision Changes Path 1.75 +0 -1 src/sys/kern/subr_disk.c 1.132 +0 -1 src/sys/sys/bio.h From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:24:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2251637B401; Thu, 3 Apr 2003 11:24:52 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69B9C43FA3; Thu, 3 Apr 2003 11:24:50 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.9/8.12.9) with ESMTP id h33JOnMS005051 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 3 Apr 2003 14:24:49 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h33JOic32561; Thu, 3 Apr 2003 14:24:44 -0500 (EST) (envelope-from gallatin@cs.duke.edu) Date: Thu, 3 Apr 2003 14:24:44 -0500 From: Andrew Gallatin To: Peter Wemm Message-ID: <20030403142444.A32536@grasshopper.cs.duke.edu> References: <20030403012341.B55B32A8A7@canning.wemm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030403012341.B55B32A8A7@canning.wemm.org>; from peter@wemm.org on Wed, Apr 02, 2003 at 05:23:41PM -0800 X-Operating-System: FreeBSD 4.4-RELEASE on an i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Nate Lawson Subject: Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 machdep.c mp_machdep.c pmap.c swtch.s src/sys/i386/include md_var.h pmap.h smp.h src/sys/i386/isa apic_vector.s intr_machdep.h src/sys/kern kern_switch.c kern_synch.c kern_thr.c kern_thread.c subr_witness.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:24:52 -0000 Peter Wemm [peter@wemm.org] wrote: > Nate Lawson wrote: <..> > > Shouldn't there be a "if (thread == curthread) return;" in the scheduling > > code somewhere? > > There is now. :-) > > newtd = choosethread(); > if (td != newtd) > cpu_switch(td, newtd); /* SHAZAM!! */ > #ifdef SWTCH_OPTIM_STATS > else > stupid_switch++; > #endif > > sparc64's cpu_switch() already optimized this case. i386 didn't. I haven't > checked alpha/ia64 yet, but they're still using the old no-args API. I think alpha has this feature: LEAF(cpu_switch, 1) <..> CALL(choosethread) /* can't return NULL */ mov v0, s2 /* s2 = new thread */ ldq s3, TD_MD_PCBPADDR(s2) /* s3 = new pcbpaddr */ /* * Check to see if we're switching to ourself. If we are, * don't bother loading the new context. <..> cmpeq s0, s2, t0 /* oldthread == newthread? */ bne t0, Lcs7 /* Yes! Skip! */ Drew From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:32:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BAA037B401; Thu, 3 Apr 2003 11:32:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A28E443F75; Thu, 3 Apr 2003 11:32:14 -0800 (PST) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33JWE0U077443; Thu, 3 Apr 2003 11:32:14 -0800 (PST) (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33JWEaJ077442; Thu, 3 Apr 2003 11:32:14 -0800 (PST) Message-Id: <200304031932.h33JWEaJ077442@repoman.freebsd.org> From: Cy Schubert Date: Thu, 3 Apr 2003 11:32:14 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/fvwm2-devel Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:32:16 -0000 cy 2003/04/03 11:32:14 PST FreeBSD ports repository Modified files: x11-wm/fvwm2-devel Makefile distinfo pkg-plist Log: Udate 2.5.5 -> 2.5.6. Revision Changes Path 1.58 +2 -2 ports/x11-wm/fvwm2-devel/Makefile 1.28 +1 -1 ports/x11-wm/fvwm2-devel/distinfo 1.30 +4 -1 ports/x11-wm/fvwm2-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:34:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D23DC37B401; Thu, 3 Apr 2003 11:34:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11E6F43FF9; Thu, 3 Apr 2003 11:34:06 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33JY50U077509; Thu, 3 Apr 2003 11:34:05 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33JY581077508; Thu, 3 Apr 2003 11:34:05 -0800 (PST) Message-Id: <200304031934.h33JY581077508@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 3 Apr 2003 11:34:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/bind9-dlz Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:34:10 -0000 dinoex 2003/04/03 11:34:05 PST FreeBSD ports repository Modified files: net/bind9-dlz Makefile Log: - use bsd.openssl.mk Revision Changes Path 1.12 +1 -1 ports/net/bind9-dlz/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:34:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B0A337B40E; Thu, 3 Apr 2003 11:34:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A21543FE1; Thu, 3 Apr 2003 11:34:51 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33JYo0U077544; Thu, 3 Apr 2003 11:34:50 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33JYoiG077543; Thu, 3 Apr 2003 11:34:50 -0800 (PST) Message-Id: <200304031934.h33JYoiG077543@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 3 Apr 2003 11:34:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/openssh Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:34:54 -0000 dinoex 2003/04/03 11:34:50 PST FreeBSD ports repository Modified files: security/openssh Makefile Log: - use bsd.openssl.mk Revision Changes Path 1.116 +1 -1 ports/security/openssh/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:35:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A90537B40E; Thu, 3 Apr 2003 11:35:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CE5843F93; Thu, 3 Apr 2003 11:35:37 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33JZa0U077660; Thu, 3 Apr 2003 11:35:36 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33JZagN077659; Thu, 3 Apr 2003 11:35:36 -0800 (PST) Message-Id: <200304031935.h33JZagN077659@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 3 Apr 2003 11:35:36 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/openssh-portable Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:35:41 -0000 dinoex 2003/04/03 11:35:36 PST FreeBSD ports repository Modified files: security/openssh-portable Makefile Log: - use bsd.openssl.mk Revision Changes Path 1.66 +1 -1 ports/security/openssh-portable/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:36:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A74ED37B401; Thu, 3 Apr 2003 11:36:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4983643F3F; Thu, 3 Apr 2003 11:36:41 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Jaf0U077702; Thu, 3 Apr 2003 11:36:41 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33Jaecn077701; Thu, 3 Apr 2003 11:36:40 -0800 (PST) Message-Id: <200304031936.h33Jaecn077701@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 3 Apr 2003 11:36:40 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/news/suck Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:36:42 -0000 dinoex 2003/04/03 11:36:40 PST FreeBSD ports repository Modified files: news/suck Makefile Log: - use bsd.openssl.mk Revision Changes Path 1.41 +1 -1 ports/news/suck/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:37:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8131037B401; Thu, 3 Apr 2003 11:37:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD80943FB1; Thu, 3 Apr 2003 11:37:22 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33JbM0U077741; Thu, 3 Apr 2003 11:37:22 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33JbM03077740; Thu, 3 Apr 2003 11:37:22 -0800 (PST) Message-Id: <200304031937.h33JbM03077740@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 3 Apr 2003 11:37:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/sendmail-old Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:37:24 -0000 dinoex 2003/04/03 11:37:22 PST FreeBSD ports repository Modified files: mail/sendmail-old Makefile Log: - use bsd.openssl.mk Revision Changes Path 1.41 +1 -1 ports/mail/sendmail-old/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:37:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 222A237B401; Thu, 3 Apr 2003 11:37:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B47B043F93; Thu, 3 Apr 2003 11:37:40 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Jbe0U077801; Thu, 3 Apr 2003 11:37:40 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33JbeRk077800; Thu, 3 Apr 2003 11:37:40 -0800 (PST) Message-Id: <200304031937.h33JbeRk077800@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 11:37:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_mbr.c src/sys/sys diskmbr.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:37:41 -0000 phk 2003/04/03 11:37:40 PST FreeBSD src repository Modified files: sys/geom geom_mbr.c sys/sys diskmbr.h Log: Retire the DIOCGMBR ioctl before anybody starts to use it. Revision Changes Path 1.40 +0 -5 src/sys/geom/geom_mbr.c 1.96 +0 -1 src/sys/sys/diskmbr.h From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:38:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1C7C37B401; Thu, 3 Apr 2003 11:38:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4191643F93; Thu, 3 Apr 2003 11:38:02 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Jc20U077866; Thu, 3 Apr 2003 11:38:02 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33Jc1Mo077865; Thu, 3 Apr 2003 11:38:01 -0800 (PST) Message-Id: <200304031938.h33Jc1Mo077865@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 3 Apr 2003 11:38:01 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/sendmail Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:38:03 -0000 dinoex 2003/04/03 11:38:01 PST FreeBSD ports repository Modified files: mail/sendmail Makefile Log: - use bsd.openssl.mk Revision Changes Path 1.68 +2 -2 ports/mail/sendmail/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:39:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11F9637B405; Thu, 3 Apr 2003 11:39:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A62E943FCB; Thu, 3 Apr 2003 11:39:15 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33JdF0U077921; Thu, 3 Apr 2003 11:39:15 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33JdF8e077920; Thu, 3 Apr 2003 11:39:15 -0800 (PST) Message-Id: <200304031939.h33JdF8e077920@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 3 Apr 2003 11:39:15 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/apache13-modssl Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:39:16 -0000 dinoex 2003/04/03 11:39:15 PST FreeBSD ports repository Modified files: www/apache13-modssl Makefile Log: - use bsd.openssl.mk Revision Changes Path 1.118 +1 -1 ports/www/apache13-modssl/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 11:39:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7387C37B401; Thu, 3 Apr 2003 11:39:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12B9343F3F; Thu, 3 Apr 2003 11:39:56 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Jdt0U077977; Thu, 3 Apr 2003 11:39:55 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33Jdtpi077976; Thu, 3 Apr 2003 11:39:55 -0800 (PST) Message-Id: <200304031939.h33Jdtpi077976@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 3 Apr 2003 11:39:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/apache13-ssl Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 19:39:57 -0000 dinoex 2003/04/03 11:39:55 PST FreeBSD ports repository Modified files: www/apache13-ssl Makefile Log: - use bsd.openssl.mk Revision Changes Path 1.89 +1 -1 ports/www/apache13-ssl/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 12:09:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89CCB37B401; Thu, 3 Apr 2003 12:09:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C05C43FB1; Thu, 3 Apr 2003 12:09:28 -0800 (PST) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33K9R0U080805; Thu, 3 Apr 2003 12:09:28 -0800 (PST) (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33K9RBu080804; Thu, 3 Apr 2003 12:09:27 -0800 (PST) Message-Id: <200304032009.h33K9RBu080804@repoman.freebsd.org> From: Paul Saab Date: Thu, 3 Apr 2003 12:09:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ciss ciss.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 20:09:28 -0000 ps 2003/04/03 12:09:27 PST FreeBSD src repository Modified files: sys/dev/ciss ciss.c Log: Add support for the HP Smart Array 6400 EM Change the interrupt mask for the Smart Array 6xxx controllers after discussions w/ HP. Revision Changes Path 1.20 +4 -3 src/sys/dev/ciss/ciss.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 12:35:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A19BC37B401; Thu, 3 Apr 2003 12:35:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33CB043FBD; Thu, 3 Apr 2003 12:35:07 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33KZ70U082572; Thu, 3 Apr 2003 12:35:07 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33KZ6mN082571; Thu, 3 Apr 2003 12:35:06 -0800 (PST) Message-Id: <200304032035.h33KZ6mN082571@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 3 Apr 2003 12:35:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/subversion Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 20:35:07 -0000 bmah 2003/04/03 12:35:06 PST FreeBSD ports repository Modified files: devel/subversion Makefile distinfo pkg-plist Log: Maintainer update of subversion to 0.20.1. PR: 50511 Submitted by: Craig Rodrigues (MAINTAINER) Revision Changes Path 1.25 +4 -4 ports/devel/subversion/Makefile 1.12 +1 -1 ports/devel/subversion/distinfo 1.10 +63 -55 ports/devel/subversion/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 12:39:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66A8A37B401; Thu, 3 Apr 2003 12:39:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0742143FB1; Thu, 3 Apr 2003 12:39:44 -0800 (PST) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Kdh0U082800; Thu, 3 Apr 2003 12:39:43 -0800 (PST) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33Kdhag082799; Thu, 3 Apr 2003 12:39:43 -0800 (PST) Message-Id: <200304032039.h33Kdhag082799@repoman.freebsd.org> From: Maxime Henrion Date: Thu, 3 Apr 2003 12:39:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fxp if_fxp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 20:39:44 -0000 mux 2003/04/03 12:39:43 PST FreeBSD src repository Modified files: sys/dev/fxp if_fxp.c Log: Remove useless initialization. Revision Changes Path 1.154 +0 -1 src/sys/dev/fxp/if_fxp.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 13:11:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8740037B401; Thu, 3 Apr 2003 13:11:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2280D43FB1; Thu, 3 Apr 2003 13:11:00 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33LAx0U091115; Thu, 3 Apr 2003 13:10:59 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33LAxCa091112; Thu, 3 Apr 2003 13:10:59 -0800 (PST) Message-Id: <200304032110.h33LAxCa091112@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 3 Apr 2003 13:10:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/avifile Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 21:11:01 -0000 lioux 2003/04/03 13:10:59 PST FreeBSD ports repository Modified files: multimedia/avifile Makefile distinfo pkg-plist Log: Update to 0.7.34.20030319 Approved by: maintainer Revision Changes Path 1.41 +20 -4 ports/multimedia/avifile/Makefile 1.18 +1 -1 ports/multimedia/avifile/distinfo 1.16 +3 -0 ports/multimedia/avifile/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 13:13:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDD8837B401; Thu, 3 Apr 2003 13:13:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C5BA43F75; Thu, 3 Apr 2003 13:13:29 -0800 (PST) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33LDT0U091288; Thu, 3 Apr 2003 13:13:29 -0800 (PST) (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33LDT8D091287; Thu, 3 Apr 2003 13:13:29 -0800 (PST) Message-Id: <200304032113.h33LDT8D091287@repoman.freebsd.org> From: "James E. Housley" Date: Thu, 3 Apr 2003 13:13:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/uvscan-dat Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 21:13:30 -0000 jeh 2003/04/03 13:13:29 PST FreeBSD ports repository Modified files: security/uvscan-dat Makefile distinfo Log: 4256 Emergency DAT release due to: W32/Pretty.gen@MM incorrect identification. Revision Changes Path 1.139 +1 -1 ports/security/uvscan-dat/Makefile 1.137 +1 -1 ports/security/uvscan-dat/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 13:23:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B80A37B401; Thu, 3 Apr 2003 13:23:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC3BF43FD7; Thu, 3 Apr 2003 13:23:31 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33LNV0U091872; Thu, 3 Apr 2003 13:23:31 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33LNVRo091871; Thu, 3 Apr 2003 13:23:31 -0800 (PST) Message-Id: <200304032123.h33LNVRo091871@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 3 Apr 2003 13:23:31 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 21:23:32 -0000 bmah 2003/04/03 13:23:31 PST FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Fix typo: On the relevant architectures, floppy drives are handled by the fdc(4) driver, not the fd(4) file descriptor files. Submitted by: Peter B MFC after: 1 week Revision Changes Path 1.137 +1 -1 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 13:36:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C52C37B401; Thu, 3 Apr 2003 13:36:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEBF743FCB; Thu, 3 Apr 2003 13:36:34 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33LaY0U093154; Thu, 3 Apr 2003 13:36:34 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33LaYcS093153; Thu, 3 Apr 2003 13:36:34 -0800 (PST) Message-Id: <200304032136.h33LaYcS093153@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 3 Apr 2003 13:36:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/efi/libefi copy.c delay.c efi_console.c libefi.c module.c time.c src/sys/boot/efi/loader conf.c main.c src/sys/boot/ia64/libski copy.c delay.c exit.c module.c skiconsole.c time.c src/sys/boot/ia64/skiload conf.c main.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 21:36:35 -0000 obrien 2003/04/03 13:36:34 PST FreeBSD src repository Modified files: sys/boot/efi/libefi copy.c delay.c efi_console.c libefi.c module.c time.c sys/boot/efi/loader conf.c main.c sys/boot/ia64/libski copy.c delay.c exit.c module.c skiconsole.c time.c sys/boot/ia64/skiload conf.c main.c sys/dev/an if_an.c if_an_isa.c if_an_pccard.c if_an_pci.c sys/dev/bge if_bge.c sys/dev/lge if_lge.c sys/dev/mii acphy.c amphy.c brgphy.c dcphy.c exphy.c lxtphy.c mii.c mii_physubr.c nsgphy.c nsphy.c pnaphy.c pnphy.c qsphy.c rlphy.c tdkphy.c tlphy.c ukphy.c ukphy_subr.c xmphy.c sys/dev/my if_my.c sys/dev/nge if_nge.c sys/dev/ofw ofw_console.c sys/dev/txp if_txp.c sys/dev/usb if_aue.c if_cue.c if_kue.c usb_ethersubr.c sys/dev/wi if_wi.c if_wi_pccard.c sys/netatm/spans spans_kxdr.c sys/pci if_dc.c if_pcn.c if_sf.c if_sis.c if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c if_wb.c sys/powerpc/powerpc autoconf.c bcopy.c busdma_machdep.c clock.c copyinout.c copystr.c extintr.c fpu.c fuswintr.c machdep.c ofw_machdep.c pmap.c suswintr.c syncicache.c sys_machdep.c trap.c Log: Use __FBSDID rather than rcsid[]. Revision Changes Path 1.5 +2 -4 src/sys/boot/efi/libefi/copy.c 1.3 +2 -4 src/sys/boot/efi/libefi/delay.c 1.4 +2 -4 src/sys/boot/efi/libefi/efi_console.c 1.6 +2 -4 src/sys/boot/efi/libefi/libefi.c 1.3 +2 -4 src/sys/boot/efi/libefi/module.c 1.4 +2 -4 src/sys/boot/efi/libefi/time.c 1.9 +2 -4 src/sys/boot/efi/loader/conf.c 1.19 +2 -4 src/sys/boot/efi/loader/main.c 1.3 +2 -4 src/sys/boot/ia64/libski/copy.c 1.2 +2 -4 src/sys/boot/ia64/libski/delay.c 1.2 +2 -4 src/sys/boot/ia64/libski/exit.c 1.2 +3 -4 src/sys/boot/ia64/libski/module.c 1.2 +2 -4 src/sys/boot/ia64/libski/skiconsole.c 1.3 +2 -4 src/sys/boot/ia64/libski/time.c 1.3 +2 -3 src/sys/boot/ia64/skiload/conf.c 1.3 +2 -4 src/sys/boot/ia64/skiload/main.c 1.48 +3 -7 src/sys/dev/an/if_an.c 1.10 +4 -7 src/sys/dev/an/if_an_isa.c 1.17 +3 -7 src/sys/dev/an/if_an_pccard.c 1.18 +3 -7 src/sys/dev/an/if_an_pci.c 1.32 +4 -13 src/sys/dev/bge/if_bge.c 1.18 +3 -12 src/sys/dev/lge/if_lge.c 1.13 +3 -5 src/sys/dev/mii/acphy.c 1.13 +3 -7 src/sys/dev/mii/amphy.c 1.18 +3 -7 src/sys/dev/mii/brgphy.c 1.20 +3 -7 src/sys/dev/mii/dcphy.c 1.16 +3 -5 src/sys/dev/mii/exphy.c 1.10 +3 -5 src/sys/dev/mii/lxtphy.c 1.16 +3 -5 src/sys/dev/mii/mii.c 1.17 +3 -5 src/sys/dev/mii/mii_physubr.c 1.14 +3 -7 src/sys/dev/mii/nsgphy.c 1.18 +3 -5 src/sys/dev/mii/nsphy.c 1.12 +3 -7 src/sys/dev/mii/pnaphy.c 1.14 +3 -7 src/sys/dev/mii/pnphy.c 1.11 +3 -5 src/sys/dev/mii/qsphy.c 1.16 +3 -7 src/sys/dev/mii/rlphy.c 1.13 +5 -2 src/sys/dev/mii/tdkphy.c 1.14 +3 -5 src/sys/dev/mii/tlphy.c 1.13 +3 -6 src/sys/dev/mii/ukphy.c 1.6 +3 -5 src/sys/dev/mii/ukphy_subr.c 1.12 +3 -8 src/sys/dev/mii/xmphy.c 1.15 +4 -2 src/sys/dev/my/if_my.c 1.43 +3 -7 src/sys/dev/nge/if_nge.c 1.12 +2 -4 src/sys/dev/ofw/ofw_console.c 1.15 +3 -1 src/sys/dev/txp/if_txp.c 1.67 +3 -7 src/sys/dev/usb/if_aue.c 1.33 +3 -7 src/sys/dev/usb/if_cue.c 1.45 +3 -7 src/sys/dev/usb/if_kue.c 1.14 +3 -7 src/sys/dev/usb/usb_ethersubr.c 1.136 +3 -5 src/sys/dev/wi/if_wi.c 1.19 +3 -5 src/sys/dev/wi/if_wi_pccard.c 1.12 +3 -9 src/sys/netatm/spans/spans_kxdr.c 1.99 +3 -7 src/sys/pci/if_dc.c 1.38 +3 -11 src/sys/pci/if_pcn.c 1.52 +3 -7 src/sys/pci/if_sf.c 1.69 +3 -5 src/sys/pci/if_sis.c 1.57 +3 -2 src/sys/pci/if_sk.c 1.48 +3 -7 src/sys/pci/if_ste.c 1.74 +3 -7 src/sys/pci/if_ti.c 1.78 +3 -7 src/sys/pci/if_tl.c 1.66 +3 -7 src/sys/pci/if_vr.c 1.56 +3 -7 src/sys/pci/if_wb.c 1.12 +2 -4 src/sys/powerpc/powerpc/autoconf.c 1.3 +2 -4 src/sys/powerpc/powerpc/bcopy.c 1.11 +2 -4 src/sys/powerpc/powerpc/busdma_machdep.c 1.15 +2 -4 src/sys/powerpc/powerpc/clock.c 1.8 +2 -4 src/sys/powerpc/powerpc/copyinout.c 1.2 +2 -4 src/sys/powerpc/powerpc/copystr.c 1.9 +2 -4 src/sys/powerpc/powerpc/extintr.c 1.4 +2 -4 src/sys/powerpc/powerpc/fpu.c 1.3 +2 -4 src/sys/powerpc/powerpc/fuswintr.c 1.52 +2 -4 src/sys/powerpc/powerpc/machdep.c 1.7 +2 -4 src/sys/powerpc/powerpc/ofw_machdep.c 1.55 +2 -4 src/sys/powerpc/powerpc/pmap.c 1.2 +2 -4 src/sys/powerpc/powerpc/suswintr.c 1.4 +2 -4 src/sys/powerpc/powerpc/syncicache.c 1.3 +2 -4 src/sys/powerpc/powerpc/sys_machdep.c 1.41 +2 -4 src/sys/powerpc/powerpc/trap.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 13:37:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FDB537B401; Thu, 3 Apr 2003 13:37:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DAC343FB1; Thu, 3 Apr 2003 13:37:45 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33Lbi0U093374; Thu, 3 Apr 2003 13:37:44 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33LbiN4093373; Thu, 3 Apr 2003 13:37:44 -0800 (PST) Message-Id: <200304032137.h33LbiN4093373@repoman.freebsd.org> From: Martin Blapp Date: Thu, 3 Apr 2003 13:37:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-devel/files patch-sal+osl+unx+tempfile.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 21:37:45 -0000 mbr 2003/04/03 13:37:44 PST FreeBSD ports repository Added files: editors/openoffice-devel/files patch-sal+osl+unx+tempfile.c Log: Fix crash in Autopilot->Report. Revision Changes Path 1.1 +11 -0 ports/editors/openoffice-devel/files/patch-sal+osl+unx+tempfile.c (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 13:40:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9A9D37B401; Thu, 3 Apr 2003 13:40:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FF5443FAF; Thu, 3 Apr 2003 13:40:31 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33LeV0U093628; Thu, 3 Apr 2003 13:40:31 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33LeUt5093626; Thu, 3 Apr 2003 13:40:30 -0800 (PST) Message-Id: <200304032140.h33LeUt5093626@repoman.freebsd.org> From: Martin Blapp Date: Thu, 3 Apr 2003 13:40:30 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-devel/files patch-sal+osl+unx+system.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 21:40:32 -0000 mbr 2003/04/03 13:40:30 PST FreeBSD ports repository Modified files: editors/openoffice-devel/files patch-sal+osl+unx+system.c Log: Remove redundant getpwuid_r from the patch. Build getpwuid_r part for FreeBSD too. Revision Changes Path 1.3 +35 -72 ports/editors/openoffice-devel/files/patch-sal+osl+unx+system.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 13:41:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCF8437B401; Thu, 3 Apr 2003 13:41:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32C6843FAF; Thu, 3 Apr 2003 13:41:15 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33LfF0U093881; Thu, 3 Apr 2003 13:41:15 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33LfEJa093880; Thu, 3 Apr 2003 13:41:14 -0800 (PST) Message-Id: <200304032141.h33LfEJa093880@repoman.freebsd.org> From: Poul-Henning Kamp Date: Thu, 3 Apr 2003 13:41:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/sysctl sysctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 21:41:16 -0000 phk 2003/04/03 13:41:14 PST FreeBSD src repository Modified files: sbin/sysctl sysctl.c Log: Output machdep.guessed_bootdev as an integer rather than try to format it according to ancient and obsolete rules. This removes one more user of Revision Changes Path 1.52 +0 -54 src/sbin/sysctl/sysctl.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 14:12:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E2E037B401; Thu, 3 Apr 2003 14:12:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DAF843F75; Thu, 3 Apr 2003 14:12:55 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33MCt0U096697; Thu, 3 Apr 2003 14:12:55 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33MCtvY096696; Thu, 3 Apr 2003 14:12:55 -0800 (PST) Message-Id: <200304032212.h33MCtvY096696@repoman.freebsd.org> From: Martin Blapp Date: Thu, 3 Apr 2003 14:12:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-devel/files patch-registry+source+registry.cxx X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 22:12:56 -0000 mbr 2003/04/03 14:12:55 PST FreeBSD ports repository Added files: editors/openoffice-devel/files patch-registry+source+registry.cxx Log: This part was just wrong. mkstemp does return a file descriptor, not a string. This could lead to crashes. MacOS will have the same problems. Revision Changes Path 1.1 +14 -0 ports/editors/openoffice-devel/files/patch-registry+source+registry.cxx (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 14:17:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0178637B401; Thu, 3 Apr 2003 14:17:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90B8543F93; Thu, 3 Apr 2003 14:17:17 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33MHH0U096906; Thu, 3 Apr 2003 14:17:17 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33MHHjT096905; Thu, 3 Apr 2003 14:17:17 -0800 (PST) Message-Id: <200304032217.h33MHHjT096905@repoman.freebsd.org> From: Martin Blapp Date: Thu, 3 Apr 2003 14:17:17 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-devel/files patch-codemaker+source+codemaker+global.cxx X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 22:17:18 -0000 mbr 2003/04/03 14:17:17 PST FreeBSD ports repository Added files: editors/openoffice-devel/files patch-codemaker+source+codemaker+global.cxx Log: Same as in patch patch-registry+source+registry.cxx This part was just wrong. mkstemp does return a file descriptor, not a string. This could lead to crashes. MacOS will have the same problems. Revision Changes Path 1.1 +14 -0 ports/editors/openoffice-devel/files/patch-codemaker+source+codemaker+global.cxx (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 14:28:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D795E37B401; Thu, 3 Apr 2003 14:28:20 -0800 (PST) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F20243FD7; Thu, 3 Apr 2003 14:28:16 -0800 (PST) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.9/8.12.9) with ESMTP id h33MSDik008128; Fri, 4 Apr 2003 00:28:13 +0200 (CEST) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.9/8.12.9/Submit) id h33MSDt7008127; Fri, 4 Apr 2003 00:28:13 +0200 (CEST) Date: Fri, 4 Apr 2003 00:28:13 +0200 From: Wilko Bulte To: Tom Rhodes Message-ID: <20030403222813.GA8108@freebie.xs4all.nl> References: <200304031656.h33GuuW0063160@repoman.freebsd.org> <20030403172506.GB5921@freebie.xs4all.nl> <20030403123422.36b2b0e9.trhodes@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030403123422.36b2b0e9.trhodes@FreeBSD.org> User-Agent: Mutt/1.4i X-OS: FreeBSD 4.8-RC X-PGP: finger wilko@freebsd.org cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 22:28:21 -0000 On Thu, Apr 03, 2003 at 12:34:22PM -0500, Tom Rhodes wrote: > On Thu, 3 Apr 2003 19:25:06 +0200 > Wilko Bulte wrote: > > > On Thu, Apr 03, 2003 at 08:56:56AM -0800, Tom Rhodes wrote: > > > trhodes 2003/04/03 08:56:56 PST > > > > > > FreeBSD doc repository > > > > > > Modified files: > > > en/donations donors.sgml > > > Log: > > > Add two HP laptops which were shipped to imp. > > > > imp is building a RAIL? > > > > Brother Wilko, > > To be honest I'm not at liberty to divulge any information about > imp's fiendishly clever plots for world domination through FreeBSD > PCMCIA and wireless support. > > Er... something like that. Why would building a Redundant Array of Inexpensive Laptops be so controversial /me wonders.. -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte From owner-cvs-all@FreeBSD.ORG Thu Apr 3 14:47:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 352C537B401; Thu, 3 Apr 2003 14:47:07 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2149843F3F; Thu, 3 Apr 2003 14:47:06 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.9/8.12.9) with ESMTP id h33Ml0hg056681; Thu, 3 Apr 2003 14:47:00 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.9/8.12.9) with ESMTP id h33Ml0k0010610; Thu, 3 Apr 2003 14:47:00 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.9/8.12.9/Submit) id h33Ml0KU010609; Thu, 3 Apr 2003 14:47:00 -0800 (PST) (envelope-from marcel) Date: Thu, 3 Apr 2003 14:47:00 -0800 From: Marcel Moolenaar To: Wilko Bulte Message-ID: <20030403224700.GB94660@athlon.pn.xcllnt.net> References: <200304031656.h33GuuW0063160@repoman.freebsd.org> <20030403172506.GB5921@freebie.xs4all.nl> <20030403123422.36b2b0e9.trhodes@FreeBSD.org> <20030403222813.GA8108@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030403222813.GA8108@freebie.xs4all.nl> User-Agent: Mutt/1.5.3i cc: Tom Rhodes cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 22:47:07 -0000 On Fri, Apr 04, 2003 at 12:28:13AM +0200, Wilko Bulte wrote: > > > > > > imp is building a RAIL? > > > > Brother Wilko, > > > > To be honest I'm not at liberty to divulge any information about > > imp's fiendishly clever plots for world domination through FreeBSD > > PCMCIA and wireless support. > > > > Er... something like that. > > Why would building a Redundant Array of Inexpensive Laptops be so > controversial /me wonders.. Because laptops aren't inexpensive, so if somebody is building a RAIL, something sinister must be going on :-) -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Thu Apr 3 15:04:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D82EB37B401; Thu, 3 Apr 2003 15:04:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78BE143FA3; Thu, 3 Apr 2003 15:04:53 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33N4r0U000954; Thu, 3 Apr 2003 15:04:53 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33N4rHu000953; Thu, 3 Apr 2003 15:04:53 -0800 (PST) Message-Id: <200304032304.h33N4rHu000953@repoman.freebsd.org> From: Tom Rhodes Date: Thu, 3 Apr 2003 15:04:53 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 23:04:54 -0000 trhodes 2003/04/03 15:04:53 PST FreeBSD doc repository Modified files: en/donations donors.sgml Log: Switch to an unknown status on imp's `missing' laptops. I'll inquire. Revision Changes Path 1.73 +2 -2 www/en/donations/donors.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 15:05:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CA6237B401; Thu, 3 Apr 2003 15:05:53 -0800 (PST) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0B9743FA3; Thu, 3 Apr 2003 15:05:51 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from mobile.pittgoth.com (acs-24-154-229-196.zoominternet.net [24.154.229.196]) by pittgoth.com (8.12.8/8.12.8) with SMTP id h33N5mBG037016; Thu, 3 Apr 2003 18:05:48 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Thu, 3 Apr 2003 18:04:25 -0500 From: Tom Rhodes To: Marcel Moolenaar Message-Id: <20030403180425.03750013.trhodes@FreeBSD.org> In-Reply-To: <20030403224700.GB94660@athlon.pn.xcllnt.net> References: <200304031656.h33GuuW0063160@repoman.freebsd.org> <20030403172506.GB5921@freebie.xs4all.nl> <20030403123422.36b2b0e9.trhodes@FreeBSD.org> <20030403222813.GA8108@freebie.xs4all.nl> <20030403224700.GB94660@athlon.pn.xcllnt.net> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org cc: wkb@freebie.xs4all.nl Subject: Re: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 23:05:53 -0000 On Thu, 3 Apr 2003 14:47:00 -0800 Marcel Moolenaar wrote: > On Fri, Apr 04, 2003 at 12:28:13AM +0200, Wilko Bulte wrote: > > > > > > > > imp is building a RAIL? > > > > > > Brother Wilko, > > > > > > To be honest I'm not at liberty to divulge any information about > > > imp's fiendishly clever plots for world domination through FreeBSD > > > PCMCIA and wireless support. > > > > > > Er... something like that. > > > > Why would building a Redundant Array of Inexpensive Laptops be so > > controversial /me wonders.. > > Because laptops aren't inexpensive, so if somebody is building > a RAIL, something sinister must be going on :-) > Dirty money YO! -- Tom Rhodes :) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 15:29:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3804237B410; Thu, 3 Apr 2003 15:29:21 -0800 (PST) Received: from ns1.gnf.org (ns1.gnf.org [63.196.132.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2513443FCB; Thu, 3 Apr 2003 15:29:20 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: from EXCHCLUSTER01.lj.gnf.org (exch02.lj.gnf.org [172.25.10.20]) by ns1.gnf.org (8.12.6p2/8.12.3) with ESMTP id h33NTHZu052641; Thu, 3 Apr 2003 15:29:17 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: from roark.gnf.org ([172.25.24.15]) by EXCHCLUSTER01.lj.gnf.org with Microsoft SMTPSVC(5.0.2195.5329); Thu, 3 Apr 2003 15:29:19 -0800 Received: from roark.gnf.org (localhost [127.0.0.1]) by roark.gnf.org (8.12.9/8.12.9) with ESMTP id h33NTINB086304; Thu, 3 Apr 2003 15:29:18 -0800 (PST) (envelope-from gtetlow@gnf.org) Received: (from gtetlow@localhost) by roark.gnf.org (8.12.9/8.12.9/Submit) id h33NTDkl086303; Thu, 3 Apr 2003 15:29:13 -0800 (PST) Date: Thu, 3 Apr 2003 15:29:13 -0800 From: Gordon Tetlow To: Darren Reed Message-ID: <20030403232913.GU69100@roark.gnf.org> References: <20030402194821.C33692A8A5@canning.wemm.org> <200304031312.XAA13954@avalon.reed.wattle.id.au> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="iiZKCn1f/U0ES2iY" Content-Disposition: inline In-Reply-To: <200304031312.XAA13954@avalon.reed.wattle.id.au> User-Agent: Mutt/1.4i X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-OriginalArrivalTime: 03 Apr 2003 23:29:19.0860 (UTC) FILETIME=[D9C6EB40:01C2FA38] cc: src-committers@FreeBSD.org cc: "Matthew N. Dodd" cc: Peter Wemm cc: cvs-src@FreeBSD.org cc: Alexander Leidinger cc: cvs-all@FreeBSD.org Subject: Re: Proposal regarding the RFC 3514 handling X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 23:29:21 -0000 --iiZKCn1f/U0ES2iY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2003 at 11:12:39PM +1000, Darren Reed wrote: > In some email I received from Peter Wemm, sie wrote: > [...] > > On the other hand, we have so much cruft in the ip input/output code pa= ths > > (2 or 3 different packet filter hooks etc), this is tiny by comparison. >=20 > Now that April 1 is far behind, I'll mention that I've been looking > at ways to amalgamate the mechanisms used by ipfw/ipfilter to address > this problem. Without being insulting, my 5 second grab on this is > that ipfw has grown like a tumour inside the ip stack with bits and > pieces hooked in here and there and everywhere (exageration.) That > is to say I think should be and can be better than they are. Not to mention that the last time I tried to build a kernel without INET, all the errors seemed to be a result of ipfw (iirc, this was a long time ago, it might be fixed now). -gordon --iiZKCn1f/U0ES2iY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jMPJRu2t9DV9ZfsRAnTFAKDLKX5/m4gKYaaTGyTW5QVkO2bTgwCeLdpK VymG9dpsGro7UXlWAaECVr8= =r5IJ -----END PGP SIGNATURE----- --iiZKCn1f/U0ES2iY-- From owner-cvs-all@FreeBSD.ORG Thu Apr 3 15:44:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 625AF37B401; Thu, 3 Apr 2003 15:44:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F094F43FAF; Thu, 3 Apr 2003 15:44:35 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h33NiZ0U003463; Thu, 3 Apr 2003 15:44:35 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h33NiZ3d003462; Thu, 3 Apr 2003 15:44:35 -0800 (PST) Message-Id: <200304032344.h33NiZ3d003462@repoman.freebsd.org> From: Jake Burkholder Date: Thu, 3 Apr 2003 15:44:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 locore.s mem.c pmap.c src/sys/i386/include pmap.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 23:44:36 -0000 jake 2003/04/03 15:44:35 PST FreeBSD src repository Modified files: sys/i386/i386 locore.s mem.c pmap.c sys/i386/include pmap.h Log: - Removed APTD and associated macros, it is no longer used. BANG BANG BANG etc. Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.171 +0 -16 src/sys/i386/i386/locore.s 1.106 +0 -2 src/sys/i386/i386/mem.c 1.403 +2 -5 src/sys/i386/i386/pmap.c 1.95 +7 -9 src/sys/i386/include/pmap.h From owner-cvs-all@FreeBSD.ORG Thu Apr 3 15:49:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0C7537B407 for ; Thu, 3 Apr 2003 15:49:07 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 8ACF243FAF for ; Thu, 3 Apr 2003 15:49:06 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 15217 invoked by uid 1000); 3 Apr 2003 23:49:08 -0000 Date: Thu, 3 Apr 2003 15:49:08 -0800 (PST) From: Nate Lawson To: Poul-Henning Kamp In-Reply-To: <20030403085821.AD2A537B407@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 23:49:08 -0000 On Thu, 3 Apr 2003, Poul-Henning Kamp wrote: > Modified files: > sys/sys endian.h > share/man/man9 byteorder.9 > Log: > Add inline functions {be,le}{16,32,64}{enc,dec}() for encoding decoding > into byte strings of unknown alignment. > > Revision Changes Path > 1.3 +39 -1 src/share/man/man9/byteorder.9 > 1.3 +108 -0 src/sys/sys/endian.h This is really great! I have wanted this for a while. Just a few questions. Have the standards folks had a look at the API? Second, it appears the *enc functions have args in reverse order (void *, uint32_t for example). Any thoughts on bcopy vs. memcpy ordering of args? -Nate From owner-cvs-all@FreeBSD.ORG Thu Apr 3 15:56:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB3CA37B401; Thu, 3 Apr 2003 15:56:28 -0800 (PST) Received: from espresso.bsdmike.org (espresso.bsdmike.org [65.39.129.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C9DD43FBF; Thu, 3 Apr 2003 15:56:28 -0800 (PST) (envelope-from mike@espresso.bsdmike.org) Received: by espresso.bsdmike.org (Postfix, from userid 1002) id A4D829C5B; Thu, 3 Apr 2003 18:42:29 -0500 (EST) Date: Thu, 3 Apr 2003 18:42:29 -0500 From: Mike Barcroft To: Nate Lawson Message-ID: <20030403184229.D18209@espresso.bsdmike.org> References: <20030403085821.AD2A537B407@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from nate@root.org on Thu, Apr 03, 2003 at 03:49:08PM -0800 Organization: The FreeBSD Project cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Poul-Henning Kamp cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 23:56:29 -0000 Nate Lawson writes: > On Thu, 3 Apr 2003, Poul-Henning Kamp wrote: > > Modified files: > > sys/sys endian.h > > share/man/man9 byteorder.9 > > Log: > > Add inline functions {be,le}{16,32,64}{enc,dec}() for encoding decoding > > into byte strings of unknown alignment. > > > > Revision Changes Path > > 1.3 +39 -1 src/share/man/man9/byteorder.9 > > 1.3 +108 -0 src/sys/sys/endian.h > > This is really great! I have wanted this for a while. Just a few > questions. Have the standards folks had a look at the API? Second, it > appears the *enc functions have args in reverse order (void *, uint32_t > for example). Any thoughts on bcopy vs. memcpy ordering of args? There aren't any standards that have these type of functions. The closest thing is ntohl() and friends. We copied OpenBSD for the function and header names, so it might be worthwhile seeing if they want to provide these functions too. Best regards, Mike Barcroft From owner-cvs-all@FreeBSD.ORG Thu Apr 3 16:16:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C999B37B407; Thu, 3 Apr 2003 16:16:10 -0800 (PST) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25A1D43FBF; Thu, 3 Apr 2003 16:16:05 -0800 (PST) (envelope-from sam@errno.com) Received: from melange (melange.errno.com [66.127.85.82]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.9) with ESMTP id h340G4WJ060340 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 3 Apr 2003 16:16:04 -0800 (PST) (envelope-from sam@errno.com) Message-ID: <031101c2fa3f$619fee30$52557f42@errno.com> From: "Sam Leffler" To: "Mike Barcroft" , "Nate Lawson" References: <20030403085821.AD2A537B407@hub.freebsd.org> <20030403184229.D18209@espresso.bsdmike.org> Date: Thu, 3 Apr 2003 16:16:04 -0800 Organization: Errno Consulting MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4920.2300 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4920.2300 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Poul-Henning Kamp cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 00:16:12 -0000 > There aren't any standards that have these type of functions. The > closest thing is ntohl() and friends. We copied OpenBSD for the > function and header names, so it might be worthwhile seeing if they > want to provide these functions too. A good place to take this is bsdi-api-discuss@wasabisystems.com. Sam From owner-cvs-all@FreeBSD.ORG Thu Apr 3 16:36:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 487E237B401; Thu, 3 Apr 2003 16:36:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9D0B43FB1; Thu, 3 Apr 2003 16:36:47 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h340al0U007560; Thu, 3 Apr 2003 16:36:47 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h340alw7007559; Thu, 3 Apr 2003 16:36:47 -0800 (PST) Message-Id: <200304040036.h340alw7007559@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 3 Apr 2003 16:36:47 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/pear-Log Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 00:36:48 -0000 edwin 2003/04/03 16:36:47 PST FreeBSD ports repository Modified files: sysutils/pear-Log Makefile distinfo Log: sysutils/pear-Log: upgrading to 1.6.1. Upgrading pear-Log to 1.6.1. It fixes a typo that broke the Log_Observer class. PR: ports/50579 Submitted by: Thierry Thomas Revision Changes Path 1.7 +1 -1 ports/sysutils/pear-Log/Makefile 1.4 +1 -1 ports/sysutils/pear-Log/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 16:44:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80AF837B401; Thu, 3 Apr 2003 16:44:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C97E43FB1; Thu, 3 Apr 2003 16:44:17 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h340iG0U008109; Thu, 3 Apr 2003 16:44:16 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h340iGZn008108; Thu, 3 Apr 2003 16:44:16 -0800 (PST) Message-Id: <200304040044.h340iGZn008108@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 3 Apr 2003 16:44:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/bglibs Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 00:44:17 -0000 edwin 2003/04/03 16:44:16 PST FreeBSD ports repository Modified files: devel/bglibs Makefile distinfo pkg-plist Log: Unbreak devel/bglibs by upgrading to 1.008 - Update to 1.008 (also unbreaking the port due to unfetchable 1.007 distfile) - Remove USE_REINPLACE - patching in pre-build is no longer needed PR: ports/50560 Submitted by: Sergei Kolobov Revision Changes Path 1.2 +1 -5 ports/devel/bglibs/Makefile 1.2 +1 -1 ports/devel/bglibs/distinfo 1.2 +3 -0 ports/devel/bglibs/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 16:48:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F47337B401; Thu, 3 Apr 2003 16:48:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DD8843FD7; Thu, 3 Apr 2003 16:48:46 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h340mj0U013385; Thu, 3 Apr 2003 16:48:45 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h340mjt9013384; Thu, 3 Apr 2003 16:48:45 -0800 (PST) Message-Id: <200304040048.h340mjt9013384@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 3 Apr 2003 16:48:45 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/gubby Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 00:48:47 -0000 edwin 2003/04/03 16:48:45 PST FreeBSD ports repository Modified files: mail/gubby Makefile distinfo pkg-descr Log: [Maintainer Update]: mail/gubby Update to latest release. (which is 0.5.0) PR: ports/50561 Submitted by: Michael L. Hostbaek Revision Changes Path 1.3 +24 -4 ports/mail/gubby/Makefile 1.3 +1 -1 ports/mail/gubby/distinfo 1.2 +1 -1 ports/mail/gubby/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Apr 3 17:10:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EFA437B401; Thu, 3 Apr 2003 17:10:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEA1443F75; Thu, 3 Apr 2003 17:10:25 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h341AP0U015789; Thu, 3 Apr 2003 17:10:25 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h341APnE015788; Thu, 3 Apr 2003 17:10:25 -0800 (PST) Message-Id: <200304040110.h341APnE015788@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 3 Apr 2003 17:10:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin Makefile src/usr.bin/tconv Makefile quit.c tconv.1 tconv.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 01:10:26 -0000 tjr 2003/04/03 17:10:25 PST FreeBSD src repository Modified files: usr.bin Makefile Removed files: usr.bin/tconv Makefile quit.c tconv.1 tconv.c Log: G/C tconv: It is libmytinfo-dependent and has not compiled for 3+ years. Revision Changes Path 1.232 +0 -1 src/usr.bin/Makefile 1.7 +0 -12 src/usr.bin/tconv/Makefile (dead) 1.2 +0 -72 src/usr.bin/tconv/quit.c (dead) 1.18 +0 -170 src/usr.bin/tconv/tconv.1 (dead) 1.7 +0 -1384 src/usr.bin/tconv/tconv.c (dead) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 17:11:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41F2E37B401; Thu, 3 Apr 2003 17:11:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF57543FA3; Thu, 3 Apr 2003 17:11:28 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h341BS0U016354; Thu, 3 Apr 2003 17:11:28 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h341BStS016353; Thu, 3 Apr 2003 17:11:28 -0800 (PST) Message-Id: <200304040111.h341BStS016353@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 3 Apr 2003 17:11:28 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/finance Makefileports/finance/p5-Business-CreditCard Makefile ports/finance/p5-Business-OnlinePayment Makefile ports/finance/p5-Business-OnlinePayment-AuthorizeNetMakefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 01:11:29 -0000 edwin 2003/04/03 17:11:28 PST FreeBSD ports repository Modified files: finance Makefile finance/p5-Business-CreditCard Makefile finance/p5-Business-OnlinePayment Makefile finance/p5-Business-OnlinePayment-2CheckOut Makefile finance/p5-Business-OnlinePayment-AuthorizeNet Makefile finance/p5-Business-OnlinePayment-BankOfAmerica Makefile finance/p5-Business-OnlinePayment-Beanstream Makefile finance/p5-Business-OnlinePayment-Cardstream Makefile finance/p5-Business-OnlinePayment-Jettis Makefile finance/p5-Business-OnlinePayment-LinkPoint Makefile finance/p5-Business-OnlinePayment-MerchantCommerce Makefile finance/p5-Business-OnlinePayment-Network1Financial Makefile finance/p5-Business-OnlinePayment-PayConnect Makefile finance/p5-Business-OnlinePayment-PaymentsGateway Makefile finance/p5-Business-OnlinePayment-SurePay Makefile finance/p5-Business-OnlinePayment-TCLink Makefile finance/p5-Business-OnlinePayment-VirtualNet Makefile finance/p5-Business-OnlinePayment-eSec Makefile Log: move p5-Business-OnlinePayment from misc to finance PR: ports/50557 Submitted by: Erwin Lansing Revision Changes Path 1.9 +20 -0 ports/finance/Makefile 1.19 +1 -1 ports/finance/p5-Business-CreditCard/Makefile 1.5 +4 -6 ports/finance/p5-Business-OnlinePayment-2CheckOut/Makefile 1.6 +4 -6 ports/finance/p5-Business-OnlinePayment-AuthorizeNet/Makefile 1.6 +4 -6 ports/finance/p5-Business-OnlinePayment-BankOfAmerica/Makefile 1.6 +4 -6 ports/finance/p5-Business-OnlinePayment-Beanstream/Makefile 1.6 +4 -6 ports/finance/p5-Business-OnlinePayment-Cardstream/Makefile 1.4 +4 -6 ports/finance/p5-Business-OnlinePayment-Jettis/Makefile 1.6 +4 -6 ports/finance/p5-Business-OnlinePayment-LinkPoint/Makefile 1.2 +3 -5 ports/finance/p5-Business-OnlinePayment-MerchantCommerce/Makefile 1.4 +4 -6 ports/finance/p5-Business-OnlinePayment-Network1Financial/Makefile 1.4 +4 -6 ports/finance/p5-Business-OnlinePayment-PayConnect/Makefile 1.4 +4 -6 ports/finance/p5-Business-OnlinePayment-PaymentsGateway/Makefile 1.5 +4 -6 ports/finance/p5-Business-OnlinePayment-SurePay/Makefile 1.7 +4 -6 ports/finance/p5-Business-OnlinePayment-TCLink/Makefile 1.6 +4 -6 ports/finance/p5-Business-OnlinePayment-VirtualNet/Makefile 1.6 +4 -6 ports/finance/p5-Business-OnlinePayment-eSec/Makefile 1.6 +2 -4 ports/finance/p5-Business-OnlinePayment/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 17:13:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07EA137B401; Thu, 3 Apr 2003 17:13:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CDE643F93; Thu, 3 Apr 2003 17:13:40 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h341De0U016473; Thu, 3 Apr 2003 17:13:40 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h341Devq016472; Thu, 3 Apr 2003 17:13:40 -0800 (PST) Message-Id: <200304040113.h341Devq016472@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 3 Apr 2003 17:13:40 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports MOVED X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 01:13:41 -0000 edwin 2003/04/03 17:13:40 PST FreeBSD ports repository Modified files: . MOVED Log: move p5-Business-OnlinePayment from misc to finance PR: ports/50557 Submitted by: Erwin Lansing Revision Changes Path 1.88 +19 -1 ports/MOVED From owner-cvs-all@FreeBSD.ORG Thu Apr 3 17:15:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 945F637B401; Thu, 3 Apr 2003 17:15:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06B5F43FA3; Thu, 3 Apr 2003 17:15:24 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h341FN0U016562; Thu, 3 Apr 2003 17:15:23 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h341FN8B016561; Thu, 3 Apr 2003 17:15:23 -0800 (PST) Message-Id: <200304040115.h341FN8B016561@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 3 Apr 2003 17:15:23 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 01:15:25 -0000 edwin 2003/04/03 17:15:23 PST FreeBSD ports repository Modified files: . modules Log: move p5-Business-OnlinePayment from misc to finance PR: ports/50557 Submitted by: Erwin Lansing Revision Changes Path 1.6970 +17 -17 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 3 17:22:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 283DF37B401; Thu, 3 Apr 2003 17:22:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8229643F75; Thu, 3 Apr 2003 17:22:04 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h341M40U017496; Thu, 3 Apr 2003 17:22:04 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h341M4vE017495; Thu, 3 Apr 2003 17:22:04 -0800 (PST) Message-Id: <200304040122.h341M4vE017495@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 3 Apr 2003 17:22:04 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc Makefile ports/misc/p5-Business-CreditCard Makefile distinfo pkg-descr pkg-plist ports/misc/p5-Business-OnlinePayment Makefile distinfo pkg-descr... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 01:22:05 -0000 edwin 2003/04/03 17:22:04 PST FreeBSD ports repository Modified files: misc Makefile Removed files: misc/p5-Business-CreditCard Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-2CheckOut Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-AuthorizeNet Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-BankOfAmerica Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-Beanstream Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-Cardstream Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-Jettis Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-LinkPoint Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-MerchantCommerce Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-Network1Financial Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-PayConnect Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-PaymentsGateway Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-SurePay Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-TCLink Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-VirtualNet Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-WorldPay-Junior Makefile distinfo pkg-descr pkg-plist misc/p5-Business-OnlinePayment-eSec Makefile distinfo pkg-descr pkg-plist Log: move p5-Business-OnlinePayment from misc to finance PR: ports/50557 Submitted by: Erwin Lansing Revision Changes Path 1.545 +0 -18 ports/misc/Makefile 1.19 +0 -23 ports/misc/p5-Business-CreditCard/Makefile (dead) 1.6 +0 -1 ports/misc/p5-Business-CreditCard/distinfo (dead) 1.3 +0 -16 ports/misc/p5-Business-CreditCard/pkg-descr (dead) 1.5 +0 -5 ports/misc/p5-Business-CreditCard/pkg-plist (dead) 1.5 +0 -29 ports/misc/p5-Business-OnlinePayment-2CheckOut/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-2CheckOut/distinfo (dead) 1.2 +0 -3 ports/misc/p5-Business-OnlinePayment-2CheckOut/pkg-descr (dead) 1.2 +0 -5 ports/misc/p5-Business-OnlinePayment-2CheckOut/pkg-plist (dead) 1.6 +0 -29 ports/misc/p5-Business-OnlinePayment-AuthorizeNet/Makefile (dead) 1.3 +0 -1 ports/misc/p5-Business-OnlinePayment-AuthorizeNet/distinfo (dead) 1.2 +0 -5 ports/misc/p5-Business-OnlinePayment-AuthorizeNet/pkg-descr (dead) 1.3 +0 -6 ports/misc/p5-Business-OnlinePayment-AuthorizeNet/pkg-plist (dead) 1.6 +0 -28 ports/misc/p5-Business-OnlinePayment-BankOfAmerica/Makefile (dead) 1.3 +0 -1 ports/misc/p5-Business-OnlinePayment-BankOfAmerica/distinfo (dead) 1.2 +0 -4 ports/misc/p5-Business-OnlinePayment-BankOfAmerica/pkg-descr (dead) 1.3 +0 -6 ports/misc/p5-Business-OnlinePayment-BankOfAmerica/pkg-plist (dead) 1.6 +0 -29 ports/misc/p5-Business-OnlinePayment-Beanstream/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-Beanstream/distinfo (dead) 1.2 +0 -2 ports/misc/p5-Business-OnlinePayment-Beanstream/pkg-descr (dead) 1.3 +0 -6 ports/misc/p5-Business-OnlinePayment-Beanstream/pkg-plist (dead) 1.6 +0 -29 ports/misc/p5-Business-OnlinePayment-Cardstream/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-Cardstream/distinfo (dead) 1.2 +0 -3 ports/misc/p5-Business-OnlinePayment-Cardstream/pkg-descr (dead) 1.3 +0 -6 ports/misc/p5-Business-OnlinePayment-Cardstream/pkg-plist (dead) 1.4 +0 -29 ports/misc/p5-Business-OnlinePayment-Jettis/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-Jettis/distinfo (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-Jettis/pkg-descr (dead) 1.3 +0 -6 ports/misc/p5-Business-OnlinePayment-Jettis/pkg-plist (dead) 1.6 +0 -29 ports/misc/p5-Business-OnlinePayment-LinkPoint/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-LinkPoint/distinfo (dead) 1.2 +0 -4 ports/misc/p5-Business-OnlinePayment-LinkPoint/pkg-descr (dead) 1.3 +0 -6 ports/misc/p5-Business-OnlinePayment-LinkPoint/pkg-plist (dead) 1.2 +0 -27 ports/misc/p5-Business-OnlinePayment-MerchantCommerce/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-MerchantCommerce/distinfo (dead) 1.2 +0 -2 ports/misc/p5-Business-OnlinePayment-MerchantCommerce/pkg-descr (dead) 1.2 +0 -5 ports/misc/p5-Business-OnlinePayment-MerchantCommerce/pkg-plist (dead) 1.4 +0 -29 ports/misc/p5-Business-OnlinePayment-Network1Financial/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-Network1Financial/distinfo (dead) 1.2 +0 -3 ports/misc/p5-Business-OnlinePayment-Network1Financial/pkg-descr (dead) 1.3 +0 -6 ports/misc/p5-Business-OnlinePayment-Network1Financial/pkg-plist (dead) 1.4 +0 -29 ports/misc/p5-Business-OnlinePayment-PayConnect/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-PayConnect/distinfo (dead) 1.2 +0 -3 ports/misc/p5-Business-OnlinePayment-PayConnect/pkg-descr (dead) 1.3 +0 -6 ports/misc/p5-Business-OnlinePayment-PayConnect/pkg-plist (dead) 1.4 +0 -29 ports/misc/p5-Business-OnlinePayment-PaymentsGateway/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-PaymentsGateway/distinfo (dead) 1.2 +0 -2 ports/misc/p5-Business-OnlinePayment-PaymentsGateway/pkg-descr (dead) 1.3 +0 -6 ports/misc/p5-Business-OnlinePayment-PaymentsGateway/pkg-plist (dead) 1.5 +0 -28 ports/misc/p5-Business-OnlinePayment-SurePay/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-SurePay/distinfo (dead) 1.2 +0 -3 ports/misc/p5-Business-OnlinePayment-SurePay/pkg-descr (dead) 1.2 +0 -3 ports/misc/p5-Business-OnlinePayment-SurePay/pkg-plist (dead) 1.7 +0 -29 ports/misc/p5-Business-OnlinePayment-TCLink/Makefile (dead) 1.3 +0 -1 ports/misc/p5-Business-OnlinePayment-TCLink/distinfo (dead) 1.2 +0 -3 ports/misc/p5-Business-OnlinePayment-TCLink/pkg-descr (dead) 1.3 +0 -6 ports/misc/p5-Business-OnlinePayment-TCLink/pkg-plist (dead) 1.6 +0 -33 ports/misc/p5-Business-OnlinePayment-VirtualNet/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-VirtualNet/distinfo (dead) 1.2 +0 -4 ports/misc/p5-Business-OnlinePayment-VirtualNet/pkg-descr (dead) 1.3 +0 -6 ports/misc/p5-Business-OnlinePayment-VirtualNet/pkg-plist (dead) 1.5 +0 -28 ports/misc/p5-Business-OnlinePayment-WorldPay-Junior/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-WorldPay-Junior/distinfo (dead) 1.2 +0 -7 ports/misc/p5-Business-OnlinePayment-WorldPay-Junior/pkg-descr (dead) 1.2 +0 -17 ports/misc/p5-Business-OnlinePayment-WorldPay-Junior/pkg-plist (dead) 1.6 +0 -29 ports/misc/p5-Business-OnlinePayment-eSec/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment-eSec/distinfo (dead) 1.2 +0 -3 ports/misc/p5-Business-OnlinePayment-eSec/pkg-descr (dead) 1.3 +0 -6 ports/misc/p5-Business-OnlinePayment-eSec/pkg-plist (dead) 1.6 +0 -28 ports/misc/p5-Business-OnlinePayment/Makefile (dead) 1.2 +0 -1 ports/misc/p5-Business-OnlinePayment/distinfo (dead) 1.2 +0 -9 ports/misc/p5-Business-OnlinePayment/pkg-descr (dead) 1.5 +0 -9 ports/misc/p5-Business-OnlinePayment/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 17:31:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 470FD37B401; Thu, 3 Apr 2003 17:31:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1E3143FAF; Thu, 3 Apr 2003 17:30:59 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h341Ux0U018177; Thu, 3 Apr 2003 17:30:59 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h341Uxqs018176; Thu, 3 Apr 2003 17:30:59 -0800 (PST) Message-Id: <200304040130.h341Uxqs018176@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 3 Apr 2003 17:30:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/finance/p5-Business-WorldPay-Junior Makefiledistinfopatch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 01:31:00 -0000 edwin 2003/04/03 17:30:59 PST FreeBSD ports repository Modified files: finance/p5-Business-WorldPay-Junior Makefile distinfo pkg-descr pkg-plist Added files: finance/p5-Business-WorldPay-Junior/files patch-Makefile.PL Log: Security update to p5-Business-OnlinePayment-WorldPay-Junior-1.03 In the words of the author: "Please be advised that I have today made an important security update to the module to fix a serious, remotely exploitable, bug in the module. I have also renamed the module today to avoid namespace conflicts with the Business::OnlinePayment API." Requested by: Jason Clifford (author) PR: ports/50017 Submitted by: Erwin Lansing Revision Changes Path 1.5 +14 -7 ports/finance/p5-Business-WorldPay-Junior/Makefile 1.2 +1 -1 ports/finance/p5-Business-WorldPay-Junior/distinfo 1.1 +13 -0 ports/finance/p5-Business-WorldPay-Junior/files/patch-Makefile.PL (new) 1.2 +2 -0 ports/finance/p5-Business-WorldPay-Junior/pkg-descr 1.2 +20 -17 ports/finance/p5-Business-WorldPay-Junior/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 17:32:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6F2E37B401; Thu, 3 Apr 2003 17:32:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E2D843FBD; Thu, 3 Apr 2003 17:32:06 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h341W60U018248; Thu, 3 Apr 2003 17:32:06 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h341W67j018247; Thu, 3 Apr 2003 17:32:06 -0800 (PST) Message-Id: <200304040132.h341W67j018247@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 3 Apr 2003 17:32:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/libdvbpsi Makefile distinfo pkg-descr pkg-plist ports/multimedia/libdvbpsi/files patch-ltmain.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 01:32:07 -0000 lioux 2003/04/03 17:32:06 PST FreeBSD ports repository Added files: multimedia/libdvbpsi Makefile distinfo pkg-descr pkg-plist multimedia/libdvbpsi/files patch-ltmain.sh Log: o Repo copy move special case. Background and methodology follows: - In the past, this port was incorrectly added to multimedia category even though it already existed in graphics category. Therefore, it was removed. - Now, this port is being moved to multimedia category since it should reside there. However, we cannot do the usual repo copy since there are repo histories in both categories. - What to do? 1) 'cvs checkout' both the graphics and the multimedia versions of the port. 2) 'cp' copy the files from the graphics version to the multimedia one. 3) 'cvs commit' the copied version from graphics with a long commit message explaining the situation o Appropriately update dependency references from graphics to multimedia category Port creator: ijlao Date created: Aug 8, 2002 Revision Changes Path 1.3 +21 -0 ports/multimedia/libdvbpsi/Makefile (new) 1.3 +1 -0 ports/multimedia/libdvbpsi/distinfo (new) 1.3 +15 -0 ports/multimedia/libdvbpsi/files/patch-ltmain.sh (new) 1.3 +9 -0 ports/multimedia/libdvbpsi/pkg-descr (new) 1.3 +24 -0 ports/multimedia/libdvbpsi/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 17:38:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EF8B37B401; Thu, 3 Apr 2003 17:38:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D7A243FA3; Thu, 3 Apr 2003 17:38:41 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h341cf0U019137; Thu, 3 Apr 2003 17:38:41 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h341ceXL019136; Thu, 3 Apr 2003 17:38:40 -0800 (PST) Message-Id: <200304040138.h341ceXL019136@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 3 Apr 2003 17:38:40 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/avidemux Makefileports/multimedia/avinfo Makefile ports/multimedia/camserv Makefile ports/multimedia/dtv Makefile ports/multimedia/dumpmpeg Makefile... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 01:38:42 -0000 lioux 2003/04/03 17:38:40 PST FreeBSD ports repository Modified files: multimedia/avidemux Makefile multimedia/avinfo Makefile multimedia/camserv Makefile multimedia/dtv Makefile multimedia/dumpmpeg Makefile multimedia/enjoympeg Makefile multimedia/fxtv Makefile multimedia/gopchop Makefile multimedia/gxanim Makefile multimedia/libfame Makefile multimedia/libquicktime Makefile multimedia/mmsclient Makefile multimedia/mpeg Makefile multimedia/mpeg2codec Makefile multimedia/mpeg2play Makefile multimedia/mpeg_encode Makefile multimedia/mpeg_play Makefile multimedia/mpeg_stat Makefile multimedia/mpegedit Makefile multimedia/mpgtx Makefile multimedia/mplex Makefile multimedia/mtv Makefile multimedia/netshow Makefile multimedia/ppm2fli Makefile multimedia/smpeg Makefile multimedia/smpeg-xmms Makefile multimedia/splitmpg Makefile multimedia/tkxanim Makefile multimedia/totem Makefile multimedia/transcode Makefile multimedia/vlc Makefile multimedia/xanim Makefile multimedia/xawtv Makefile multimedia/xine_d4d_plugin Makefile multimedia/xine_d5d_plugin Makefile multimedia/xmovie Makefile multimedia/xmps Makefile multimedia/xtheater Makefile Log: After repo copy from graphics category to newly create multimedia one, update all appropriate references: *_DEPENDS, CATEGORIES Repo copied by: cvs (joe) Approved by: portmgr (self & no objections) Revision Changes Path 1.11 +2 -2 ports/multimedia/avidemux/Makefile 1.5 +1 -1 ports/multimedia/avinfo/Makefile 1.5 +1 -1 ports/multimedia/camserv/Makefile 1.3 +1 -1 ports/multimedia/dtv/Makefile 1.5 +2 -2 ports/multimedia/dumpmpeg/Makefile 1.5 +2 -2 ports/multimedia/enjoympeg/Makefile 1.37 +3 -3 ports/multimedia/fxtv/Makefile 1.9 +1 -1 ports/multimedia/gopchop/Makefile 1.10 +2 -2 ports/multimedia/gxanim/Makefile 1.8 +1 -1 ports/multimedia/libfame/Makefile 1.10 +1 -1 ports/multimedia/libquicktime/Makefile 1.3 +1 -1 ports/multimedia/mmsclient/Makefile 1.5 +1 -1 ports/multimedia/mpeg/Makefile 1.9 +1 -1 ports/multimedia/mpeg2codec/Makefile 1.10 +1 -1 ports/multimedia/mpeg2play/Makefile 1.19 +1 -1 ports/multimedia/mpeg_encode/Makefile 1.20 +1 -1 ports/multimedia/mpeg_play/Makefile 1.12 +1 -1 ports/multimedia/mpeg_stat/Makefile 1.25 +1 -1 ports/multimedia/mpegedit/Makefile 1.11 +1 -1 ports/multimedia/mpgtx/Makefile 1.12 +1 -1 ports/multimedia/mplex/Makefile 1.12 +1 -1 ports/multimedia/mtv/Makefile 1.14 +1 -1 ports/multimedia/netshow/Makefile 1.13 +1 -1 ports/multimedia/ppm2fli/Makefile 1.11 +2 -2 ports/multimedia/smpeg-xmms/Makefile 1.24 +1 -1 ports/multimedia/smpeg/Makefile 1.15 +1 -1 ports/multimedia/splitmpg/Makefile 1.5 +2 -2 ports/multimedia/tkxanim/Makefile 1.8 +1 -1 ports/multimedia/totem/Makefile 1.20 +2 -2 ports/multimedia/transcode/Makefile 1.21 +1 -1 ports/multimedia/vlc/Makefile 1.34 +1 -1 ports/multimedia/xanim/Makefile 1.23 +2 -2 ports/multimedia/xawtv/Makefile 1.12 +1 -1 ports/multimedia/xine_d4d_plugin/Makefile 1.13 +1 -1 ports/multimedia/xine_d5d_plugin/Makefile 1.20 +1 -1 ports/multimedia/xmovie/Makefile 1.18 +1 -1 ports/multimedia/xmps/Makefile 1.10 +2 -2 ports/multimedia/xtheater/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 18:12:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1059337B401; Thu, 3 Apr 2003 18:12:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6916843F75; Thu, 3 Apr 2003 18:12:56 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h342Cu0U022360; Thu, 3 Apr 2003 18:12:56 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h342Cuju022359; Thu, 3 Apr 2003 18:12:56 -0800 (PST) Message-Id: <200304040212.h342Cuju022359@repoman.freebsd.org> From: Marcel Moolenaar Date: Thu, 3 Apr 2003 18:12:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/ia64/skiload conf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 02:12:57 -0000 marcel 2003/04/03 18:12:56 PST FreeBSD src repository Modified files: sys/boot/ia64/skiload conf.c Log: Remove `#ifndef lint' left behind after previous change. Revision Changes Path 1.4 +0 -1 src/sys/boot/ia64/skiload/conf.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 18:24:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B165F37B404; Thu, 3 Apr 2003 18:24:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB3B943FE0; Thu, 3 Apr 2003 18:24:42 -0800 (PST) (envelope-from petef@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h342Og0U023047; Thu, 3 Apr 2003 18:24:42 -0800 (PST) (envelope-from petef@repoman.freebsd.org) Received: (from petef@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h342Ogmf023046; Thu, 3 Apr 2003 18:24:42 -0800 (PST) Message-Id: <200304040224.h342Ogmf023046@repoman.freebsd.org> From: Pete Fritchman Date: Thu, 3 Apr 2003 18:24:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/dailystrips Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 02:24:45 -0000 petef 2003/04/03 18:24:42 PST FreeBSD ports repository Modified files: deskutils/dailystrips Makefile distinfo Log: Update to 1.0.27. Revision Changes Path 1.12 +1 -1 ports/deskutils/dailystrips/Makefile 1.10 +1 -1 ports/deskutils/dailystrips/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 18:27:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15C2C37B401; Thu, 3 Apr 2003 18:27:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA97C43F85; Thu, 3 Apr 2003 18:27:05 -0800 (PST) (envelope-from petef@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h342R50U023193; Thu, 3 Apr 2003 18:27:05 -0800 (PST) (envelope-from petef@repoman.freebsd.org) Received: (from petef@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h342R5DT023192; Thu, 3 Apr 2003 18:27:05 -0800 (PST) Message-Id: <200304040227.h342R5DT023192@repoman.freebsd.org> From: Pete Fritchman Date: Thu, 3 Apr 2003 18:27:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/jlj Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 02:27:06 -0000 petef 2003/04/03 18:27:05 PST FreeBSD ports repository Modified files: deskutils/jlj Makefile distinfo Log: Update to 2.5. Revision Changes Path 1.8 +1 -1 ports/deskutils/jlj/Makefile 1.6 +1 -1 ports/deskutils/jlj/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 18:35:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD44D37B401; Thu, 3 Apr 2003 18:35:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6139443F75; Thu, 3 Apr 2003 18:35:57 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h342Zv0U023835; Thu, 3 Apr 2003 18:35:57 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h342ZuRt023834; Thu, 3 Apr 2003 18:35:56 -0800 (PST) Message-Id: <200304040235.h342ZuRt023834@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 3 Apr 2003 18:35:56 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 02:35:58 -0000 lioux 2003/04/03 18:35:56 PST FreeBSD ports repository Modified files: . modules Log: Update modules after repo copy from graphics to multimedia category of avidemux avinfo camserv dtv dumpmpeg enjoympeg fxtv gopchop gxanim libdvbpsi libfame libquicktime mmsclient mpeg2codec mpeg2play mpeg mpeg_encode mpeg_play mpeg_stat mpegedit mpgtx mplex mtv netshow ppm2fli smpeg-xmms smpeg splitmpg tkxanim totem transcode vlc xanim xawtv xine_d4d_plugin xine_d5d_plugin xmovie xmps xtheater Repo copied by: cvs (joe) Approved by: portmgr (self & no objections) Revision Changes Path 1.6971 +40 -40 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 3 18:36:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEED537B401; Thu, 3 Apr 2003 18:36:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A77A43FDD; Thu, 3 Apr 2003 18:36:58 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h342aw0U023907; Thu, 3 Apr 2003 18:36:58 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h342aw6g023906; Thu, 3 Apr 2003 18:36:58 -0800 (PST) Message-Id: <200304040236.h342aw6g023906@repoman.freebsd.org> From: Hye-Shik Chang Date: Thu, 3 Apr 2003 18:36:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/apache2 Makefile distinfo pkg-plist patch-srclib:apr:include:apr.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 02:36:59 -0000 perky 2003/04/03 18:36:58 PST FreeBSD ports repository Modified files: www/apache2 Makefile distinfo pkg-plist www/apache2/files patch-configure Removed files: www/apache2/files patch-srclib:apr:include:apr.h Log: Update to 2.0.45. This update fixes a DDOS vulnerability. PR: 50564 [1] Submitted by: Cy Schubert , delphij@hotmail.com [1] Requested by: many Revision Changes Path 1.140 +1 -1 ports/www/apache2/Makefile 1.55 +1 -1 ports/www/apache2/distinfo 1.8 +12 -12 ports/www/apache2/files/patch-configure 1.2 +0 -17 ports/www/apache2/files/patch-srclib:apr:include:apr.h (dead) 1.52 +37 -8 ports/www/apache2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 18:37:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C84937B47A; Thu, 3 Apr 2003 18:37:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED8DE43F75; Thu, 3 Apr 2003 18:37:02 -0800 (PST) (envelope-from petef@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h342b20U023945; Thu, 3 Apr 2003 18:37:02 -0800 (PST) (envelope-from petef@repoman.freebsd.org) Received: (from petef@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h342b2Tc023944; Thu, 3 Apr 2003 18:37:02 -0800 (PST) Message-Id: <200304040237.h342b2Tc023944@repoman.freebsd.org> From: Pete Fritchman Date: Thu, 3 Apr 2003 18:37:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/rvi Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 02:37:04 -0000 petef 2003/04/03 18:37:02 PST FreeBSD ports repository Modified files: devel/rvi Makefile pkg-descr Log: The author's site seems to have disappeared. Use a local mirror for now. Revision Changes Path 1.8 +3 -1 ports/devel/rvi/Makefile 1.3 +0 -2 ports/devel/rvi/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Apr 3 18:38:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F2B137B401; Thu, 3 Apr 2003 18:38:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8822743FBD; Thu, 3 Apr 2003 18:38:27 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h342cR0U024000; Thu, 3 Apr 2003 18:38:27 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h342cRxL023999; Thu, 3 Apr 2003 18:38:27 -0800 (PST) Message-Id: <200304040238.h342cRxL023999@repoman.freebsd.org> From: Hye-Shik Chang Date: Thu, 3 Apr 2003 18:38:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/apache2/files patch-srclib:apr-util:config.layout patch-srclib:apr:config.layout X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 02:38:28 -0000 perky 2003/04/03 18:38:27 PST FreeBSD ports repository Added files: www/apache2/files patch-srclib:apr-util:config.layout patch-srclib:apr:config.layout Log: Add missed files on the previous commit. Revision Changes Path 1.1 +10 -0 ports/www/apache2/files/patch-srclib:apr-util:config.layout (new) 1.1 +10 -0 ports/www/apache2/files/patch-srclib:apr:config.layout (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 18:45:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57F7437B401; Thu, 3 Apr 2003 18:45:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EADCF43FB1; Thu, 3 Apr 2003 18:45:05 -0800 (PST) (envelope-from petef@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h342j50U024594; Thu, 3 Apr 2003 18:45:05 -0800 (PST) (envelope-from petef@repoman.freebsd.org) Received: (from petef@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h342j5XA024593; Thu, 3 Apr 2003 18:45:05 -0800 (PST) Message-Id: <200304040245.h342j5XA024593@repoman.freebsd.org> From: Pete Fritchman Date: Thu, 3 Apr 2003 18:45:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/tdl Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 02:45:06 -0000 petef 2003/04/03 18:45:05 PST FreeBSD ports repository Modified files: devel/tdl Makefile distinfo Log: Update to 1.3. Revision Changes Path 1.8 +2 -2 ports/devel/tdl/Makefile 1.5 +1 -1 ports/devel/tdl/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 18:51:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6A6D37B401; Thu, 3 Apr 2003 18:51:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7662B43F85; Thu, 3 Apr 2003 18:51:15 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h342pF0U025146; Thu, 3 Apr 2003 18:51:15 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h342pFtM025145; Thu, 3 Apr 2003 18:51:15 -0800 (PST) Message-Id: <200304040251.h342pFtM025145@repoman.freebsd.org> From: Hye-Shik Chang Date: Thu, 3 Apr 2003 18:51:15 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/pyrex Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 02:51:16 -0000 perky 2003/04/03 18:51:15 PST FreeBSD ports repository Modified files: devel/pyrex Makefile distinfo Log: Update to 0.6.1 Revision Changes Path 1.12 +1 -1 ports/devel/pyrex/Makefile 1.10 +1 -1 ports/devel/pyrex/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 18:52:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D342337B401; Thu, 3 Apr 2003 18:52:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7224443FAF; Thu, 3 Apr 2003 18:52:24 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h342qO0U025196; Thu, 3 Apr 2003 18:52:24 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h342qOhs025195; Thu, 3 Apr 2003 18:52:24 -0800 (PST) Message-Id: <200304040252.h342qOhs025195@repoman.freebsd.org> From: Hye-Shik Chang Date: Thu, 3 Apr 2003 18:52:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/scons Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 02:52:25 -0000 perky 2003/04/03 18:52:24 PST FreeBSD ports repository Modified files: devel/scons Makefile distinfo Log: Update to 0.13 Revision Changes Path 1.12 +1 -1 ports/devel/scons/Makefile 1.9 +1 -1 ports/devel/scons/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 19:39:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF6A037B401; Thu, 3 Apr 2003 19:39:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D37E43FBD; Thu, 3 Apr 2003 19:39:10 -0800 (PST) (envelope-from seanc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h343dA0U029855; Thu, 3 Apr 2003 19:39:10 -0800 (PST) (envelope-from seanc@repoman.freebsd.org) Received: (from seanc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h343dA6u029854; Thu, 3 Apr 2003 19:39:10 -0800 (PST) Message-Id: <200304040339.h343dA6u029854@repoman.freebsd.org> From: Sean Chittenden Date: Thu, 3 Apr 2003 19:39:10 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/developers-handbook/tools chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 03:39:11 -0000 seanc 2003/04/03 19:39:10 PST FreeBSD doc repository Modified files: en_US.ISO8859-1/books/developers-handbook/tools chapter.sgml Log: Small whitespace fix to improve readability of the lisp code in the .emacs example. Revision Changes Path 1.30 +2 -3 doc/en_US.ISO8859-1/books/developers-handbook/tools/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 19:49:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53AB537B401; Thu, 3 Apr 2003 19:49:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E710B43F85; Thu, 3 Apr 2003 19:49:08 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h343n80U030806; Thu, 3 Apr 2003 19:49:08 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h343n8s5030805; Thu, 3 Apr 2003 19:49:08 -0800 (PST) Message-Id: <200304040349.h343n8s5030805@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 3 Apr 2003 19:49:08 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/4.8R Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 03:49:09 -0000 bmah 2003/04/03 19:49:08 PST FreeBSD doc repository Modified files: en/releases/4.8R Makefile Log: Connect 4.8-RELEASE documentation to the Web build. Revision Changes Path 1.3 +5 -2 www/en/releases/4.8R/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 20:07:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 276AD37B401; Thu, 3 Apr 2003 20:07:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C44B543FAF; Thu, 3 Apr 2003 20:07:16 -0800 (PST) (envelope-from billf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3447G0U033580; Thu, 3 Apr 2003 20:07:16 -0800 (PST) (envelope-from billf@repoman.freebsd.org) Received: (from billf@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3447GYW033579; Thu, 3 Apr 2003 20:07:16 -0800 (PST) Message-Id: <200304040407.h3447GYW033579@repoman.freebsd.org> From: Bill Fumerola Date: Thu, 3 Apr 2003 20:07:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/flow-tools Makefile distinfo pkg-plist ports/net/flow-tools/files patch-Makefile patch-configs_Makefile patch-configure patch-ftpaths.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 04:07:17 -0000 billf 2003/04/03 20:07:16 PST FreeBSD ports repository Modified files: net/flow-tools Makefile distinfo pkg-plist net/flow-tools/files patch-configs_Makefile patch-configure patch-ftpaths.h Removed files: net/flow-tools/files patch-Makefile Log: upgrade to 0.66, takeover maintainership Approved by: maintainer Revision Changes Path 1.9 +7 -8 ports/net/flow-tools/Makefile 1.6 +1 -1 ports/net/flow-tools/distinfo 1.2 +0 -19 ports/net/flow-tools/files/patch-Makefile (dead) 1.3 +12 -12 ports/net/flow-tools/files/patch-configs_Makefile 1.3 +10 -15 ports/net/flow-tools/files/patch-configure 1.4 +51 -22 ports/net/flow-tools/files/patch-ftpaths.h 1.6 +11 -5 ports/net/flow-tools/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 20:16:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B21337B401; Thu, 3 Apr 2003 20:16:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A66C43F85; Thu, 3 Apr 2003 20:16:07 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h344G60U034483; Thu, 3 Apr 2003 20:16:06 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h344G64Z034482; Thu, 3 Apr 2003 20:16:06 -0800 (PST) Message-Id: <200304040416.h344G64Z034482@repoman.freebsd.org> From: Warner Losh Date: Thu, 3 Apr 2003 20:16:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libncp ncpl_conn.c ncpl_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 04:16:07 -0000 imp 2003/04/03 20:16:06 PST FreeBSD src repository Modified files: lib/libncp ncpl_conn.c ncpl_subr.c Log: No need to have ifdef < FreeBSD 4.0-current in here. Remove it to avoid false positive while searching for __FreeBSD_version abuse. Revision Changes Path 1.7 +1 -9 src/lib/libncp/ncpl_conn.c 1.8 +0 -4 src/lib/libncp/ncpl_subr.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 20:17:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF0EE37B401; Thu, 3 Apr 2003 20:17:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60DC243F3F; Thu, 3 Apr 2003 20:17:15 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h344HF0U034546; Thu, 3 Apr 2003 20:17:15 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h344HFAP034545; Thu, 3 Apr 2003 20:17:15 -0800 (PST) Message-Id: <200304040417.h344HFAP034545@repoman.freebsd.org> From: Warner Losh Date: Thu, 3 Apr 2003 20:17:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/make main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 04:17:16 -0000 imp 2003/04/03 20:17:15 PST FreeBSD src repository Modified files: usr.bin/make main.c Log: No need to check to see if we're running a version of FreeBSD 3.0 current or newer anymore. Revision Changes Path 1.82 +0 -3 src/usr.bin/make/main.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 20:39:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DA8D37B401; Thu, 3 Apr 2003 20:39:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B34C443F3F; Thu, 3 Apr 2003 20:39:29 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h344dT0U035850; Thu, 3 Apr 2003 20:39:29 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h344dTBV035849; Thu, 3 Apr 2003 20:39:29 -0800 (PST) Message-Id: <200304040439.h344dTBV035849@repoman.freebsd.org> From: Warner Losh Date: Thu, 3 Apr 2003 20:39:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/xargs xargs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 04:39:30 -0000 imp 2003/04/03 20:39:29 PST FreeBSD src repository Modified files: usr.bin/xargs xargs.c Log: Simplify compatibility ifdef. Revision Changes Path 1.49 +7 -4 src/usr.bin/xargs/xargs.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 20:49:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F2A037B401; Thu, 3 Apr 2003 20:49:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A18BA43F3F; Thu, 3 Apr 2003 20:49:37 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h344nb0U041668; Thu, 3 Apr 2003 20:49:37 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h344nbp2041667; Thu, 3 Apr 2003 20:49:37 -0800 (PST) Message-Id: <200304040449.h344nbp2041667@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 3 Apr 2003 20:49:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports LEGAL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 04:49:38 -0000 lioux 2003/04/03 20:49:37 PST FreeBSD ports repository Modified files: . LEGAL Log: Update location of ports after repo copy move from graphics to multimedia category ports/graphics/divx4linux --> ports/multimedia/linux-divx4linux ports/graphics/mplayer --> ports/multimedia/mplayer ports/graphics/netshow --> ports/multimedia/netshow ports/graphics/win32-codecs --> ports/multimedia/win32-codecs Revision Changes Path 1.277 +5 -5 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Thu Apr 3 20:55:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A38CF37B401; Thu, 3 Apr 2003 20:55:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C25243FB1; Thu, 3 Apr 2003 20:55:15 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h344tF0U042231; Thu, 3 Apr 2003 20:55:15 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h344tEUP042230; Thu, 3 Apr 2003 20:55:14 -0800 (PST) Message-Id: <200304040455.h344tEUP042230@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 20:55:14 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/guile Makefile ports/lang/guile/files patch-libguile_numbers.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 04:55:16 -0000 marcus 2003/04/03 20:55:14 PST FreeBSD ports repository Modified files: lang/guile Makefile Added files: lang/guile/files patch-libguile_numbers.c Log: Work around what I believe to be a broken implementation of isfinite() in -CURRENT that was causing a numerical overflow in apps such as GnuCash. PR: 50089 Revision Changes Path 1.38 +1 -1 ports/lang/guile/Makefile 1.1 +22 -0 ports/lang/guile/files/patch-libguile_numbers.c (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 20:58:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FA3837B401; Thu, 3 Apr 2003 20:58:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF99743FA3; Thu, 3 Apr 2003 20:58:31 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h344wV0U042459; Thu, 3 Apr 2003 20:58:31 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h344wVAC042458; Thu, 3 Apr 2003 20:58:31 -0800 (PST) Message-Id: <200304040458.h344wVAC042458@repoman.freebsd.org> From: Yen-Ming Lee Date: Thu, 3 Apr 2003 20:58:31 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/scilab Makefile distinfo pkg-plist ports/math/scilab/files patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 04:58:33 -0000 leeym 2003/04/03 20:58:31 PST FreeBSD ports repository Modified files: math/scilab Makefile distinfo pkg-plist math/scilab/files patch-ay patch-az Added files: math/scilab/files patch-ba Removed files: math/scilab/files patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar patch-as patch-at patch-au patch-av patch-aw patch-ax Log: upgrate to scilab 2.7 PR: 50219 and 50221 Submitted by: Jean-Sebastien Roy Revision Changes Path 1.16 +9 -61 ports/math/scilab/Makefile 1.5 +1 -1 ports/math/scilab/distinfo 1.4 +0 -11 ports/math/scilab/files/patch-aa (dead) 1.5 +0 -43 ports/math/scilab/files/patch-ab (dead) 1.4 +0 -33 ports/math/scilab/files/patch-ac (dead) 1.4 +0 -11 ports/math/scilab/files/patch-ad (dead) 1.4 +0 -11 ports/math/scilab/files/patch-ae (dead) 1.4 +0 -11 ports/math/scilab/files/patch-af (dead) 1.4 +0 -11 ports/math/scilab/files/patch-ag (dead) 1.4 +0 -11 ports/math/scilab/files/patch-ah (dead) 1.4 +0 -11 ports/math/scilab/files/patch-ai (dead) 1.4 +0 -38 ports/math/scilab/files/patch-aj (dead) 1.4 +0 -11 ports/math/scilab/files/patch-ak (dead) 1.5 +0 -11 ports/math/scilab/files/patch-al (dead) 1.5 +0 -5 ports/math/scilab/files/patch-am (dead) 1.5 +0 -21 ports/math/scilab/files/patch-an (dead) 1.5 +0 -11 ports/math/scilab/files/patch-ao (dead) 1.5 +0 -40 ports/math/scilab/files/patch-ap (dead) 1.2 +0 -9 ports/math/scilab/files/patch-aq (dead) 1.5 +0 -9 ports/math/scilab/files/patch-ar (dead) 1.5 +0 -10 ports/math/scilab/files/patch-as (dead) 1.5 +0 -10 ports/math/scilab/files/patch-at (dead) 1.4 +0 -10 ports/math/scilab/files/patch-au (dead) 1.4 +0 -10 ports/math/scilab/files/patch-av (dead) 1.4 +0 -10 ports/math/scilab/files/patch-aw (dead) 1.4 +0 -10 ports/math/scilab/files/patch-ax (dead) 1.4 +2 -2 ports/math/scilab/files/patch-ay 1.4 +4 -14 ports/math/scilab/files/patch-az 1.3 +11 -0 ports/math/scilab/files/patch-ba (new) 1.6 +8690 -7569 ports/math/scilab/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 21:21:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D960B37B401; Thu, 3 Apr 2003 21:21:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 850FD43F93; Thu, 3 Apr 2003 21:21:36 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h345La0U045097; Thu, 3 Apr 2003 21:21:36 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h345Lalm045096; Thu, 3 Apr 2003 21:21:36 -0800 (PST) Message-Id: <200304040521.h345Lalm045096@repoman.freebsd.org> From: Norikatsu Shigemura Date: Thu, 3 Apr 2003 21:21:36 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/mysql40-server Makefile ports/databases/mysql40-client Makefile ports/databases/p5-DBD-mysql Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 05:21:37 -0000 nork 2003/04/03 21:21:36 PST FreeBSD ports repository Modified files: databases/mysql40-server Makefile databases/mysql40-client Makefile databases/p5-DBD-mysql Makefile Log: o Move USE_PERL5_RUN into server part. o Switch from p5-Mysql to p5-DBD-mysql. o Add MySQL 4 support (and set it as default) to p5-DBD-mysql. o Bump PORTREVISION accordingly. PR: ports/50315 Submitted by: Alex Dupre (mysql40 maintainer) Approved by: skv (p5-DBD-myql maintainer) Revision Changes Path 1.85 +1 -1 ports/databases/mysql40-client/Makefile 1.165 +4 -3 ports/databases/mysql40-server/Makefile 1.42 +10 -2 ports/databases/p5-DBD-mysql/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 21:22:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5BE137B401; Thu, 3 Apr 2003 21:22:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43EDE43FAF; Thu, 3 Apr 2003 21:22:53 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h345Mr0U045156; Thu, 3 Apr 2003 21:22:53 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h345Mqkc045155; Thu, 3 Apr 2003 21:22:52 -0800 (PST) Message-Id: <200304040522.h345Mqkc045155@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 21:22:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/netatalk Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 05:22:54 -0000 marcus 2003/04/03 21:22:52 PST FreeBSD ports repository Modified files: net/netatalk Makefile distinfo pkg-plist Log: Update to 1.6.2. Revision Changes Path 1.51 +1 -1 ports/net/netatalk/Makefile 1.15 +1 -1 ports/net/netatalk/distinfo 1.19 +1 -0 ports/net/netatalk/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 21:34:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFC4C37B401; Thu, 3 Apr 2003 21:34:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E01B43F3F; Thu, 3 Apr 2003 21:34:50 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h345Yo0U046228; Thu, 3 Apr 2003 21:34:50 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h345YoFN046227; Thu, 3 Apr 2003 21:34:50 -0800 (PST) Message-Id: <200304040534.h345YoFN046227@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 3 Apr 2003 21:34:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/ksmp3play Makefileports/audio/pysol-sound-server Makefile ports/audio/sdl_mixer Makefile ports/audio/sdl_sound Makefile ports/devel/linux-runrev Makefile ports/devel/py-game... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 05:34:51 -0000 lioux 2003/04/03 21:34:50 PST FreeBSD ports repository Modified files: audio/ksmp3play Makefile audio/pysol-sound-server Makefile audio/sdl_mixer Makefile audio/sdl_sound Makefile devel/linux-runrev Makefile devel/py-game Makefile games/powerpak Makefile games/prboom Makefile graphics/flip Makefile graphics/qtutils Makefile graphics/recmpeg Makefile graphics/xmrm Makefile japanese/mypaedia-fpw-package Makefile math/PDL Makefile multimedia/dvdrip Makefile multimedia/gstreamer-plugins Makefile multimedia/kdemultimedia3 Makefile multimedia/mplayer Makefile multimedia/slideshow Makefile multimedia/xmps-opendivx-plugin Makefile multimedia/xmps-win32-plugin Makefile www/plugger Makefile x11/gnome2-fifth-toe Makefile x11-toolkits/linux-gtk Makefile Log: After repo copy from graphics category to newly create multimedia one, update all appropriate references (*_DEPENDS, comments, etc): ports/graphics/libfame --> ports/multimedia/libfame ports/graphics/libquicktime --> ports/multimedia/libquicktime ports/graphics/mpeg --> ports/multimedia/mpeg ports/graphics/mpeg_encode --> ports/multimedia/mpeg_encode ports/graphics/mpeg_play --> ports/multimedia/mpeg_play ports/graphics/mtv --> ports/multimedia/mtv ports/graphics/smpeg --> ports/multimedia/smpeg ports/graphics/totem --> ports/multimedia/totem ports/graphics/transcode --> ports/multimedia/transcode ports/graphics/xanim --> ports/multimedia/xanim ports/graphics/xmps --> ports/multimedia/xmps Repo copied by: cvs (joe) Approved by: portmgr (self & no objections) Revision Changes Path 1.9 +1 -1 ports/audio/ksmp3play/Makefile 1.23 +1 -1 ports/audio/pysol-sound-server/Makefile 1.19 +1 -1 ports/audio/sdl_mixer/Makefile 1.3 +1 -1 ports/audio/sdl_sound/Makefile 1.4 +1 -1 ports/devel/linux-runrev/Makefile 1.22 +1 -1 ports/devel/py-game/Makefile 1.32 +1 -1 ports/games/powerpak/Makefile 1.7 +1 -1 ports/games/prboom/Makefile 1.5 +1 -1 ports/graphics/flip/Makefile 1.6 +1 -1 ports/graphics/qtutils/Makefile 1.7 +1 -1 ports/graphics/recmpeg/Makefile 1.10 +2 -2 ports/graphics/xmrm/Makefile 1.10 +1 -1 ports/japanese/mypaedia-fpw-package/Makefile 1.23 +1 -1 ports/math/PDL/Makefile 1.11 +2 -2 ports/multimedia/dvdrip/Makefile 1.18 +1 -1 ports/multimedia/gstreamer-plugins/Makefile 1.82 +1 -1 ports/multimedia/kdemultimedia3/Makefile 1.55 +1 -1 ports/multimedia/mplayer/Makefile 1.3 +1 -1 ports/multimedia/slideshow/Makefile 1.9 +1 -1 ports/multimedia/xmps-opendivx-plugin/Makefile 1.13 +1 -1 ports/multimedia/xmps-win32-plugin/Makefile 1.18 +2 -2 ports/www/plugger/Makefile 1.17 +1 -1 ports/x11-toolkits/linux-gtk/Makefile 1.25 +1 -1 ports/x11/gnome2-fifth-toe/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 21:49:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1603737B401; Thu, 3 Apr 2003 21:49:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAE4A43F3F; Thu, 3 Apr 2003 21:49:24 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h345nO0U047053; Thu, 3 Apr 2003 21:49:24 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h345nO8R047052; Thu, 3 Apr 2003 21:49:24 -0800 (PST) Message-Id: <200304040549.h345nO8R047052@repoman.freebsd.org> From: Murray Stokely Date: Thu, 3 Apr 2003 21:49:24 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/4.8R announce.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 05:49:25 -0000 murray 2003/04/03 21:49:24 PST FreeBSD doc repository Added files: en/releases/4.8R announce.sgml Log: FreeBSD 4.8 announce message. Revision Changes Path 1.1 +194 -0 www/en/releases/4.8R/announce.sgml (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 21:50:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B822F37B401; Thu, 3 Apr 2003 21:50:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57F5843F85; Thu, 3 Apr 2003 21:50:22 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h345oM0U047209; Thu, 3 Apr 2003 21:50:22 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h345oL0v047206; Thu, 3 Apr 2003 21:50:21 -0800 (PST) Message-Id: <200304040550.h345oL0v047206@repoman.freebsd.org> From: Murray Stokely Date: Thu, 3 Apr 2003 21:50:21 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/4.8R Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 05:50:23 -0000 murray 2003/04/03 21:50:21 PST FreeBSD doc repository Modified files: en/releases/4.8R Makefile Log: Connect announcement to the build. Revision Changes Path 1.4 +2 -2 www/en/releases/4.8R/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 21:53:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38EE037B40C; Thu, 3 Apr 2003 21:53:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 430B543FBD; Thu, 3 Apr 2003 21:53:47 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h345rl0U047602; Thu, 3 Apr 2003 21:53:47 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h345rksN047599; Thu, 3 Apr 2003 21:53:46 -0800 (PST) Message-Id: <200304040553.h345rksN047599@repoman.freebsd.org> From: Murray Stokely Date: Thu, 3 Apr 2003 21:53:46 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en includes.sgml includes.xsl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 05:53:49 -0000 murray 2003/04/03 21:53:46 PST FreeBSD doc repository Modified files: en includes.sgml includes.xsl Log: FreeBSD 4.8 is the latest 4.X release. Revision Changes Path 1.56 +3 -3 www/en/includes.sgml 1.13 +2 -2 www/en/includes.xsl From owner-cvs-all@FreeBSD.ORG Thu Apr 3 21:57:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 512A137B405; Thu, 3 Apr 2003 21:57:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9A524408C; Thu, 3 Apr 2003 21:56:42 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h345ug0U047758; Thu, 3 Apr 2003 21:56:42 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h345ugI1047757; Thu, 3 Apr 2003 21:56:42 -0800 (PST) Message-Id: <200304040556.h345ugI1047757@repoman.freebsd.org> From: Murray Stokely Date: Thu, 3 Apr 2003 21:56:42 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/news news.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 05:57:15 -0000 murray 2003/04/03 21:56:42 PST FreeBSD doc repository Modified files: en/news news.xml Log: FreeBSD 4.8 is now available. Revision Changes Path 1.140 +20 -1 www/en/news/news.xml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 21:58:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE03337B411; Thu, 3 Apr 2003 21:58:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C53143F75; Thu, 3 Apr 2003 21:58:29 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h345wT0U047875; Thu, 3 Apr 2003 21:58:29 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h345wTGO047874; Thu, 3 Apr 2003 21:58:29 -0800 (PST) Message-Id: <200304040558.h345wTGO047874@repoman.freebsd.org> From: Murray Stokely Date: Thu, 3 Apr 2003 21:58:29 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/news news.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 05:58:31 -0000 murray 2003/04/03 21:58:29 PST FreeBSD doc repository Modified files: en/news news.xml Log: Add missing tag. Revision Changes Path 1.141 +2 -2 www/en/news/news.xml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:00:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5273037B401; Thu, 3 Apr 2003 22:00:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A01743FCB; Thu, 3 Apr 2003 22:00:14 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3460E0U049481; Thu, 3 Apr 2003 22:00:14 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3460Ddi049480; Thu, 3 Apr 2003 22:00:13 -0800 (PST) Message-Id: <200304040600.h3460Ddi049480@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 3 Apr 2003 22:00:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports MOVED ports/multimedia Makefile ports/graphics Makefile ports/graphics/avidemux Makefile distinfo pkg-descr pkg-message pkg-plist ports/graphics/avinfo Makefile distinfo pkg-descr pkg-plist ports/graphics/camserv Makefile distinfo ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:00:15 -0000 lioux 2003/04/03 22:00:13 PST FreeBSD ports repository Modified files: . MOVED multimedia Makefile graphics Makefile Removed files: graphics/avidemux Makefile distinfo pkg-descr pkg-message pkg-plist graphics/avinfo Makefile distinfo pkg-descr pkg-plist graphics/camserv Makefile distinfo pkg-descr pkg-plist graphics/camserv/files patch-aa graphics/dtv Makefile distinfo pkg-descr pkg-plist graphics/dtv/files patch-aa graphics/dumpmpeg Makefile distinfo pkg-descr pkg-plist graphics/enjoympeg Makefile distinfo pkg-descr pkg-plist graphics/fxtv Makefile distinfo pkg-descr pkg-plist graphics/fxtv/files patch-ab patch-ac patch-ad patch-ae patch-tvcapture.c graphics/gopchop Makefile distinfo pkg-descr pkg-plist graphics/gopchop/files patch-src::ElementStream.h patch-src::Parser.h patch-src::mpegcat.c graphics/gxanim Makefile distinfo pkg-descr pkg-plist graphics/gxanim/files patch-aa graphics/libdvbpsi Makefile distinfo pkg-descr pkg-plist graphics/libdvbpsi/files patch-ltmain.sh graphics/libfame Makefile distinfo pkg-descr pkg-plist graphics/libquicktime Makefile distinfo pkg-descr pkg-plist graphics/libquicktime/files patch-configure patch-plugins::rtjpeg::RTjpeg.h patch-plugins::xanim::lqt_codec.c graphics/mmsclient Makefile distinfo pkg-descr pkg-plist graphics/mmsclient/files mmsclient.1 patch-client.c patch-configure graphics/mpeg Makefile distinfo pkg-descr pkg-plist graphics/mpeg/files patch-aa patch-lexer.l graphics/mpeg2codec Makefile distinfo pkg-descr pkg-plist graphics/mpeg2codec/files patch-aa patch-ab graphics/mpeg2play Makefile distinfo pkg-descr pkg-plist graphics/mpeg2play/files patch-aa patch-ab graphics/mpeg_encode Makefile distinfo pkg-descr pkg-plist graphics/mpeg_encode/files patch-aa patch-ab patch-ac patch-ad patch-opts.c graphics/mpeg_play Makefile distinfo pkg-descr pkg-plist graphics/mpeg_play/files patch-aa graphics/mpeg_stat Makefile distinfo pkg-descr pkg-plist graphics/mpeg_stat/files patch-aa graphics/mpegedit Makefile distinfo pkg-descr pkg-plist graphics/mpegedit/files patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-aq patch-ar patch-as patch-at patch-au patch-av patch-aw patch-ax patch-ay patch-az patch-ba patch-bb graphics/mpgtx Makefile distinfo pkg-descr pkg-plist graphics/mplex Makefile distinfo pkg-descr pkg-plist graphics/mplex/files mplex.1 patch-ab patch-ac patch-ad patch-ae patch-af graphics/mtv Makefile distinfo pkg-descr pkg-plist graphics/netshow Makefile distinfo pkg-descr pkg-message pkg-plist graphics/ppm2fli Makefile distinfo pkg-descr pkg-plist graphics/smpeg Makefile distinfo pkg-descr pkg-plist graphics/smpeg/files patch-ab patch-ac patch-configure graphics/smpeg-xmms Makefile distinfo pkg-descr pkg-plist graphics/smpeg-xmms/files patch-aa patch-configure graphics/splitmpg Makefile distinfo pkg-descr pkg-plist graphics/splitmpg/files patch-ac splitmpeg.1 graphics/tkxanim Makefile distinfo pkg-descr pkg-plist graphics/tkxanim/files patch-aa graphics/totem Makefile distinfo pkg-descr pkg-message pkg-plist graphics/totem/files patch-src::video-utils.c graphics/transcode Makefile distinfo pkg-descr pkg-plist graphics/transcode/files patch-bbmpeg:mplex.h patch-ffmpeg:libavcodec:mem.c patch-libtool patch-src:filter:preview:display.h patch-src:filter:preview:filter_preview.h patch-src:filter:preview:pv.c patch-src:filter:subtitler:frame_list.c graphics/vlc Makefile distinfo pkg-descr pkg-plist graphics/xanim Makefile distinfo pkg-descr pkg-plist graphics/xanim/files patch-ab patch-xa_audio.h patch-xa_vid_codec.c graphics/xawtv Makefile distinfo pkg-descr pkg-plist graphics/xawtv/files patch-Makefile.in patch-common::Subdir.mk patch-configure patch-console::showqt.c patch-libng::contrib-plugins::Subdir.mk patch-x11::Subdir.mk graphics/xine_d4d_plugin Makefile distinfo pkg-descr pkg-message pkg-plist graphics/xine_d4d_plugin/files patch-ltmain.sh patch-src:input:input_dvd.c graphics/xine_d5d_plugin Makefile distinfo pkg-descr pkg-message pkg-plist graphics/xine_d5d_plugin/files patch-ltmain.sh patch-src:Makefile.am patch-src:dvdread:Makefile.am patch-src:input_dvd.c graphics/xmovie Makefile distinfo pkg-descr pkg-plist graphics/xmps Makefile distinfo pkg-descr pkg-plist graphics/xmps/files patch-aa patch-ab patch-codecs::audio::ac3::ac3_codec.c patch-codecs::audio::ac3::coeff.c patch-codecs::audio::ac3::exponent.c patch-codecs::video::flx::Makefile.in patch-codecs::video::flx::flx_codec.h patch-gui::skinned::xmps_skin_browser.h patch-libxmps::Makefile.in patch-libxmpsutils::Makefile.in patch-renderers::audio::sdl::sdl_audio_renderer.h patch-src::Makefile.in patch-system::mpeg3::mpeg3io.c graphics/xtheater Makefile distinfo pkg-descr pkg-plist Log: Finish repo copy move from graphics category to newly create multimedia one for the following ports: avidemux avinfo camserv dtv dumpmpeg enjoympeg fxtv gopchop gxanim libdvbpsi libfame libquicktime mmsclient mpeg mpeg2codec mpeg2play mpeg_encode mpeg_play mpeg_stat mpegedit mpgtx mplex mtv netshow ppm2fli smpeg smpeg-xmms splitmpg tkxanim totem transcode vlc xanim xawtv xine_d4d_plugin xine_d5d_plugin xmovie xmps xtheater Repo copied by: cvs (joe) Approved by: portmgr (self & no objections) Revision Changes Path 1.89 +40 -1 ports/MOVED 1.572 +0 -39 ports/graphics/Makefile 1.11 +0 -70 ports/graphics/avidemux/Makefile (dead) 1.5 +0 -1 ports/graphics/avidemux/distinfo (dead) 1.2 +0 -9 ports/graphics/avidemux/pkg-descr (dead) 1.2 +0 -3 ports/graphics/avidemux/pkg-message (dead) 1.2 +0 -1 ports/graphics/avidemux/pkg-plist (dead) 1.5 +0 -34 ports/graphics/avinfo/Makefile (dead) 1.4 +0 -1 ports/graphics/avinfo/distinfo (dead) 1.2 +0 -11 ports/graphics/avinfo/pkg-descr (dead) 1.4 +0 -15 ports/graphics/avinfo/pkg-plist (dead) 1.5 +0 -39 ports/graphics/camserv/Makefile (dead) 1.2 +0 -1 ports/graphics/camserv/distinfo (dead) 1.2 +0 -178 ports/graphics/camserv/files/patch-aa (dead) 1.2 +0 -14 ports/graphics/camserv/pkg-descr (dead) 1.3 +0 -27 ports/graphics/camserv/pkg-plist (dead) 1.3 +0 -18 ports/graphics/dtv/Makefile (dead) 1.2 +0 -1 ports/graphics/dtv/distinfo (dead) 1.2 +0 -11 ports/graphics/dtv/files/patch-aa (dead) 1.2 +0 -4 ports/graphics/dtv/pkg-descr (dead) 1.2 +0 -2 ports/graphics/dtv/pkg-plist (dead) 1.5 +0 -27 ports/graphics/dumpmpeg/Makefile (dead) 1.2 +0 -1 ports/graphics/dumpmpeg/distinfo (dead) 1.2 +0 -2 ports/graphics/dumpmpeg/pkg-descr (dead) 1.2 +0 -1 ports/graphics/dumpmpeg/pkg-plist (dead) 1.5 +0 -24 ports/graphics/enjoympeg/Makefile (dead) 1.2 +0 -1 ports/graphics/enjoympeg/distinfo (dead) 1.2 +0 -19 ports/graphics/enjoympeg/pkg-descr (dead) 1.2 +0 -12 ports/graphics/enjoympeg/pkg-plist (dead) 1.37 +0 -38 ports/graphics/fxtv/Makefile (dead) 1.11 +0 -1 ports/graphics/fxtv/distinfo (dead) 1.10 +0 -11 ports/graphics/fxtv/files/patch-ab (dead) 1.7 +0 -11 ports/graphics/fxtv/files/patch-ac (dead) 1.4 +0 -13 ports/graphics/fxtv/files/patch-ad (dead) 1.2 +0 -11 ports/graphics/fxtv/files/patch-ae (dead) 1.3 +0 -10 ports/graphics/fxtv/files/patch-tvcapture.c (dead) 1.11 +0 -21 ports/graphics/fxtv/pkg-descr (dead) 1.6 +0 -13 ports/graphics/fxtv/pkg-plist (dead) 1.9 +0 -42 ports/graphics/gopchop/Makefile (dead) 1.2 +0 -1 ports/graphics/gopchop/distinfo (dead) 1.2 +0 -13 ports/graphics/gopchop/files/patch-src::ElementStream.h (dead) 1.2 +0 -12 ports/graphics/gopchop/files/patch-src::Parser.h (dead) 1.2 +0 -16 ports/graphics/gopchop/files/patch-src::mpegcat.c (dead) 1.2 +0 -6 ports/graphics/gopchop/pkg-descr (dead) 1.2 +0 -6 ports/graphics/gopchop/pkg-plist (dead) 1.10 +0 -27 ports/graphics/gxanim/Makefile (dead) 1.4 +0 -1 ports/graphics/gxanim/distinfo (dead) 1.3 +0 -22 ports/graphics/gxanim/files/patch-aa (dead) 1.4 +0 -6 ports/graphics/gxanim/pkg-descr (dead) 1.2 +0 -1 ports/graphics/gxanim/pkg-plist (dead) 1.7 +0 -22 ports/graphics/libdvbpsi/Makefile (dead) 1.3 +0 -1 ports/graphics/libdvbpsi/distinfo (dead) 1.2 +0 -15 ports/graphics/libdvbpsi/files/patch-ltmain.sh (dead) 1.3 +0 -9 ports/graphics/libdvbpsi/pkg-descr (dead) 1.3 +0 -24 ports/graphics/libdvbpsi/pkg-plist (dead) 1.8 +0 -25 ports/graphics/libfame/Makefile (dead) 1.4 +0 -1 ports/graphics/libfame/distinfo (dead) 1.2 +0 -15 ports/graphics/libfame/pkg-descr (dead) 1.5 +0 -31 ports/graphics/libfame/pkg-plist (dead) 1.10 +0 -41 ports/graphics/libquicktime/Makefile (dead) 1.2 +0 -1 ports/graphics/libquicktime/distinfo (dead) 1.2 +0 -10 ports/graphics/libquicktime/files/patch-configure (dead) 1.2 +0 -15 ports/graphics/libquicktime/files/patch-plugins::rtjpeg::RTjpeg.h (dead) 1.2 +0 -48 ports/graphics/libquicktime/files/patch-plugins::xanim::lqt_codec.c (dead) 1.2 +0 -3 ports/graphics/libquicktime/pkg-descr (dead) 1.3 +0 -35 ports/graphics/libquicktime/pkg-plist (dead) 1.3 +0 -25 ports/graphics/mmsclient/Makefile (dead) 1.2 +0 -1 ports/graphics/mmsclient/distinfo (dead) 1.2 +0 -48 ports/graphics/mmsclient/files/mmsclient.1 (dead) 1.2 +0 -41 ports/graphics/mmsclient/files/patch-client.c (dead) 1.2 +0 -9 ports/graphics/mmsclient/files/patch-configure (dead) 1.2 +0 -6 ports/graphics/mmsclient/pkg-descr (dead) 1.2 +0 -1 ports/graphics/mmsclient/pkg-plist (dead) 1.5 +0 -35 ports/graphics/mpeg/Makefile (dead) 1.3 +0 -2 ports/graphics/mpeg/distinfo (dead) 1.2 +0 -11 ports/graphics/mpeg/files/patch-aa (dead) 1.2 +0 -15 ports/graphics/mpeg/files/patch-lexer.l (dead) 1.2 +0 -13 ports/graphics/mpeg/pkg-descr (dead) 1.2 +0 -4 ports/graphics/mpeg/pkg-plist (dead) 1.9 +0 -29 ports/graphics/mpeg2codec/Makefile (dead) 1.3 +0 -1 ports/graphics/mpeg2codec/distinfo (dead) 1.6 +0 -41 ports/graphics/mpeg2codec/files/patch-aa (dead) 1.3 +0 -23 ports/graphics/mpeg2codec/files/patch-ab (dead) 1.2 +0 -2 ports/graphics/mpeg2codec/pkg-descr (dead) 1.4 +0 -9 ports/graphics/mpeg2codec/pkg-plist (dead) 1.10 +0 -24 ports/graphics/mpeg2play/Makefile (dead) 1.3 +0 -1 ports/graphics/mpeg2play/distinfo (dead) 1.3 +0 -11 ports/graphics/mpeg2play/files/patch-aa (dead) 1.2 +0 -11 ports/graphics/mpeg2play/files/patch-ab (dead) 1.2 +0 -2 ports/graphics/mpeg2play/pkg-descr (dead) 1.3 +0 -2 ports/graphics/mpeg2play/pkg-plist (dead) 1.19 +0 -37 ports/graphics/mpeg_encode/Makefile (dead) 1.2 +0 -1 ports/graphics/mpeg_encode/distinfo (dead) 1.4 +0 -11 ports/graphics/mpeg_encode/files/patch-aa (dead) 1.2 +0 -11 ports/graphics/mpeg_encode/files/patch-ab (dead) 1.2 +0 -20 ports/graphics/mpeg_encode/files/patch-ac (dead) 1.2 +0 -15 ports/graphics/mpeg_encode/files/patch-ad (dead) 1.2 +0 -17 ports/graphics/mpeg_encode/files/patch-opts.c (dead) 1.2 +0 -24 ports/graphics/mpeg_encode/pkg-descr (dead) 1.6 +0 -4 ports/graphics/mpeg_encode/pkg-plist (dead) 1.20 +0 -25 ports/graphics/mpeg_play/Makefile (dead) 1.6 +0 -1 ports/graphics/mpeg_play/distinfo (dead) 1.3 +0 -9 ports/graphics/mpeg_play/files/patch-aa (dead) 1.3 +0 -5 ports/graphics/mpeg_play/pkg-descr (dead) 1.4 +0 -1 ports/graphics/mpeg_play/pkg-plist (dead) 1.12 +0 -22 ports/graphics/mpeg_stat/Makefile (dead) 1.2 +0 -1 ports/graphics/mpeg_stat/distinfo (dead) 1.2 +0 -15 ports/graphics/mpeg_stat/files/patch-aa (dead) 1.2 +0 -14 ports/graphics/mpeg_stat/pkg-descr (dead) 1.3 +0 -2 ports/graphics/mpeg_stat/pkg-plist (dead) 1.25 +0 -32 ports/graphics/mpegedit/Makefile (dead) 1.2 +0 -1 ports/graphics/mpegedit/distinfo (dead) 1.2 +0 -47 ports/graphics/mpegedit/files/patch-ac (dead) 1.2 +0 -47 ports/graphics/mpegedit/files/patch-ad (dead) 1.2 +0 -29 ports/graphics/mpegedit/files/patch-ae (dead) 1.2 +0 -31 ports/graphics/mpegedit/files/patch-af (dead) 1.2 +0 -47 ports/graphics/mpegedit/files/patch-ag (dead) 1.2 +0 -47 ports/graphics/mpegedit/files/patch-ah (dead) 1.2 +0 -65 ports/graphics/mpegedit/files/patch-ai (dead) 1.4 +0 -99 ports/graphics/mpegedit/files/patch-aj (dead) 1.3 +0 -69 ports/graphics/mpegedit/files/patch-aq (dead) 1.2 +0 -58 ports/graphics/mpegedit/files/patch-ar (dead) 1.2 +0 -10 ports/graphics/mpegedit/files/patch-as (dead) 1.2 +0 -11 ports/graphics/mpegedit/files/patch-at (dead) 1.2 +0 -42 ports/graphics/mpegedit/files/patch-au (dead) 1.2 +0 -11 ports/graphics/mpegedit/files/patch-av (dead) 1.2 +0 -11 ports/graphics/mpegedit/files/patch-aw (dead) 1.2 +0 -11 ports/graphics/mpegedit/files/patch-ax (dead) 1.2 +0 -26 ports/graphics/mpegedit/files/patch-ay (dead) 1.2 +0 -39 ports/graphics/mpegedit/files/patch-az (dead) 1.2 +0 -42 ports/graphics/mpegedit/files/patch-ba (dead) 1.2 +0 -33 ports/graphics/mpegedit/files/patch-bb (dead) 1.4 +0 -8 ports/graphics/mpegedit/pkg-descr (dead) 1.4 +0 -4 ports/graphics/mpegedit/pkg-plist (dead) 1.11 +0 -44 ports/graphics/mpgtx/Makefile (dead) 1.7 +0 -1 ports/graphics/mpgtx/distinfo (dead) 1.2 +0 -16 ports/graphics/mpgtx/pkg-descr (dead) 1.4 +0 -7 ports/graphics/mpgtx/pkg-plist (dead) 1.12 +0 -22 ports/graphics/mplex/Makefile (dead) 1.2 +0 -1 ports/graphics/mplex/distinfo (dead) 1.2 +0 -18 ports/graphics/mplex/files/mplex.1 (dead) 1.3 +0 -17 ports/graphics/mplex/files/patch-ab (dead) 1.3 +0 -24 ports/graphics/mplex/files/patch-ac (dead) 1.3 +0 -59 ports/graphics/mplex/files/patch-ad (dead) 1.2 +0 -20 ports/graphics/mplex/files/patch-ae (dead) 1.2 +0 -34 ports/graphics/mplex/files/patch-af (dead) 1.3 +0 -20 ports/graphics/mplex/pkg-descr (dead) 1.3 +0 -1 ports/graphics/mplex/pkg-plist (dead) 1.12 +0 -47 ports/graphics/mtv/Makefile (dead) 1.9 +0 -2 ports/graphics/mtv/distinfo (dead) 1.2 +0 -8 ports/graphics/mtv/pkg-descr (dead) 1.4 +0 -8 ports/graphics/mtv/pkg-plist (dead) 1.14 +0 -43 ports/graphics/netshow/Makefile (dead) 1.2 +0 -1 ports/graphics/netshow/distinfo (dead) 1.3 +0 -11 ports/graphics/netshow/pkg-descr (dead) 1.2 +0 -4 ports/graphics/netshow/pkg-message (dead) 1.2 +0 -1 ports/graphics/netshow/pkg-plist (dead) 1.13 +0 -30 ports/graphics/ppm2fli/Makefile (dead) 1.4 +0 -1 ports/graphics/ppm2fli/distinfo (dead) 1.3 +0 -21 ports/graphics/ppm2fli/pkg-descr (dead) 1.3 +0 -2 ports/graphics/ppm2fli/pkg-plist (dead) 1.11 +0 -37 ports/graphics/smpeg-xmms/Makefile (dead) 1.3 +0 -1 ports/graphics/smpeg-xmms/distinfo (dead) 1.3 +0 -11 ports/graphics/smpeg-xmms/files/patch-aa (dead) 1.3 +0 -23 ports/graphics/smpeg-xmms/files/patch-configure (dead) 1.2 +0 -5 ports/graphics/smpeg-xmms/pkg-descr (dead) 1.2 +0 -1 ports/graphics/smpeg-xmms/pkg-plist (dead) 1.24 +0 -45 ports/graphics/smpeg/Makefile (dead) 1.7 +0 -1 ports/graphics/smpeg/distinfo (dead) 1.2 +0 -10 ports/graphics/smpeg/files/patch-ab (dead) 1.2 +0 -11 ports/graphics/smpeg/files/patch-ac (dead) 1.2 +0 -13 ports/graphics/smpeg/files/patch-configure (dead) 1.3 +0 -14 ports/graphics/smpeg/pkg-descr (dead) 1.9 +0 -19 ports/graphics/smpeg/pkg-plist (dead) 1.15 +0 -26 ports/graphics/splitmpg/Makefile (dead) 1.2 +0 -1 ports/graphics/splitmpg/distinfo (dead) 1.2 +0 -21 ports/graphics/splitmpg/files/patch-ac (dead) 1.2 +0 -45 ports/graphics/splitmpg/files/splitmpeg.1 (dead) 1.3 +0 -15 ports/graphics/splitmpg/pkg-descr (dead) 1.4 +0 -1 ports/graphics/splitmpg/pkg-plist (dead) 1.5 +0 -31 ports/graphics/tkxanim/Makefile (dead) 1.2 +0 -1 ports/graphics/tkxanim/distinfo (dead) 1.2 +0 -17 ports/graphics/tkxanim/files/patch-aa (dead) 1.2 +0 -10 ports/graphics/tkxanim/pkg-descr (dead) 1.3 +0 -3 ports/graphics/tkxanim/pkg-plist (dead) 1.8 +0 -30 ports/graphics/totem/Makefile (dead) 1.4 +0 -1 ports/graphics/totem/distinfo (dead) 1.2 +0 -10 ports/graphics/totem/files/patch-src::video-utils.c (dead) 1.2 +0 -7 ports/graphics/totem/pkg-descr (dead) 1.2 +0 -4 ports/graphics/totem/pkg-message (dead) 1.4 +0 -95 ports/graphics/totem/pkg-plist (dead) 1.20 +0 -306 ports/graphics/transcode/Makefile (dead) 1.6 +0 -1 ports/graphics/transcode/distinfo (dead) 1.2 +0 -11 ports/graphics/transcode/files/patch-bbmpeg:mplex.h (dead) 1.2 +0 -11 ports/graphics/transcode/files/patch-ffmpeg:libavcodec:mem.c (dead) 1.2 +0 -24 ports/graphics/transcode/files/patch-libtool (dead) 1.2 +0 -16 ports/graphics/transcode/files/patch-src:filter:preview:display.h (dead) 1.2 +0 -11 ports/graphics/transcode/files/patch-src:filter:preview:filter_preview.h (dead) 1.2 +0 -29 ports/graphics/transcode/files/patch-src:filter:preview:pv.c (dead) 1.2 +0 -13 ports/graphics/transcode/files/patch-src:filter:subtitler:frame_list.c (dead) 1.4 +0 -21 ports/graphics/transcode/pkg-descr (dead) 1.10 +0 -186 ports/graphics/transcode/pkg-plist (dead) 1.21 +0 -32 ports/graphics/vlc/Makefile (dead) 1.9 +0 -1 ports/graphics/vlc/distinfo (dead) 1.4 +0 -16 ports/graphics/vlc/pkg-descr (dead) 1.9 +0 -67 ports/graphics/vlc/pkg-plist (dead) 1.34 +0 -56 ports/graphics/xanim/Makefile (dead) 1.14 +0 -9 ports/graphics/xanim/distinfo (dead) 1.13 +0 -80 ports/graphics/xanim/files/patch-ab (dead) 1.2 +0 -14 ports/graphics/xanim/files/patch-xa_audio.h (dead) 1.2 +0 -37 ports/graphics/xanim/files/patch-xa_vid_codec.c (dead) 1.6 +0 -47 ports/graphics/xanim/pkg-descr (dead) 1.7 +0 -16 ports/graphics/xanim/pkg-plist (dead) 1.23 +0 -87 ports/graphics/xawtv/Makefile (dead) 1.17 +0 -1 ports/graphics/xawtv/distinfo (dead) 1.6 +0 -27 ports/graphics/xawtv/files/patch-Makefile.in (dead) 1.4 +0 -16 ports/graphics/xawtv/files/patch-common::Subdir.mk (dead) 1.9 +0 -58 ports/graphics/xawtv/files/patch-configure (dead) 1.2 +0 -18 ports/graphics/xawtv/files/patch-console::showqt.c (dead) 1.2 +0 -11 ports/graphics/xawtv/files/patch-libng::contrib-plugins::Subdir.mk (dead) 1.5 +0 -28 ports/graphics/xawtv/files/patch-x11::Subdir.mk (dead) 1.4 +0 -4 ports/graphics/xawtv/pkg-descr (dead) 1.14 +0 -88 ports/graphics/xawtv/pkg-plist (dead) 1.12 +0 -37 ports/graphics/xine_d4d_plugin/Makefile (dead) 1.6 +0 -1 ports/graphics/xine_d4d_plugin/distinfo (dead) 1.3 +0 -23 ports/graphics/xine_d4d_plugin/files/patch-ltmain.sh (dead) 1.4 +0 -11 ports/graphics/xine_d4d_plugin/files/patch-src:input:input_dvd.c (dead) 1.3 +0 -3 ports/graphics/xine_d4d_plugin/pkg-descr (dead) 1.2 +0 -11 ports/graphics/xine_d4d_plugin/pkg-message (dead) 1.3 +0 -2 ports/graphics/xine_d4d_plugin/pkg-plist (dead) 1.13 +0 -42 ports/graphics/xine_d5d_plugin/Makefile (dead) 1.4 +0 -1 ports/graphics/xine_d5d_plugin/distinfo (dead) 1.2 +0 -49 ports/graphics/xine_d5d_plugin/files/patch-ltmain.sh (dead) 1.3 +0 -11 ports/graphics/xine_d5d_plugin/files/patch-src:Makefile.am (dead) 1.2 +0 -17 ports/graphics/xine_d5d_plugin/files/patch-src:dvdread:Makefile.am (dead) 1.5 +0 -19 ports/graphics/xine_d5d_plugin/files/patch-src:input_dvd.c (dead) 1.4 +0 -3 ports/graphics/xine_d5d_plugin/pkg-descr (dead) 1.2 +0 -11 ports/graphics/xine_d5d_plugin/pkg-message (dead) 1.2 +0 -2 ports/graphics/xine_d5d_plugin/pkg-plist (dead) 1.20 +0 -42 ports/graphics/xmovie/Makefile (dead) 1.7 +0 -1 ports/graphics/xmovie/distinfo (dead) 1.8 +0 -37 ports/graphics/xmovie/pkg-descr (dead) 1.6 +0 -1 ports/graphics/xmovie/pkg-plist (dead) 1.18 +0 -39 ports/graphics/xmps/Makefile (dead) 1.4 +0 -1 ports/graphics/xmps/distinfo (dead) 1.5 +0 -44 ports/graphics/xmps/files/patch-aa (dead) 1.3 +0 -11 ports/graphics/xmps/files/patch-ab (dead) 1.2 +0 -50 ports/graphics/xmps/files/patch-codecs::audio::ac3::ac3_codec.c (dead) 1.2 +0 -23 ports/graphics/xmps/files/patch-codecs::audio::ac3::coeff.c (dead) 1.2 +0 -22 ports/graphics/xmps/files/patch-codecs::audio::ac3::exponent.c (dead) 1.2 +0 -14 ports/graphics/xmps/files/patch-codecs::video::flx::Makefile.in (dead) 1.2 +0 -14 ports/graphics/xmps/files/patch-codecs::video::flx::flx_codec.h (dead) 1.2 +0 -14 ports/graphics/xmps/files/patch-gui::skinned::xmps_skin_browser.h (dead) 1.3 +0 -14 ports/graphics/xmps/files/patch-libxmps::Makefile.in (dead) 1.2 +0 -14 ports/graphics/xmps/files/patch-libxmpsutils::Makefile.in (dead) 1.2 +0 -14 ports/graphics/xmps/files/patch-renderers::audio::sdl::sdl_audio_renderer.h (dead) 1.3 +0 -14 ports/graphics/xmps/files/patch-src::Makefile.in (dead) 1.2 +0 -13 ports/graphics/xmps/files/patch-system::mpeg3::mpeg3io.c (dead) 1.4 +0 -5 ports/graphics/xmps/pkg-descr (dead) 1.7 +0 -71 ports/graphics/xmps/pkg-plist (dead) 1.10 +0 -49 ports/graphics/xtheater/Makefile (dead) 1.2 +0 -1 ports/graphics/xtheater/distinfo (dead) 1.2 +0 -6 ports/graphics/xtheater/pkg-descr (dead) 1.3 +0 -7 ports/graphics/xtheater/pkg-plist (dead) 1.27 +39 -0 ports/multimedia/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:01:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CA5A37B401; Thu, 3 Apr 2003 22:01:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C6BB43FAF; Thu, 3 Apr 2003 22:01:12 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3461B0U049876; Thu, 3 Apr 2003 22:01:11 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3461BSx049873; Thu, 3 Apr 2003 22:01:11 -0800 (PST) Message-Id: <200304040601.h3461BSx049873@repoman.freebsd.org> From: Murray Stokely Date: Thu, 3 Apr 2003 22:01:11 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:01:13 -0000 murray 2003/04/03 22:01:11 PST FreeBSD doc repository Modified files: en/releases index.sgml Log: Add FreeBSD 4.7 to the past releases list. Revision Changes Path 1.86 +10 -2 www/en/releases/index.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:05:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B2F637B401; Thu, 3 Apr 2003 22:05:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3879E43F85; Thu, 3 Apr 2003 22:05:46 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3465k0U050997; Thu, 3 Apr 2003 22:05:46 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3465jXk050996; Thu, 3 Apr 2003 22:05:45 -0800 (PST) Message-Id: <200304040605.h3465jXk050996@repoman.freebsd.org> From: Yen-Ming Lee Date: Thu, 3 Apr 2003 22:05:45 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/smtprc Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:05:47 -0000 leeym 2003/04/03 22:05:45 PST FreeBSD ports repository Modified files: mail/smtprc Makefile distinfo Log: update to 0.9.6b PR: 50543 Submitted by: Michael L. Hostbaek Revision Changes Path 1.2 +1 -1 ports/mail/smtprc/Makefile 1.2 +1 -1 ports/mail/smtprc/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:12:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8501C37B401; Thu, 3 Apr 2003 22:12:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24A8243F75; Thu, 3 Apr 2003 22:12:24 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346CN0U051505; Thu, 3 Apr 2003 22:12:23 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346CNqG051504; Thu, 3 Apr 2003 22:12:23 -0800 (PST) Message-Id: <200304040612.h346CNqG051504@repoman.freebsd.org> From: Murray Stokely Date: Thu, 3 Apr 2003 22:12:23 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releng index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:12:24 -0000 murray 2003/04/03 22:12:23 PST FreeBSD doc repository Modified files: en/releng index.sgml Log: Update for the current state of the RELENG_4 and RELENG_4_8 branches. Revision Changes Path 1.44 +6 -6 www/en/releng/index.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:14:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9916237B401; Thu, 3 Apr 2003 22:14:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38B8F43FAF; Thu, 3 Apr 2003 22:14:55 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346Et0U051649; Thu, 3 Apr 2003 22:14:55 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346EsXv051648; Thu, 3 Apr 2003 22:14:54 -0800 (PST) Message-Id: <200304040614.h346EsXv051648@repoman.freebsd.org> From: Alan Cox Date: Thu, 3 Apr 2003 22:14:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_bio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:14:56 -0000 alc 2003/04/03 22:14:54 PST FreeBSD src repository Modified files: sys/kern vfs_bio.c Log: o Check the b_bufsize passed to vmapbuf() returning an error if it is invalid. o Remove a debugging printf() from vmapbuf(). Suggested by: tegge Revision Changes Path 1.383 +2 -2 src/sys/kern/vfs_bio.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:15:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A28637B401; Thu, 3 Apr 2003 22:15:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2D4143FB1; Thu, 3 Apr 2003 22:15:55 -0800 (PST) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346Ft0U051787; Thu, 3 Apr 2003 22:15:55 -0800 (PST) (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346Ft3O051786; Thu, 3 Apr 2003 22:15:55 -0800 (PST) Message-Id: <200304040615.h346Ft3O051786@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Thu, 3 Apr 2003 22:15:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/etc/mail aliases X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:15:56 -0000 gshapiro 2003/04/03 22:15:55 PST FreeBSD src repository Modified files: (Branch: RELENG_4) etc/mail aliases Log: MFC: Fix formatting (spaces -> tab) Revision Changes Path 1.17 +1 -1 src/etc/mail/aliases Revision Changes Path 1.10.4.7 +1 -1 src/etc/mail/aliases From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:18:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FB8437B401; Thu, 3 Apr 2003 22:18:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E350043F93; Thu, 3 Apr 2003 22:18:38 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346Ic0U051849; Thu, 3 Apr 2003 22:18:38 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346IcSN051848; Thu, 3 Apr 2003 22:18:38 -0800 (PST) Message-Id: <200304040618.h346IcSN051848@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 3 Apr 2003 22:18:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/jtans pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:18:39 -0000 ijliao 2003/04/03 22:18:38 PST FreeBSD ports repository Modified files: games/jtans pkg-plist Log: add missing dirrm Revision Changes Path 1.2 +2 -1 ports/games/jtans/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:25:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 840CC37B401; Thu, 3 Apr 2003 22:25:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23CFB43FE0; Thu, 3 Apr 2003 22:25:19 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346PI0U052405; Thu, 3 Apr 2003 22:25:18 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346PIwu052404; Thu, 3 Apr 2003 22:25:18 -0800 (PST) Message-Id: <200304040625.h346PIwu052404@repoman.freebsd.org> From: Murray Stokely Date: Thu, 3 Apr 2003 22:25:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:25:19 -0000 murray 2003/04/03 22:25:18 PST FreeBSD src repository Modified files: (Branch: RELENG_4) . UPDATING Log: FreeBSD 4.8 was released April 3, 2003. Revision Changes Path 1.73.2.81 +4 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:26:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E59F37B401; Thu, 3 Apr 2003 22:26:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DBCD43FAF; Thu, 3 Apr 2003 22:26:28 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346QS0U052456; Thu, 3 Apr 2003 22:26:28 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346QSKu052455; Thu, 3 Apr 2003 22:26:28 -0800 (PST) Message-Id: <200304040626.h346QSKu052455@repoman.freebsd.org> From: Alan Cox Date: Thu, 3 Apr 2003 22:26:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_aio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:26:29 -0000 alc 2003/04/03 22:26:28 PST FreeBSD src repository Modified files: sys/kern vfs_aio.c Log: o Remove useracc() calls from aio_qphysio(); they are redundant given the checks performed by vmapbuf(). Reviewed by: tegge Revision Changes Path 1.158 +1 -20 src/sys/kern/vfs_aio.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:34:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4684137B401; Thu, 3 Apr 2003 22:34:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8C9143FBF; Thu, 3 Apr 2003 22:34:29 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346YT0U053045; Thu, 3 Apr 2003 22:34:29 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346YTVj053044; Thu, 3 Apr 2003 22:34:29 -0800 (PST) Message-Id: <200304040634.h346YTVj053044@repoman.freebsd.org> From: Norikatsu Shigemura Date: Thu, 3 Apr 2003 22:34:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/zipcodes Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:34:30 -0000 nork 2003/04/03 22:34:29 PST FreeBSD ports repository Modified files: japanese/zipcodes Makefile Log: Update to 25 Mar 2003. Change MASTER_SITE by Japan Post Ministry organizational reform to Japan Post (Company). Fix new *_DEPENDS. Submitted by: Noriaki TAKEMOTO Revision Changes Path 1.32 +5 -5 ports/japanese/zipcodes/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:37:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F03D937B404; Thu, 3 Apr 2003 22:37:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B10A43FDD; Thu, 3 Apr 2003 22:37:37 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346bb0U053211; Thu, 3 Apr 2003 22:37:37 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346bbte053210; Thu, 3 Apr 2003 22:37:37 -0800 (PST) Message-Id: <200304040637.h346bbte053210@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 22:37:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gal Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:37:38 -0000 marcus 2003/04/03 22:37:37 PST FreeBSD ports repository Modified files: x11-toolkits/gal Makefile distinfo pkg-plist Log: Update to 0.24. Revision Changes Path 1.42 +2 -2 ports/x11-toolkits/gal/Makefile 1.28 +1 -1 ports/x11-toolkits/gal/distinfo 1.22 +1 -1 ports/x11-toolkits/gal/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:40:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BF1137B404; Thu, 3 Apr 2003 22:40:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF09C43F3F; Thu, 3 Apr 2003 22:40:44 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346ei0U053595; Thu, 3 Apr 2003 22:40:44 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346ei15053593; Thu, 3 Apr 2003 22:40:44 -0800 (PST) Message-Id: <200304040640.h346ei15053593@repoman.freebsd.org> From: Murray Stokely Date: Thu, 3 Apr 2003 22:40:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_8 Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:40:45 -0000 murray 2003/04/03 22:40:44 PST FreeBSD src repository Modified files: (Branch: RELENG_4_8) . UPDATING Log: Correct date of FreeBSD release. Revision Changes Path 1.73.2.80.2.2 +1 -1 src/UPDATING From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:44:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D13D37B404; Thu, 3 Apr 2003 22:44:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CD9D43F93; Thu, 3 Apr 2003 22:44:23 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346iN0U053830; Thu, 3 Apr 2003 22:44:23 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346iM3t053829; Thu, 3 Apr 2003 22:44:22 -0800 (PST) Message-Id: <200304040644.h346iM3t053829@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 22:44:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:44:23 -0000 marcus 2003/04/03 22:44:22 PST FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Merge in phase two of the new GNOME porting infrastructure. This update does away with the USE_GNOMNG macro (though I will keep this macro around for a bit just in case). It also adds GNOME 2 component support. A new macro has also been introduced called GNOME_DESKTOP_VERSION. Users can set this in /etc/make.conf or define it when building ports. Current allowed values are 1 or 2. Depending on the value of this macro, certain ports may be marked BROKEN if they would conflict with the desired GNOME desktop version. Also note, the old USE_GTK, USE_GNOME=yes, USE_IMLIB, USE_ESOUND, and USE_GLIB are now obsolete. Backwards compatability has been provided, but those macros should no longer be used. Special thanks to all the users on freebsd-gnome@ that help test these patches, and provided feedback. Documentation updates to the FreeBSD GNOME project site will be forthcoming. Revision Changes Path 1.21 +475 -304 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:45:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6113437B401; Thu, 3 Apr 2003 22:45:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3D4B43F75; Thu, 3 Apr 2003 22:45:01 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346j10U053871; Thu, 3 Apr 2003 22:45:01 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346j189053870; Thu, 3 Apr 2003 22:45:01 -0800 (PST) Message-Id: <200304040645.h346j189053870@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 22:45:01 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnomeng.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:45:02 -0000 marcus 2003/04/03 22:45:01 PST FreeBSD ports repository Removed files: Mk bsd.gnomeng.mk Log: Remove bsd.gnomeng.mk now that its functionality has been rolled into bsd.gnome.mk. Revision Changes Path 1.22 +0 -311 ports/Mk/bsd.gnomeng.mk (dead) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:47:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C56A137B401; Thu, 3 Apr 2003 22:47:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6294343F93; Thu, 3 Apr 2003 22:47:07 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346l70U053995; Thu, 3 Apr 2003 22:47:07 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346l7RY053994; Thu, 3 Apr 2003 22:47:07 -0800 (PST) Message-Id: <200304040647.h346l7RY053994@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 3 Apr 2003 22:47:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/share/sgml release.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:47:08 -0000 bmah 2003/04/03 22:47:07 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/share/sgml release.ent Log: Version number bumps for 4.8-STABLE release documentation. Approved by: re (implicitly) Revision Changes Path 1.1.2.18 +3 -3 src/release/doc/share/sgml/release.ent From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:47:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7308937B417; Thu, 3 Apr 2003 22:47:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 071F943F3F; Thu, 3 Apr 2003 22:47:23 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346lM0U054049; Thu, 3 Apr 2003 22:47:22 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346lMfU054048; Thu, 3 Apr 2003 22:47:22 -0800 (PST) Message-Id: <200304040647.h346lMfU054048@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 22:47:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gal2 Makefile distinfo pkg-plist patch-gal_e-table_e-table-group.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:47:24 -0000 marcus 2003/04/03 22:47:22 PST FreeBSD ports repository Modified files: x11-toolkits/gal2 Makefile distinfo pkg-plist x11-toolkits/gal2/files patch-ab patch-gal_e-table_e-table-group.c Log: Update to 1.99.2. Revision Changes Path 1.42 +2 -2 ports/x11-toolkits/gal2/Makefile 1.29 +1 -1 ports/x11-toolkits/gal2/distinfo 1.4 +4 -4 ports/x11-toolkits/gal2/files/patch-ab 1.4 +7 -22 ports/x11-toolkits/gal2/files/patch-gal_e-table_e-table-group.c 1.21 +2 -1 ports/x11-toolkits/gal2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:49:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24AA337B401; Thu, 3 Apr 2003 22:49:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3CB843F3F; Thu, 3 Apr 2003 22:49:21 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346nL0U054151; Thu, 3 Apr 2003 22:49:21 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346nLVY054150; Thu, 3 Apr 2003 22:49:21 -0800 (PST) Message-Id: <200304040649.h346nLVY054150@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 3 Apr 2003 22:49:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:49:22 -0000 bmah 2003/04/03 22:49:21 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Reset release notes for 4.8-STABLE. Move security advisories section to the top, rather than having it sandwiched between kernel and userland. New release notes: SA-03:07, sendmail-8.12.9. Approved by: re (implicitly) Revision Changes Path 1.22.2.347 +26 -295 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:51:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF83437B401; Thu, 3 Apr 2003 22:51:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BEF843FB1; Thu, 3 Apr 2003 22:51:06 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346p60U054628; Thu, 3 Apr 2003 22:51:06 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346p6eD054625; Thu, 3 Apr 2003 22:51:06 -0800 (PST) Message-Id: <200304040651.h346p6eD054625@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 3 Apr 2003 22:51:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:51:07 -0000 bmah 2003/04/03 22:51:06 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: Reset errata for 4.8-STABLE, seed with some new items. Approved by: re (implicitly) Revision Changes Path 1.1.2.99 +36 -112 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:53:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6307437B401; Thu, 3 Apr 2003 22:53:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D703743FBF; Thu, 3 Apr 2003 22:53:18 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346rI0U054771; Thu, 3 Apr 2003 22:53:18 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346rIwW054770; Thu, 3 Apr 2003 22:53:18 -0800 (PST) Message-Id: <200304040653.h346rIwW054770@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 22:53:18 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fonts/fontconfig Makefile distinfo pkg-install pkg-plist ports/x11-fonts/fontconfig/files patch-Makefile.in patch-config_Makedefs.in patch-configure patch-fc-cvs patch-fonts.conf.in patch-src_Makefile.in ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:53:19 -0000 marcus 2003/04/03 22:53:18 PST FreeBSD ports repository Modified files: x11-fonts/fontconfig Makefile distinfo pkg-plist x11-fonts/fontconfig/files patch-configure Added files: x11-fonts/fontconfig/files patch-Makefile.in patch-src_fccache.c patch-src_fccfg.c patch-src_fcdir.c patch-src_fcint.h pkg-install.in Removed files: x11-fonts/fontconfig pkg-install x11-fonts/fontconfig/files patch-config_Makedefs.in patch-fc-cvs patch-fonts.conf.in patch-src_Makefile.in patch-src_fcfreetype.c Log: Update to 2.1.92. This is a hacked development version that should solve most of the Xft/fontconfig problems people are experiencing. Note that in this version, font caches do not have to exist for Xft applications to function properly. PR: 50482 Revision Changes Path 1.15 +133 -18 ports/x11-fonts/fontconfig/Makefile 1.3 +1 -1 ports/x11-fonts/fontconfig/distinfo 1.1 +29 -0 ports/x11-fonts/fontconfig/files/patch-Makefile.in (new) 1.2 +0 -11 ports/x11-fonts/fontconfig/files/patch-config_Makedefs.in (dead) 1.2 +11 -3 ports/x11-fonts/fontconfig/files/patch-configure 1.2 +0 -212 ports/x11-fonts/fontconfig/files/patch-fc-cvs (dead) 1.2 +0 -10 ports/x11-fonts/fontconfig/files/patch-fonts.conf.in (dead) 1.3 +0 -51 ports/x11-fonts/fontconfig/files/patch-src_Makefile.in (dead) 1.1 +38 -0 ports/x11-fonts/fontconfig/files/patch-src_fccache.c (new) 1.1 +22 -0 ports/x11-fonts/fontconfig/files/patch-src_fccfg.c (new) 1.1 +32 -0 ports/x11-fonts/fontconfig/files/patch-src_fcdir.c (new) 1.2 +0 -11 ports/x11-fonts/fontconfig/files/patch-src_fcfreetype.c (dead) 1.1 +12 -0 ports/x11-fonts/fontconfig/files/patch-src_fcint.h (new) 1.1 +9 -0 ports/x11-fonts/fontconfig/files/pkg-install.in (new) 1.3 +0 -8 ports/x11-fonts/fontconfig/pkg-install (dead) 1.2 +133 -1 ports/x11-fonts/fontconfig/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:55:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4282437B401; Thu, 3 Apr 2003 22:55:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF65E43FAF; Thu, 3 Apr 2003 22:55:23 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346tN0U054906; Thu, 3 Apr 2003 22:55:23 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346tNAb054905; Thu, 3 Apr 2003 22:55:23 -0800 (PST) Message-Id: <200304040655.h346tNAb054905@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 22:55:23 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fonts/Xft Makefile ports/x11-fonts/Xft/files pkg-install.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:55:24 -0000 marcus 2003/04/03 22:55:23 PST FreeBSD ports repository Modified files: x11-fonts/Xft Makefile Added files: x11-fonts/Xft/files pkg-install.in Log: Borrow a little from kdelibs3, and add a dependency on the scalable fonts. Also, run fc-cache here as well as in fontconfig just to make sure we have some fonts installed. Revision Changes Path 1.12 +12 -4 ports/x11-fonts/Xft/Makefile 1.1 +9 -0 ports/x11-fonts/Xft/files/pkg-install.in (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:56:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 789C537B401; Thu, 3 Apr 2003 22:56:11 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D68943FBF; Thu, 3 Apr 2003 22:56:10 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.9/8.12.9) with ESMTP id h346twLd005568; Fri, 4 Apr 2003 08:56:08 +0200 (CEST) (envelope-from phk@phk.freebsd.dk) To: Nate Lawson From: "Poul-Henning Kamp" In-Reply-To: Your message of "Thu, 03 Apr 2003 15:49:08 -0800." Date: Fri, 04 Apr 2003 08:55:58 +0200 Message-ID: <5567.1049439358@critter.freebsd.dk> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:56:12 -0000 In message , Nate Lawson wri tes: >On Thu, 3 Apr 2003, Poul-Henning Kamp wrote: >> Modified files: >> sys/sys endian.h >> share/man/man9 byteorder.9 >> Log: >> Add inline functions {be,le}{16,32,64}{enc,dec}() for encoding decoding >> into byte strings of unknown alignment. >> >> Revision Changes Path >> 1.3 +39 -1 src/share/man/man9/byteorder.9 >> 1.3 +108 -0 src/sys/sys/endian.h > >This is really great! I have wanted this for a while. Just a few >questions. Have the standards folks had a look at the API? Second, it >appears the *enc functions have args in reverse order (void *, uint32_t >for example). Any thoughts on bcopy vs. memcpy ordering of args? I don't particularly care about the order, so if there is a concensus for one order over the other I'll just change it. -- 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. From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:59:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B63CE37B401; Thu, 3 Apr 2003 22:59:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5427543F93; Thu, 3 Apr 2003 22:59:28 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346xS0U055060; Thu, 3 Apr 2003 22:59:28 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346xSNa055059; Thu, 3 Apr 2003 22:59:28 -0800 (PST) Message-Id: <200304040659.h346xSNa055059@repoman.freebsd.org> From: Murray Stokely Date: Thu, 3 Apr 2003 22:59:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/misc bsd-family-tree X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:59:29 -0000 murray 2003/04/03 22:59:27 PST FreeBSD src repository Modified files: share/misc bsd-family-tree Log: Add release of FreeBSD 4.8. MFC after: 3 days Revision Changes Path 1.70 +5 -4 src/share/misc/bsd-family-tree From owner-cvs-all@FreeBSD.ORG Thu Apr 3 22:59:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4501737B401; Thu, 3 Apr 2003 22:59:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEBCC43F93; Thu, 3 Apr 2003 22:59:48 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h346xm0U055099; Thu, 3 Apr 2003 22:59:48 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h346xm3U055098; Thu, 3 Apr 2003 22:59:48 -0800 (PST) Message-Id: <200304040659.h346xm3U055098@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 22:59:48 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/pango Makefile pkg-install pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 06:59:49 -0000 marcus 2003/04/03 22:59:48 PST FreeBSD ports repository Modified files: x11-toolkits/pango Makefile pkg-plist Removed files: x11-toolkits/pango pkg-install Log: We no longer need to run fc-cache here as this will be done by Xft. Also, since XFree86 3.x is no longer supported in this release of pango, remove references to it. Revision Changes Path 1.44 +5 -17 ports/x11-toolkits/pango/Makefile 1.2 +0 -8 ports/x11-toolkits/pango/pkg-install (dead) 1.12 +12 -12 ports/x11-toolkits/pango/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:02:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A120837B401; Thu, 3 Apr 2003 23:02:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FD6943FA3; Thu, 3 Apr 2003 23:02:47 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3472l0U055599; Thu, 3 Apr 2003 23:02:47 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3472k9E055598; Thu, 3 Apr 2003 23:02:46 -0800 (PST) Message-Id: <200304040702.h3472k9E055598@repoman.freebsd.org> From: Murray Stokely Date: Thu, 3 Apr 2003 23:02:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:02:48 -0000 murray 2003/04/03 23:02:46 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/conf newvers.sh Log: This is 4.8-STABLE. Revision Changes Path 1.44.2.30 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:03:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77A2C37B401; Thu, 3 Apr 2003 23:03:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CA5A43F3F; Thu, 3 Apr 2003 23:03:45 -0800 (PST) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3473i0U056657; Thu, 3 Apr 2003 23:03:44 -0800 (PST) (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3473iAE056656; Thu, 3 Apr 2003 23:03:44 -0800 (PST) Message-Id: <200304040703.h3473iAE056656@repoman.freebsd.org> From: Martin Heinen Date: Thu, 3 Apr 2003 23:03:44 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/de_DE.ISO8859-1/books/faq book.sgml doc/de_DE.ISO8859-1/share/sgml doc/de_DE.ISO8859-1/books/handbook/kernelconfig chapter.sgml doc/de_DE.ISO8859-1/books/handbook/disks chapter.sgml doc/de_DE.ISO8859-1/books/handbook/eresources ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:03:46 -0000 mheinen 2003/04/03 23:03:44 PST FreeBSD doc repository Modified files: de_DE.ISO8859-1/books/faq book.sgml de_DE.ISO8859-1/share/sgml teams.ent mailing-lists.ent de_DE.ISO8859-1/books/handbook/kernelconfig chapter.sgml de_DE.ISO8859-1/books/handbook/disks chapter.sgml de_DE.ISO8859-1/books/handbook/mirrors chapter.sgml de_DE.ISO8859-1/books/handbook/eresources chapter.sgml Log: MFbed: Update German translations. books/faq/book.sgml 1.514 -> 1.520 share/sgml/teams.ent 1.6 -> 1.7 share/sgml/mailing-lists.ent 1.11 -> 1.12 books/handbook/kernelconfig/chapter.sgml 1.100 -> 1.104 books/handbook/disks/chapter.sgml 1.144 -> 1.145 books/handbook/mirrors/chapter.sgml 1.281 -> 1.283 books/handbook/eresources/chapter.sgml 1.107 -> 1.113 Revision Changes Path 1.35 +263 -243 doc/de_DE.ISO8859-1/books/faq/book.sgml 1.26 +12 -9 doc/de_DE.ISO8859-1/books/handbook/disks/chapter.sgml 1.10 +45 -8 doc/de_DE.ISO8859-1/books/handbook/eresources/chapter.sgml 1.18 +73 -67 doc/de_DE.ISO8859-1/books/handbook/kernelconfig/chapter.sgml 1.17 +20 -4 doc/de_DE.ISO8859-1/books/handbook/mirrors/chapter.sgml 1.9 +5 -2 doc/de_DE.ISO8859-1/share/sgml/mailing-lists.ent 1.5 +4 -2 doc/de_DE.ISO8859-1/share/sgml/teams.ent From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:04:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83BBA37B401; Thu, 3 Apr 2003 23:04:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AA9B43F93; Thu, 3 Apr 2003 23:04:21 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3474K0U056733; Thu, 3 Apr 2003 23:04:20 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3474KVP056732; Thu, 3 Apr 2003 23:04:20 -0800 (PST) Message-Id: <200304040704.h3474KVP056732@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:04:20 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mozilla Makefile distinfo ports/www/mozilla/files mozilla_12b_patch patch-config_rules.mk patch-nsprpub_pr_src_misc_prtime.c patch-other-licenses_libical_src_libical_Makefile.in patch-qt patch-security::coreconf::FreeBSD.mk xim_dekita2.patch X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:04:22 -0000 marcus 2003/04/03 23:04:20 PST FreeBSD ports repository Modified files: www/mozilla Makefile distinfo www/mozilla/files patch-modules::libpref::src::unix::unix.js patch-qt patch-security::coreconf::FreeBSD.mk Added files: www/mozilla/files patch-nsprpub_pr_src_misc_prtime.c patch-other-licenses_libical_src_libical_Makefile.in xim_dekita2.patch Removed files: www/mozilla/files mozilla_12b_patch patch-config_rules.mk Log: * Update to 1.3 * Default to building with -O2 optimizations [1] * Fix a bug where dead keys could not be used [2] PR: 49010 [2] Obtained from: www/phoenix [1] http://bugzilla.mozilla.org/show_bug.cgi?id=176713 [2] Revision Changes Path 1.134 +32 -14 ports/www/mozilla/Makefile 1.60 +2 -3 ports/www/mozilla/distinfo 1.2 +0 -953 ports/www/mozilla/files/mozilla_12b_patch (dead) 1.2 +0 -15 ports/www/mozilla/files/patch-config_rules.mk (dead) 1.5 +0 -0 ports/www/mozilla/files/patch-modules::libpref::src::unix::unix.js 1.1 +18 -0 ports/www/mozilla/files/patch-nsprpub_pr_src_misc_prtime.c (new) 1.1 +11 -0 ports/www/mozilla/files/patch-other-licenses_libical_src_libical_Makefile.in (new) 1.19 +8 -8 ports/www/mozilla/files/patch-qt 1.6 +0 -0 ports/www/mozilla/files/patch-security::coreconf::FreeBSD.mk 1.1 +517 -0 ports/www/mozilla/files/xim_dekita2.patch (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:05:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94A2037B401; Thu, 3 Apr 2003 23:05:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31DF343F3F; Thu, 3 Apr 2003 23:05:25 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3475P0U056882; Thu, 3 Apr 2003 23:05:25 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3475OYR056881; Thu, 3 Apr 2003 23:05:24 -0800 (PST) Message-Id: <200304040705.h3475OYR056881@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:05:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mozilla-gtk2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:05:26 -0000 marcus 2003/04/03 23:05:24 PST FreeBSD ports repository Modified files: www/mozilla-gtk2 Makefile Log: Update for Mozilla 1.3. Revision Changes Path 1.7 +1 -1 ports/www/mozilla-gtk2/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:06:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A562C37B401; Thu, 3 Apr 2003 23:06:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4339A43FBD; Thu, 3 Apr 2003 23:06:01 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347610U056942; Thu, 3 Apr 2003 23:06:01 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34760oB056939; Thu, 3 Apr 2003 23:06:00 -0800 (PST) Message-Id: <200304040706.h34760oB056939@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 3 Apr 2003 23:06:00 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/4.8R errata.html X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:06:02 -0000 bmah 2003/04/03 23:06:00 PST FreeBSD doc repository Modified files: en/releases/4.8R errata.html Log: Regen from article.sgml 1.1.2.99. Revision Changes Path 1.2 +61 -11 www/en/releases/4.8R/errata.html From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:06:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D69C137B401; Thu, 3 Apr 2003 23:06:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75AC943FA3; Thu, 3 Apr 2003 23:06:13 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3476D0U056992; Thu, 3 Apr 2003 23:06:13 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3476Dqb056991; Thu, 3 Apr 2003 23:06:13 -0800 (PST) Message-Id: <200304040706.h3476Dqb056991@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:06:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mozilla-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:06:14 -0000 marcus 2003/04/03 23:06:13 PST FreeBSD ports repository Modified files: www/mozilla-devel Makefile Log: Mark BROKEN until it can be updated to 1.4a. Revision Changes Path 1.143 +2 -0 ports/www/mozilla-devel/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:07:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59A9037B401; Thu, 3 Apr 2003 23:07:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E86ED43FBF; Thu, 3 Apr 2003 23:07:47 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3477l0U057057; Thu, 3 Apr 2003 23:07:47 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3477lMw057056; Thu, 3 Apr 2003 23:07:47 -0800 (PST) Message-Id: <200304040707.h3477lMw057056@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:07:47 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/galeon Makefile distinfo ports/www/galeon/files patch-hairy X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:07:48 -0000 marcus 2003/04/03 23:07:47 PST FreeBSD ports repository Modified files: www/galeon Makefile distinfo www/galeon/files patch-hairy Log: * Update to 1.2.9 * Add support for Mozilla 1.3 Revision Changes Path 1.96 +3 -2 ports/www/galeon/Makefile 1.44 +1 -1 ports/www/galeon/distinfo 1.6 +7 -7 ports/www/galeon/files/patch-hairy From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:09:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEAC937B401; Thu, 3 Apr 2003 23:08:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B30F943F75; Thu, 3 Apr 2003 23:08:58 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3478w0U057139; Thu, 3 Apr 2003 23:08:58 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3478w5f057138; Thu, 3 Apr 2003 23:08:58 -0800 (PST) Message-Id: <200304040708.h3478w5f057138@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:08:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/galeon2 Makefile distinfo pkg-plist ports/www/galeon2/files patch-ab patch-mozilla_ContentHandler.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:09:01 -0000 marcus 2003/04/03 23:08:58 PST FreeBSD ports repository Modified files: www/galeon2 Makefile distinfo pkg-plist www/galeon2/files patch-ab Removed files: www/galeon2/files patch-mozilla_ContentHandler.cpp Log: Update to 1.3.3. This should fix a problem where the spinner disappears after updating to libbonoboui-2.2.0.1. Revision Changes Path 1.100 +8 -6 ports/www/galeon2/Makefile 1.46 +1 -1 ports/www/galeon2/distinfo 1.18 +8 -4 ports/www/galeon2/files/patch-ab 1.2 +0 -27 ports/www/galeon2/files/patch-mozilla_ContentHandler.cpp (dead) 1.40 +7 -0 ports/www/galeon2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:12:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CE9C37B401; Thu, 3 Apr 2003 23:12:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3D7B43F75; Thu, 3 Apr 2003 23:12:25 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347CP0U057636; Thu, 3 Apr 2003 23:12:25 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347CPBe057635; Thu, 3 Apr 2003 23:12:25 -0800 (PST) Message-Id: <200304040712.h347CPBe057635@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:12:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/AbiWord2 Makefile distinfo pkg-message patch-src_af_ev_unix_ev_UnixToolbar.cpppatch-src_wp_ap_unix_ap_UnixApp.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:12:26 -0000 marcus 2003/04/03 23:12:25 PST FreeBSD ports repository Modified files: editors/AbiWord2 Makefile distinfo pkg-message pkg-plist Added files: editors/AbiWord2/files patch-src_af_ev_unix_ev_UnixToolbar.cpp patch-src_af_xap_unix_xap_UnixEncodingManager.cpp Removed files: editors/AbiWord2/files patch-src_wp_ap_unix_ap_UnixApp.cpp Log: * Update to 1.1.4 * Enable optional GNOME 2 support Revision Changes Path 1.53 +29 -5 ports/editors/AbiWord2/Makefile 1.24 +1 -1 ports/editors/AbiWord2/distinfo 1.1 +16 -0 ports/editors/AbiWord2/files/patch-src_af_ev_unix_ev_UnixToolbar.cpp (new) 1.1 +17 -0 ports/editors/AbiWord2/files/patch-src_af_xap_unix_xap_UnixEncodingManager.cpp (new) 1.2 +0 -11 ports/editors/AbiWord2/files/patch-src_wp_ap_unix_ap_UnixApp.cpp (dead) 1.9 +10 -21 ports/editors/AbiWord2/pkg-message 1.24 +77 -269 ports/editors/AbiWord2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:14:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8AA537B401; Thu, 3 Apr 2003 23:14:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F2EA43F3F; Thu, 3 Apr 2003 23:14:22 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347EM0U057777; Thu, 3 Apr 2003 23:14:22 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347EMVU057776; Thu, 3 Apr 2003 23:14:22 -0800 (PST) Message-Id: <200304040714.h347EMVU057776@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:14:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ORBit2 Makefile distinfo pkg-plist ports/devel/ORBit2/files patch-src::orb::util::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:14:23 -0000 marcus 2003/04/03 23:14:22 PST FreeBSD ports repository Modified files: devel/ORBit2 Makefile distinfo pkg-plist devel/ORBit2/files patch-src::orb::util::Makefile.in Log: Update to 2.6.1. Revision Changes Path 1.84 +1 -1 ports/devel/ORBit2/Makefile 1.36 +1 -1 ports/devel/ORBit2/distinfo 1.4 +11 -11 ports/devel/ORBit2/files/patch-src::orb::util::Makefile.in 1.18 +5 -0 ports/devel/ORBit2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:14:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25D2737B401; Thu, 3 Apr 2003 23:14:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADF3843F3F; Thu, 3 Apr 2003 23:14:50 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347Eo0U057832; Thu, 3 Apr 2003 23:14:50 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347EogH057831; Thu, 3 Apr 2003 23:14:50 -0800 (PST) Message-Id: <200304040714.h347EogH057831@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:14:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/bonobo-activation Makefile distinfo patch-server::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:14:51 -0000 marcus 2003/04/03 23:14:50 PST FreeBSD ports repository Modified files: devel/bonobo-activation Makefile distinfo pkg-plist devel/bonobo-activation/files patch-server::Makefile.in Log: Update to 2.2.1.1. Revision Changes Path 1.31 +1 -1 ports/devel/bonobo-activation/Makefile 1.15 +1 -1 ports/devel/bonobo-activation/distinfo 1.7 +11 -11 ports/devel/bonobo-activation/files/patch-server::Makefile.in 1.12 +38 -0 ports/devel/bonobo-activation/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:15:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32BCE37B401; Thu, 3 Apr 2003 23:15:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B892543F3F; Thu, 3 Apr 2003 23:15:18 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347FI0U057908; Thu, 3 Apr 2003 23:15:18 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347FICt057907; Thu, 3 Apr 2003 23:15:18 -0800 (PST) Message-Id: <200304040715.h347FICt057907@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:15:18 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/bugbuddy2 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:15:19 -0000 marcus 2003/04/03 23:15:18 PST FreeBSD ports repository Modified files: devel/bugbuddy2 Makefile distinfo pkg-plist Log: Update to 2.2.103. Revision Changes Path 1.37 +1 -2 ports/devel/bugbuddy2/Makefile 1.16 +1 -1 ports/devel/bugbuddy2/distinfo 1.13 +2 -1 ports/devel/bugbuddy2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:15:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91B4D37B404; Thu, 3 Apr 2003 23:15:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FA3C43F3F; Thu, 3 Apr 2003 23:15:20 -0800 (PST) (envelope-from orion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347FK0U057935; Thu, 3 Apr 2003 23:15:20 -0800 (PST) (envelope-from orion@repoman.freebsd.org) Received: (from orion@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347FJvu057934; Thu, 3 Apr 2003 23:15:19 -0800 (PST) Message-Id: <200304040715.h347FJvu057934@repoman.freebsd.org> From: Orion Hodson Date: Thu, 3 Apr 2003 23:15:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sound/pci ich.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:15:21 -0000 orion 2003/04/03 23:15:19 PST FreeBSD src repository Modified files: sys/dev/sound/pci ich.c Log: Fix mismatch between bus address stored for buffer descriptors and actual address of buffer descriptor. This should fix the reported calibration failures and subsequent speed problems with ich chipsets. Minor calibration comment updates. Revision Changes Path 1.27 +8 -3 src/sys/dev/sound/pci/ich.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:16:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 630EC37B404; Thu, 3 Apr 2003 23:16:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C35D643F93; Thu, 3 Apr 2003 23:16:02 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347G20U058016; Thu, 3 Apr 2003 23:16:02 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347G24S058014; Thu, 3 Apr 2003 23:16:02 -0800 (PST) Message-Id: <200304040716.h347G24S058014@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:16:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libbonobo Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:16:03 -0000 marcus 2003/04/03 23:16:02 PST FreeBSD ports repository Modified files: devel/libbonobo Makefile distinfo pkg-plist Log: Update to 2.2.1. Revision Changes Path 1.24 +1 -1 ports/devel/libbonobo/Makefile 1.10 +1 -1 ports/devel/libbonobo/distinfo 1.11 +4 -57 ports/devel/libbonobo/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:16:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5962437B401; Thu, 3 Apr 2003 23:16:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E097643F85; Thu, 3 Apr 2003 23:16:46 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347Gk0U058096; Thu, 3 Apr 2003 23:16:46 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347Gk0t058095; Thu, 3 Apr 2003 23:16:46 -0800 (PST) Message-Id: <200304040716.h347Gk0t058095@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:16:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/gnomevfs2 Makefile distinfo pkg-plist patch-libgnomevfs_gnome-vfs-mime-magic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:16:47 -0000 marcus 2003/04/03 23:16:46 PST FreeBSD ports repository Modified files: devel/gnomevfs2 Makefile distinfo pkg-plist devel/gnomevfs2/files patch-aa Added files: devel/gnomevfs2/files patch-libgnomevfs_gnome-vfs-mime-magic.c Log: Update to 2.2.4. Revision Changes Path 1.62 +1 -1 ports/devel/gnomevfs2/Makefile 1.31 +1 -1 ports/devel/gnomevfs2/distinfo 1.27 +9 -10 ports/devel/gnomevfs2/files/patch-aa 1.1 +20 -0 ports/devel/gnomevfs2/files/patch-libgnomevfs_gnome-vfs-mime-magic.c (new) 1.34 +5 -0 ports/devel/gnomevfs2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:17:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FAED37B404; Thu, 3 Apr 2003 23:17:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3FC143FA3; Thu, 3 Apr 2003 23:17:20 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347HK0U058136; Thu, 3 Apr 2003 23:17:20 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347HK6M058135; Thu, 3 Apr 2003 23:17:20 -0800 (PST) Message-Id: <200304040717.h347HK6M058135@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:17:20 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libsigc++12 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:17:22 -0000 marcus 2003/04/03 23:17:20 PST FreeBSD ports repository Modified files: devel/libsigc++12 Makefile distinfo Log: Update to 1.2.4. Revision Changes Path 1.20 +1 -2 ports/devel/libsigc++12/Makefile 1.11 +1 -1 ports/devel/libsigc++12/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:18:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4792D37B401; Thu, 3 Apr 2003 23:18:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C18E243F3F; Thu, 3 Apr 2003 23:18:35 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347IZ0U058191; Thu, 3 Apr 2003 23:18:35 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347IZka058190; Thu, 3 Apr 2003 23:18:35 -0800 (PST) Message-Id: <200304040718.h347IZka058190@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:18:35 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/acme Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:18:36 -0000 marcus 2003/04/03 23:18:35 PST FreeBSD ports repository Modified files: multimedia/acme Makefile distinfo pkg-plist Log: Update to 2.0.3. Revision Changes Path 1.3 +1 -1 ports/multimedia/acme/Makefile 1.2 +1 -1 ports/multimedia/acme/distinfo 1.2 +9 -0 ports/multimedia/acme/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:20:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A269B37B401; Thu, 3 Apr 2003 23:20:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4298B43F3F; Thu, 3 Apr 2003 23:20:13 -0800 (PST) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347KD0U058303; Thu, 3 Apr 2003 23:20:13 -0800 (PST) (envelope-from se@repoman.freebsd.org) Received: (from se@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347KC15058300; Thu, 3 Apr 2003 23:20:12 -0800 (PST) Message-Id: <200304040720.h347KC15058300@repoman.freebsd.org> From: Stefan Esser Date: Thu, 3 Apr 2003 23:20:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/jftpgw/files jftpgw.sh.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:20:14 -0000 se 2003/04/03 23:20:12 PST FreeBSD ports repository Modified files: ftp/jftpgw/files jftpgw.sh.in Log: PID file creation is now safe: Re-enable previous 'stop' procedure and kill process identified in PID file instead of the 'killall jftpgw' used as a work-around. Revision Changes Path 1.4 +2 -4 ports/ftp/jftpgw/files/jftpgw.sh.in From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:21:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6604937B401; Thu, 3 Apr 2003 23:21:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0007043F3F; Thu, 3 Apr 2003 23:21:03 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347L30U058721; Thu, 3 Apr 2003 23:21:03 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347L3fM058720; Thu, 3 Apr 2003 23:21:03 -0800 (PST) Message-Id: <200304040721.h347L3fM058720@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:21:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/dia Makefile distinfo pkg-descr pkg-plist ports/graphics/dia/files dia.sh patch-ad patch-af patch-lib::charconv.c patch-lib::font.c patch-lib_intl.c patch-shapes_Cisco_Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:21:04 -0000 marcus 2003/04/03 23:21:03 PST FreeBSD ports repository Modified files: graphics/dia Makefile distinfo pkg-descr pkg-plist graphics/dia/files patch-ad patch-objects::GRAFCET::boolequation.c Added files: graphics/dia/files patch-lib_intl.c patch-plug-ins_xslt_xslt.c patch-shapes_Cisco_Makefile.in Removed files: graphics/dia/files dia.sh patch-af patch-lib::charconv.c patch-lib::font.c Log: Update to 0.91. Revision Changes Path 1.25 +17 -13 ports/graphics/dia/Makefile 1.9 +1 -1 ports/graphics/dia/distinfo 1.3 +0 -7 ports/graphics/dia/files/dia.sh (dead) 1.6 +9 -12 ports/graphics/dia/files/patch-ad 1.5 +0 -53 ports/graphics/dia/files/patch-af (dead) 1.2 +0 -15 ports/graphics/dia/files/patch-lib::charconv.c (dead) 1.2 +0 -15 ports/graphics/dia/files/patch-lib::font.c (dead) 1.1 +10 -0 ports/graphics/dia/files/patch-lib_intl.c (new) 1.2 +7 -10 ports/graphics/dia/files/patch-objects::GRAFCET::boolequation.c 1.1 +11 -0 ports/graphics/dia/files/patch-plug-ins_xslt_xslt.c (new) 1.1 +336 -0 ports/graphics/dia/files/patch-shapes_Cisco_Makefile.in (new) 1.3 +1 -2 ports/graphics/dia/pkg-descr 1.14 +558 -2 ports/graphics/dia/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:21:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EC8C37B401; Thu, 3 Apr 2003 23:21:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F43043F85; Thu, 3 Apr 2003 23:21:17 -0800 (PST) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347LH0U058757; Thu, 3 Apr 2003 23:21:17 -0800 (PST) (envelope-from se@repoman.freebsd.org) Received: (from se@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347LGwF058756; Thu, 3 Apr 2003 23:21:16 -0800 (PST) Message-Id: <200304040721.h347LGwF058756@repoman.freebsd.org> From: Stefan Esser Date: Thu, 3 Apr 2003 23:21:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/jftpgw Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:21:18 -0000 se 2003/04/03 23:21:16 PST FreeBSD ports repository Modified files: ftp/jftpgw Makefile distinfo Log: Upgrade to 0.13.4: Fix possible buffer overflow. Revision Changes Path 1.10 +1 -1 ports/ftp/jftpgw/Makefile 1.7 +2 -2 ports/ftp/jftpgw/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:21:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A6F637B409; Thu, 3 Apr 2003 23:21:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D411E43F85; Thu, 3 Apr 2003 23:21:28 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347LS0U058791; Thu, 3 Apr 2003 23:21:28 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347LS4g058790; Thu, 3 Apr 2003 23:21:28 -0800 (PST) Message-Id: <200304040721.h347LS4g058790@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:21:28 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gnome-fifth-toe Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:21:29 -0000 marcus 2003/04/03 23:21:28 PST FreeBSD ports repository Modified files: x11/gnome-fifth-toe Makefile Log: Remove dia. It is now a GNOME 2 port. Revision Changes Path 1.19 +1 -2 ports/x11/gnome-fifth-toe/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:21:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA27737B434; Thu, 3 Apr 2003 23:21:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89C0D43FA3; Thu, 3 Apr 2003 23:21:45 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347Lj0U058820; Thu, 3 Apr 2003 23:21:45 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347Lj1M058819; Thu, 3 Apr 2003 23:21:45 -0800 (PST) Message-Id: <200304040721.h347Lj1M058819@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 3 Apr 2003 23:21:45 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releng index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:21:46 -0000 bmah 2003/04/03 23:21:45 PST FreeBSD doc repository Modified files: en/releng index.sgml Log: Take 4.8 off the list of future releases...it's here! Revision Changes Path 1.45 +1 -2 www/en/releng/index.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:22:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F06A537B401; Thu, 3 Apr 2003 23:22:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DF7143F93; Thu, 3 Apr 2003 23:22:21 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347ML0U058870; Thu, 3 Apr 2003 23:22:21 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347ML20058869; Thu, 3 Apr 2003 23:22:21 -0800 (PST) Message-Id: <200304040722.h347ML20058869@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:22:21 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/librsvg2 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:22:22 -0000 marcus 2003/04/03 23:22:21 PST FreeBSD ports repository Modified files: graphics/librsvg2 Makefile distinfo pkg-plist Log: Update to 2.2.5. Revision Changes Path 1.24 +19 -3 ports/graphics/librsvg2/Makefile 1.9 +1 -1 ports/graphics/librsvg2/distinfo 1.6 +1 -0 ports/graphics/librsvg2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:22:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81D6437B401; Thu, 3 Apr 2003 23:22:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E20843FA3; Thu, 3 Apr 2003 23:22:43 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347Mg0U058903; Thu, 3 Apr 2003 23:22:42 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347MgVU058902; Thu, 3 Apr 2003 23:22:42 -0800 (PST) Message-Id: <200304040722.h347MgVU058902@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:22:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/librsvg2/files patch-gimp-plugin_Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:22:44 -0000 marcus 2003/04/03 23:22:42 PST FreeBSD ports repository Added files: graphics/librsvg2/files patch-gimp-plugin_Makefile.in Log: Add a patch forgotten in the last commit. Revision Changes Path 1.1 +11 -0 ports/graphics/librsvg2/files/patch-gimp-plugin_Makefile.in (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:23:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6361037B401; Thu, 3 Apr 2003 23:23:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC4E243FDD; Thu, 3 Apr 2003 23:23:53 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347Nr0U058976; Thu, 3 Apr 2003 23:23:53 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347Nr47058975; Thu, 3 Apr 2003 23:23:53 -0800 (PST) Message-Id: <200304040723.h347Nr47058975@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:23:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/sawfish2 Makefile distinfopatch-src_gtk-style.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:23:54 -0000 marcus 2003/04/03 23:23:53 PST FreeBSD ports repository Modified files: x11-wm/sawfish2 Makefile distinfo Removed files: x11-wm/sawfish2/files patch-lisp_sawfish_wm_windows.jl patch-src_gtk-style.c Log: Update to 1.3. Revision Changes Path 1.72 +20 -10 ports/x11-wm/sawfish2/Makefile 1.39 +1 -1 ports/x11-wm/sawfish2/distinfo 1.2 +0 -11 ports/x11-wm/sawfish2/files/patch-lisp_sawfish_wm_windows.jl (dead) 1.2 +0 -15 ports/x11-wm/sawfish2/files/patch-src_gtk-style.c (dead) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:24:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9530037B401; Thu, 3 Apr 2003 23:24:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EE6943FCB; Thu, 3 Apr 2003 23:24:46 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347Ok0U059051; Thu, 3 Apr 2003 23:24:46 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347OjjY059050; Thu, 3 Apr 2003 23:24:45 -0800 (PST) Message-Id: <200304040724.h347OjjY059050@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:24:45 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/news/pan2 Makefile distinfo ports/news/pan2/files patch-pan_filters_score.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:24:47 -0000 marcus 2003/04/03 23:24:45 PST FreeBSD ports repository Modified files: news/pan2 Makefile distinfo Added files: news/pan2/files patch-pan_filters_score.c Log: Update to 0.13.93. Revision Changes Path 1.74 +1 -1 ports/news/pan2/Makefile 1.50 +1 -1 ports/news/pan2/distinfo 1.1 +11 -0 ports/news/pan2/files/patch-pan_filters_score.c (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:25:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D53937B401; Thu, 3 Apr 2003 23:25:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB02143FCB; Thu, 3 Apr 2003 23:25:58 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347Pw0U059161; Thu, 3 Apr 2003 23:25:58 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347Pw0G059160; Thu, 3 Apr 2003 23:25:58 -0800 (PST) Message-Id: <200304040725.h347Pw0G059160@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:25:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/vte Makefileports/x11-toolkits/vte/files patch-src_vte.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:25:59 -0000 marcus 2003/04/03 23:25:58 PST FreeBSD ports repository Modified files: x11-toolkits/vte Makefile x11-toolkits/vte/files patch-src_vte.c Log: Fix a bug in vte where the terminal would lock up sometimes when doing long ls's or viewing scripts in /usr/bin/dialog. Tested by: Mezz bsdforums.org Revision Changes Path 1.20 +1 -0 ports/x11-toolkits/vte/Makefile 1.2 +15 -46 ports/x11-toolkits/vte/files/patch-src_vte.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:26:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DECC37B401; Thu, 3 Apr 2003 23:26:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0922343F75; Thu, 3 Apr 2003 23:26:36 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347QZ0U059215; Thu, 3 Apr 2003 23:26:35 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347QZs1059214; Thu, 3 Apr 2003 23:26:35 -0800 (PST) Message-Id: <200304040726.h347QZs1059214@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:26:35 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/eel2 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:26:37 -0000 marcus 2003/04/03 23:26:35 PST FreeBSD ports repository Modified files: x11-toolkits/eel2 Makefile distinfo pkg-plist Log: Update to 2.2.3.1. Revision Changes Path 1.31 +1 -1 ports/x11-toolkits/eel2/Makefile 1.18 +1 -1 ports/x11-toolkits/eel2/distinfo 1.16 +6 -0 ports/x11-toolkits/eel2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:27:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBF4037B401; Thu, 3 Apr 2003 23:27:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76D7243FCB; Thu, 3 Apr 2003 23:27:07 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347R70U059254; Thu, 3 Apr 2003 23:27:07 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347R7Ou059253; Thu, 3 Apr 2003 23:27:07 -0800 (PST) Message-Id: <200304040727.h347R7Ou059253@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:27:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/libgnomeprintui Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:27:08 -0000 marcus 2003/04/03 23:27:07 PST FreeBSD ports repository Modified files: x11-toolkits/libgnomeprintui Makefile distinfo pkg-plist Log: Update to 2.2.1.2. Revision Changes Path 1.19 +1 -1 ports/x11-toolkits/libgnomeprintui/Makefile 1.7 +1 -1 ports/x11-toolkits/libgnomeprintui/distinfo 1.8 +4 -0 ports/x11-toolkits/libgnomeprintui/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:27:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85AE937B401; Thu, 3 Apr 2003 23:27:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34FBD43FDD; Thu, 3 Apr 2003 23:27:37 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347Rb0U059308; Thu, 3 Apr 2003 23:27:37 -0800 (PST) (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347Ra78059307; Thu, 3 Apr 2003 23:27:36 -0800 (PST) Message-Id: <200304040727.h347Ra78059307@repoman.freebsd.org> From: Peter Pentchev Date: Thu, 3 Apr 2003 23:27:36 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/autorespond Makefile distinfo ports/mail/autorespond/files patch-autorespond.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:27:37 -0000 roam 2003/04/03 23:27:36 PST FreeBSD ports repository Modified files: mail/autorespond Makefile distinfo Removed files: mail/autorespond/files patch-autorespond.c Log: Update to 2.0.3 and add my autoconfiguration patch which uses DJB's mechanisms for detecting the availability of strcasestr(3) and only uses autorespond's own strcasestr() version if needed. NOTE: there is NO functionality change in autorespond-2.0.3 with respect to 2.0.2. Revision Changes Path 1.11 +8 -11 ports/mail/autorespond/Makefile 1.4 +2 -1 ports/mail/autorespond/distinfo 1.3 +0 -19 ports/mail/autorespond/files/patch-autorespond.c (dead) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:28:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A72237B40A; Thu, 3 Apr 2003 23:28:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C65F543FBD; Thu, 3 Apr 2003 23:28:22 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347SM0U059430; Thu, 3 Apr 2003 23:28:22 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347SMMS059429; Thu, 3 Apr 2003 23:28:22 -0800 (PST) Message-Id: <200304040728.h347SMMS059429@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 3 Apr 2003 23:28:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/science Makefile ports/science/libctl Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:28:23 -0000 ijliao 2003/04/03 23:28:22 PST FreeBSD ports repository Modified files: science Makefile Added files: science/libctl Makefile distinfo pkg-descr pkg-plist Log: add libctl 2.2 Control Language Library Revision Changes Path 1.22 +1 -0 ports/science/Makefile 1.1 +31 -0 ports/science/libctl/Makefile (new) 1.1 +1 -0 ports/science/libctl/distinfo (new) 1.1 +14 -0 ports/science/libctl/pkg-descr (new) 1.1 +49 -0 ports/science/libctl/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:28:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C7B737B421; Thu, 3 Apr 2003 23:28:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBE1A43FB1; Thu, 3 Apr 2003 23:28:29 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347ST0U059519; Thu, 3 Apr 2003 23:28:29 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347STKQ059518; Thu, 3 Apr 2003 23:28:29 -0800 (PST) Message-Id: <200304040728.h347STKQ059518@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:28:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gtk--2 Makefile distinfo pkg-message pkg-plist ports/x11-toolkits/gtk--2/files patch-examples_markup_parser.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:28:30 -0000 marcus 2003/04/03 23:28:29 PST FreeBSD ports repository Modified files: x11-toolkits/gtk--2 Makefile distinfo pkg-plist Added files: x11-toolkits/gtk--2/files patch-examples_markup_parser.cc Removed files: x11-toolkits/gtk--2 pkg-message Log: Update to 2.2.1. Revision Changes Path 1.49 +1 -1 ports/x11-toolkits/gtk--2/Makefile 1.19 +1 -1 ports/x11-toolkits/gtk--2/distinfo 1.1 +19 -0 ports/x11-toolkits/gtk--2/files/patch-examples_markup_parser.cc (new) 1.2 +0 -10 ports/x11-toolkits/gtk--2/pkg-message (dead) 1.20 +1855 -1617 ports/x11-toolkits/gtk--2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:28:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81D5537B425; Thu, 3 Apr 2003 23:28:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FE9743FB1; Thu, 3 Apr 2003 23:28:31 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347SU0U059548; Thu, 3 Apr 2003 23:28:30 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347SUeX059547; Thu, 3 Apr 2003 23:28:30 -0800 (PST) Message-Id: <200304040728.h347SUeX059547@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 3 Apr 2003 23:28:30 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:28:31 -0000 ijliao 2003/04/03 23:28:30 PST FreeBSD ports repository Modified files: . modules Log: libctl --> ports/science/libctl Revision Changes Path 1.6972 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:30:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8242637B401; Thu, 3 Apr 2003 23:30:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2463B43FB1; Thu, 3 Apr 2003 23:30:20 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347UJ0U059763; Thu, 3 Apr 2003 23:30:19 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347UJ8s059761; Thu, 3 Apr 2003 23:30:19 -0800 (PST) Message-Id: <200304040730.h347UJ8s059761@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:30:19 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/mergeant Makefile distinfo pkg-plist ports/databases/libgda2 Makefile distinfo pkg-plist ports/databases/libgnomedb Makefile distinfo pkg-plist ports/databases/libgnomedb/files patch-doc_C_Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:30:21 -0000 marcus 2003/04/03 23:30:19 PST FreeBSD ports repository Modified files: databases/mergeant Makefile distinfo pkg-plist databases/libgda2 Makefile distinfo pkg-plist databases/libgnomedb Makefile distinfo pkg-plist Removed files: databases/libgnomedb/files patch-doc_C_Makefile.in Log: Update to 0.11.0. Revision Changes Path 1.36 +2 -2 ports/databases/libgda2/Makefile 1.19 +1 -1 ports/databases/libgda2/distinfo 1.21 +2 -0 ports/databases/libgda2/pkg-plist 1.12 +2 -2 ports/databases/libgnomedb/Makefile 1.7 +1 -1 ports/databases/libgnomedb/distinfo 1.2 +0 -11 ports/databases/libgnomedb/files/patch-doc_C_Makefile.in (dead) 1.8 +3 -1 ports/databases/libgnomedb/pkg-plist 1.8 +3 -3 ports/databases/mergeant/Makefile 1.5 +1 -1 ports/databases/mergeant/distinfo 1.7 +3 -0 ports/databases/mergeant/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:30:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C51E337B401; Thu, 3 Apr 2003 23:30:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 652C443F93; Thu, 3 Apr 2003 23:30:51 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347Up0U060035; Thu, 3 Apr 2003 23:30:51 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347UomV060030; Thu, 3 Apr 2003 23:30:50 -0800 (PST) Message-Id: <200304040730.h347UomV060030@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:30:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/glade2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:30:52 -0000 marcus 2003/04/03 23:30:50 PST FreeBSD ports repository Modified files: devel/glade2 Makefile Log: Chase the libgda2 shared lib version. Revision Changes Path 1.43 +2 -2 ports/devel/glade2/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:31:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADC6037B401; Thu, 3 Apr 2003 23:31:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4534C43F3F; Thu, 3 Apr 2003 23:31:48 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347Vm0U060152; Thu, 3 Apr 2003 23:31:48 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347Vlrj060151; Thu, 3 Apr 2003 23:31:47 -0800 (PST) Message-Id: <200304040731.h347Vlrj060151@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:31:47 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/libgnomeprint Makefile distinfo pkg-plist ports/print/libgnomeprint/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:31:49 -0000 marcus 2003/04/03 23:31:47 PST FreeBSD ports repository Modified files: print/libgnomeprint Makefile distinfo pkg-plist print/libgnomeprint/files patch-configure Log: Update to 2.2.1.2. Revision Changes Path 1.67 +1 -1 ports/print/libgnomeprint/Makefile 1.28 +1 -1 ports/print/libgnomeprint/distinfo 1.7 +3 -15 ports/print/libgnomeprint/files/patch-configure 1.36 +5 -0 ports/print/libgnomeprint/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:32:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5874837B401; Thu, 3 Apr 2003 23:32:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E381C43FA3; Thu, 3 Apr 2003 23:32:45 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347Wj0U060235; Thu, 3 Apr 2003 23:32:45 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347WjTb060234; Thu, 3 Apr 2003 23:32:45 -0800 (PST) Message-Id: <200304040732.h347WjTb060234@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:32:45 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/gedit2 Makefile distinfo pkg-plist ports/editors/gedit2/files patch-plugins_sort_Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:32:46 -0000 marcus 2003/04/03 23:32:45 PST FreeBSD ports repository Modified files: editors/gedit2 Makefile distinfo pkg-plist Removed files: editors/gedit2/files patch-plugins_sort_Makefile.in Log: Update to 2.2.1. Revision Changes Path 1.56 +1 -1 ports/editors/gedit2/Makefile 1.28 +1 -1 ports/editors/gedit2/distinfo 1.2 +0 -11 ports/editors/gedit2/files/patch-plugins_sort_Makefile.in (dead) 1.23 +50 -47 ports/editors/gedit2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:34:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6278B37B401; Thu, 3 Apr 2003 23:34:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0075943FAF; Thu, 3 Apr 2003 23:34:36 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347YZ0U060297; Thu, 3 Apr 2003 23:34:35 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347YZIN060296; Thu, 3 Apr 2003 23:34:35 -0800 (PST) Message-Id: <200304040734.h347YZIN060296@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:34:35 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/gcalctool Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:34:36 -0000 marcus 2003/04/03 23:34:35 PST FreeBSD ports repository Modified files: math/gcalctool Makefile distinfo pkg-plist Log: Update to 4.2.77. Revision Changes Path 1.8 +2 -4 ports/math/gcalctool/Makefile 1.4 +1 -1 ports/math/gcalctool/distinfo 1.4 +28 -2 ports/math/gcalctool/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:35:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E527E37B401; Thu, 3 Apr 2003 23:35:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81B0043F75; Thu, 3 Apr 2003 23:35:06 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347Z60U060368; Thu, 3 Apr 2003 23:35:06 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347Z64o060367; Thu, 3 Apr 2003 23:35:06 -0800 (PST) Message-Id: <200304040735.h347Z64o060367@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:35:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/libxml2 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:35:07 -0000 marcus 2003/04/03 23:35:06 PST FreeBSD ports repository Modified files: textproc/libxml2 Makefile distinfo pkg-plist Log: Update to 2.5.6. Revision Changes Path 1.89 +1 -1 ports/textproc/libxml2/Makefile 1.61 +1 -1 ports/textproc/libxml2/distinfo 1.40 +2 -0 ports/textproc/libxml2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:35:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83B7A37B404; Thu, 3 Apr 2003 23:35:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 208B443FE0; Thu, 3 Apr 2003 23:35:25 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347ZP0U060434; Thu, 3 Apr 2003 23:35:25 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347ZPLL060433; Thu, 3 Apr 2003 23:35:25 -0800 (PST) Message-Id: <200304040735.h347ZPLL060433@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:35:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/libxslt Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:35:27 -0000 marcus 2003/04/03 23:35:25 PST FreeBSD ports repository Modified files: textproc/libxslt Makefile distinfo Log: Update to 1.0.29. Revision Changes Path 1.40 +1 -1 ports/textproc/libxslt/Makefile 1.33 +1 -1 ports/textproc/libxslt/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:36:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E513337B401; Thu, 3 Apr 2003 23:36:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 791B243F75; Thu, 3 Apr 2003 23:36:08 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347a80U060530; Thu, 3 Apr 2003 23:36:08 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347a866060527; Thu, 3 Apr 2003 23:36:08 -0800 (PST) Message-Id: <200304040736.h347a866060527@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:36:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fm/nautilus2 Makefile distinfo pkg-plist patch-libnautilus-private::nautilus-volume-monitor.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:36:09 -0000 marcus 2003/04/03 23:36:08 PST FreeBSD ports repository Modified files: x11-fm/nautilus2 Makefile distinfo pkg-plist x11-fm/nautilus2/files patch-libnautilus-private::nautilus-volume-monitor.c Log: Update to 2.2.3.1. Revision Changes Path 1.79 +1 -1 ports/x11-fm/nautilus2/Makefile 1.23 +1 -1 ports/x11-fm/nautilus2/distinfo 1.11 +10 -13 ports/x11-fm/nautilus2/files/patch-libnautilus-private::nautilus-volume-monitor.c 1.22 +7 -1 ports/x11-fm/nautilus2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:37:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E31437B404; Thu, 3 Apr 2003 23:37:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE17143FBD; Thu, 3 Apr 2003 23:37:25 -0800 (PST) (envelope-from orion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347bP0U060601; Thu, 3 Apr 2003 23:37:25 -0800 (PST) (envelope-from orion@repoman.freebsd.org) Received: (from orion@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347bP8T060600; Thu, 3 Apr 2003 23:37:25 -0800 (PST) Message-Id: <200304040737.h347bP8T060600@repoman.freebsd.org> From: Orion Hodson Date: Thu, 3 Apr 2003 23:37:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sound/pcm ac97.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:37:27 -0000 orion 2003/04/03 23:37:25 PST FreeBSD src repository Modified files: sys/dev/sound/pcm ac97.c Log: Additional codec ids. Revision Changes Path 1.39 +6 -0 src/sys/dev/sound/pcm/ac97.c From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:37:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02E3337B405; Thu, 3 Apr 2003 23:37:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93E6143FA3; Thu, 3 Apr 2003 23:37:39 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347bd0U060642; Thu, 3 Apr 2003 23:37:39 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347bdMj060641; Thu, 3 Apr 2003 23:37:39 -0800 (PST) Message-Id: <200304040737.h347bdMj060641@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:37:39 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/gucharmap Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:37:40 -0000 marcus 2003/04/03 23:37:39 PST FreeBSD ports repository Modified files: misc/gucharmap Makefile distinfo pkg-plist Log: Update to 0.4.0. Revision Changes Path 1.3 +5 -4 ports/misc/gucharmap/Makefile 1.2 +1 -1 ports/misc/gucharmap/distinfo 1.2 +17 -0 ports/misc/gucharmap/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:38:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D607337B401; Thu, 3 Apr 2003 23:38:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7116543FB1; Thu, 3 Apr 2003 23:38:13 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347cD0U060688; Thu, 3 Apr 2003 23:38:13 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347cDMB060687; Thu, 3 Apr 2003 23:38:13 -0800 (PST) Message-Id: <200304040738.h347cDMB060687@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:38:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/gnomeuserdocs2 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:38:14 -0000 marcus 2003/04/03 23:38:13 PST FreeBSD ports repository Modified files: misc/gnomeuserdocs2 Makefile distinfo pkg-plist Log: Update to 2.0.6. Revision Changes Path 1.15 +2 -4 ports/misc/gnomeuserdocs2/Makefile 1.9 +1 -1 ports/misc/gnomeuserdocs2/distinfo 1.10 +42 -30 ports/misc/gnomeuserdocs2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:38:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80D1C37B401; Thu, 3 Apr 2003 23:38:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CC0543FBD; Thu, 3 Apr 2003 23:38:44 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347ch0U060727; Thu, 3 Apr 2003 23:38:43 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347chfe060726; Thu, 3 Apr 2003 23:38:43 -0800 (PST) Message-Id: <200304040738.h347chfe060726@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:38:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/gnomeutils2 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:38:44 -0000 marcus 2003/04/03 23:38:43 PST FreeBSD ports repository Modified files: misc/gnomeutils2 Makefile distinfo pkg-plist Log: Update to 2.2.1. Revision Changes Path 1.60 +1 -1 ports/misc/gnomeutils2/Makefile 1.32 +1 -1 ports/misc/gnomeutils2/distinfo 1.25 +53 -0 ports/misc/gnomeutils2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:39:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E682F37B401; Thu, 3 Apr 2003 23:39:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81B4B43FBF; Thu, 3 Apr 2003 23:39:07 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347d70U060765; Thu, 3 Apr 2003 23:39:07 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347d7Os060764; Thu, 3 Apr 2003 23:39:07 -0800 (PST) Message-Id: <200304040739.h347d7Os060764@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:39:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/gnome-icon-theme Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:39:08 -0000 marcus 2003/04/03 23:39:07 PST FreeBSD ports repository Modified files: misc/gnome-icon-theme Makefile distinfo pkg-plist Log: Update to 1.0.2. Revision Changes Path 1.7 +1 -1 ports/misc/gnome-icon-theme/Makefile 1.4 +1 -1 ports/misc/gnome-icon-theme/distinfo 1.5 +3 -1 ports/misc/gnome-icon-theme/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:39:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA79A37B401; Thu, 3 Apr 2003 23:39:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4918F43FA3; Thu, 3 Apr 2003 23:39:47 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347dl0U060806; Thu, 3 Apr 2003 23:39:47 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347dlKZ060805; Thu, 3 Apr 2003 23:39:47 -0800 (PST) Message-Id: <200304040739.h347dlKZ060805@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:39:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/eog2 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:39:48 -0000 marcus 2003/04/03 23:39:46 PST FreeBSD ports repository Modified files: graphics/eog2 Makefile distinfo pkg-plist Log: Update to 2.2.1. Revision Changes Path 1.34 +1 -1 ports/graphics/eog2/Makefile 1.14 +1 -1 ports/graphics/eog2/distinfo 1.13 +3 -0 ports/graphics/eog2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:39:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38E0437B404; Thu, 3 Apr 2003 23:39:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C98C243FA3; Thu, 3 Apr 2003 23:39:47 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347dl0U060833; Thu, 3 Apr 2003 23:39:47 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347dlfk060832; Thu, 3 Apr 2003 23:39:47 -0800 (PST) Message-Id: <200304040739.h347dlfk060832@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 3 Apr 2003 23:39:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:39:48 -0000 bmah 2003/04/03 23:39:47 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: In an attempt to head off confusion stemming from the re-upload of 4.8/i386, add the MD5 checksums for the IOS images. Minor grammar/style fixups in GNOME item. Revision Changes Path 1.1.2.100 +12 -2 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:42:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69D9037B401; Thu, 3 Apr 2003 23:42:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 011AC43F85; Thu, 3 Apr 2003 23:42:24 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347gN0U061325; Thu, 3 Apr 2003 23:42:23 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347gNSP061324; Thu, 3 Apr 2003 23:42:23 -0800 (PST) Message-Id: <200304040742.h347gNSP061324@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:42:23 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gnomeicu2 Makefile distinfo pkg-plist ports/net/gnomeicu2/files patch-src_userserver.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:42:24 -0000 marcus 2003/04/03 23:42:23 PST FreeBSD ports repository Modified files: net/gnomeicu2 Makefile distinfo pkg-plist net/gnomeicu2/files patch-src_userserver.c Log: Update to 0.99. Revision Changes Path 1.53 +3 -2 ports/net/gnomeicu2/Makefile 1.18 +1 -1 ports/net/gnomeicu2/distinfo 1.2 +4 -4 ports/net/gnomeicu2/files/patch-src_userserver.c 1.19 +61 -4 ports/net/gnomeicu2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:43:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7972237B401; Thu, 3 Apr 2003 23:43:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 165CF43FB1; Thu, 3 Apr 2003 23:43:06 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347h50U061390; Thu, 3 Apr 2003 23:43:05 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347h58e061389; Thu, 3 Apr 2003 23:43:05 -0800 (PST) Message-Id: <200304040743.h347h58e061389@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:43:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers/fileroller Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:43:06 -0000 marcus 2003/04/03 23:43:05 PST FreeBSD ports repository Modified files: archivers/fileroller Makefile distinfo pkg-plist Log: Update to 2.2.3. Revision Changes Path 1.15 +5 -2 ports/archivers/fileroller/Makefile 1.8 +1 -1 ports/archivers/fileroller/distinfo 1.9 +9 -0 ports/archivers/fileroller/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:43:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EB6F37B401; Thu, 3 Apr 2003 23:43:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1E1643FBD; Thu, 3 Apr 2003 23:43:27 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347hR0U061464; Thu, 3 Apr 2003 23:43:27 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347hRnV061463; Thu, 3 Apr 2003 23:43:27 -0800 (PST) Message-Id: <200304040743.h347hRnV061463@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 3 Apr 2003 23:43:27 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/4.8R errata.html X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:43:28 -0000 bmah 2003/04/03 23:43:27 PST FreeBSD doc repository Modified files: en/releases/4.8R errata.html Log: Regen from article.sgml 1.1.2.100. Revision Changes Path 1.3 +18 -3 www/en/releases/4.8R/errata.html From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:45:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56D5737B401; Thu, 3 Apr 2003 23:45:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AC1D43FE3; Thu, 3 Apr 2003 23:45:37 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347jb0U061603; Thu, 3 Apr 2003 23:45:37 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347jbwN061602; Thu, 3 Apr 2003 23:45:37 -0800 (PST) Message-Id: <200304040745.h347jbwN061602@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:45:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/evolution Makefile distinfo pkg-plistpatch-gpg-temp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:45:38 -0000 marcus 2003/04/03 23:45:37 PST FreeBSD ports repository Modified files: mail/evolution Makefile distinfo pkg-plist mail/evolution/files patch-camel_camel-mime-utils.c Removed files: mail/evolution/files patch-gpg-temp Log: * Update to 1.2.3 * Fix a problem creating filters on [older] FreeBSD mailing lists [1] Submitted by: Vladimir B. Grebenschikov Revision Changes Path 1.78 +1 -2 ports/mail/evolution/Makefile 1.31 +1 -1 ports/mail/evolution/distinfo 1.2 +26 -8 ports/mail/evolution/files/patch-camel_camel-mime-utils.c 1.2 +0 -84 ports/mail/evolution/files/patch-gpg-temp (dead) 1.36 +1 -0 ports/mail/evolution/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:46:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECBC037B404; Thu, 3 Apr 2003 23:46:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8432543FA3; Thu, 3 Apr 2003 23:46:11 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347kB0U061662; Thu, 3 Apr 2003 23:46:11 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347kBPZ061661; Thu, 3 Apr 2003 23:46:11 -0800 (PST) Message-Id: <200304040746.h347kBPZ061661@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:46:11 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gnome-themes Makefile distinfo ports/x11-toolkits/gnome-themes/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:46:12 -0000 marcus 2003/04/03 23:46:11 PST FreeBSD ports repository Modified files: x11-toolkits/gnome-themes Makefile distinfo x11-toolkits/gnome-themes/files patch-configure Log: Update to 2.2.1. Revision Changes Path 1.8 +6 -2 ports/x11-toolkits/gnome-themes/Makefile 1.6 +1 -1 ports/x11-toolkits/gnome-themes/distinfo 1.2 +80 -3 ports/x11-toolkits/gnome-themes/files/patch-configure From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:47:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50DEA37B401; Thu, 3 Apr 2003 23:47:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF8D243F75; Thu, 3 Apr 2003 23:47:53 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347lr0U061742; Thu, 3 Apr 2003 23:47:53 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347lrl6061741; Thu, 3 Apr 2003 23:47:53 -0800 (PST) Message-Id: <200304040747.h347lrl6061741@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:47:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gnomeapplets2 Makefile distinfo pkg-plist patch-wireless_wireless-applet.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:47:54 -0000 marcus 2003/04/03 23:47:53 PST FreeBSD ports repository Modified files: x11/gnomeapplets2 Makefile distinfo pkg-plist x11/gnomeapplets2/files patch-wireless_wireless-applet.c Added files: x11/gnomeapplets2/files patch-gkb-new_presets.c Log: * Update to 2.2.1 * Fix a problem not being able to switch keyboard layouts with gkb Revision Changes Path 1.45 +1 -2 ports/x11/gnomeapplets2/Makefile 1.22 +1 -1 ports/x11/gnomeapplets2/distinfo 1.1 +11 -0 ports/x11/gnomeapplets2/files/patch-gkb-new_presets.c (new) 1.4 +10 -7 ports/x11/gnomeapplets2/files/patch-wireless_wireless-applet.c 1.25 +42 -2 ports/x11/gnomeapplets2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:48:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33D3B37B401; Thu, 3 Apr 2003 23:48:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C440443FB1; Thu, 3 Apr 2003 23:48:24 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347mO0U061788; Thu, 3 Apr 2003 23:48:24 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347mOND061787; Thu, 3 Apr 2003 23:48:24 -0800 (PST) Message-Id: <200304040748.h347mOND061787@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:48:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gnomedesktop Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:48:25 -0000 marcus 2003/04/03 23:48:24 PST FreeBSD ports repository Modified files: x11/gnomedesktop Makefile distinfo pkg-plist Log: Update to 2.2.1. Revision Changes Path 1.23 +1 -1 ports/x11/gnomedesktop/Makefile 1.19 +1 -1 ports/x11/gnomedesktop/distinfo 1.13 +7 -0 ports/x11/gnomedesktop/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:49:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBCA137B401; Thu, 3 Apr 2003 23:49:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9483543FCB; Thu, 3 Apr 2003 23:49:06 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347n60U061857; Thu, 3 Apr 2003 23:49:06 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347n6bP061856; Thu, 3 Apr 2003 23:49:06 -0800 (PST) Message-Id: <200304040749.h347n6bP061856@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:49:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gnomepanel Makefile distinfo pkg-plist patch-applets_notification_area_eggtraymanager.c patch-doc_reference_panel-applet_Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:49:07 -0000 marcus 2003/04/03 23:49:06 PST FreeBSD ports repository Modified files: x11/gnomepanel Makefile distinfo pkg-plist Removed files: x11/gnomepanel/files patch-applets_notification_area_eggtraymanager.c patch-doc_reference_panel-applet_Makefile.in Log: Update to 2.2.1. Revision Changes Path 1.26 +1 -2 ports/x11/gnomepanel/Makefile 1.17 +1 -1 ports/x11/gnomepanel/distinfo 1.2 +0 -11 ports/x11/gnomepanel/files/patch-applets_notification_area_eggtraymanager.c (dead) 1.2 +0 -11 ports/x11/gnomepanel/files/patch-doc_reference_panel-applet_Makefile.in (dead) 1.13 +44 -0 ports/x11/gnomepanel/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:49:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4A8637B401; Thu, 3 Apr 2003 23:49:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7196743F3F; Thu, 3 Apr 2003 23:49:38 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347nc0U061894; Thu, 3 Apr 2003 23:49:38 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347nc2o061893; Thu, 3 Apr 2003 23:49:38 -0800 (PST) Message-Id: <200304040749.h347nc2o061893@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:49:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gnomesession Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:49:39 -0000 marcus 2003/04/03 23:49:38 PST FreeBSD ports repository Modified files: x11/gnomesession Makefile distinfo pkg-plist Log: Update to 2.2.1. Revision Changes Path 1.21 +1 -1 ports/x11/gnomesession/Makefile 1.16 +1 -1 ports/x11/gnomesession/distinfo 1.11 +3 -0 ports/x11/gnomesession/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:49:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B61B37B41C; Thu, 3 Apr 2003 23:49:43 -0800 (PST) Received: from sccrmhc03.attbi.com (sccrmhc03.attbi.com [204.127.202.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20BAD43FAF; Thu, 3 Apr 2003 23:49:42 -0800 (PST) (envelope-from bmah@employees.org) Received: from bmah.dyndns.org (12-240-204-110.client.attbi.com[12.240.204.110]) by sccrmhc03.attbi.com (sccrmhc03) with ESMTP id <20030404074940003009kb6pe>; Fri, 4 Apr 2003 07:49:40 +0000 Received: from intruder.bmah.org (localhost [127.0.0.1]) by bmah.dyndns.org (8.12.9/8.12.9) with ESMTP id h347nbs0041471; Thu, 3 Apr 2003 23:49:37 -0800 (PST) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.9/8.12.9/Submit) id h347nb5c041470; Thu, 3 Apr 2003 23:49:37 -0800 (PST) Date: Thu, 3 Apr 2003 23:49:37 -0800 From: "Bruce A. Mah" To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20030404074937.GA41424@intruder.bmah.org> References: <200304040739.h347dlfk060832@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XsQoSWH+UP9D9v3l" Content-Disposition: inline In-Reply-To: <200304040739.h347dlfk060832@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-url: http://www.employees.org/~bmah/ Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:49:44 -0000 --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable If memory serves me right, Bruce A. Mah wrote: > bmah 2003/04/03 23:39:47 PST >=20 > FreeBSD src repository >=20 > Modified files: (Branch: RELENG_4) > release/doc/en_US.ISO8859-1/errata article.sgml=20 > Log: > In an attempt to head off confusion stemming from the re-upload of > 4.8/i386, add the MD5 checksums for the IOS images. Sigh. This isn't Cisco. s/IOS/ISO/ Bruce. --XsQoSWH+UP9D9v3l Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jTkR2MoxcVugUsMRAu3XAKDibolbiO/9rhB4NoAvD/H8mJNVSQCgo+s/ 9F1coXOl8Tduvou7NWCX6Uw= =GzEO -----END PGP SIGNATURE----- --XsQoSWH+UP9D9v3l-- From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:51:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D98037B401; Thu, 3 Apr 2003 23:51:22 -0800 (PST) Received: from smtp-relay.omnis.com (smtp-relay.omnis.com [216.239.128.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83EDF43FB1; Thu, 3 Apr 2003 23:51:21 -0800 (PST) (envelope-from wes@softweyr.com) Received: from softweyr.homeunix.net (66-91-236-204.san.rr.com [66.91.236.204]) by smtp-relay.omnis.com (Postfix) with ESMTP id 696EB4302E; Thu, 3 Apr 2003 23:51:13 -0800 (PST) From: Wes Peters Organization: Softweyr To: Tom Rhodes , Marcel Moolenaar Date: Thu, 3 Apr 2003 23:51:13 -0800 User-Agent: KMail/1.5 References: <200304031656.h33GuuW0063160@repoman.freebsd.org> <20030403224700.GB94660@athlon.pn.xcllnt.net> <20030403180425.03750013.trhodes@FreeBSD.org> In-Reply-To: <20030403180425.03750013.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200304032351.13004.wes@softweyr.com> cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org cc: wkb@freebie.xs4all.nl Subject: Re: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:51:23 -0000 On Thursday 03 April 2003 15:04, Tom Rhodes wrote: > On Thu, 3 Apr 2003 14:47:00 -0800 > > Marcel Moolenaar wrote: > > On Fri, Apr 04, 2003 at 12:28:13AM +0200, Wilko Bulte wrote: > > > > > imp is building a RAIL? > > > > > > > > Brother Wilko, > > > > > > > > To be honest I'm not at liberty to divulge any information about > > > > imp's fiendishly clever plots for world domination through > > > > FreeBSD PCMCIA and wireless support. > > > > > > > > Er... something like that. > > > > > > Why would building a Redundant Array of Inexpensive Laptops be so > > > controversial /me wonders.. > > > > Because laptops aren't inexpensive, so if somebody is building > > a RAIL, something sinister must be going on :-) > > Dirty money YO! You guys haven't figured out yet that Warner works for, no, wait, Warner *IS* the NSA? Why do you think he's often found in the (net) vicinity of Robert Watson, who is really an NAI front for Warner^Wthe NSA. -- Where am I, and what am I doing in this handbasket? Wes Peters wes@softweyr.com From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:51:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78F9F37B404; Thu, 3 Apr 2003 23:51:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 143A543FA3; Thu, 3 Apr 2003 23:51:25 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347pO0U062363; Thu, 3 Apr 2003 23:51:24 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347pOQO062362; Thu, 3 Apr 2003 23:51:24 -0800 (PST) Message-Id: <200304040751.h347pOQO062362@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:51:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/gnomecontrolcenter2 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:51:26 -0000 marcus 2003/04/03 23:51:24 PST FreeBSD ports repository Modified files: sysutils/gnomecontrolcenter2 Makefile distinfo pkg-plist Log: Update to 2.2.1. Revision Changes Path 1.60 +1 -1 ports/sysutils/gnomecontrolcenter2/Makefile 1.26 +1 -1 ports/sysutils/gnomecontrolcenter2/distinfo 1.30 +2 -0 ports/sysutils/gnomecontrolcenter2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:53:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E219037B401; Thu, 3 Apr 2003 23:53:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7399C43FEC; Thu, 3 Apr 2003 23:53:18 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347rI0U062446; Thu, 3 Apr 2003 23:53:18 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347rICM062445; Thu, 3 Apr 2003 23:53:18 -0800 (PST) Message-Id: <200304040753.h347rICM062445@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:53:18 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/gnomegames2 Makefile distinfo pkg-plist patch-freecell_gdk-card-image_gdk-card-image.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:53:19 -0000 marcus 2003/04/03 23:53:18 PST FreeBSD ports repository Modified files: games/gnomegames2 Makefile distinfo pkg-plist Removed files: games/gnomegames2/files patch-freecell_gdk-card-image_gdk-card-image.c Log: Update to 2.2.1. Revision Changes Path 1.61 +1 -1 ports/games/gnomegames2/Makefile 1.26 +1 -1 ports/games/gnomegames2/distinfo 1.2 +0 -17 ports/games/gnomegames2/files/patch-freecell_gdk-card-image_gdk-card-image.c (dead) 1.32 +8 -1 ports/games/gnomegames2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:55:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 325F637B405; Thu, 3 Apr 2003 23:55:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62ED343FBD; Thu, 3 Apr 2003 23:55:24 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347tO0U062562; Thu, 3 Apr 2003 23:55:24 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347tOXl062561; Thu, 3 Apr 2003 23:55:24 -0800 (PST) Message-Id: <200304040755.h347tOXl062561@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:55:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gnome2 Makefile ports/x11/gnome2-fifth-toe Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:55:26 -0000 marcus 2003/04/03 23:55:24 PST FreeBSD ports repository Modified files: x11/gnome2 Makefile x11/gnome2-fifth-toe Makefile Log: Presenting GNOME 2.2.1, a bugfix and performance release from the GNOME 2.2 tree. Revision Changes Path 1.26 +2 -2 ports/x11/gnome2-fifth-toe/Makefile 1.61 +1 -1 ports/x11/gnome2/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:57:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A17637B401; Thu, 3 Apr 2003 23:57:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3C9B43FD7; Thu, 3 Apr 2003 23:57:38 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347vc0U062659; Thu, 3 Apr 2003 23:57:38 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347vctE062658; Thu, 3 Apr 2003 23:57:38 -0800 (PST) Message-Id: <200304040757.h347vctE062658@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:57:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/py-orbit2 Makefile distinfo pkg-plist ports/devel/py-orbit2/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:57:39 -0000 marcus 2003/04/03 23:57:38 PST FreeBSD ports repository Modified files: devel/py-orbit2 Makefile distinfo pkg-plist devel/py-orbit2/files patch-configure Log: Update to 1.99.4. Submitted by: Mezz bsdforums.org Revision Changes Path 1.9 +1 -1 ports/devel/py-orbit2/Makefile 1.5 +1 -1 ports/devel/py-orbit2/distinfo 1.2 +3 -3 ports/devel/py-orbit2/files/patch-configure 1.4 +1 -1 ports/devel/py-orbit2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 3 23:58:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 923AE37B401; Thu, 3 Apr 2003 23:58:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31D1A43FB1; Thu, 3 Apr 2003 23:58:04 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h347w30U062772; Thu, 3 Apr 2003 23:58:03 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h347w33g062771; Thu, 3 Apr 2003 23:58:03 -0800 (PST) Message-Id: <200304040758.h347w33g062771@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 3 Apr 2003 23:58:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/py-gtk2 Makefile distinfo pkg-plist ports/x11-toolkits/py-gtk2/files patch-configure patch-ltmain.sh ports/x11-toolkits/py-gnome2 Makefile distinfo pkg-plist ports/x11-toolkits/py-gnome2/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 07:58:05 -0000 marcus 2003/04/03 23:58:03 PST FreeBSD ports repository Modified files: x11-toolkits/py-gtk2 Makefile distinfo pkg-plist x11-toolkits/py-gtk2/files patch-configure patch-ltmain.sh x11-toolkits/py-gnome2 Makefile distinfo pkg-plist x11-toolkits/py-gnome2/files patch-configure Log: Update to 1.99.16. Submitted by: Mezz bsdforums.org Revision Changes Path 1.64 +1 -2 ports/x11-toolkits/py-gnome2/Makefile 1.21 +1 -1 ports/x11-toolkits/py-gnome2/distinfo 1.3 +3 -3 ports/x11-toolkits/py-gnome2/files/patch-configure 1.26 +12 -1 ports/x11-toolkits/py-gnome2/pkg-plist 1.63 +2 -2 ports/x11-toolkits/py-gtk2/Makefile 1.25 +1 -1 ports/x11-toolkits/py-gtk2/distinfo 1.5 +3 -3 ports/x11-toolkits/py-gtk2/files/patch-configure 1.2 +4 -4 ports/x11-toolkits/py-gtk2/files/patch-ltmain.sh 1.21 +75 -75 ports/x11-toolkits/py-gtk2/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:01:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 087B237B401; Fri, 4 Apr 2003 00:01:26 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA43D43FAF; Fri, 4 Apr 2003 00:01:21 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h3481Ggg099706 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Apr 2003 11:01:17 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h34818d7099682; Fri, 4 Apr 2003 11:01:08 +0300 (EEST) (envelope-from ru) Date: Fri, 4 Apr 2003 11:01:08 +0300 From: Ruslan Ermilov To: "David O'Brien" Message-ID: <20030404080108.GB95125@sunbay.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403093800.GA68012@dhcp01.pn.xcllnt.net> <20030403200459.H30311@gamplex.bde.org> <20030403151922.GA76895@sunbay.com> <20030403160301.GE17860@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="U+BazGySraz5kW0T" Content-Disposition: inline In-Reply-To: <20030403160301.GE17860@dragon.nuxi.com> User-Agent: Mutt/1.5.4i cc: src-committers@FreeBSD.org cc: Bruce Evans cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:01:26 -0000 --U+BazGySraz5kW0T Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2003 at 08:03:01AM -0800, David O'Brien wrote: > On Thu, Apr 03, 2003 at 06:19:22PM +0300, Ruslan Ermilov wrote: > > I can fix this: > >=20 > > %%% > > Index: bsd.sys.mk >=20 > Would this be better? >=20 Hardly so. > Index: bsd.sys.mk > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > RCS file: /home/ncvs/src/share/mk/bsd.sys.mk,v > retrieving revision 1.11 > diff -u -r1.11 bsd.sys.mk > --- bsd.sys.mk 13 Nov 2002 13:49:29 -0000 1.11 > +++ bsd.sys.mk 3 Apr 2003 16:02:28 -0000 > @@ -24,17 +24,11 @@ > . if ${WARNS} > 3 > CFLAGS +=3D -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow= -Wcast-align > . endif > -. if ${WARNS} > 4 > -CFLAGS +=3D -Wuninitialized > -. endif > +# XXX: the warning that was here became problematic. > +#. if ${WARNS} > 4 This hardly can be classified like a fix. :-) > # BDECFLAGS > . if ${WARNS} > 5 > CFLAGS +=3D -ansi -pedantic -Wbad-function-cast -Wchar-subscripts -Winl= ine -Wnested-externs -Wredundant-decls > -. endif > -. if ${WARNS} > 1 && ${WARNS} < 5 > -# XXX Delete -Wuninitialized by default for now -- the compiler doesn't > -# XXX always get it right. > -CFLAGS +=3D -Wno-uninitialized > . endif > . endif > =20 This would be backwards. -Wuninitialized is impled by -Wall, and revision 1.5 was about to fix this. Chees, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --U+BazGySraz5kW0T Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jTvEUkv4P6juNwoRApmKAJ9shQ3na1UTR/qzRI2xoimm+g3s1ACdFnlX +FR0dcrBkByjC3+m6y8PT8s= =Tql8 -----END PGP SIGNATURE----- --U+BazGySraz5kW0T-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:06:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CB0837B401; Fri, 4 Apr 2003 00:06:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F040C43FAF; Fri, 4 Apr 2003 00:06:31 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3486V0U064368; Fri, 4 Apr 2003 00:06:31 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3486VKO064367; Fri, 4 Apr 2003 00:06:31 -0800 (PST) Message-Id: <200304040806.h3486VKO064367@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 00:06:31 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/gnome news.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:06:32 -0000 marcus 2003/04/04 00:06:31 PST FreeBSD doc repository Modified files: en/gnome news.xml Log: Announce GNOME 2.2.1 release for FreeBSD. Revision Changes Path 1.33 +22 -1 www/en/gnome/news.xml From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:07:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2687C37B40F; Fri, 4 Apr 2003 00:07:55 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F3B843FA3; Fri, 4 Apr 2003 00:07:51 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h3487kgg000795 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Apr 2003 11:07:47 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h3487kN4000790; Fri, 4 Apr 2003 11:07:46 +0300 (EEST) (envelope-from ru) Date: Fri, 4 Apr 2003 11:07:46 +0300 From: Ruslan Ermilov To: "David O'Brien" Message-ID: <20030404080746.GC95125@sunbay.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403093800.GA68012@dhcp01.pn.xcllnt.net> <20030403200459.H30311@gamplex.bde.org> <20030403160017.GD17860@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Md/poaVZ8hnGTzuv" Content-Disposition: inline In-Reply-To: <20030403160017.GD17860@dragon.nuxi.com> User-Agent: Mutt/1.5.4i cc: src-committers@FreeBSD.org cc: Bruce Evans cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:07:55 -0000 --Md/poaVZ8hnGTzuv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2003 at 08:00:17AM -0800, David O'Brien wrote: > On Thu, Apr 03, 2003 at 08:26:05PM +1000, Bruce Evans wrote: > > There are some other minor ordering problems. -Winitialized is not set > > for "-O -O0 -O" in ${CFLAGS}, and there may be hackish makefiles that s= et > > CFLAGS after including . >=20 > There are a few. >=20 There isn't any that adds -O* to CFLAGS after including . > Also you can set gcc flags using the GCC_OPTIONS > environmental variable. >=20 You know, there are many ways to shoot yourself in a foot. How's this, without any makefile? $ cc -o a.o a.c cc1: warning: -Wuninitialized is not supported without -O Guess what was in GCC_OPTIONS. In short, we don't support GCC_OPTIONS. It isn't even mentioned in gcc(1) or GNU info files. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --Md/poaVZ8hnGTzuv Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jT1SUkv4P6juNwoRAnPUAJ4mgp1SnEsywnZtXPGJ5wYjogFZzwCbBN33 O3m/TqYbWgXwphSSNZKllfA= =2qQH -----END PGP SIGNATURE----- --Md/poaVZ8hnGTzuv-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:08:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 193B037B401; Fri, 4 Apr 2003 00:08:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A50CB43F93; Fri, 4 Apr 2003 00:08:58 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3488w0U064445; Fri, 4 Apr 2003 00:08:58 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3488wpi064444; Fri, 4 Apr 2003 00:08:58 -0800 (PST) Message-Id: <200304040808.h3488wpi064444@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 00:08:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/balsa2 Makefile distinfo pkg-plist ports/mail/balsa2/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:08:59 -0000 marcus 2003/04/04 00:08:58 PST FreeBSD ports repository Modified files: mail/balsa2 Makefile distinfo pkg-plist mail/balsa2/files patch-configure Log: Update to 2.0.10. PR: 50316 Submitted by: Martin Klaffenboeck Revision Changes Path 1.75 +6 -1 ports/mail/balsa2/Makefile 1.39 +1 -1 ports/mail/balsa2/distinfo 1.8 +17 -20 ports/mail/balsa2/files/patch-configure 1.29 +1 -0 ports/mail/balsa2/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:12:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E3B637B401; Fri, 4 Apr 2003 00:12:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DA2443F75; Fri, 4 Apr 2003 00:12:59 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h348Cx0U064902; Fri, 4 Apr 2003 00:12:59 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h348CwPa064901; Fri, 4 Apr 2003 00:12:58 -0800 (PST) Message-Id: <200304040812.h348CwPa064901@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 00:12:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/tsclient Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:13:00 -0000 marcus 2003/04/04 00:12:58 PST FreeBSD ports repository Modified files: net/tsclient Makefile Log: Fix hardcoded /usr/libexec link in the tsclient applet. PR: 50334 Submitted by: maintainer Revision Changes Path 1.2 +6 -0 ports/net/tsclient/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:16:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96D7037B401; Fri, 4 Apr 2003 00:16:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3777543F3F; Fri, 4 Apr 2003 00:16:27 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h348GR0U065103; Fri, 4 Apr 2003 00:16:27 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h348GQqS065102; Fri, 4 Apr 2003 00:16:26 -0800 (PST) Message-Id: <200304040816.h348GQqS065102@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 4 Apr 2003 00:16:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/bin/sh jobs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:16:28 -0000 tjr 2003/04/04 00:16:26 PST FreeBSD src repository Modified files: (Branch: RELENG_4) bin/sh jobs.c Log: MFC rev 1.63: Flush the output buffers before forking a child process to avoid the child process writing data that the parent should have written. PR: 50051 Revision Changes Path 1.27.2.10 +1 -0 src/bin/sh/jobs.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:17:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BF8737B401; Fri, 4 Apr 2003 00:17:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE6BD43FB1; Fri, 4 Apr 2003 00:17:38 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h348Hc0U065141; Fri, 4 Apr 2003 00:17:38 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h348HcLH065140; Fri, 4 Apr 2003 00:17:38 -0800 (PST) Message-Id: <200304040817.h348HcLH065140@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 00:17:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:17:39 -0000 marcus 2003/04/04 00:17:38 PST FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Correct glib, atk, pango, and gtk shared lib versions. Submitted by: Kimura Fuyuki Revision Changes Path 1.22 +5 -5 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:26:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32DFE37B401; Fri, 4 Apr 2003 00:26:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C384A43F75; Fri, 4 Apr 2003 00:26:51 -0800 (PST) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h348Qp0U065734; Fri, 4 Apr 2003 00:26:51 -0800 (PST) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h348Qpl2065733; Fri, 4 Apr 2003 00:26:51 -0800 (PST) Message-Id: <200304040826.h348Qpl2065733@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 4 Apr 2003 00:26:51 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/freebsd-questions article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:26:52 -0000 brueffer 2003/04/04 00:26:51 PST FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/freebsd-questions article.sgml Log: Add information on what a user can do before asking a question on the FreeBSD lists. PR: 36055 (with some modifications) Submitted by: Martin Karlsson Approved by: ceri (mentor) Revision Changes Path 1.12 +47 -0 doc/en_US.ISO8859-1/articles/freebsd-questions/article.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:31:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 990D637B401; Fri, 4 Apr 2003 00:31:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3711343F3F; Fri, 4 Apr 2003 00:31:09 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h348V90U066248; Fri, 4 Apr 2003 00:31:09 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h348V8LU066247; Fri, 4 Apr 2003 00:31:08 -0800 (PST) Message-Id: <200304040831.h348V8LU066247@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 00:31:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/pango pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:31:10 -0000 marcus 2003/04/04 00:31:08 PST FreeBSD ports repository Modified files: x11-toolkits/pango pkg-descr Log: Fix a small grammar nit in the description. Submitted by: David Magda Revision Changes Path 1.2 +1 -1 ports/x11-toolkits/pango/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:42:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8009537B404; Fri, 4 Apr 2003 00:42:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 198B743FBF; Fri, 4 Apr 2003 00:42:18 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h348gH0U066922; Fri, 4 Apr 2003 00:42:17 -0800 (PST) (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h348gHBi066921; Fri, 4 Apr 2003 00:42:17 -0800 (PST) Message-Id: <200304040842.h348gHBi066921@repoman.freebsd.org> From: Maxim Sobolev Date: Fri, 4 Apr 2003 00:42:17 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/dev/puc puc.c pucdata.c pucvar.h src/sys/isa sio.c sioreg.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:42:18 -0000 sobomax 2003/04/04 00:42:17 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/puc puc.c pucdata.c pucvar.h sys/isa sio.c sioreg.h Log: MFC: add support for IC Book 16x Lite and Pro multiport serial cards. Sponsored by: IC Book Labs Revision Changes Path 1.3.2.5 +73 -6 src/sys/dev/puc/puc.c 1.2.2.10 +25 -0 src/sys/dev/puc/pucdata.c 1.1.2.4 +7 -0 src/sys/dev/puc/pucvar.h 1.291.2.34 +28 -1 src/sys/isa/sio.c 1.15.2.3 +7 -1 src/sys/isa/sioreg.h From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:42:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33EA737B401; Fri, 4 Apr 2003 00:42:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A8E243FBF; Fri, 4 Apr 2003 00:42:19 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h348gJ0U066950; Fri, 4 Apr 2003 00:42:19 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h348gJaC066949; Fri, 4 Apr 2003 00:42:19 -0800 (PST) Message-Id: <200304040842.h348gJaC066949@repoman.freebsd.org> From: Martin Blapp Date: Fri, 4 Apr 2003 00:42:19 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-devel/files patch-config_office+configure.in patch-config_office+set_soenv.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:42:20 -0000 mbr 2003/04/04 00:42:19 PST FreeBSD ports repository Modified files: editors/openoffice-devel/files patch-config_office+configure.in patch-config_office+set_soenv.in Log: Remove USE_LINUXJDK and simplify set_soenv even more. Use native threads instead of green threads. Revision Changes Path 1.12 +0 -34 ports/editors/openoffice-devel/files/patch-config_office+configure.in 1.7 +57 -39 ports/editors/openoffice-devel/files/patch-config_office+set_soenv.in From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:47:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F31B237B401; Fri, 4 Apr 2003 00:47:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 931AB43F3F; Fri, 4 Apr 2003 00:47:50 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h348lo0U072295; Fri, 4 Apr 2003 00:47:50 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h348lo3H072294; Fri, 4 Apr 2003 00:47:50 -0800 (PST) Message-Id: <200304040847.h348lo3H072294@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 4 Apr 2003 00:47:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/netipx ipx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:47:51 -0000 tjr 2003/04/04 00:47:50 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/netipx ipx.c Log: MFC rev. 1.25: Allocate struct ipx_ifaddrs with an initial reference count of 1, not 0. The wrong reference count was causing them to get freed too early and have their contents scrambled. PR: 48666 Revision Changes Path 1.17.2.2 +2 -1 src/sys/netipx/ipx.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:52:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBD0537B401; Fri, 4 Apr 2003 00:52:43 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6C4A43F93; Fri, 4 Apr 2003 00:52:24 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h348q1gg007398 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Apr 2003 11:52:01 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h348q0N9007393; Fri, 4 Apr 2003 11:52:00 +0300 (EEST) (envelope-from ru) Date: Fri, 4 Apr 2003 11:52:00 +0300 From: Ruslan Ermilov To: Mike Barcroft Message-ID: <20030404085200.GA1765@sunbay.com> References: <20030403085821.AD2A537B407@hub.freebsd.org> <20030403184229.D18209@espresso.bsdmike.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ew6BAiZeqk4r7MaW" Content-Disposition: inline In-Reply-To: <20030403184229.D18209@espresso.bsdmike.org> User-Agent: Mutt/1.5.4i cc: src-committers@FreeBSD.org cc: Poul-Henning Kamp cc: David O'Brien cc: cvs-src@FreeBSD.org cc: Nate Lawson cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:52:44 -0000 --ew6BAiZeqk4r7MaW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2003 at 06:42:29PM -0500, Mike Barcroft wrote: > Nate Lawson writes: > > On Thu, 3 Apr 2003, Poul-Henning Kamp wrote: > > > Modified files: > > > sys/sys endian.h=20 > > > share/man/man9 byteorder.9=20 > > > Log: > > > Add inline functions {be,le}{16,32,64}{enc,dec}() for encoding deco= ding > > > into byte strings of unknown alignment. > > > =20 > > > Revision Changes Path > > > 1.3 +39 -1 src/share/man/man9/byteorder.9 > > > 1.3 +108 -0 src/sys/sys/endian.h > >=20 > > This is really great! I have wanted this for a while. Just a few > > questions. Have the standards folks had a look at the API? Second, it > > appears the *enc functions have args in reverse order (void *, uint32_t > > for example). Any thoughts on bcopy vs. memcpy ordering of args? >=20 > There aren't any standards that have these type of functions. The > closest thing is ntohl() and friends. We copied OpenBSD for the > function and header names, so it might be worthwhile seeing if they > want to provide these functions too. >=20 Now that this is a hunting season on , I'd like to also add versions of "host to big/little endian" functions suitable for use in initializers (computable at build time). Would anyone seriously object to committing this? I need these for kgzip(8) and btxld(8), FWIW. David, you are supposed to like it too. ;) %%% Index: endian.h =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/sys/sys/endian.h,v retrieving revision 1.5 diff -u -r1.5 endian.h --- endian.h 3 Apr 2003 11:32:01 -0000 1.5 +++ endian.h 4 Apr 2003 08:41:29 -0000 @@ -56,37 +56,77 @@ #define bswap64(x) __bswap64(x) =20 /* + * General byte order swapping macros. + */ +#define BSWAP16(x) (uint16_t) \ + (((x) >> 8) | ((x) << 8)) + +#define BSWAP32(x) (uint32_t) \ + (((x) >> 24) | (((x) >> 8) & 0xff00) | \ + (((x) << 8) & 0xff0000) | ((x) << 24)) + +#define BSWAP64(x) (uint64_t) \ + (((x) >> 56) | (((x) >> 40) & 0xff00) | (((x) >> 24) & 0xff0000) | \ + (((x) >> 8) & 0xff000000) | (((x) << 8) & ((uint64_t)0xff << 32)) | \ + (((x) << 24) & ((uint64_t)0xff << 40)) | \ + (((x) << 40) & ((uint64_t)0xff << 48)) | (((x) << 56))) + +/* * Host to big endian, host to little endian, big endian to host, and litt= le * endian to host byte order functions as detailed in byteorder(9). */ #if _BYTE_ORDER =3D=3D _LITTLE_ENDIAN #define htobe16(x) bswap16((x)) +#define HTOBE16(x) BSWAP16((x)) #define htobe32(x) bswap32((x)) +#define HTOBE32(x) BSWAP32((x)) #define htobe64(x) bswap64((x)) +#define HTOBE64(x) BSWAP64((x)) #define htole16(x) ((uint16_t)(x)) +#define HTOLE16(x) ((uint16_t)(x)) #define htole32(x) ((uint32_t)(x)) +#define HTOLE32(x) ((uint32_t)(x)) #define htole64(x) ((uint64_t)(x)) +#define HTOLE64(x) ((uint64_t)(x)) =20 #define be16toh(x) bswap16((x)) +#define BE16TOH(x) BSWAP16((x)) #define be32toh(x) bswap32((x)) +#define BE32TOH(x) BSWAP32((x)) #define be64toh(x) bswap64((x)) +#define BE64TOH(x) BSWAP64((x)) #define le16toh(x) ((uint16_t)(x)) +#define LE16TOH(x) ((uint16_t)(x)) #define le32toh(x) ((uint32_t)(x)) +#define LE32TOH(x) ((uint32_t)(x)) #define le64toh(x) ((uint64_t)(x)) +#define LE64TOH(x) ((uint64_t)(x)) #else /* _BYTE_ORDER !=3D _LITTLE_ENDIAN */ #define htobe16(x) ((uint16_t)(x)) +#define HTOBE16(x) ((uint16_t)(x)) #define htobe32(x) ((uint32_t)(x)) +#define HTOBE32(x) ((uint32_t)(x)) #define htobe64(x) ((uint64_t)(x)) +#define HTOBE64(x) ((uint64_t)(x)) #define htole16(x) bswap16((x)) +#define HTOLE16(x) BSWAP16((x)) #define htole32(x) bswap32((x)) +#define HTOLE32(x) BSWAP32((x)) #define htole64(x) bswap64((x)) +#define HTOLE64(x) BSWAP64((x)) =20 #define be16toh(x) ((uint16_t)(x)) +#define BE16TOH(x) ((uint16_t)(x)) #define be32toh(x) ((uint32_t)(x)) +#define BE32TOH(x) ((uint32_t)(x)) #define be64toh(x) ((uint64_t)(x)) +#define BE64TOH(x) ((uint64_t)(x)) #define le16toh(x) bswap16((x)) +#define LE16TOH(x) BSWAP16((x)) #define le32toh(x) bswap32((x)) +#define LE32TOH(x) BSWAP32((x)) #define le64toh(x) bswap64((x)) +#define LE64TOH(x) BSWAP64((x)) #endif /* _BYTE_ORDER =3D=3D _LITTLE_ENDIAN */ =20 /* Alignment-agnostic encode/decode bytestream to/from little/big endian. = */ %%% Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --ew6BAiZeqk4r7MaW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jUewUkv4P6juNwoRAq6+AJ0fvu3yZbZbdKa/MAQBJ3wAxDc1dgCfZkWZ pwrb/x8UQgXCqD+7B3yAcjI= =cPdH -----END PGP SIGNATURE----- --ew6BAiZeqk4r7MaW-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 00:57:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBEE337B401; Fri, 4 Apr 2003 00:57:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A7C843F75; Fri, 4 Apr 2003 00:57:23 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h348vN0U072962; Fri, 4 Apr 2003 00:57:23 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h348vNFW072961; Fri, 4 Apr 2003 00:57:23 -0800 (PST) Message-Id: <200304040857.h348vNFW072961@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 4 Apr 2003 00:57:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/fs/smbfs smbfs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 08:57:24 -0000 tjr 2003/04/04 00:57:23 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/fs/smbfs smbfs_vnops.c Log: MFC rev. 1.33: Do not call smbfs_attr_cacheremove() in the EXDEV case in smbfs_rename(). One of the vnodes is on different mount and is possibly on a different kind of filesystem; treating it as an smbfs vnode then writing to it will probably corrupt it. PR: 48381 Revision Changes Path 1.2.2.8 +9 -5 src/sys/fs/smbfs/smbfs_vnops.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 01:11:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A4A537B401; Fri, 4 Apr 2003 01:11:04 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88FCC43F93; Fri, 4 Apr 2003 01:10:59 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h349Akgg009963 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Apr 2003 12:10:46 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h349AkOs009962; Fri, 4 Apr 2003 12:10:46 +0300 (EEST) (envelope-from ru) Date: Fri, 4 Apr 2003 12:10:46 +0300 From: Ruslan Ermilov To: Yar Tikhiy Message-ID: <20030404091046.GC1765@sunbay.com> References: <200304031837.h33IbnBc071932@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rQ2U398070+RC21q" Content-Disposition: inline In-Reply-To: <200304031837.h33IbnBc071932@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc syslog.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 09:11:05 -0000 --rQ2U398070+RC21q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 03, 2003 at 10:37:49AM -0800, Yar Tikhiy wrote: > yar 2003/04/03 10:37:49 PST >=20 > FreeBSD src repository >=20 > Modified files: > etc syslog.conf=20 > Log: > Stop logging ``authpriv'' messages to the world-readable file > /var/log/messages. Such messages are for the eyes of authorized > personnel only. > =20 > PR: conf/48170 > Discussed in: freebsd-security > MFC after: 2 weeks > =20 > Revision Changes Path > 1.24 +1 -1 src/etc/syslog.conf >=20 Much appreciated! Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --rQ2U398070+RC21q Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jUwWUkv4P6juNwoRAuVdAJ0e7f8OkMmYb6J5FMqqcealU9dJEwCeJ/ZE DX5J2CRYeiqEPMaBbZcYjSM= =Tdgi -----END PGP SIGNATURE----- --rQ2U398070+RC21q-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 01:33:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FE8937B401; Fri, 4 Apr 2003 01:33:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C28EF43FA3; Fri, 4 Apr 2003 01:33:11 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h349XB0U075975; Fri, 4 Apr 2003 01:33:11 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h349XBg9075974; Fri, 4 Apr 2003 01:33:11 -0800 (PST) Message-Id: <200304040933.h349XBg9075974@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 01:33:10 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 09:33:12 -0000 marcus 2003/04/04 01:33:10 PST FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Fix a bug in detecting USE_GNOME components properly. Revision Changes Path 1.23 +3 -2 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Fri Apr 4 01:34:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C91A37B401; Fri, 4 Apr 2003 01:34:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFF4843F93; Fri, 4 Apr 2003 01:34:35 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h349YZ0U076025; Fri, 4 Apr 2003 01:34:35 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h349YZbs076024; Fri, 4 Apr 2003 01:34:35 -0800 (PST) Message-Id: <200304040934.h349YZbs076024@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 01:34:35 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/zipcodes pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 09:34:36 -0000 nork 2003/04/04 01:34:35 PST FreeBSD ports repository Modified files: japanese/zipcodes pkg-descr Log: Update pkg-descr by Japan Post Ministry organizational reform to Japan Post (Company). Submitted by: Kimura Fuyuki Revision Changes Path 1.7 +2 -3 ports/japanese/zipcodes/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Apr 4 01:35:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24FA637B401; Fri, 4 Apr 2003 01:35:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6DF443F85; Fri, 4 Apr 2003 01:35:43 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h349Zh0U076095; Fri, 4 Apr 2003 01:35:43 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h349ZhKv076094; Fri, 4 Apr 2003 01:35:43 -0800 (PST) Message-Id: <200304040935.h349ZhKv076094@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 4 Apr 2003 01:35:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/netipx ipx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 09:35:44 -0000 tjr 2003/04/04 01:35:43 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/netipx ipx.c Log: Back out previous. ifaddr reference counts begin at 0 in RELENG_4. Pointed out by: hsu Revision Changes Path 1.17.2.3 +0 -1 src/sys/netipx/ipx.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 01:49:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8429D37B401; Fri, 4 Apr 2003 01:49:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F08943FA3; Fri, 4 Apr 2003 01:49:29 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h349nS0U077073; Fri, 4 Apr 2003 01:49:28 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h349nSBB077072; Fri, 4 Apr 2003 01:49:28 -0800 (PST) Message-Id: <200304040949.h349nSBB077072@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 01:49:28 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www Makefile ports/www/turck-mmcache Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 09:49:30 -0000 edwin 2003/04/04 01:49:28 PST FreeBSD ports repository Modified files: www Makefile Added files: www/turck-mmcache Makefile distinfo pkg-descr pkg-message pkg-plist Log: [New Port] Turck MMCache 2.3.6 (An opcode cache for PHP) Turck MMCache is a opcode cache for PHP. It increases performance of PHP scripts by caching them in compiled state, so that the overhead of compiling is almost completely eliminated. Also it uses some optimizations for speed up of PHP scripts execution. Turck MMCache typically reduces server load and increases the speed of your PHP code by 1-10 times. WWW: http://www.turcksoft.com/en/e_mmc.htm PR: ports/48807 Submitted by: Alex Dupre Revision Changes Path 1.628 +1 -0 ports/www/Makefile 1.1 +68 -0 ports/www/turck-mmcache/Makefile (new) 1.1 +1 -0 ports/www/turck-mmcache/distinfo (new) 1.1 +11 -0 ports/www/turck-mmcache/pkg-descr (new) 1.1 +17 -0 ports/www/turck-mmcache/pkg-message (new) 1.1 +4 -0 ports/www/turck-mmcache/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 01:49:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B7BC37B401; Fri, 4 Apr 2003 01:49:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F115643FA3; Fri, 4 Apr 2003 01:49:45 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h349nj0U077115; Fri, 4 Apr 2003 01:49:45 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h349njjA077114; Fri, 4 Apr 2003 01:49:45 -0800 (PST) Message-Id: <200304040949.h349njjA077114@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 01:49:45 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 09:49:46 -0000 edwin 2003/04/04 01:49:45 PST FreeBSD ports repository Modified files: . modules Log: turck-mmcache --> ports/www/turck-mmcache Revision Changes Path 1.6973 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 01:55:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BCB837B401; Fri, 4 Apr 2003 01:55:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B9A643FB1; Fri, 4 Apr 2003 01:55:23 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h349tN0U077685; Fri, 4 Apr 2003 01:55:23 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h349tMjU077684; Fri, 4 Apr 2003 01:55:22 -0800 (PST) Message-Id: <200304040955.h349tMjU077684@repoman.freebsd.org> From: Ceri Davies Date: Fri, 4 Apr 2003 01:55:22 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/donations wantlist.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 09:55:24 -0000 ceri 2003/04/04 01:55:22 PST FreeBSD doc repository Modified files: en/donations wantlist.sgml Log: I could do with a hard copy of O'Reilly's "DocBook, the Definitive Guide". Revision Changes Path 1.97 +8 -1 www/en/donations/wantlist.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 4 02:09:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4E1137B401; Fri, 4 Apr 2003 02:09:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69A0343FBF; Fri, 4 Apr 2003 02:09:45 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34A9j0U079363; Fri, 4 Apr 2003 02:09:45 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34A9jOl079362; Fri, 4 Apr 2003 02:09:45 -0800 (PST) Message-Id: <200304041009.h34A9jOl079362@repoman.freebsd.org> From: Jake Burkholder Date: Fri, 4 Apr 2003 02:09:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/include pmap.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 10:09:47 -0000 jake 2003/04/04 02:09:45 PST FreeBSD src repository Modified files: sys/i386/include pmap.h Log: Bandaid fix for previous commit while I figure out why it broke. This caused crashes early in boot on i386 UP machines. Reported by: phk Pointy hat to: jake Revision Changes Path 1.96 +2 -2 src/sys/i386/include/pmap.h From owner-cvs-all@FreeBSD.ORG Fri Apr 4 02:10:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31E9B37B404; Fri, 4 Apr 2003 02:10:42 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BBC243FB1; Fri, 4 Apr 2003 02:10:39 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id UAA04633; Fri, 4 Apr 2003 20:10:35 +1000 Date: Fri, 4 Apr 2003 20:10:34 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: "David O'Brien" In-Reply-To: <20030403155917.GC17860@dragon.nuxi.com> Message-ID: <20030404200159.J33842@gamplex.bde.org> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403085350.GA37174@sunbay.com> <20030403155917.GC17860@dragon.nuxi.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: src-committers@FreeBSD.org cc: Ruslan Ermilov cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.ctable.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 10:10:42 -0000 On Thu, 3 Apr 2003, David O'Brien wrote: > On Thu, Apr 03, 2003 at 11:53:50AM +0300, Ruslan Ermilov wrote: > > -. if ${WARNS} > 4 > > +. if ${WARNS} > 4 && !empty(CFLAGS:M-O*) && empty(CFLAGS:M-O0) > > CFLAGS += -Wuninitialized > > . endif > > Why not just get rid of it totally? We have this already: It's too useful to remove totally. > . if ${WARNS} > 1 && ${WARNS} < 5 > # XXX Delete -Wuninitialized by default for now -- the compiler doesn't > # XXX always get it right. > CFLAGS += -Wno-uninitialized > . endif > > so we already know it is problematic. OR rather than use: > > . if ${WARNS} > 4 > CFLAGS += -Wuninitialized > . endif > > use > > . if ${WARNS} == 4 > CFLAGS += -Wuninitialized > . endif Add -Wno-uninitialized to cancel -Wuninitialized being part of -Wall as necessary, i.e., if -Wall is added (${WARNS} > 1) but -O is not in ${CFLAGS}. Don't add it or change WARNS settings back and forth to work around bitrot from -Wuninitialized not being turned off for so long. Don't change sources "to keep gcc happy". Bruce From owner-cvs-all@FreeBSD.ORG Fri Apr 4 02:11:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E01B237B401; Fri, 4 Apr 2003 02:11:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DE4543F85; Fri, 4 Apr 2003 02:11:26 -0800 (PST) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34ABQ0U079839; Fri, 4 Apr 2003 02:11:26 -0800 (PST) (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34ABQAu079838; Fri, 4 Apr 2003 02:11:26 -0800 (PST) Message-Id: <200304041011.h34ABQAu079838@repoman.freebsd.org> From: Oliver Braun Date: Fri, 4 Apr 2003 02:11:26 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/bogofilter Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 10:11:27 -0000 obraun 2003/04/04 02:11:26 PST FreeBSD ports repository Modified files: mail/bogofilter Makefile distinfo Log: Upgrade to 0.11.1.6. PR: ports/50596 Submitted by: maintainer Revision Changes Path 1.13 +1 -1 ports/mail/bogofilter/Makefile 1.11 +1 -1 ports/mail/bogofilter/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 4 02:12:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0396337B401; Fri, 4 Apr 2003 02:12:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9508D43FD7; Fri, 4 Apr 2003 02:12:09 -0800 (PST) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34AC90U079882; Fri, 4 Apr 2003 02:12:09 -0800 (PST) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34AC9Uq079881; Fri, 4 Apr 2003 02:12:09 -0800 (PST) Message-Id: <200304041012.h34AC9Uq079881@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Fri, 4 Apr 2003 02:12:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4/man4.i386 Makefile vpd.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 10:12:10 -0000 mdodd 2003/04/04 02:12:09 PST FreeBSD src repository Modified files: share/man/man4/man4.i386 Makefile Added files: share/man/man4/man4.i386 vpd.4 Log: Add a manpage for the 'vpd' driver. Revision Changes Path 1.142 +1 -1 src/share/man/man4/man4.i386/Makefile 1.1 +89 -0 src/share/man/man4/man4.i386/vpd.4 (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 02:22:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9FEB37B401; Fri, 4 Apr 2003 02:22:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 821FD43F75; Fri, 4 Apr 2003 02:22:55 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34AMt0U080603; Fri, 4 Apr 2003 02:22:55 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34AMtd0080602; Fri, 4 Apr 2003 02:22:55 -0800 (PST) Message-Id: <200304041022.h34AMtd0080602@repoman.freebsd.org> From: Ying-Chieh Liao Date: Fri, 4 Apr 2003 02:22:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/science Makefile ports/science/mpb Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 10:22:56 -0000 ijliao 2003/04/04 02:22:55 PST FreeBSD ports repository Modified files: science Makefile Added files: science/mpb Makefile distinfo pkg-descr pkg-plist Log: add mpb 1.4.2 MIT Photonic-Bands Revision Changes Path 1.23 +1 -0 ports/science/Makefile 1.1 +32 -0 ports/science/mpb/Makefile (new) 1.1 +1 -0 ports/science/mpb/distinfo (new) 1.1 +14 -0 ports/science/mpb/pkg-descr (new) 1.1 +5 -0 ports/science/mpb/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 02:23:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D29237B434; Fri, 4 Apr 2003 02:23:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CFE043FB1; Fri, 4 Apr 2003 02:23:04 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34AN30U080645; Fri, 4 Apr 2003 02:23:03 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34AN36H080644; Fri, 4 Apr 2003 02:23:03 -0800 (PST) Message-Id: <200304041023.h34AN36H080644@repoman.freebsd.org> From: Ying-Chieh Liao Date: Fri, 4 Apr 2003 02:23:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 10:23:05 -0000 ijliao 2003/04/04 02:23:03 PST FreeBSD ports repository Modified files: . modules Log: mpb --> ports/science/mpb Revision Changes Path 1.6974 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 02:40:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A11A637B401; Fri, 4 Apr 2003 02:40:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1999E43FBD; Fri, 4 Apr 2003 02:40:25 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34AeO0U081736; Fri, 4 Apr 2003 02:40:24 -0800 (PST) (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34AeOqH081734; Fri, 4 Apr 2003 02:40:24 -0800 (PST) Message-Id: <200304041040.h34AeOqH081734@repoman.freebsd.org> From: Maxim Sobolev Date: Fri, 4 Apr 2003 02:40:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/b2bua Makefile distinfo pkg-plist patch-build::Makefile.pkgpatch-contrib::Makefile.pkg patch-radius::test::Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 10:40:26 -0000 sobomax 2003/04/04 02:40:24 PST FreeBSD ports repository Modified files: net/b2bua Makefile distinfo pkg-plist net/b2bua/files patch-build::Makefile.pkg patch-build::Makefile.pre patch-contrib::Makefile patch-util::threads::VSemaphore.hxx Added files: net/b2bua/files patch-contrib::Makefile.pkg Removed files: net/b2bua/files patch-build::Makefile.osarch patch-radius::RadiusAttribute.cxx patch-radius::RadiusMessage.cxx patch-radius::test::Makefile patch-radius::test::radiusClient.cxx patch-radius::test::radiusServer.cxx patch-sip::b2b::AAATransceiver.cxx patch-sip::b2b::AAATransceiver.hxx patch-sip::b2b::Makefile patch-util::threads::vthread-linux.cxx Log: Update to 1.5.0. Revision Changes Path 1.5 +7 -8 ports/net/b2bua/Makefile 1.2 +1 -1 ports/net/b2bua/distinfo 1.2 +0 -14 ports/net/b2bua/files/patch-build::Makefile.osarch (dead) 1.2 +3 -28 ports/net/b2bua/files/patch-build::Makefile.pkg 1.2 +4 -4 ports/net/b2bua/files/patch-build::Makefile.pre 1.2 +2 -2 ports/net/b2bua/files/patch-contrib::Makefile 1.1 +18 -0 ports/net/b2bua/files/patch-contrib::Makefile.pkg (new) 1.2 +0 -14 ports/net/b2bua/files/patch-radius::RadiusAttribute.cxx (dead) 1.2 +0 -14 ports/net/b2bua/files/patch-radius::RadiusMessage.cxx (dead) 1.2 +0 -14 ports/net/b2bua/files/patch-radius::test::Makefile (dead) 1.2 +0 -14 ports/net/b2bua/files/patch-radius::test::radiusClient.cxx (dead) 1.2 +0 -14 ports/net/b2bua/files/patch-radius::test::radiusServer.cxx (dead) 1.2 +0 -13 ports/net/b2bua/files/patch-sip::b2b::AAATransceiver.cxx (dead) 1.2 +0 -16 ports/net/b2bua/files/patch-sip::b2b::AAATransceiver.hxx (dead) 1.2 +0 -14 ports/net/b2bua/files/patch-sip::b2b::Makefile (dead) 1.2 +9 -8 ports/net/b2bua/files/patch-util::threads::VSemaphore.hxx 1.2 +0 -18 ports/net/b2bua/files/patch-util::threads::vthread-linux.cxx (dead) 1.2 +2 -2 ports/net/b2bua/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 02:47:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73CED37B401; Fri, 4 Apr 2003 02:47:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1562243F3F; Fri, 4 Apr 2003 02:47:07 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Al60U082205; Fri, 4 Apr 2003 02:47:06 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Al6DL082204; Fri, 4 Apr 2003 02:47:06 -0800 (PST) Message-Id: <200304041047.h34Al6DL082204@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 4 Apr 2003 02:47:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.sys.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 10:47:07 -0000 ru 2003/04/04 02:47:06 PST FreeBSD src repository Modified files: share/mk bsd.sys.mk Log: -Wall implies -Wuninitialized if -O is also in effect. -Wuninitialized does not work without -O. This fixes the ${WARNS} > 4 compilations with -O0. Spotted by: marcel Revision Changes Path 1.13 +0 -3 src/share/mk/bsd.sys.mk From owner-cvs-all@FreeBSD.ORG Fri Apr 4 02:52:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9372637B401; Fri, 4 Apr 2003 02:52:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30D4A43FAF; Fri, 4 Apr 2003 02:52:03 -0800 (PST) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Aq30U082714; Fri, 4 Apr 2003 02:52:03 -0800 (PST) (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Aq299082713; Fri, 4 Apr 2003 02:52:02 -0800 (PST) Message-Id: <200304041052.h34Aq299082713@repoman.freebsd.org> From: Maxim Sobolev Date: Fri, 4 Apr 2003 02:52:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/b2bua/files patch-sip::b2b::AuthAgent.cxx X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 10:52:04 -0000 sobomax 2003/04/04 02:52:02 PST FreeBSD ports repository Modified files: net/b2bua/files patch-sip::b2b::AuthAgent.cxx Log: Use correct version of the patch. Revision Changes Path 1.2 +8 -8 ports/net/b2bua/files/patch-sip::b2b::AuthAgent.cxx From owner-cvs-all@FreeBSD.ORG Fri Apr 4 02:55:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CC0837B401; Fri, 4 Apr 2003 02:55:05 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA3B543F85; Fri, 4 Apr 2003 02:54:57 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h34Asigg022343 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Apr 2003 13:54:44 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h34AsXbr022317; Fri, 4 Apr 2003 13:54:33 +0300 (EEST) (envelope-from ru) Date: Fri, 4 Apr 2003 13:54:33 +0300 From: Ruslan Ermilov To: Bruce Evans Message-ID: <20030404105433.GB14607@sunbay.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403155917.GC17860@dragon.nuxi.com> <20030404200159.J33842@gamplex.bde.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="V0207lvV8h4k8FAm" Content-Disposition: inline In-Reply-To: <20030404200159.J33842@gamplex.bde.org> User-Agent: Mutt/1.5.4i cc: src-committers@FreeBSD.org cc: David O'Brien cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 10:55:06 -0000 --V0207lvV8h4k8FAm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 04, 2003 at 08:10:34PM +1000, Bruce Evans wrote: > On Thu, 3 Apr 2003, David O'Brien wrote: >=20 > > On Thu, Apr 03, 2003 at 11:53:50AM +0300, Ruslan Ermilov wrote: > > > -. if ${WARNS} > 4 > > > +. if ${WARNS} > 4 && !empty(CFLAGS:M-O*) && empty(CFLAGS:M-O0) > > > CFLAGS +=3D -Wuninitialized > > > . endif > > > > Why not just get rid of it totally? We have this already: >=20 > It's too useful to remove totally. >=20 > > . if ${WARNS} > 1 && ${WARNS} < 5 > > # XXX Delete -Wuninitialized by default for now -- the compiler doe= sn't > > # XXX always get it right. > > CFLAGS +=3D -Wno-uninitialized > > . endif > > > > so we already know it is problematic. OR rather than use: > > > > . if ${WARNS} > 4 > > CFLAGS +=3D -Wuninitialized > > . endif > > > > use > > > > . if ${WARNS} =3D=3D 4 > > CFLAGS +=3D -Wuninitialized > > . endif >=20 > Add -Wno-uninitialized to cancel -Wuninitialized being part of -Wall as > necessary, i.e., if -Wall is added (${WARNS} > 1) but -O is not in ${CFLA= GS}. > Don't add it or change WARNS settings back and forth to work around bitrot > from -Wuninitialized not being turned off for so long. Don't change sour= ces > "to keep gcc happy". >=20 I've just committed a superior fix. :-) The story is that if have -O, then -Wall (that is true for WARNS > 1) will add -Wuninitialized for you automatically, so there was no point in adding it explicitly in rev. 1.7. : $ make clean; env CFLAGS=3D"-O -pipe" make WARNS=3D5 a.o : rm -f a a.o : cc -O -pipe -march=3Dpentiumpro -Wsystem-headers -Werror -Wall -Wno-for= mat-y2k -W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wretur= n-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -c a.c : cc1: warnings being treated as errors : a.c: In function `main': : a.c:6: warning: `a' might be used uninitialized in this function : *** Error code 1 : $ make clean; env CFLAGS=3D"-pipe" make WARNS=3D5 a.o : rm -f a a.o : cc -pipe -march=3Dpentiumpro -Wsystem-headers -Werror -Wall -Wno-format= -y2k -W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-t= ype -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -c a.c And just to demonstrate that things don't depend on the options order: : $ make clean; env CFLAGS=3D"-O -Wall -pipe -O0" make WARNS=3D5 a.o : rm -f a a.o : cc -O -Wall -pipe -O0 -march=3Dpentiumpro -Wsystem-headers -Werror -Wal= l -Wno-format-y2k -W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-ari= th -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align= -c a.c Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --V0207lvV8h4k8FAm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jWRpUkv4P6juNwoRApLrAJ40AsFhHLHstJ8ezT4nJkWRLViKzwCbBonV MOgdPF43zqe7aEkJvAO2udc= =EwOW -----END PGP SIGNATURE----- --V0207lvV8h4k8FAm-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 03:09:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A965F37B404; Fri, 4 Apr 2003 03:09:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A2C943FAF; Fri, 4 Apr 2003 03:09:09 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34B980U085231; Fri, 4 Apr 2003 03:09:08 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34B9865085230; Fri, 4 Apr 2003 03:09:08 -0800 (PST) Message-Id: <200304041109.h34B9865085230@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 4 Apr 2003 03:09:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/ppp iface.c ipv6cp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 11:09:10 -0000 ume 2003/04/04 03:09:08 PST FreeBSD src repository Modified files: usr.sbin/ppp iface.c ipv6cp.c Log: Set link-local address of tun interface with prefixlen = 64 instead of 128. It makes RA happy. Reported by: rafa@dif.um.es, SHIRASAKI Yasuhiro Reviewed by: SHIRASAKI Yasuhiro MFC after: 1 week Revision Changes Path 1.36 +7 -7 src/usr.sbin/ppp/iface.c 1.11 +1 -1 src/usr.sbin/ppp/ipv6cp.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 03:46:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 099CF37B401; Fri, 4 Apr 2003 03:46:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D4E943FA3; Fri, 4 Apr 2003 03:46:21 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34BkL0U087780; Fri, 4 Apr 2003 03:46:21 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34BkL2H087779; Fri, 4 Apr 2003 03:46:21 -0800 (PST) Message-Id: <200304041146.h34BkL2H087779@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 03:46:21 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/turck-mmcache Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 11:46:22 -0000 edwin 2003/04/04 03:46:21 PST FreeBSD ports repository Modified files: www/turck-mmcache Makefile Log: PREFIX -> LOCALBASE in post-patch Submitted by: Alex Dupre Revision Changes Path 1.2 +1 -1 ports/www/turck-mmcache/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 03:51:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FE3C37B401; Fri, 4 Apr 2003 03:51:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F19243FBD; Fri, 4 Apr 2003 03:51:12 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34BpB0U088265; Fri, 4 Apr 2003 03:51:11 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34BpBA6088264; Fri, 4 Apr 2003 03:51:11 -0800 (PST) Message-Id: <200304041151.h34BpBA6088264@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 4 Apr 2003 03:51:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/i386 dokern.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 11:51:12 -0000 ru 2003/04/04 03:51:11 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release/i386 dokern.sh Log: Removed the ICMP_BANDLIM option. This saves 311 bytes of gzipped kernel without the awi(4), and 860 bytes with awi(4) back. That would be enough to put awi(4) back, but would leave only 6K of free space on kern.flp to be useful. Revision Changes Path 1.58.2.6 +1 -0 src/release/i386/dokern.sh From owner-cvs-all@FreeBSD.ORG Fri Apr 4 03:51:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5084037B401; Fri, 4 Apr 2003 03:51:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E02BE43FBF; Fri, 4 Apr 2003 03:51:51 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Bpp0U088315; Fri, 4 Apr 2003 03:51:51 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34BppxJ088314; Fri, 4 Apr 2003 03:51:51 -0800 (PST) Message-Id: <200304041151.h34BppxJ088314@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 03:51:51 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/libconnect Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 11:51:52 -0000 edwin 2003/04/04 03:51:51 PST FreeBSD ports repository Modified files: net/libconnect Makefile pkg-plist Log: Port net/libconnect installation problem fix When NOPROFILE variable is set the port libconnect could not be installed. The installation procedure from the Makefile always tried to install the libconnect_p.a file but if NOPROFILE is set the profiled version is not built. PR: ports/50544 Submitted by: Alex Semenyaka Revision Changes Path 1.2 +8 -0 ports/net/libconnect/Makefile 1.2 +1 -1 ports/net/libconnect/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 03:58:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20DD737B401; Fri, 4 Apr 2003 03:58:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B365143FA3; Fri, 4 Apr 2003 03:58:05 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Bw50U088508; Fri, 4 Apr 2003 03:58:05 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Bw5AY088507; Fri, 4 Apr 2003 03:58:05 -0800 (PST) Message-Id: <200304041158.h34Bw5AY088507@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 4 Apr 2003 03:58:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/scripts doFS.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 11:58:06 -0000 ru 2003/04/04 03:58:05 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release/scripts doFS.sh Log: MFC: 1.44: Don't reserve free space so as to not confuse people about >100%. Revision Changes Path 1.24.2.12 +1 -1 src/release/scripts/doFS.sh From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:02:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 042FF37B401; Fri, 4 Apr 2003 04:02:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8829443FDD; Fri, 4 Apr 2003 04:02:15 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34C2F0U089014; Fri, 4 Apr 2003 04:02:15 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34C2F4v089009; Fri, 4 Apr 2003 04:02:15 -0800 (PST) Message-Id: <200304041202.h34C2F4v089009@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 4 Apr 2003 04:02:15 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/sbcl Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:02:16 -0000 des 2003/04/04 04:02:15 PST FreeBSD ports repository Modified files: lang/sbcl Makefile distinfo pkg-plist Log: Update to 0.7.14. Revision Changes Path 1.3 +1 -1 ports/lang/sbcl/Makefile 1.2 +2 -2 ports/lang/sbcl/distinfo 1.2 +8 -9 ports/lang/sbcl/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:08:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BA8637B401; Fri, 4 Apr 2003 04:08:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D04AD43F85; Fri, 4 Apr 2003 04:08:42 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34C8g0U090138; Fri, 4 Apr 2003 04:08:42 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34C8gQe090137; Fri, 4 Apr 2003 04:08:42 -0800 (PST) Message-Id: <200304041208.h34C8gQe090137@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 4 Apr 2003 04:08:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_zeroidle.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:08:43 -0000 des 2003/04/04 04:08:42 PST FreeBSD src repository Modified files: sys/vm vm_zeroidle.c Log: Rename a static variable to avoid future conflicts. Revision Changes Path 1.19 +2 -2 src/sys/vm/vm_zeroidle.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:10:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FF1637B401; Fri, 4 Apr 2003 04:10:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1C1F43F3F; Fri, 4 Apr 2003 04:10:04 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CA40U090195; Fri, 4 Apr 2003 04:10:04 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CA4eY090194; Fri, 4 Apr 2003 04:10:04 -0800 (PST) Message-Id: <200304041210.h34CA4eY090194@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 4 Apr 2003 04:10:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ddb db_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:10:05 -0000 des 2003/04/04 04:10:04 PST FreeBSD src repository Modified files: sys/ddb db_input.c Log: The kernel bcopy() is safe for overlapping regions (and always has), so there is no use for a separate ovbcopy(). Revision Changes Path 1.33 +2 -2 src/sys/ddb/db_input.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:11:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D15137B401; Fri, 4 Apr 2003 04:11:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D06E643FBD; Fri, 4 Apr 2003 04:11:46 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CBk0U090637; Fri, 4 Apr 2003 04:11:46 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CBkfe090636; Fri, 4 Apr 2003 04:11:46 -0800 (PST) Message-Id: <200304041211.h34CBkfe090636@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 4 Apr 2003 04:11:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net slcompress.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:11:47 -0000 des 2003/04/04 04:11:46 PST FreeBSD src repository Modified files: sys/net slcompress.c Log: Don't use ovbcopy(); use void * instead of char *. Revision Changes Path 1.18 +3 -6 src/sys/net/slcompress.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:12:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 492B937B401; Fri, 4 Apr 2003 04:12:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB42B43FA3; Fri, 4 Apr 2003 04:12:34 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CCY0U090679; Fri, 4 Apr 2003 04:12:34 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CCYa2090678; Fri, 4 Apr 2003 04:12:34 -0800 (PST) Message-Id: <200304041212.h34CCYa2090678@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 4 Apr 2003 04:12:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph ng_l2tp.c ng_pptpgre.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:12:35 -0000 des 2003/04/04 04:12:34 PST FreeBSD src repository Modified files: sys/netgraph ng_l2tp.c ng_pptpgre.c Log: Don't use ovbcopy(). Revision Changes Path 1.6 +1 -1 src/sys/netgraph/ng_l2tp.c 1.30 +1 -1 src/sys/netgraph/ng_pptpgre.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:14:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A91437B401; Fri, 4 Apr 2003 04:14:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEA8043F93; Fri, 4 Apr 2003 04:14:00 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CE00U090785; Fri, 4 Apr 2003 04:14:00 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CE0xH090782; Fri, 4 Apr 2003 04:14:00 -0800 (PST) Message-Id: <200304041214.h34CE0xH090782@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 4 Apr 2003 04:14:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:14:01 -0000 des 2003/04/04 04:14:00 PST FreeBSD src repository Modified files: sys/netinet ip_output.c Log: Replace memcpy() and ovbcopy() with bcopy(); ditch some caddr_t usage. Revision Changes Path 1.185 +6 -7 src/sys/netinet/ip_output.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:15:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C9EE37B401; Fri, 4 Apr 2003 04:15:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B078643FB1; Fri, 4 Apr 2003 04:15:20 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CFK0U090912; Fri, 4 Apr 2003 04:15:20 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CFKLP090911; Fri, 4 Apr 2003 04:15:20 -0800 (PST) Message-Id: <200304041215.h34CFKLP090911@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 4 Apr 2003 04:15:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netipsec ipsec_mbuf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:15:21 -0000 des 2003/04/04 04:15:20 PST FreeBSD src repository Modified files: sys/netipsec ipsec_mbuf.c Log: Replace ovbcopy() with bcopy(). Revision Changes Path 1.8 +2 -3 src/sys/netipsec/ipsec_mbuf.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:18:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61A5537B401; Fri, 4 Apr 2003 04:18:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AD5F43F3F; Fri, 4 Apr 2003 04:18:24 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CIN0U091061; Fri, 4 Apr 2003 04:18:23 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CINcX091060; Fri, 4 Apr 2003 04:18:23 -0800 (PST) Message-Id: <200304041218.h34CINcX091060@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 04:18:23 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile ports/audio/teamspeak_client Makefile distinfo pkg-descr pkg-plist ports/audio/teamspeak_client/files TeamSpeak X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:18:24 -0000 edwin 2003/04/04 04:18:23 PST FreeBSD ports repository Modified files: audio Makefile Added files: audio/teamspeak_client Makefile distinfo pkg-descr pkg-plist audio/teamspeak_client/files TeamSpeak Log: New port for TeamSpeak The client for Team Speak a voice chat program which supports multiple channels with different rate codecs and several people on each channel. Primarily aimed at team gamers but can be used as an IP phone as well. PR: ports/47348 Submitted by: Daniel O'Connor Revision Changes Path 1.397 +1 -0 ports/audio/Makefile 1.1 +38 -0 ports/audio/teamspeak_client/Makefile (new) 1.1 +2 -0 ports/audio/teamspeak_client/distinfo (new) 1.1 +22 -0 ports/audio/teamspeak_client/files/TeamSpeak (new) 1.1 +5 -0 ports/audio/teamspeak_client/pkg-descr (new) 1.1 +166 -0 ports/audio/teamspeak_client/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:19:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6282537B401; Fri, 4 Apr 2003 04:19:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0421343F3F; Fri, 4 Apr 2003 04:19:06 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CJ50U091145; Fri, 4 Apr 2003 04:19:05 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CJ5Op091144; Fri, 4 Apr 2003 04:19:05 -0800 (PST) Message-Id: <200304041219.h34CJ5Op091144@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 04:19:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:19:06 -0000 edwin 2003/04/04 04:19:05 PST FreeBSD ports repository Modified files: . modules Log: teamspeak_client --> ports/audio/teamspeak_client Revision Changes Path 1.6975 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:20:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D49D37B401; Fri, 4 Apr 2003 04:20:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD54143FD7; Fri, 4 Apr 2003 04:20:54 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CKs0U091585; Fri, 4 Apr 2003 04:20:54 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CKs7P091584; Fri, 4 Apr 2003 04:20:54 -0800 (PST) Message-Id: <200304041220.h34CKs7P091584@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 04:20:54 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Tools/scripts parse-kdump.tcl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:20:55 -0000 edwin 2003/04/04 04:20:54 PST FreeBSD ports repository Added files: Tools/scripts parse-kdump.tcl Log: This tool parses the output of kdump to generate a list of added and removed files. This can be used as the basis of a pkg-plist, or even just for curiosity about what files something is touching. Fairly raw at the moment, and doubtless inefficient, but it should make a useful tool for port creators. PR: ports/47424 Submitter: Daniel O'Connor Revision Changes Path 1.1 +199 -0 ports/Tools/scripts/parse-kdump.tcl (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:21:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1110037B401; Fri, 4 Apr 2003 04:21:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A165C43FA3; Fri, 4 Apr 2003 04:21:46 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CLk0U091689; Fri, 4 Apr 2003 04:21:46 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CLkFa091688; Fri, 4 Apr 2003 04:21:46 -0800 (PST) Message-Id: <200304041221.h34CLkFa091688@repoman.freebsd.org> From: Hye-Shik Chang Date: Fri, 4 Apr 2003 04:21:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers Makefile ports/archivers/dpkg Makefile distinfo pkg-descr pkg-plist ports/archivers/dpkg/files patch-Makefile.conf.in patch-Makefile.in patch-archtable patch-utils%start-stop-daemon.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:21:47 -0000 perky 2003/04/04 04:21:46 PST FreeBSD ports repository Modified files: archivers Makefile Added files: archivers/dpkg Makefile distinfo pkg-descr pkg-plist archivers/dpkg/files patch-Makefile.conf.in patch-Makefile.in patch-archtable patch-configure.in patch-lib_Makefile.in patch-utils%start-stop-daemon.c Log: Add dpkg 1.9.21, the debian package manager. Revision Changes Path 1.80 +1 -0 ports/archivers/Makefile 1.1 +39 -0 ports/archivers/dpkg/Makefile (new) 1.1 +1 -0 ports/archivers/dpkg/distinfo (new) 1.1 +11 -0 ports/archivers/dpkg/files/patch-Makefile.conf.in (new) 1.1 +11 -0 ports/archivers/dpkg/files/patch-Makefile.in (new) 1.1 +14 -0 ports/archivers/dpkg/files/patch-archtable (new) 1.1 +11 -0 ports/archivers/dpkg/files/patch-configure.in (new) 1.1 +11 -0 ports/archivers/dpkg/files/patch-lib_Makefile.in (new) 1.1 +76 -0 ports/archivers/dpkg/files/patch-utils%start-stop-daemon.c (new) 1.1 +7 -0 ports/archivers/dpkg/pkg-descr (new) 1.1 +75 -0 ports/archivers/dpkg/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:23:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7752B37B401; Fri, 4 Apr 2003 04:23:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1674143F75; Fri, 4 Apr 2003 04:23:52 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CNp0U091754; Fri, 4 Apr 2003 04:23:51 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CNpWM091753; Fri, 4 Apr 2003 04:23:51 -0800 (PST) Message-Id: <200304041223.h34CNpWM091753@repoman.freebsd.org> From: Hye-Shik Chang Date: Fri, 4 Apr 2003 04:23:51 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:23:53 -0000 perky 2003/04/04 04:23:51 PST FreeBSD ports repository Modified files: . modules Log: dpkg -> ports/archivers/dpkg Revision Changes Path 1.6976 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:25:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10F5B37B401; Fri, 4 Apr 2003 04:25:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1B3643FAF; Fri, 4 Apr 2003 04:25:41 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CPf0U091928; Fri, 4 Apr 2003 04:25:41 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CPf8A091927; Fri, 4 Apr 2003 04:25:41 -0800 (PST) Message-Id: <200304041225.h34CPf8A091927@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 04:25:41 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils Makefile ports/sysutils/plconfig Makefile distinfo pkg-descr pkg-plist plconfig-0.1.tar.gz X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:25:42 -0000 edwin 2003/04/04 04:25:41 PST FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/plconfig Makefile distinfo pkg-descr pkg-plist plconfig-0.1.tar.gz Log: New port: sysutils/plconfig (Configure HomePlug Bridges) New port of a commandline tool to configure HomePlug bridges. PR: ports/47536 Submitted by: Matt Peterson Revision Changes Path 1.348 +1 -0 ports/sysutils/Makefile 1.1 +32 -0 ports/sysutils/plconfig/Makefile (new) 1.1 +1 -0 ports/sysutils/plconfig/distinfo (new) 1.1 +8 -0 ports/sysutils/plconfig/pkg-descr (new) 1.1 +3 -0 ports/sysutils/plconfig/pkg-plist (new) 1.1 +20 -0 ports/sysutils/plconfig/plconfig-0.1.tar.gz (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:26:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FED437B401; Fri, 4 Apr 2003 04:26:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5DAA43F85; Fri, 4 Apr 2003 04:25:59 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CPx0U091970; Fri, 4 Apr 2003 04:25:59 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CPxHu091969; Fri, 4 Apr 2003 04:25:59 -0800 (PST) Message-Id: <200304041225.h34CPxHu091969@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 04:25:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:26:00 -0000 edwin 2003/04/04 04:25:59 PST FreeBSD ports repository Modified files: . modules Log: plconfig --> ports/sysutils/plconfig Revision Changes Path 1.6977 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:27:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3155D37B401; Fri, 4 Apr 2003 04:27:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C38A743F75; Fri, 4 Apr 2003 04:26:59 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CQx0U092019; Fri, 4 Apr 2003 04:26:59 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CQx5x092018; Fri, 4 Apr 2003 04:26:59 -0800 (PST) Message-Id: <200304041226.h34CQx5x092018@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 04:26:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/plconfig plconfig-0.1.tar.gz X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:27:00 -0000 edwin 2003/04/04 04:26:59 PST FreeBSD ports repository Removed files: sysutils/plconfig plconfig-0.1.tar.gz Log: Never put tarballs in the ports directory when you add a port. Revision Changes Path 1.2 +0 -20 ports/sysutils/plconfig/plconfig-0.1.tar.gz (dead) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:32:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE46237B401; Fri, 4 Apr 2003 04:32:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D58F43FA3; Fri, 4 Apr 2003 04:32:52 -0800 (PST) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CWq0U092562; Fri, 4 Apr 2003 04:32:52 -0800 (PST) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CWq0A092561; Fri, 4 Apr 2003 04:32:52 -0800 (PST) Message-Id: <200304041232.h34CWq0A092561@repoman.freebsd.org> From: Hye-Shik Chang Date: Fri, 4 Apr 2003 04:32:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/id3v2/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:32:53 -0000 perky 2003/04/04 04:32:52 PST FreeBSD ports repository Modified files: audio/id3v2/files patch-Makefile Log: Let makefile respect ${PREFIX} Approved by: maintainer Revision Changes Path 1.2 +8 -3 ports/audio/id3v2/files/patch-Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:40:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78BAC37B401; Fri, 4 Apr 2003 04:40:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2529943F75; Fri, 4 Apr 2003 04:40:05 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Ce40U092881; Fri, 4 Apr 2003 04:40:04 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Ce4VT092880; Fri, 4 Apr 2003 04:40:04 -0800 (PST) Message-Id: <200304041240.h34Ce4VT092880@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 04:40:04 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/less Makefile distinfo pkg-descr pkg-plist ports/misc/less/files patch-aa patch-ab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:40:06 -0000 edwin 2003/04/04 04:40:04 PST FreeBSD ports repository Added files: misc/less Makefile distinfo pkg-descr pkg-plist misc/less/files patch-aa patch-ab Log: [maintainer-update] ports/misc/less 374 -> 378 revive the port - it improperly suffered repo-death - and apply the patch below. PR: ports/47577 Submitted by: Jason Harris Revision Changes Path 1.37 +30 -0 ports/misc/less/Makefile (new) 1.17 +1 -0 ports/misc/less/distinfo (new) 1.7 +11 -0 ports/misc/less/files/patch-aa (new) 1.3 +41 -0 ports/misc/less/files/patch-ab (new) 1.7 +4 -0 ports/misc/less/pkg-descr (new) 1.8 +3 -0 ports/misc/less/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:44:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BBFE37B404; Fri, 4 Apr 2003 04:44:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 736FF43FD7; Fri, 4 Apr 2003 04:44:52 -0800 (PST) (envelope-from shige@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Ciq0U093385; Fri, 4 Apr 2003 04:44:52 -0800 (PST) (envelope-from shige@repoman.freebsd.org) Received: (from shige@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CiqZX093384; Fri, 4 Apr 2003 04:44:52 -0800 (PST) Message-Id: <200304041244.h34CiqZX093384@repoman.freebsd.org> From: Shigeyuki Fukushima Date: Fri, 4 Apr 2003 04:44:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/shells/zsh-devel Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:44:54 -0000 shige 2003/04/04 04:44:52 PST FreeBSD ports repository Modified files: shells/zsh-devel Makefile distinfo pkg-plist Log: Update to 4.1.0.dev7. PR: ports/50451 Submitted by: Anders Andersson Revision Changes Path 1.61 +1 -1 ports/shells/zsh-devel/Makefile 1.27 +1 -1 ports/shells/zsh-devel/distinfo 1.31 +20 -0 ports/shells/zsh-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:47:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62A8F37B401; Fri, 4 Apr 2003 04:47:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CA8843F3F; Fri, 4 Apr 2003 04:47:00 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Ckx0U093542; Fri, 4 Apr 2003 04:46:59 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CkxJ0093541; Fri, 4 Apr 2003 04:46:59 -0800 (PST) Message-Id: <200304041246.h34CkxJ0093541@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 04:46:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail Makefile ports/mail/silkymail Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:47:00 -0000 edwin 2003/04/04 04:46:59 PST FreeBSD ports repository Modified files: mail Makefile Added files: mail/silkymail Makefile distinfo pkg-descr pkg-message pkg-plist Log: new port mail/silkymail, a slick looking webmail program SilkyMail is an Internet mail client that runs in your browser. It can be used by itself, or in conjunction with an IMAP or POP-capable client as part of a complete set of messaging tools. (It works very nicely in conjunction with Mulberry.) It was designed by internet mail client experts to work in high-scalability and diverse environments. It's not just another webmail hack cut of rough cloth -- it's a real mail program, that can be used by novice users and advanced users a like, but with the independence of browser access. SilkyMail is the smoothest mail client in a browser around. PR: ports/47721 Submitted by: Aaron Voisine Revision Changes Path 1.372 +1 -0 ports/mail/Makefile 1.1 +52 -0 ports/mail/silkymail/Makefile (new) 1.1 +1 -0 ports/mail/silkymail/distinfo (new) 1.1 +12 -0 ports/mail/silkymail/pkg-descr (new) 1.1 +17 -0 ports/mail/silkymail/pkg-message (new) 1.1 +1207 -0 ports/mail/silkymail/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:47:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E99137B401; Fri, 4 Apr 2003 04:47:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2A4243F93; Fri, 4 Apr 2003 04:47:21 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34ClL0U098722; Fri, 4 Apr 2003 04:47:21 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34ClL6V098721; Fri, 4 Apr 2003 04:47:21 -0800 (PST) Message-Id: <200304041247.h34ClL6V098721@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 04:47:21 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:47:22 -0000 edwin 2003/04/04 04:47:21 PST FreeBSD ports repository Modified files: . modules Log: silkymail --> ports/mail/silkymail Revision Changes Path 1.6978 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 04:56:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2ED637B401; Fri, 4 Apr 2003 04:56:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43EEC43FB1; Fri, 4 Apr 2003 04:56:21 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34CuL0U099340; Fri, 4 Apr 2003 04:56:21 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34CuKrV099339; Fri, 4 Apr 2003 04:56:20 -0800 (PST) Message-Id: <200304041256.h34CuKrV099339@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 4 Apr 2003 04:56:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netipsec ipsec_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 12:56:22 -0000 des 2003/04/04 04:56:20 PST FreeBSD src repository Modified files: sys/netipsec ipsec_output.c Log: ovbcopy -> bcopy Revision Changes Path 1.6 +1 -1 src/sys/netipsec/ipsec_output.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 05:07:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0702337B401; Fri, 4 Apr 2003 05:07:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97AF343FAF; Fri, 4 Apr 2003 05:07:19 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34D7J0U001138; Fri, 4 Apr 2003 05:07:19 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34D7JYK001137; Fri, 4 Apr 2003 05:07:19 -0800 (PST) Message-Id: <200304041307.h34D7JYK001137@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 05:07:19 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/cvsync Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 13:07:20 -0000 nork 2003/04/04 05:07:19 PST FreeBSD ports repository Modified files: net/cvsync Makefile distinfo Log: Update to 0.19.0. PR: ports/50601 Submitted by: hrs (maintainer) Revision Changes Path 1.3 +1 -1 ports/net/cvsync/Makefile 1.3 +1 -1 ports/net/cvsync/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 4 05:27:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C240A37B401; Fri, 4 Apr 2003 05:27:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 615C343F75; Fri, 4 Apr 2003 05:27:48 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34DRm0U002367; Fri, 4 Apr 2003 05:27:48 -0800 (PST) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34DRmfT002366; Fri, 4 Apr 2003 05:27:48 -0800 (PST) Message-Id: <200304041327.h34DRmfT002366@repoman.freebsd.org> From: David Schultz Date: Fri, 4 Apr 2003 05:27:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/msun/src math.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 13:27:49 -0000 das 2003/04/04 05:27:48 PST FreeBSD src repository Modified files: lib/msun/src math.h Log: Fix braino in definition of isfinite(). Noticed by: marcus Pointy hat to: das Revision Changes Path 1.25 +1 -1 src/lib/msun/src/math.h From owner-cvs-all@FreeBSD.ORG Fri Apr 4 05:30:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7311837B401; Fri, 4 Apr 2003 05:30:52 -0800 (PST) Received: from procyon.firepipe.net (procyon.firepipe.net [198.78.66.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02E0843F75; Fri, 4 Apr 2003 05:30:52 -0800 (PST) (envelope-from will@csociety.org) Received: by procyon.firepipe.net (Postfix, from userid 1000) id 04AF921972; Fri, 4 Apr 2003 05:30:50 -0800 (PST) Date: Fri, 4 Apr 2003 05:30:50 -0800 From: Will Andrews To: Joe Marcus Clarke Message-ID: <20030404133050.GG983@procyon.firepipe.net> References: <200304040655.h346tNAb054905@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304040655.h346tNAb054905@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/x11-fonts/Xft Makefile ports/x11-fonts/Xft/files pkg-install.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 13:30:52 -0000 On Thu, Apr 03, 2003 at 10:55:23PM -0800, Joe Marcus Clarke wrote: > Modified files: > x11-fonts/Xft Makefile > Added files: > x11-fonts/Xft/files pkg-install.in > Log: > Borrow a little from kdelibs3, and add a dependency on the scalable fonts. > Also, run fc-cache here as well as in fontconfig just to make sure we have > some fonts installed. This change needs to be reverted. You added a circular dependency due to XFree86-4-font* depending on XFree86-4-clients which in turn depends on Xft. Perhaps the problem you're trying solve could be solved in a different location. Regards, -- wca From owner-cvs-all@FreeBSD.ORG Fri Apr 4 05:58:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BE5B37B401; Fri, 4 Apr 2003 05:58:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BA3543FAF; Fri, 4 Apr 2003 05:58:28 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34DwS0U004331; Fri, 4 Apr 2003 05:58:28 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34DwRWT004330; Fri, 4 Apr 2003 05:58:27 -0800 (PST) Message-Id: <200304041358.h34DwRWT004330@repoman.freebsd.org> From: Yen-Ming Lee Date: Fri, 4 Apr 2003 05:58:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/cvsdelta Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 13:58:29 -0000 leeym 2003/04/04 05:58:27 PST FreeBSD ports repository Modified files: devel/cvsdelta Makefile distinfo Log: Update to 1.6.2 (bugfix) PR: 50592 Submitted by: Michael L. Hostbaek Revision Changes Path 1.10 +1 -1 ports/devel/cvsdelta/Makefile 1.8 +1 -1 ports/devel/cvsdelta/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 4 06:17:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CFC037B401; Fri, 4 Apr 2003 06:17:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39CC643F3F; Fri, 4 Apr 2003 06:17:01 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34EH10U006537; Fri, 4 Apr 2003 06:17:01 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34EH0O7006536; Fri, 4 Apr 2003 06:17:00 -0800 (PST) Message-Id: <200304041417.h34EH0O7006536@repoman.freebsd.org> From: Yen-Ming Lee Date: Fri, 4 Apr 2003 06:17:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/gubby Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 14:17:02 -0000 leeym 2003/04/04 06:17:00 PST FreeBSD ports repository Modified files: mail/gubby Makefile distinfo Log: Update to latest release (0.5.1) PR: 50591 Submitted by: Michael L. Hostbaek Revision Changes Path 1.4 +1 -1 ports/mail/gubby/Makefile 1.4 +1 -1 ports/mail/gubby/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 4 06:40:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F238E37B401; Fri, 4 Apr 2003 06:40:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FADC43FA3; Fri, 4 Apr 2003 06:40:01 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Ee10U007839; Fri, 4 Apr 2003 06:40:01 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Ee1TP007838; Fri, 4 Apr 2003 06:40:01 -0800 (PST) Message-Id: <200304041440.h34Ee1TP007838@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Fri, 4 Apr 2003 06:40:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pccard pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 14:40:02 -0000 sanpei 2003/04/04 06:40:01 PST FreeBSD src repository Modified files: sys/dev/pccard pccard.c Log: fix typo Revision Changes Path 1.74 +1 -1 src/sys/dev/pccard/pccard.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 06:40:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B37437B401; Fri, 4 Apr 2003 06:40:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECA9443FA3; Fri, 4 Apr 2003 06:40:49 -0800 (PST) (envelope-from robert@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Een0U008189; Fri, 4 Apr 2003 06:40:49 -0800 (PST) (envelope-from robert@repoman.freebsd.org) Received: (from robert@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Eenq6008187; Fri, 4 Apr 2003 06:40:49 -0800 (PST) Message-Id: <200304041440.h34Eenq6008187@repoman.freebsd.org> From: Robert Drehmel Date: Fri, 4 Apr 2003 06:40:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pkg_install/version perform.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 14:40:50 -0000 robert 2003/04/04 06:40:49 PST FreeBSD src repository Modified files: usr.sbin/pkg_install/version perform.c Log: - Print out an error message instead of dereferencing a NULL pointer if matchinstalled() found no packages, which happens to be the case after fresh installations. - Instead of using strstr(3) to match the package name, depend on matchinstalled()'s MATCH_REGEX package matching. PR: bin/50384 MFC after: 2 weeks Revision Changes Path 1.6 +29 -7 src/usr.sbin/pkg_install/version/perform.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 06:46:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9811937B401; Fri, 4 Apr 2003 06:46:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3716D43F3F; Fri, 4 Apr 2003 06:46:51 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Ekp0U008488; Fri, 4 Apr 2003 06:46:51 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34EkoYN008487; Fri, 4 Apr 2003 06:46:50 -0800 (PST) Message-Id: <200304041446.h34EkoYN008487@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Fri, 4 Apr 2003 06:46:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ed if_ed_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 14:46:52 -0000 sanpei 2003/04/04 06:46:50 PST FreeBSD src repository Modified files: sys/dev/ed if_ed_pccard.c Log: Add NE2000DVF_AX88190 flag to Corega FEther PCC-TXD (see also /etc/defaults/pccard.conf rev.1.172) Revision Changes Path 1.43 +1 -1 src/sys/dev/ed/if_ed_pccard.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 07:13:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5652837B401; Fri, 4 Apr 2003 07:13:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7B2843F85; Fri, 4 Apr 2003 07:13:24 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34FDO0U011193; Fri, 4 Apr 2003 07:13:24 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34FDOdJ011192; Fri, 4 Apr 2003 07:13:24 -0800 (PST) Message-Id: <200304041513.h34FDOdJ011192@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 4 Apr 2003 07:13:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 15:13:25 -0000 bmah 2003/04/04 07:13:24 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: MFC: Floppy drives use fdc(4), not fd(4). Revision Changes Path 1.13.2.80 +1 -1 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 4 07:36:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE77E37B405 for ; Fri, 4 Apr 2003 07:36:02 -0800 (PST) Received: from sleet.ispgateway.de (sleet.ispgateway.de [62.67.200.125]) by mx1.FreeBSD.org (Postfix) with SMTP id 51E0F43FAF for ; Fri, 4 Apr 2003 07:36:00 -0800 (PST) (envelope-from robert@zoot.drehmel.com) Received: (qmail 10554 invoked from network); 4 Apr 2003 15:35:59 -0000 Received: from unknown (HELO bsd.develop.ferrari.local) (948464@[62.159.79.193]) (envelope-sender ) by sleet.ispgateway.de (qmail-ldap-1.03) with SMTP for ; 4 Apr 2003 15:35:59 -0000 Received: (from robert@localhost) by bsd.develop.ferrari.local (8.12.6/8.11.5) id h34FUQl4026330; Fri, 4 Apr 2003 17:30:26 +0200 (CEST) (envelope-from robert) Date: Fri, 4 Apr 2003 17:30:26 +0200 From: Robert Drehmel To: robert@FreeBSD.org Message-ID: <20030404153026.GA26280@bsd.develop.ferrari.local> References: <200304041440.h34Eenq6008187@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304041440.h34Eenq6008187@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/version perform.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 15:36:03 -0000 On Fri, Apr 04, 2003 at 06:40:49AM -0800, Robert Drehmel wrote: > robert 2003/04/04 06:40:49 PST > > FreeBSD src repository > > Modified files: > usr.sbin/pkg_install/version perform.c > Log: > - Print out an error message instead of dereferencing a NULL pointer > if matchinstalled() found no packages, which happens to be the > case after fresh installations. > - Instead of using strstr(3) to match the package name, depend on > matchinstalled()'s MATCH_REGEX package matching. MATCH_REGEX is not quite correct but only used to be similar to previous behaviour. It think the options of pkg_version should be changed to match those of pkg_info - at least to be able to say $ pkg_info pkg_name ... $ pkg_info -x pkg_regex and $ pkg_version pkg_name ... $ pkg_version -x pkg_regex Comments? ciao, -robert From owner-cvs-all@FreeBSD.ORG Fri Apr 4 07:48:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F04AB37B401; Fri, 4 Apr 2003 07:48:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90A3243F85; Fri, 4 Apr 2003 07:48:18 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34FmI0U013245; Fri, 4 Apr 2003 07:48:18 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34FmISH013244; Fri, 4 Apr 2003 07:48:18 -0800 (PST) Message-Id: <200304041548.h34FmISH013244@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 4 Apr 2003 07:48:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 15:48:19 -0000 ru 2003/04/04 07:48:18 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release Makefile Log: MFC: Strip the .comment section out from crunch binaries and MFSROOT kernel. Revision Changes Path 1.536.2.107 +2 -1 src/release/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 08:00:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4833337B401; Fri, 4 Apr 2003 08:00:32 -0800 (PST) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2628843F75; Fri, 4 Apr 2003 08:00:31 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h34FxCTc008166; Fri, 4 Apr 2003 10:59:12 -0500 (EST) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: Will Andrews In-Reply-To: <20030404133050.GG983@procyon.firepipe.net> References: <200304040655.h346tNAb054905@repoman.freebsd.org> <20030404133050.GG983@procyon.firepipe.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-RRz0myNNeVvIOOq1MSIn" Organization: FreeBSD, Inc. Message-Id: <1049472020.21550.1.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 04 Apr 2003 11:00:21 -0500 X-Spam-Status: No, hits=-39.4 required=5.0 tests=BAYES_01,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,QUOTE_TWICE_1,REFERENCES, REPLY_WITH_QUOTES autolearn=ham version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/x11-fonts/Xft Makefile ports/x11-fonts/Xft/files pkg-install.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 16:00:32 -0000 --=-RRz0myNNeVvIOOq1MSIn Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2003-04-04 at 08:30, Will Andrews wrote: > On Thu, Apr 03, 2003 at 10:55:23PM -0800, Joe Marcus Clarke wrote: > > Modified files: > > x11-fonts/Xft Makefile=20 > > Added files: > > x11-fonts/Xft/files pkg-install.in=20 > > Log: > > Borrow a little from kdelibs3, and add a dependency on the scalable f= onts. > > Also, run fc-cache here as well as in fontconfig just to make sure we= have > > some fonts installed. >=20 > This change needs to be reverted. You added a circular > dependency due to XFree86-4-font* depending on XFree86-4-clients > which in turn depends on Xft. Perhaps the problem you're trying > solve could be solved in a different location. Ah, okay. I wanted to get this as close to the root as possible. Looks like I'll have to do this in pango after all. Sorry for the trouble. Joe >=20 > Regards, --=20 Joe Marcus Clarke FreeBSD GNOME Team :: marcus@FreeBSD.org http://www.FreeBSD.org/gnome --=-RRz0myNNeVvIOOq1MSIn Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+jawUb2iPiv4Uz4cRAq0fAJsF/DTlMY8s8HZRRrwrj2/Q+I2KKACfTUxe yut/XW6XgDw8rVmxFqUeHwM= =bNAc -----END PGP SIGNATURE----- --=-RRz0myNNeVvIOOq1MSIn-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 08:01:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D05237B405; Fri, 4 Apr 2003 08:01:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 358B943F75; Fri, 4 Apr 2003 08:01:56 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34G1u0U014361; Fri, 4 Apr 2003 08:01:56 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34G1tlh014360; Fri, 4 Apr 2003 08:01:55 -0800 (PST) Message-Id: <200304041601.h34G1tlh014360@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 08:01:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fonts/Xft Makefile ports/x11-fonts/Xft/files pkg-install.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 16:01:57 -0000 marcus 2003/04/04 08:01:55 PST FreeBSD ports repository Modified files: x11-fonts/Xft Makefile Removed files: x11-fonts/Xft/files pkg-install.in Log: Revert previous commit since it caused an infinite recursion loop in XFree86-clients. I'll commit this to pango instead. Requested by: will Revision Changes Path 1.13 +1 -11 ports/x11-fonts/Xft/Makefile 1.2 +0 -9 ports/x11-fonts/Xft/files/pkg-install.in (dead) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 08:13:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DD7D37B401; Fri, 4 Apr 2003 08:13:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C41C43F75; Fri, 4 Apr 2003 08:13:22 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34GDM0U015977; Fri, 4 Apr 2003 08:13:22 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34GDMXU015976; Fri, 4 Apr 2003 08:13:22 -0800 (PST) Message-Id: <200304041613.h34GDMXU015976@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 08:13:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/pango Makefile ports/x11-toolkits/pango/files pkg-install.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 16:13:23 -0000 marcus 2003/04/04 08:13:22 PST FreeBSD ports repository Modified files: x11-toolkits/pango Makefile Added files: x11-toolkits/pango/files pkg-install.in Log: Add the dependency on scalable fonts here instead of Xft to avoid a circular dependency in XFree86-clients. Revision Changes Path 1.45 +12 -1 ports/x11-toolkits/pango/Makefile 1.1 +9 -0 ports/x11-toolkits/pango/files/pkg-install.in (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 08:16:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD77C37B401; Fri, 4 Apr 2003 08:16:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EAA243F93; Fri, 4 Apr 2003 08:16:14 -0800 (PST) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34GGE0U016133; Fri, 4 Apr 2003 08:16:14 -0800 (PST) (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34GGEO8016132; Fri, 4 Apr 2003 08:16:14 -0800 (PST) Message-Id: <200304041616.h34GGEO8016132@repoman.freebsd.org> From: Gerald Pfeifer Date: Fri, 4 Apr 2003 08:16:14 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc32 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 16:16:15 -0000 gerald 2003/04/04 08:16:14 PST FreeBSD ports repository Modified files: lang/gcc32 Makefile Log: Remove PATCH_SITES and PATCHFILES which we haven't used lately and related material. Reviewed by: obrien Revision Changes Path 1.149 +0 -6 ports/lang/gcc32/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 08:30:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB64437B401; Fri, 4 Apr 2003 08:30:40 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id A37AE43FBF; Fri, 4 Apr 2003 08:30:39 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.7) with ESMTP id h34GUID0082019; Fri, 4 Apr 2003 08:30:22 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h34GUDu9082014; Fri, 4 Apr 2003 08:30:13 -0800 (PST) Date: Fri, 4 Apr 2003 08:30:13 -0800 From: "David O'Brien" To: Ruslan Ermilov Message-ID: <20030404163013.GB81938@dragon.nuxi.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403093800.GA68012@dhcp01.pn.xcllnt.net> <20030403200459.H30311@gamplex.bde.org> <20030403160017.GD17860@dragon.nuxi.com> <20030404080746.GC95125@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030404080746.GC95125@sunbay.com> User-Agent: Mutt/1.4i 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 cc: src-committers@FreeBSD.org cc: Bruce Evans cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: cvs commit: src/libexec/talkd announce.c extern.h print.c table.c talkd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 16:30:41 -0000 On Fri, Apr 04, 2003 at 11:07:46AM +0300, Ruslan Ermilov wrote: > Guess what was in GCC_OPTIONS. In short, we don't support > GCC_OPTIONS. It isn't even mentioned in gcc(1) or GNU info > files. We, FreeBSD, are the ones that added it. That's why it isn't mentioned in the GNU docs. From owner-cvs-all@FreeBSD.ORG Fri Apr 4 08:35:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CCD637B404; Fri, 4 Apr 2003 08:35:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D6FB43FB1; Fri, 4 Apr 2003 08:35:16 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34GZG0U017511; Fri, 4 Apr 2003 08:35:16 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34GZGT5017510; Fri, 4 Apr 2003 08:35:16 -0800 (PST) Message-Id: <200304041635.h34GZGT5017510@repoman.freebsd.org> From: Poul-Henning Kamp Date: Fri, 4 Apr 2003 08:35:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libdisk create_chunk.c disk.c rules.c write_alpha_disk.c write_disk.c write_i386_disk.c write_ia64_disk.c write_pc98_disk.c src/sys/boot/alpha/libalpha bootinfo.c srmdisk.c src/sys/boot/arc/lib arcdisk.c bootinfo.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 16:35:19 -0000 phk 2003/04/04 08:35:16 PST FreeBSD src repository Modified files: lib/libdisk create_chunk.c disk.c rules.c write_alpha_disk.c write_disk.c write_i386_disk.c write_ia64_disk.c write_pc98_disk.c sys/boot/alpha/libalpha bootinfo.c srmdisk.c sys/boot/arc/lib arcdisk.c bootinfo.c sys/boot/common commands.c load_elf.c sys/boot/i386/boot2 boot2.c sys/boot/i386/libi386 bioscd.c biosdisk.c elf_freebsd.c sys/boot/pc98/boot2 disk.c sys.c sys/boot/pc98/libpc98 biosdisk.c sys/boot/sparc64/boot1 boot1.c sys/i386/include bootinfo.h sys/sys diskslice.h reboot.h Log: Libdisk does not need to include any more. Move the remaining bits of to Move i386/pc98 specific bits from to as well. Adjust includes in sys/boot accordingly. Revision Changes Path 1.80 +0 -1 src/lib/libdisk/create_chunk.c 1.114 +0 -1 src/lib/libdisk/disk.c 1.29 +0 -1 src/lib/libdisk/rules.c 1.10 +0 -1 src/lib/libdisk/write_alpha_disk.c 1.52 +0 -1 src/lib/libdisk/write_disk.c 1.7 +0 -1 src/lib/libdisk/write_i386_disk.c 1.8 +0 -1 src/lib/libdisk/write_ia64_disk.c 1.9 +0 -1 src/lib/libdisk/write_pc98_disk.c 1.13 +1 -2 src/sys/boot/alpha/libalpha/bootinfo.c 1.12 +1 -2 src/sys/boot/alpha/libalpha/srmdisk.c 1.5 +1 -2 src/sys/boot/arc/lib/arcdisk.c 1.5 +1 -2 src/sys/boot/arc/lib/bootinfo.c 1.18 +0 -1 src/sys/boot/common/commands.c 1.26 +0 -1 src/sys/boot/common/load_elf.c 1.63 +0 -2 src/sys/boot/i386/boot2/boot2.c 1.4 +1 -1 src/sys/boot/i386/libi386/bioscd.c 1.39 +1 -1 src/sys/boot/i386/libi386/biosdisk.c 1.11 +1 -2 src/sys/boot/i386/libi386/elf_freebsd.c 1.9 +1 -1 src/sys/boot/pc98/boot2/disk.c 1.4 +0 -1 src/sys/boot/pc98/boot2/sys.c 1.24 +1 -2 src/sys/boot/pc98/libpc98/biosdisk.c 1.15 +0 -2 src/sys/boot/sparc64/boot1/boot1.c 1.15 +45 -1 src/sys/i386/include/bootinfo.h 1.49 +0 -4 src/sys/sys/diskslice.h 1.21 +0 -38 src/sys/sys/reboot.h From owner-cvs-all@FreeBSD.ORG Fri Apr 4 08:54:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2692137B401; Fri, 4 Apr 2003 08:54:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAF4743FA3; Fri, 4 Apr 2003 08:54:25 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34GsP0U024001; Fri, 4 Apr 2003 08:54:25 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34GsPJg024000; Fri, 4 Apr 2003 08:54:25 -0800 (PST) Message-Id: <200304041654.h34GsPJg024000@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 4 Apr 2003 08:54:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/vim Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 16:54:26 -0000 obrien 2003/04/04 08:54:25 PST FreeBSD ports repository Modified files: editors/vim Makefile distinfo Log: Update to Vim 6.1 patchlevel 435 Revision Changes Path 1.222 +5 -4 ports/editors/vim/Makefile 1.137 +25 -333 ports/editors/vim/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 4 08:57:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A427837B404; Fri, 4 Apr 2003 08:57:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4362B43F3F; Fri, 4 Apr 2003 08:57:52 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Gvq0U024138; Fri, 4 Apr 2003 08:57:52 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34GvpFM024137; Fri, 4 Apr 2003 08:57:51 -0800 (PST) Message-Id: <200304041657.h34GvpFM024137@repoman.freebsd.org> From: Poul-Henning Kamp Date: Fri, 4 Apr 2003 08:57:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys diskslice.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 16:57:53 -0000 phk 2003/04/04 08:57:51 PST FreeBSD src repository Removed files: sys/sys diskslice.h Log: Retire Revision Changes Path 1.50 +0 -35 src/sys/sys/diskslice.h (dead) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 08:59:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B90D037B404; Fri, 4 Apr 2003 08:59:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43BA443F85; Fri, 4 Apr 2003 08:59:40 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Gxe0U024249; Fri, 4 Apr 2003 08:59:40 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Gxde1024248; Fri, 4 Apr 2003 08:59:39 -0800 (PST) Message-Id: <200304041659.h34Gxde1024248@repoman.freebsd.org> From: Poul-Henning Kamp Date: Fri, 4 Apr 2003 08:59:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libdisk write_alpha_disk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 16:59:41 -0000 phk 2003/04/04 08:59:39 PST FreeBSD src repository Modified files: lib/libdisk write_alpha_disk.c Log: Use sized cast matching the sized pointer. Revision Changes Path 1.11 +1 -1 src/lib/libdisk/write_alpha_disk.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:04:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 754C737B404; Fri, 4 Apr 2003 09:04:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14B7C43F3F; Fri, 4 Apr 2003 09:04:05 -0800 (PST) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34H440U025681; Fri, 4 Apr 2003 09:04:04 -0800 (PST) (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34H44JC025680; Fri, 4 Apr 2003 09:04:04 -0800 (PST) Message-Id: <200304041704.h34H44JC025680@repoman.freebsd.org> From: Tor Egge Date: Fri, 4 Apr 2003 09:04:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:04:06 -0000 tegge 2003/04/04 09:04:04 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/kern uipc_syscalls.c Log: MFC: Track type change (file flags extended to 32 bits) Revision Changes Path 1.65.2.16 +1 -1 src/sys/kern/uipc_syscalls.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:10:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1132F37B401; Fri, 4 Apr 2003 09:10:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F0AE43F93; Fri, 4 Apr 2003 09:10:31 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34HAV0U026133; Fri, 4 Apr 2003 09:10:31 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34HAVBe026131; Fri, 4 Apr 2003 09:10:31 -0800 (PST) Message-Id: <200304041710.h34HAVBe026131@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 4 Apr 2003 09:10:31 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/alpha dokern.sh src/release/i386 dokern.sh src/release/pc98 dokern.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:10:32 -0000 ru 2003/04/04 09:10:31 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release/alpha dokern.sh release/i386 dokern.sh release/pc98 dokern.sh Log: MFC: Removed redundant lines. Revision Changes Path 1.56.2.6 +0 -1 src/release/alpha/dokern.sh 1.58.2.7 +0 -3 src/release/i386/dokern.sh 1.66.2.2 +0 -6 src/release/pc98/dokern.sh From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:11:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9120A37B404; Fri, 4 Apr 2003 09:11:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB46343F3F; Fri, 4 Apr 2003 09:11:16 -0800 (PST) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34HBG0U026350; Fri, 4 Apr 2003 09:11:16 -0800 (PST) (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34HBGPn026349; Fri, 4 Apr 2003 09:11:16 -0800 (PST) Message-Id: <200304041711.h34HBGPn026349@repoman.freebsd.org> From: Tor Egge Date: Fri, 4 Apr 2003 09:11:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:11:18 -0000 tegge 2003/04/04 09:11:16 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/kern uipc_syscalls.c Log: MFC: Sync new socket nonblocking/async state with file flags in accept(). PR: 1775 Revision Changes Path 1.65.2.17 +7 -0 src/sys/kern/uipc_syscalls.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:24:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B57B37B405; Fri, 4 Apr 2003 09:24:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 763B043FD7; Fri, 4 Apr 2003 09:24:45 -0800 (PST) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34HOj0U027042; Fri, 4 Apr 2003 09:24:45 -0800 (PST) (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34HOj3v027041; Fri, 4 Apr 2003 09:24:45 -0800 (PST) Message-Id: <200304041724.h34HOj3v027041@repoman.freebsd.org> From: Tor Egge Date: Fri, 4 Apr 2003 09:24:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/kern kern_descrip.c kern_fork.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:24:47 -0000 tegge 2003/04/04 09:24:45 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/kern kern_descrip.c kern_fork.c Log: MFC: Avoid file lock leakage when linuxthreads port or rfork is used: - Mark the process leader as having an advisory lock - Check if process leader is marked as having advisory lock when closing file - Check that file is still open after lock has been obtained - Don't allow file descriptor table sharing between processes with different leaders PR: 10265 Revision Changes Path 1.81.2.16 +14 -3 src/sys/kern/kern_descrip.c 1.72.2.12 +7 -0 src/sys/kern/kern_fork.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:26:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 408B637B401; Fri, 4 Apr 2003 09:26:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D462443FBD; Fri, 4 Apr 2003 09:26:11 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34HQB0U027153; Fri, 4 Apr 2003 09:26:11 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34HQBXD027152; Fri, 4 Apr 2003 09:26:11 -0800 (PST) Message-Id: <200304041726.h34HQBXD027152@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 09:26:11 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/liveMedia Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:26:12 -0000 nork 2003/04/04 09:26:11 PST FreeBSD ports repository Modified files: net/liveMedia Makefile distinfo Log: Update to 2003.04.04. Revision Changes Path 1.31 +1 -1 ports/net/liveMedia/Makefile 1.28 +1 -1 ports/net/liveMedia/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:29:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7023737B401; Fri, 4 Apr 2003 09:29:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFA6443FBF; Fri, 4 Apr 2003 09:29:24 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34HTO0U027274; Fri, 4 Apr 2003 09:29:24 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34HTORb027273; Fri, 4 Apr 2003 09:29:24 -0800 (PST) Message-Id: <200304041729.h34HTORb027273@repoman.freebsd.org> From: Dirk Meyer Date: Fri, 4 Apr 2003 09:29:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/webalizer Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:29:27 -0000 dinoex 2003/04/04 09:29:24 PST FreeBSD ports repository Modified files: japanese/webalizer Makefile Log: - make portlint happy Revision Changes Path 1.2 +5 -2 ports/japanese/webalizer/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:29:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D14F037B404; Fri, 4 Apr 2003 09:29:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C2E743F3F; Fri, 4 Apr 2003 09:29:56 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34HTt0U027431; Fri, 4 Apr 2003 09:29:56 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34HTtVb027430; Fri, 4 Apr 2003 09:29:55 -0800 (PST) Message-Id: <200304041729.h34HTtVb027430@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 4 Apr 2003 09:29:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:29:57 -0000 des 2003/04/04 09:29:55 PST FreeBSD src repository Modified files: sys/alpha/alpha support.s sys/i386/i386 identcpu.c support.s sys/i386/include md_var.h sys/i386/isa npx.c sys/ia64/ia64 support.s sys/powerpc/powerpc bcopy.c sys/sparc64/sparc64 support.S sys/sys systm.h Log: Define ovbcopy() as a macro which expands to the equivalent bcopy() call, to take care of the KAME IPv6 code which needs ovbcopy() because NetBSD's bcopy() doesn't handle overlap like ours. Remove all implementations of ovbcopy(). Previously, bzero was a function pointer on i386, to save a jmp to bzero_vector. Get rid of this microoptimization as it only confuses things, adds machine-dependent code to an MD header, and doesn't really save all that much. This commit does not add my pagezero() / pagecopy() code. Revision Changes Path 1.13 +1 -6 src/sys/alpha/alpha/support.s 1.120 +1 -1 src/sys/i386/i386/identcpu.c 1.96 +7 -10 src/sys/i386/i386/support.s 1.62 +5 -4 src/sys/i386/include/md_var.h 1.140 +2 -4 src/sys/i386/isa/npx.c 1.16 +0 -1 src/sys/ia64/ia64/support.s 1.4 +0 -6 src/sys/powerpc/powerpc/bcopy.c 1.22 +0 -1 src/sys/sparc64/sparc64/support.S 1.193 +1 -6 src/sys/sys/systm.h From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:32:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BAE437B401; Fri, 4 Apr 2003 09:32:38 -0800 (PST) Received: from procyon.firepipe.net (procyon.firepipe.net [198.78.66.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B02243F85; Fri, 4 Apr 2003 09:32:37 -0800 (PST) (envelope-from will@csociety.org) Received: by procyon.firepipe.net (Postfix, from userid 1000) id 3630321972; Fri, 4 Apr 2003 09:32:36 -0800 (PST) Date: Fri, 4 Apr 2003 09:32:36 -0800 From: Will Andrews To: Joe Marcus Clarke Message-ID: <20030404173236.GH983@procyon.firepipe.net> References: <200304041601.h34G1tlh014360@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304041601.h34G1tlh014360@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/x11-fonts/Xft Makefile ports/x11-fonts/Xft/files pkg-install.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:32:38 -0000 On Fri, Apr 04, 2003 at 08:01:55AM -0800, Joe Marcus Clarke wrote: > Modified files: > x11-fonts/Xft Makefile > Removed files: > x11-fonts/Xft/files pkg-install.in > Log: > Revert previous commit since it caused an infinite recursion loop > in XFree86-clients. I'll commit this to pango instead. > > Requested by: will Thanks, Joe. Regards, -- wca From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:36:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 677E837B401; Fri, 4 Apr 2003 09:36:38 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 569E143F85; Fri, 4 Apr 2003 09:36:37 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id E184C66B9B; Fri, 4 Apr 2003 09:36:36 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 512E712AB; Fri, 4 Apr 2003 09:36:36 -0800 (PST) Date: Fri, 4 Apr 2003 09:36:36 -0800 From: Kris Kennaway To: Dag-Erling Smorgrav Message-ID: <20030404173635.GA22147@rot13.obsecurity.org> References: <200304041729.h34HTtVb027430@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="u3/rZRmxL6MmkK24" Content-Disposition: inline In-Reply-To: <200304041729.h34HTtVb027430@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s src/sys/powerpc/powerpc bcopy.c src/sys/sparc64/sparc64 support.S ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:36:38 -0000 --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Apr 04, 2003 at 09:29:55AM -0800, Dag-Erling Smorgrav wrote: > Define ovbcopy() as a macro which expands to the equivalent bcopy() call, > to take care of the KAME IPv6 code which needs ovbcopy() because NetBSD's > bcopy() doesn't handle overlap like ours. Was this for optimization reasons, hysterical raisins, or some other reason? Kris --u3/rZRmxL6MmkK24 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jcKjWry0BWjoQKURAg4CAKClO+RSN564ucd303mJLtTaxyE45wCgpNF9 65d/SLnToDEO5a++NPvOQ70= =Eq2C -----END PGP SIGNATURE----- --u3/rZRmxL6MmkK24-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:39:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3783F37B401; Fri, 4 Apr 2003 09:39:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C459B43FBD; Fri, 4 Apr 2003 09:39:32 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34HdW0U028153; Fri, 4 Apr 2003 09:39:32 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34HdWLk028152; Fri, 4 Apr 2003 09:39:32 -0800 (PST) Message-Id: <200304041739.h34HdWLk028152@repoman.freebsd.org> From: Ying-Chieh Liao Date: Fri, 4 Apr 2003 09:39:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia Makefile ports/multimedia/subconv Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:39:33 -0000 ijliao 2003/04/04 09:39:32 PST FreeBSD ports repository Modified files: multimedia Makefile Added files: multimedia/subconv Makefile distinfo pkg-descr pkg-plist Log: add subconv 0.2.1 Subconv converts DivX subtitles from one format to another Revision Changes Path 1.28 +1 -0 ports/multimedia/Makefile 1.1 +24 -0 ports/multimedia/subconv/Makefile (new) 1.1 +1 -0 ports/multimedia/subconv/distinfo (new) 1.1 +3 -0 ports/multimedia/subconv/pkg-descr (new) 1.1 +1 -0 ports/multimedia/subconv/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:39:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4DCA37B401; Fri, 4 Apr 2003 09:39:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 454C043F75; Fri, 4 Apr 2003 09:39:40 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Hde0U028191; Fri, 4 Apr 2003 09:39:40 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Hddt3028190; Fri, 4 Apr 2003 09:39:39 -0800 (PST) Message-Id: <200304041739.h34Hddt3028190@repoman.freebsd.org> From: Ying-Chieh Liao Date: Fri, 4 Apr 2003 09:39:39 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:39:41 -0000 ijliao 2003/04/04 09:39:39 PST FreeBSD ports repository Modified files: . modules Log: subconv --> ports/multimedia/subconv Revision Changes Path 1.6979 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:42:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B2A037B401; Fri, 4 Apr 2003 09:42:01 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDB5943FAF; Fri, 4 Apr 2003 09:41:57 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h34HQqgg069052 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Apr 2003 20:26:56 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h34HQqFO069051; Fri, 4 Apr 2003 20:26:52 +0300 (EEST) (envelope-from ru) Date: Fri, 4 Apr 2003 20:26:52 +0300 From: Ruslan Ermilov To: "David O'Brien" Message-ID: <20030404172652.GA67714@sunbay.com> References: <200304030513.h335DR60079544@repoman.freebsd.org> <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403093800.GA68012@dhcp01.pn.xcllnt.net> <20030403200459.H30311@gamplex.bde.org> <20030403160017.GD17860@dragon.nuxi.com> <20030404080746.GC95125@sunbay.com> <20030404163013.GB81938@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="huq684BweRXVnRxX" Content-Disposition: inline In-Reply-To: <20030404163013.GB81938@dragon.nuxi.com> User-Agent: Mutt/1.5.4i cc: src-committers@FreeBSD.org cc: Bruce Evans cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: GCC_OPTIONS X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:42:02 -0000 --huq684BweRXVnRxX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 04, 2003 at 08:30:13AM -0800, David O'Brien wrote: > On Fri, Apr 04, 2003 at 11:07:46AM +0300, Ruslan Ermilov wrote: > > Guess what was in GCC_OPTIONS. In short, we don't support > > GCC_OPTIONS. It isn't even mentioned in gcc(1) or GNU info > > files. >=20 > We, FreeBSD, are the ones that added it. That's why it isn't mentioned > in the GNU docs. >=20 : revision 1.20 : date: 2001/05/29 09:54:45; author: obrien; state: Exp; lines: +53 -1 : Support the environmental var "GCC_OPTIONS". Which can hold a set of : default options for GCC. These options are interpreted first and can be : overwritten by explicit command line parameters. This provides one way of : adding [temporary] options to your world build w/o editing /etc/make.conf. So this is only to add temporary options to the default CFLAGS, where simple make CFLAGS=3D"`make -V CFLAGS` -foo -bar" would do just fine? Are there any other reasons behind adding this variable? Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --huq684BweRXVnRxX Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jcBcUkv4P6juNwoRAvTuAJ98QSwlmBZiXK13q9CdK5qH9ScZnQCdH064 7ABig6MTgwC0FpMZC2Sxj7M= =FIsq -----END PGP SIGNATURE----- --huq684BweRXVnRxX-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:46:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 818B837B401; Fri, 4 Apr 2003 09:46:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 216AA43FB1; Fri, 4 Apr 2003 09:46:27 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34HkQ0U028798; Fri, 4 Apr 2003 09:46:26 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34HkQBQ028797; Fri, 4 Apr 2003 09:46:26 -0800 (PST) Message-Id: <200304041746.h34HkQBQ028797@repoman.freebsd.org> From: Dirk Meyer Date: Fri, 4 Apr 2003 09:46:26 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gnustep-objc Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:46:27 -0000 dinoex 2003/04/04 09:46:26 PST FreeBSD ports repository Modified files: lang/gnustep-objc Makefile Log: - add CATEGORIES to amke portlint happier. Revision Changes Path 1.36 +1 -0 ports/lang/gnustep-objc/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:49:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 180E937B401; Fri, 4 Apr 2003 09:49:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8587243FA3; Fri, 4 Apr 2003 09:49:21 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34HnL0U030120; Fri, 4 Apr 2003 09:49:21 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34HnLKd030119; Fri, 4 Apr 2003 09:49:21 -0800 (PST) Message-Id: <200304041749.h34HnLKd030119@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 4 Apr 2003 09:49:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/amd Makefile.inc src/usr.sbin/ancontrol Makefile src/usr.sbin/apm Makefile src/usr.sbin/arp Makefile src/usr.sbin/boot0cfg Makefile src/usr.sbin/cdcontrol Makefile src/usr.sbin/chown Makefile src/usr.sbin/chroot Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:49:22 -0000 obrien 2003/04/04 09:49:21 PST FreeBSD src repository Modified files: usr.sbin/amd Makefile.inc usr.sbin/ancontrol Makefile usr.sbin/apm Makefile usr.sbin/arp Makefile usr.sbin/boot0cfg Makefile usr.sbin/cdcontrol Makefile usr.sbin/chown Makefile usr.sbin/chroot Makefile usr.sbin/ctm/ctm Makefile usr.sbin/ctm/ctm_rmail Makefile usr.sbin/ctm/mkCTM Makefile usr.sbin/daemon Makefile usr.sbin/digictl Makefile usr.sbin/edquota Makefile usr.sbin/extattrctl Makefile usr.sbin/fdcontrol Makefile usr.sbin/i4b/isdnd Makefile usr.sbin/i4b/isdnmonitor Makefile usr.sbin/ifmcstat Makefile usr.sbin/iostat Makefile usr.sbin/kbdcontrol Makefile usr.sbin/kldxref Makefile usr.sbin/mergemaster Makefile usr.sbin/mountd Makefile usr.sbin/mrouted/map-mbone Makefile usr.sbin/mrouted/mrinfo Makefile usr.sbin/named Makefile Makefile.inc usr.sbin/ndc Makefile usr.sbin/nfsd Makefile usr.sbin/nslookup Makefile usr.sbin/ntp/libntp Makefile usr.sbin/ntp/libparse Makefile usr.sbin/ntp/ntp-genkeys Makefile usr.sbin/ntp/ntpd Makefile usr.sbin/ofwdump Makefile usr.sbin/pccard/pccardc Makefile usr.sbin/pccard/pccardd Makefile usr.sbin/pcvt/kcon Makefile usr.sbin/pnpinfo Makefile usr.sbin/pppctl Makefile usr.sbin/pppd Makefile usr.sbin/pstat Makefile usr.sbin/pw Makefile usr.sbin/pwd_mkdb Makefile usr.sbin/quot Makefile usr.sbin/repquota Makefile usr.sbin/rmt Makefile usr.sbin/rpc.lockd Makefile usr.sbin/rpc.statd Makefile usr.sbin/rpc.yppasswdd Makefile usr.sbin/rpc.ypupdated Makefile usr.sbin/rpcbind Makefile usr.sbin/rtadvd Makefile usr.sbin/rtsold Makefile usr.sbin/rwhod Makefile usr.sbin/sa Makefile usr.sbin/sendmail Makefile usr.sbin/setfmac Makefile usr.sbin/slstat Makefile usr.sbin/sysinstall Makefile usr.sbin/syslogd Makefile usr.sbin/trpt Makefile usr.sbin/tzsetup Makefile usr.sbin/ugidfw Makefile usr.sbin/vipw Makefile usr.sbin/watch Makefile usr.sbin/wicontrol Makefile usr.sbin/yp_mkdb Makefile usr.sbin/ypserv Makefile usr.sbin/zic/zdump Makefile usr.sbin/zic/zic Makefile Log: style.Makefile(5) Revision Changes Path 1.10 +1 -2 src/usr.sbin/amd/Makefile.inc 1.11 +6 -6 src/usr.sbin/ancontrol/Makefile 1.13 +5 -5 src/usr.sbin/apm/Makefile 1.9 +2 -1 src/usr.sbin/arp/Makefile 1.8 +2 -1 src/usr.sbin/boot0cfg/Makefile 1.10 +1 -0 src/usr.sbin/cdcontrol/Makefile 1.10 +3 -2 src/usr.sbin/chown/Makefile 1.7 +2 -1 src/usr.sbin/chroot/Makefile 1.18 +7 -7 src/usr.sbin/ctm/ctm/Makefile 1.8 +5 -5 src/usr.sbin/ctm/ctm_rmail/Makefile 1.6 +2 -1 src/usr.sbin/ctm/mkCTM/Makefile 1.2 +2 -1 src/usr.sbin/daemon/Makefile 1.6 +2 -1 src/usr.sbin/digictl/Makefile 1.8 +2 -1 src/usr.sbin/edquota/Makefile 1.10 +2 -1 src/usr.sbin/extattrctl/Makefile 1.7 +2 -2 src/usr.sbin/fdcontrol/Makefile 1.12 +3 -3 src/usr.sbin/i4b/isdnd/Makefile 1.7 +2 -2 src/usr.sbin/i4b/isdnmonitor/Makefile 1.7 +2 -2 src/usr.sbin/ifmcstat/Makefile 1.12 +3 -2 src/usr.sbin/iostat/Makefile 1.11 +1 -2 src/usr.sbin/kbdcontrol/Makefile 1.6 +2 -1 src/usr.sbin/kldxref/Makefile 1.8 +3 -3 src/usr.sbin/mergemaster/Makefile 1.13 +2 -1 src/usr.sbin/mountd/Makefile 1.12 +2 -2 src/usr.sbin/mrouted/map-mbone/Makefile 1.16 +2 -2 src/usr.sbin/mrouted/mrinfo/Makefile 1.34 +6 -7 src/usr.sbin/named/Makefile 1.17 +1 -1 src/usr.sbin/named/Makefile.inc 1.11 +2 -3 src/usr.sbin/ndc/Makefile 1.16 +2 -1 src/usr.sbin/nfsd/Makefile 1.16 +2 -3 src/usr.sbin/nslookup/Makefile 1.8 +5 -5 src/usr.sbin/ntp/libntp/Makefile 1.6 +2 -2 src/usr.sbin/ntp/libparse/Makefile 1.2 +2 -2 src/usr.sbin/ntp/ntp-genkeys/Makefile 1.8 +1 -1 src/usr.sbin/ntp/ntpd/Makefile 1.2 +1 -0 src/usr.sbin/ofwdump/Makefile 1.16 +2 -1 src/usr.sbin/pccard/pccardc/Makefile 1.8 +3 -2 src/usr.sbin/pccard/pccardd/Makefile 1.13 +3 -1 src/usr.sbin/pcvt/kcon/Makefile 1.9 +2 -1 src/usr.sbin/pnpinfo/Makefile 1.14 +2 -2 src/usr.sbin/pppctl/Makefile 1.24 +3 -3 src/usr.sbin/pppd/Makefile 1.12 +2 -2 src/usr.sbin/pstat/Makefile 1.18 +2 -2 src/usr.sbin/pw/Makefile 1.10 +1 -2 src/usr.sbin/pwd_mkdb/Makefile 1.10 +2 -1 src/usr.sbin/quot/Makefile 1.8 +2 -1 src/usr.sbin/repquota/Makefile 1.10 +2 -1 src/usr.sbin/rmt/Makefile 1.18 +0 -2 src/usr.sbin/rpc.lockd/Makefile 1.15 +0 -3 src/usr.sbin/rpc.statd/Makefile 1.20 +1 -2 src/usr.sbin/rpc.yppasswdd/Makefile 1.8 +2 -2 src/usr.sbin/rpc.ypupdated/Makefile 1.5 +2 -2 src/usr.sbin/rpcbind/Makefile 1.5 +2 -2 src/usr.sbin/rtadvd/Makefile 1.9 +1 -1 src/usr.sbin/rtsold/Makefile 1.7 +2 -1 src/usr.sbin/rwhod/Makefile 1.9 +2 -1 src/usr.sbin/sa/Makefile 1.39 +1 -1 src/usr.sbin/sendmail/Makefile 1.5 +1 -2 src/usr.sbin/setfmac/Makefile 1.11 +2 -1 src/usr.sbin/slstat/Makefile 1.128 +1 -1 src/usr.sbin/sysinstall/Makefile 1.10 +2 -2 src/usr.sbin/syslogd/Makefile 1.8 +1 -1 src/usr.sbin/trpt/Makefile 1.17 +2 -2 src/usr.sbin/tzsetup/Makefile 1.4 +1 -0 src/usr.sbin/ugidfw/Makefile 1.8 +3 -1 src/usr.sbin/vipw/Makefile 1.16 +2 -2 src/usr.sbin/watch/Makefile 1.10 +2 -3 src/usr.sbin/wicontrol/Makefile 1.9 +3 -3 src/usr.sbin/yp_mkdb/Makefile 1.23 +2 -2 src/usr.sbin/ypserv/Makefile 1.10 +2 -2 src/usr.sbin/zic/zdump/Makefile 1.11 +2 -2 src/usr.sbin/zic/zic/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:52:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C9C137B404; Fri, 4 Apr 2003 09:52:12 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9E4143F75; Fri, 4 Apr 2003 09:52:10 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.7) with ESMTP id h34HpwD0020470; Fri, 4 Apr 2003 09:51:58 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h34HpuF1020469; Fri, 4 Apr 2003 09:51:56 -0800 (PST) Date: Fri, 4 Apr 2003 09:51:56 -0800 From: "David O'Brien" To: Ruslan Ermilov Message-ID: <20030404175156.GA20420@dragon.nuxi.com> References: <20030402231638.A81523@FreeBSD.org> <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403093800.GA68012@dhcp01.pn.xcllnt.net> <20030403200459.H30311@gamplex.bde.org> <20030403160017.GD17860@dragon.nuxi.com> <20030404080746.GC95125@sunbay.com> <20030404163013.GB81938@dragon.nuxi.com> <20030404172652.GA67714@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030404172652.GA67714@sunbay.com> User-Agent: Mutt/1.4i 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 cc: src-committers@FreeBSD.org cc: Bruce Evans cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: GCC_OPTIONS X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:52:12 -0000 On Fri, Apr 04, 2003 at 08:26:52PM +0300, Ruslan Ermilov wrote: > On Fri, Apr 04, 2003 at 08:30:13AM -0800, David O'Brien wrote: > > On Fri, Apr 04, 2003 at 11:07:46AM +0300, Ruslan Ermilov wrote: > > > Guess what was in GCC_OPTIONS. In short, we don't support > > > GCC_OPTIONS. It isn't even mentioned in gcc(1) or GNU info > > > files. > > > > We, FreeBSD, are the ones that added it. That's why it isn't mentioned > > in the GNU docs. > > > : revision 1.20 > : date: 2001/05/29 09:54:45; author: obrien; state: Exp; lines: +53 -1 > : Support the environmental var "GCC_OPTIONS". Which can hold a set of > : default options for GCC. These options are interpreted first and can be > : overwritten by explicit command line parameters. This provides one way of > : adding [temporary] options to your world build w/o editing /etc/make.conf. > > So this is only to add temporary options to the default CFLAGS, > where simple > > make CFLAGS="`make -V CFLAGS` -foo -bar" > > would do just fine? Are there any other reasons behind adding > this variable? Say I always want -g, or -save-temps, or any of several other options. It is easier to add GCC_OPTIONS to ~/. than always type it on the command line. We also have DIFF_OPTIONS, GREP_OPTIONS. I guess you don't need to take it into account, but should a weird bug report crop up, it is something to keep in mind. From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:52:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDF7D37B41B; Fri, 4 Apr 2003 09:52:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B47943F93; Fri, 4 Apr 2003 09:52:40 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Hqd0U030613; Fri, 4 Apr 2003 09:52:39 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34HqdcB030612; Fri, 4 Apr 2003 09:52:39 -0800 (PST) Message-Id: <200304041752.h34HqdcB030612@repoman.freebsd.org> From: Dirk Meyer Date: Fri, 4 Apr 2003 09:52:39 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/popa3d-before-sendmail Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:52:44 -0000 dinoex 2003/04/04 09:52:39 PST FreeBSD ports repository Modified files: mail/popa3d-before-sendmail Makefile Log: - make portlint happier Revision Changes Path 1.2 +5 -2 ports/mail/popa3d-before-sendmail/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:55:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A49D937B401; Fri, 4 Apr 2003 09:55:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 452AC43FB1; Fri, 4 Apr 2003 09:55:36 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Hta0U030741; Fri, 4 Apr 2003 09:55:36 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34HtZjo030740; Fri, 4 Apr 2003 09:55:35 -0800 (PST) Message-Id: <200304041755.h34HtZjo030740@repoman.freebsd.org> From: Dirk Meyer Date: Fri, 4 Apr 2003 09:55:35 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/news/suck-cnews Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:55:37 -0000 dinoex 2003/04/04 09:55:35 PST FreeBSD ports repository Modified files: news/suck-cnews Makefile Log: - make portlint happy Revision Changes Path 1.4 +4 -0 ports/news/suck-cnews/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 09:58:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39A8A37B401; Fri, 4 Apr 2003 09:58:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8E7443FBD; Fri, 4 Apr 2003 09:58:11 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34HwB0U030840; Fri, 4 Apr 2003 09:58:11 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34HwBKW030839; Fri, 4 Apr 2003 09:58:11 -0800 (PST) Message-Id: <200304041758.h34HwBKW030839@repoman.freebsd.org> From: Dirk Meyer Date: Fri, 4 Apr 2003 09:58:11 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/portuguese/webalizer-pt_BR Makefile ports/portuguese/webalizer-pt_PT Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 17:58:12 -0000 dinoex 2003/04/04 09:58:11 PST FreeBSD ports repository Modified files: portuguese/webalizer-pt_BR Makefile portuguese/webalizer-pt_PT Makefile Log: - make portlint happier Revision Changes Path 1.4 +4 -1 ports/portuguese/webalizer-pt_BR/Makefile 1.4 +4 -1 ports/portuguese/webalizer-pt_PT/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 10:00:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53D3737B404; Fri, 4 Apr 2003 10:00:09 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id B80E243FB1; Fri, 4 Apr 2003 10:00:04 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h34I00gg072690 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Apr 2003 21:00:00 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h34I00Ju072689; Fri, 4 Apr 2003 21:00:00 +0300 (EEST) (envelope-from ru) Date: Fri, 4 Apr 2003 21:00:00 +0300 From: Ruslan Ermilov To: "David O'Brien" Message-ID: <20030404180000.GA72007@sunbay.com> References: <20030403055049.GA67232@dhcp01.pn.xcllnt.net> <20030403180026.A29934@gamplex.bde.org> <20030403085350.GA37174@sunbay.com> <20030403093800.GA68012@dhcp01.pn.xcllnt.net> <20030403200459.H30311@gamplex.bde.org> <20030403160017.GD17860@dragon.nuxi.com> <20030404080746.GC95125@sunbay.com> <20030404163013.GB81938@dragon.nuxi.com> <20030404172652.GA67714@sunbay.com> <20030404175156.GA20420@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pf9I7BMVVzbSWLtt" Content-Disposition: inline In-Reply-To: <20030404175156.GA20420@dragon.nuxi.com> User-Agent: Mutt/1.5.4i cc: src-committers@FreeBSD.org cc: Bruce Evans cc: Juli Mallett cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Re: GCC_OPTIONS X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 18:00:10 -0000 --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 04, 2003 at 09:51:56AM -0800, David O'Brien wrote: > On Fri, Apr 04, 2003 at 08:26:52PM +0300, Ruslan Ermilov wrote: > > On Fri, Apr 04, 2003 at 08:30:13AM -0800, David O'Brien wrote: > > > On Fri, Apr 04, 2003 at 11:07:46AM +0300, Ruslan Ermilov wrote: > > > > Guess what was in GCC_OPTIONS. In short, we don't support > > > > GCC_OPTIONS. It isn't even mentioned in gcc(1) or GNU info > > > > files. > > >=20 > > > We, FreeBSD, are the ones that added it. That's why it isn't mention= ed > > > in the GNU docs. > > >=20 > > : revision 1.20 > > : date: 2001/05/29 09:54:45; author: obrien; state: Exp; lines: +53 = -1 > > : Support the environmental var "GCC_OPTIONS". Which can hold a set of > > : default options for GCC. These options are interpreted first and can= be > > : overwritten by explicit command line parameters. This provides one w= ay of > > : adding [temporary] options to your world build w/o editing /etc/make.= conf. > >=20 > > So this is only to add temporary options to the default CFLAGS, > > where simple > >=20 > > make CFLAGS=3D"`make -V CFLAGS` -foo -bar" > >=20 > > would do just fine? Are there any other reasons behind adding > > this variable? >=20 > Say I always want -g, or -save-temps, or any of several other options. > It is easier to add GCC_OPTIONS to ~/. than always type it on the > command line. We also have DIFF_OPTIONS, GREP_OPTIONS. I guess you > don't need to take it into account, but should a weird bug report crop > up, it is something to keep in mind. >=20 Then could you at least please document it in the gcc(1) manpage? Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --pf9I7BMVVzbSWLtt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jcggUkv4P6juNwoRAvp2AJ0X5PqOWHg39zTgYvItjd6hTTeovwCgh0S8 b+74PfnE4P5L2pCgtmj62CY= =hk+4 -----END PGP SIGNATURE----- --pf9I7BMVVzbSWLtt-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 10:06:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 297E637B405; Fri, 4 Apr 2003 10:06:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9660F43F85; Fri, 4 Apr 2003 10:06:54 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34I6s0U032426; Fri, 4 Apr 2003 10:06:54 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34I6s8I032425; Fri, 4 Apr 2003 10:06:54 -0800 (PST) Message-Id: <200304041806.h34I6s8I032425@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 4 Apr 2003 10:06:54 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/subversion Makefile pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 18:06:55 -0000 bmah 2003/04/04 10:06:54 PST FreeBSD ports repository Modified files: devel/subversion Makefile pkg-plist Removed files: devel/subversion pkg-message Log: Mostly-maintainer update as follows: Various fixes found by portlint -A. Hook up the info file to the info directory. Bump PORTREVISION. Submitted by: Craig Rodrigues (MAINTAINER) Revision Changes Path 1.26 +8 -3 ports/devel/subversion/Makefile 1.3 +0 -14 ports/devel/subversion/pkg-message (dead) 1.11 +2 -0 ports/devel/subversion/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 10:22:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E428D37B401; Fri, 4 Apr 2003 10:22:30 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-131.client.attbi.com [12.233.57.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D1E343FE1; Fri, 4 Apr 2003 10:22:30 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) h34IMOKj036758; Fri, 4 Apr 2003 10:22:24 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6p2/8.12.5/Submit) id h34IMN61036757; Fri, 4 Apr 2003 10:22:23 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Fri, 4 Apr 2003 10:22:23 -0800 From: David Schultz To: Kris Kennaway Message-ID: <20030404182223.GA36706@HAL9000.homeunix.com> Mail-Followup-To: Kris Kennaway , Dag-Erling Smorgrav , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200304041729.h34HTtVb027430@repoman.freebsd.org> <20030404173635.GA22147@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030404173635.GA22147@rot13.obsecurity.org> cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: Dag-Erling Smorgrav Subject: Re: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s src/sys/powerpc/powerpc bcopy.c src/sys/sparc64/sparc64 support.S ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 18:22:31 -0000 Thus spake Kris Kennaway : > On Fri, Apr 04, 2003 at 09:29:55AM -0800, Dag-Erling Smorgrav wrote: > > > Define ovbcopy() as a macro which expands to the equivalent bcopy() call, > > to take care of the KAME IPv6 code which needs ovbcopy() because NetBSD's > > bcopy() doesn't handle overlap like ours. > > Was this for optimization reasons, hysterical raisins, or some other reason? The ovbcopy-->bcopy conversion doesn't make things any faster or slower, but it does make some minor optimizations impossible to implement in the future. I'm not sure I agree with the changes, but I don't violently disagree either. BTW, why does this change convert bcopy from a function pointer to a function that jumps to the address of a pointer? This looks like a net gain in lines of code and a net gain in pipeline stalls. Is there something in particular that it makes easier? From owner-cvs-all@FreeBSD.ORG Fri Apr 4 10:39:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DBE737B404; Fri, 4 Apr 2003 10:39:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2990E43FB1; Fri, 4 Apr 2003 10:39:29 -0800 (PST) (envelope-from pdeuskar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34IdS0U034540; Fri, 4 Apr 2003 10:39:28 -0800 (PST) (envelope-from pdeuskar@repoman.freebsd.org) Received: (from pdeuskar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34IdSmn034539; Fri, 4 Apr 2003 10:39:28 -0800 (PST) Message-Id: <200304041839.h34IdSmn034539@repoman.freebsd.org> From: Prafulla Deuskar Date: Fri, 4 Apr 2003 10:39:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/dev/em LICENSE README if_em.c if_em.h if_em_hw.c if_em_hw.h if_em_osdep.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 18:39:29 -0000 pdeuskar 2003/04/04 10:39:28 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/em LICENSE README if_em.c if_em.h if_em_hw.c if_em_hw.h if_em_osdep.h Log: MFC: Add support for 82541 and 82547 based adapters - These have Intel gigabit PHY - 82547 uses CSA interface Add support for DEVICE_POLLING Revision Changes Path 1.1.2.2 +0 -0 src/sys/dev/em/LICENSE 1.1.2.6 +114 -72 src/sys/dev/em/README 1.2.2.12 +424 -137 src/sys/dev/em/if_em.c 1.1.2.12 +12 -29 src/sys/dev/em/if_em.h 1.1.2.7 +1225 -346 src/sys/dev/em/if_em_hw.c 1.1.2.7 +256 -37 src/sys/dev/em/if_em_hw.h 1.1.2.10 +3 -12 src/sys/dev/em/if_em_osdep.h From owner-cvs-all@FreeBSD.ORG Fri Apr 4 10:45:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ED5537B401; Fri, 4 Apr 2003 10:45:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B38A43F93; Fri, 4 Apr 2003 10:45:56 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Ijt0U035163; Fri, 4 Apr 2003 10:45:55 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34IjtQl035162; Fri, 4 Apr 2003 10:45:55 -0800 (PST) Message-Id: <200304041845.h34IjtQl035162@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 4 Apr 2003 10:45:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 18:45:57 -0000 bmah 2003/04/04 10:45:55 PST FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata: Document pruneage for alpha kern.flp. Revision Changes Path 1.1.2.101 +5 -0 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 4 10:48:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7833237B401; Fri, 4 Apr 2003 10:48:51 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id B077043FAF; Fri, 4 Apr 2003 10:48:47 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by ns1.xcllnt.net (8.12.9/8.12.9) with ESMTP id h34Imlwk022862; Fri, 4 Apr 2003 10:48:47 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.9/8.12.9) with ESMTP id h34Imleb004429; Fri, 4 Apr 2003 10:48:47 -0800 (PST) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.9/8.12.9/Submit) id h34Imlwx004428; Fri, 4 Apr 2003 10:48:47 -0800 (PST) (envelope-from marcel) Date: Fri, 4 Apr 2003 10:48:46 -0800 From: Marcel Moolenaar To: Ruslan Ermilov Message-ID: <20030404184846.GA4258@dhcp01.pn.xcllnt.net> References: <200304041047.h34Al6DL082204@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304041047.h34Al6DL082204@repoman.freebsd.org> User-Agent: Mutt/1.5.3i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.sys.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 18:48:52 -0000 On Fri, Apr 04, 2003 at 02:47:06AM -0800, Ruslan Ermilov wrote: > Modified files: > share/mk bsd.sys.mk > Log: > -Wall implies -Wuninitialized if -O is also in effect. > -Wuninitialized does not work without -O. > > This fixes the ${WARNS} > 4 compilations with -O0. Thanks. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Fri Apr 4 10:51:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8E0E37B401; Fri, 4 Apr 2003 10:51:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9B5843FAF; Fri, 4 Apr 2003 10:51:12 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Ip90U035712; Fri, 4 Apr 2003 10:51:09 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Ip9KE035711; Fri, 4 Apr 2003 10:51:09 -0800 (PST) Message-Id: <200304041851.h34Ip9KE035711@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 10:51:09 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/p5-Crypt-OpenSSL-RSA Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 18:51:14 -0000 nork 2003/04/04 10:51:09 PST FreeBSD ports repository Modified files: security/p5-Crypt-OpenSSL-RSA Makefile distinfo pkg-plist Log: Update to 0.18. Revision Changes Path 1.9 +1 -1 ports/security/p5-Crypt-OpenSSL-RSA/Makefile 1.6 +1 -1 ports/security/p5-Crypt-OpenSSL-RSA/distinfo 1.4 +7 -7 ports/security/p5-Crypt-OpenSSL-RSA/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 10:52:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DF3E37B401; Fri, 4 Apr 2003 10:52:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CBC843FBD; Fri, 4 Apr 2003 10:52:04 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Iq30U035777; Fri, 4 Apr 2003 10:52:03 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Iq3AA035776; Fri, 4 Apr 2003 10:52:03 -0800 (PST) Message-Id: <200304041852.h34Iq3AA035776@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 4 Apr 2003 10:52:03 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/4.8R errata.html X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 18:52:05 -0000 bmah 2003/04/04 10:52:03 PST FreeBSD doc repository Modified files: en/releases/4.8R errata.html Log: Regen from article.sgml 1.1.2.101. Revision Changes Path 1.4 +12 -6 www/en/releases/4.8R/errata.html From owner-cvs-all@FreeBSD.ORG Fri Apr 4 10:53:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50D8B37B401; Fri, 4 Apr 2003 10:53:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E091943F85; Fri, 4 Apr 2003 10:53:04 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Ir40U035847; Fri, 4 Apr 2003 10:53:04 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Ir4Bm035846; Fri, 4 Apr 2003 10:53:04 -0800 (PST) Message-Id: <200304041853.h34Ir4Bm035846@repoman.freebsd.org> From: Poul-Henning Kamp Date: Fri, 4 Apr 2003 10:53:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/dev/adlink adlink.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 18:53:05 -0000 phk 2003/04/04 10:53:04 PST FreeBSD src repository Modified files: sys/conf files Added files: sys/dev/adlink adlink.c Log: Add a rudimentary but working driver for the Adlink "NuDaq PCI-9812". This is a 4 channel 20 msps 12 bit ADC card. Anyone wanting to play with GNUradio or similar can start here. Revision Changes Path 1.777 +1 -0 src/sys/conf/files 1.1 +238 -0 src/sys/dev/adlink/adlink.c (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 11:09:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A85AB37B401; Fri, 4 Apr 2003 11:09:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FD9E43F75; Fri, 4 Apr 2003 11:09:46 -0800 (PST) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34J9k0U037755; Fri, 4 Apr 2003 11:09:46 -0800 (PST) (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34J9jGH037754; Fri, 4 Apr 2003 11:09:45 -0800 (PST) Message-Id: <200304041909.h34J9jGH037754@repoman.freebsd.org> From: Julian Elischer Date: Fri, 4 Apr 2003 11:09:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_4 Subject: cvs commit: src/lib/libc/xdr xdr_mem.c src/sys/conf newvers.sh src UPDATING src/include/rpc xdr.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 19:09:47 -0000 julian 2003/04/04 11:09:45 PST FreeBSD src repository Modified files: (Branch: RELENG_4_4) lib/libc/xdr xdr_mem.c sys/conf newvers.sh . UPDATING include/rpc xdr.h Log: MF4.6 Security update FreeBSD-SA-03:05.xdr Approved by: re@ (blanket agreement for 4.4) Obtained from: 4.6 Revision Changes Path 1.73.2.43.2.44 +3 -0 src/UPDATING 1.14.6.1 +2 -2 src/include/rpc/xdr.h 1.8.6.1 +14 -8 src/lib/libc/xdr/xdr_mem.c 1.44.2.17.2.35 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Fri Apr 4 11:43:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A70837B401; Fri, 4 Apr 2003 11:43:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0110143F3F; Fri, 4 Apr 2003 11:43:32 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34JhV0U040142; Fri, 4 Apr 2003 11:43:31 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34JhVM5040141; Fri, 4 Apr 2003 11:43:31 -0800 (PST) Message-Id: <200304041943.h34JhVM5040141@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 11:43:31 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/eijiro-fpw Makefileports/japanese/otojiro-fpw Makefile ports/japanese/waeijiro-fpw Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 19:43:32 -0000 nork 2003/04/04 11:43:31 PST FreeBSD ports repository Modified files: japanese/eijiro-fpw Makefile japanese/otojiro-fpw Makefile japanese/waeijiro-fpw Makefile Log: Use EXTRACT_DEPENDS on japanese/freepwing rather than use BUILD_DEPENDS. Approved by: maintainer timeout (4 days) Revision Changes Path 1.7 +1 -1 ports/japanese/eijiro-fpw/Makefile 1.4 +1 -1 ports/japanese/otojiro-fpw/Makefile 1.4 +1 -1 ports/japanese/waeijiro-fpw/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 11:47:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B546537B401; Fri, 4 Apr 2003 11:47:19 -0800 (PST) Received: from randomservers.com (randomservers.com [198.78.65.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4C1F43FAF; Fri, 4 Apr 2003 11:47:18 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from randomservers.com (randomservers [198.78.65.158]) by randomservers.com (8.12.9/8.12.6) with ESMTP id h34Jk788037504 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Apr 2003 11:46:07 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from localhost (joseph@localhost)h34Jk7OV037501; Fri, 4 Apr 2003 11:46:07 -0800 (PST) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: joseph owned process doing -bs Date: Fri, 4 Apr 2003 11:46:07 -0800 (PST) From: Joseph Scott X-X-Sender: joseph@randomservers To: Pete Fritchman In-Reply-To: <200304040224.h342Ogmf023046@repoman.freebsd.org> Message-ID: <20030404114543.H33913@randomservers> References: <200304040224.h342Ogmf023046@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-24.4 required=7.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,REFERENCES,REPLY_WITH_QUOTES, X_AUTH_WARNING version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/deskutils/dailystrips Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 19:47:20 -0000 On Thu, 3 Apr 2003, Pete Fritchman wrote: > petef 2003/04/03 18:24:42 PST > > FreeBSD ports repository > > Modified files: > deskutils/dailystrips Makefile distinfo > Log: > Update to 1.0.27. This takes care of PR ports/50567, which just came in this morning :-) -Joseph From owner-cvs-all@FreeBSD.ORG Fri Apr 4 11:50:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3938037B401; Fri, 4 Apr 2003 11:50:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAC7443FBD; Fri, 4 Apr 2003 11:50:24 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34JoO0U040500; Fri, 4 Apr 2003 11:50:24 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34JoOqn040498; Fri, 4 Apr 2003 11:50:24 -0800 (PST) Message-Id: <200304041950.h34JoOqn040498@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Fri, 4 Apr 2003 11:50:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/qpopper/scripts pre-install X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 19:50:25 -0000 lioux 2003/04/04 11:50:24 PST FreeBSD ports repository Modified files: mail/qpopper/scripts pre-install Log: 'chown user:group' constructs are preferred over 'chown user.group' for compatibility. For instance, the later does not work in 5.x branch anymore Submitted by: sanpei Revision Changes Path 1.4 +1 -1 ports/mail/qpopper/scripts/pre-install From owner-cvs-all@FreeBSD.ORG Fri Apr 4 11:51:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8A5437B401; Fri, 4 Apr 2003 11:51:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4571843F3F; Fri, 4 Apr 2003 11:51:32 -0800 (PST) (envelope-from mwlucas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34JpW0U040787; Fri, 4 Apr 2003 11:51:32 -0800 (PST) (envelope-from mwlucas@repoman.freebsd.org) Received: (from mwlucas@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34JpVaX040786; Fri, 4 Apr 2003 11:51:31 -0800 (PST) Message-Id: <200304041951.h34JpVaX040786@repoman.freebsd.org> From: Michael Lucas Date: Fri, 4 Apr 2003 11:51:31 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 19:51:33 -0000 mwlucas 2003/04/04 11:51:31 PST FreeBSD doc repository Modified files: en_US.ISO8859-1/books/faq book.sgml Log: "Can I install FreeBSD with only 4MB of RAM"? No. Remove advice to install FreeBSD 2.0.5. Remove 2.1.7 installation suggestion. Leave a reference to FreeBSD 2.1.7, only to give this asker a sense of "We're no longer in the stone age." Revision Changes Path 1.521 +0 -13 doc/en_US.ISO8859-1/books/faq/book.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 4 11:54:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AB2937B409 for ; Fri, 4 Apr 2003 11:54:10 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 852F943FCB for ; Fri, 4 Apr 2003 11:54:06 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 17079 invoked by uid 1000); 4 Apr 2003 19:54:07 -0000 Date: Fri, 4 Apr 2003 11:54:07 -0800 (PST) From: Nate Lawson To: Ruslan Ermilov In-Reply-To: <20030404085200.GA1765@sunbay.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: src-committers@FreeBSD.org cc: Poul-Henning Kamp cc: David O'Brien cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Mike Barcroft Subject: Re: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 19:54:10 -0000 On Fri, 4 Apr 2003, Ruslan Ermilov wrote: > > > On Thu, 3 Apr 2003, Poul-Henning Kamp wrote: > > > > Modified files: > > > > sys/sys endian.h > > > > share/man/man9 byteorder.9 > > > > Log: > > > > Add inline functions {be,le}{16,32,64}{enc,dec}() for encoding decoding > > > > into byte strings of unknown alignment. > > /* > + * General byte order swapping macros. > + */ > +#define BSWAP16(x) (uint16_t) \ > + (((x) >> 8) | ((x) << 8)) > + > +#define BSWAP32(x) (uint32_t) \ > + (((x) >> 24) | (((x) >> 8) & 0xff00) | \ > + (((x) << 8) & 0xff0000) | ((x) << 24)) > + > +#define BSWAP64(x) (uint64_t) \ > + (((x) >> 56) | (((x) >> 40) & 0xff00) | (((x) >> 24) & 0xff0000) | \ > + (((x) >> 8) & 0xff000000) | (((x) << 8) & ((uint64_t)0xff << 32)) | \ > + (((x) << 24) & ((uint64_t)0xff << 40)) | \ > + (((x) << 40) & ((uint64_t)0xff << 48)) | (((x) << 56))) > + > +/* > * Host to big endian, host to little endian, big endian to host, and little > * endian to host byte order functions as detailed in byteorder(9). > */ > #if _BYTE_ORDER == _LITTLE_ENDIAN > #define htobe16(x) bswap16((x)) > +#define HTOBE16(x) BSWAP16((x)) I don't mind the addition of the macros but I don't like the implementation. Too many unnecessary casts and overly complicated. -Nate From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:03:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 770F137B401; Fri, 4 Apr 2003 12:03:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 125ED43FAF; Fri, 4 Apr 2003 12:03:01 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34K300U041635; Fri, 4 Apr 2003 12:03:00 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34K30ES041605; Fri, 4 Apr 2003 12:03:00 -0800 (PST) Message-Id: <200304042003.h34K30ES041605@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Fri, 4 Apr 2003 12:03:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/spigot Makefileports/multimedia/recmpeg Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:03:01 -0000 lioux 2003/04/04 12:03:00 PST FreeBSD ports repository Modified files: multimedia/spigot Makefile multimedia/recmpeg Makefile Log: After repo copy from graphics category to newly create multimedia one, update all appropriate references: CATEGORIES Repo copied by: cvs (joe) Approved by: portmgr (self & no objections) Revision Changes Path 1.8 +1 -1 ports/multimedia/recmpeg/Makefile 1.15 +1 -1 ports/multimedia/spigot/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:05:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D7FE37B401; Fri, 4 Apr 2003 12:05:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C4BC43FBF; Fri, 4 Apr 2003 12:05:07 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34K570U042649; Fri, 4 Apr 2003 12:05:07 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34K57g2042648; Fri, 4 Apr 2003 12:05:07 -0800 (PST) Message-Id: <200304042005.h34K57g2042648@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 12:05:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gtkglext Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:05:08 -0000 nork 2003/04/04 12:05:07 PST FreeBSD ports repository Modified files: x11-toolkits/gtkglext Makefile distinfo pkg-plist Log: Update to 0.7.1. PR: ports/50594 Submitted by: Kimura Fuyuki (maintainer) Revision Changes Path 1.3 +11 -10 ports/x11-toolkits/gtkglext/Makefile 1.2 +1 -1 ports/x11-toolkits/gtkglext/distinfo 1.2 +1 -0 ports/x11-toolkits/gtkglext/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:06:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B839237B401; Fri, 4 Apr 2003 12:06:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5815D43FAF; Fri, 4 Apr 2003 12:06:26 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34K6Q0U042763; Fri, 4 Apr 2003 12:06:26 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34K6QUa042762; Fri, 4 Apr 2003 12:06:26 -0800 (PST) Message-Id: <200304042006.h34K6QUa042762@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Fri, 4 Apr 2003 12:06:26 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:06:27 -0000 lioux 2003/04/04 12:06:26 PST FreeBSD ports repository Modified files: . modules Log: Update modules after repo copy from graphics to multimedia category of recmpeg spigot Repo copied by: cvs (joe) Approved by: portmgr (self & no objections) Revision Changes Path 1.6980 +2 -2 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:07:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1361F37B401; Fri, 4 Apr 2003 12:07:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6EC943FB1; Fri, 4 Apr 2003 12:07:12 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34K7C0U042910; Fri, 4 Apr 2003 12:07:12 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34K7C1T042909; Fri, 4 Apr 2003 12:07:12 -0800 (PST) Message-Id: <200304042007.h34K7C1T042909@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Fri, 4 Apr 2003 12:07:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports MOVED ports/graphics Makefile ports/multimedia Makefile ports/graphics/recmpeg Makefile distinfo pkg-descr pkg-plist ports/graphics/spigot Makefile distinfo pkg-descr pkg-plist ports/graphics/spigot/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:07:13 -0000 lioux 2003/04/04 12:07:12 PST FreeBSD ports repository Modified files: . MOVED graphics Makefile multimedia Makefile Removed files: graphics/recmpeg Makefile distinfo pkg-descr pkg-plist graphics/spigot Makefile distinfo pkg-descr pkg-plist graphics/spigot/files patch-aa Log: Finish repo copy move from graphics category to newly create multimedia one for the following ports: recmpeg spigot Repo copied by: cvs (joe) Approved by: portmgr (self & no objections) Revision Changes Path 1.90 +3 -1 ports/MOVED 1.573 +0 -2 ports/graphics/Makefile 1.8 +0 -33 ports/graphics/recmpeg/Makefile (dead) 1.3 +0 -1 ports/graphics/recmpeg/distinfo (dead) 1.2 +0 -4 ports/graphics/recmpeg/pkg-descr (dead) 1.2 +0 -1 ports/graphics/recmpeg/pkg-plist (dead) 1.15 +0 -23 ports/graphics/spigot/Makefile (dead) 1.4 +0 -1 ports/graphics/spigot/distinfo (dead) 1.2 +0 -15 ports/graphics/spigot/files/patch-aa (dead) 1.2 +0 -2 ports/graphics/spigot/pkg-descr (dead) 1.3 +0 -2 ports/graphics/spigot/pkg-plist (dead) 1.29 +2 -0 ports/multimedia/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:07:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D3A937B401; Fri, 4 Apr 2003 12:07:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFFF343F85; Fri, 4 Apr 2003 12:07:50 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34K7o0U042946; Fri, 4 Apr 2003 12:07:50 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34K7o95042945; Fri, 4 Apr 2003 12:07:50 -0800 (PST) Message-Id: <200304042007.h34K7o95042945@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 12:07:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/le Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:07:52 -0000 nork 2003/04/04 12:07:50 PST FreeBSD ports repository Modified files: editors/le Makefile distinfo Log: Update to 1.9.2. PR: ports/50583 Submitted by: Kimura Fuyuki Revision Changes Path 1.21 +4 -4 ports/editors/le/Makefile 1.13 +1 -1 ports/editors/le/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:09:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC32F37B40D; Fri, 4 Apr 2003 12:09:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1377243F75; Fri, 4 Apr 2003 12:09:51 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34K9o0U043003; Fri, 4 Apr 2003 12:09:50 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34K9oGq043002; Fri, 4 Apr 2003 12:09:50 -0800 (PST) Message-Id: <200304042009.h34K9oGq043002@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 12:09:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/cal.rb Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:09:52 -0000 nork 2003/04/04 12:09:50 PST FreeBSD ports repository Modified files: japanese/cal.rb Makefile distinfo Log: Update to 1.13. PR: ports/50581 Submitted by: Kimura Fuyuki Revision Changes Path 1.5 +1 -1 ports/japanese/cal.rb/Makefile 1.5 +3 -3 ports/japanese/cal.rb/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:12:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 888F837B401; Fri, 4 Apr 2003 12:12:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2620443FA3; Fri, 4 Apr 2003 12:12:06 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34KC50U043442; Fri, 4 Apr 2003 12:12:05 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34KC5Zv043441; Fri, 4 Apr 2003 12:12:05 -0800 (PST) Message-Id: <200304042012.h34KC5Zv043441@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 12:12:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/sdl_gui Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:12:07 -0000 nork 2003/04/04 12:12:05 PST FreeBSD ports repository Modified files: x11-toolkits/sdl_gui Makefile Log: Add a hack to link with libstdc++. This will fix the configure error of devel/eboxy on -current. PR: ports/50382 Submitted by: Kimura Fuyuki Revision Changes Path 1.6 +4 -0 ports/x11-toolkits/sdl_gui/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:15:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25D7237B407; Fri, 4 Apr 2003 12:15:00 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE36443F75; Fri, 4 Apr 2003 12:14:55 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h34KEhgg086468 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Apr 2003 23:14:44 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h34KEhBq086463; Fri, 4 Apr 2003 23:14:43 +0300 (EEST) (envelope-from ru) Date: Fri, 4 Apr 2003 23:14:43 +0300 From: Ruslan Ermilov To: Nate Lawson Message-ID: <20030404201443.GA82587@sunbay.com> References: <20030404085200.GA1765@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="G4iJoqBmSsgzjUCe" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.4i cc: src-committers@FreeBSD.org cc: Poul-Henning Kamp cc: David O'Brien cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Mike Barcroft Subject: Re: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:15:01 -0000 --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 04, 2003 at 11:54:07AM -0800, Nate Lawson wrote: > On Fri, 4 Apr 2003, Ruslan Ermilov wrote: > > > > On Thu, 3 Apr 2003, Poul-Henning Kamp wrote: > > > > > Modified files: > > > > > sys/sys endian.h=20 > > > > > share/man/man9 byteorder.9=20 > > > > > Log: > > > > > Add inline functions {be,le}{16,32,64}{enc,dec}() for encoding = decoding > > > > > into byte strings of unknown alignment. > >=20 > > /* > > + * General byte order swapping macros. > > + */ > > +#define BSWAP16(x) (uint16_t) \ > > + (((x) >> 8) | ((x) << 8)) > > + > > +#define BSWAP32(x) (uint32_t) \ > > + (((x) >> 24) | (((x) >> 8) & 0xff00) | \ > > + (((x) << 8) & 0xff0000) | ((x) << 24)) > > + > > +#define BSWAP64(x) (uint64_t) \ > > + (((x) >> 56) | (((x) >> 40) & 0xff00) | (((x) >> 24) & 0xff0000) | \ > > + (((x) >> 8) & 0xff000000) | (((x) << 8) & ((uint64_t)0xff << 32)) | \ > > + (((x) << 24) & ((uint64_t)0xff << 40)) | \ > > + (((x) << 40) & ((uint64_t)0xff << 48)) | (((x) << 56))) > > + > > +/* > > * Host to big endian, host to little endian, big endian to host, and = little > > * endian to host byte order functions as detailed in byteorder(9). > > */ > > #if _BYTE_ORDER =3D=3D _LITTLE_ENDIAN > > #define htobe16(x) bswap16((x)) > > +#define HTOBE16(x) BSWAP16((x)) >=20 > I don't mind the addition of the macros but I don't like the > implementation. Too many unnecessary casts and overly complicated. >=20 I've borrowed them from sys/sparc64/include/endian.h. The type casts are necessary, otherwise you'll get ``warning: left shift count >=3D width of type'', and it should be trivial to test with this program: #include #include #include int main(void) { uint64_t i =3D 0xefcdab8967452301; printf("%jx\n", i); i =3D BSWAP64(i); printf("%jx\n", i); return (0); } Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --G4iJoqBmSsgzjUCe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jeezUkv4P6juNwoRAo1DAJ9VpbRVojIELdXmWu5EQKBnNwBcvACfYhqm WLhVhnjsjuc0UEfrJP4shfU= =qe6b -----END PGP SIGNATURE----- --G4iJoqBmSsgzjUCe-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:20:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C97C37B401; Fri, 4 Apr 2003 12:20:04 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22CB043FA3; Fri, 4 Apr 2003 12:20:00 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h34KJugg087026 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Apr 2003 23:19:56 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h34KJuHd087021; Fri, 4 Apr 2003 23:19:56 +0300 (EEST) (envelope-from ru) Date: Fri, 4 Apr 2003 23:19:56 +0300 From: Ruslan Ermilov To: Prafulla Deuskar Message-ID: <20030404201956.GB82587@sunbay.com> References: <200304041839.h34IdSmn034539@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="b5gNqxB1S1yM7hjW" Content-Disposition: inline In-Reply-To: <200304041839.h34IdSmn034539@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/em LICENSE README if_em.c if_em.h if_em_hw.c if_em_hw.h if_em_osdep.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:20:04 -0000 --b5gNqxB1S1yM7hjW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Can you please fix the manpage to say 82454's are also supported? On Fri, Apr 04, 2003 at 10:39:28AM -0800, Prafulla Deuskar wrote: > pdeuskar 2003/04/04 10:39:28 PST >=20 > FreeBSD src repository >=20 > Modified files: (Branch: RELENG_4) > sys/dev/em LICENSE README if_em.c if_em.h if_em_hw.c=20 > if_em_hw.h if_em_osdep.h=20 > Log: > MFC: > Add support for 82541 and 82547 based adapters > - These have Intel gigabit PHY > - 82547 uses CSA interface > Add support for DEVICE_POLLING Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --b5gNqxB1S1yM7hjW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jejrUkv4P6juNwoRAmA7AJ0R6YnDgHArJldQkYKFrgWYiy0PvACePmhi bQyrJmLKuql9KMszRoFYiqs= =tlSW -----END PGP SIGNATURE----- --b5gNqxB1S1yM7hjW-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:20:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7410937B401; Fri, 4 Apr 2003 12:20:28 -0800 (PST) Received: from builder.freebsdmall.com (builder.freebsdmall.com [65.86.180.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7686643F75; Fri, 4 Apr 2003 12:20:27 -0800 (PST) (envelope-from murray@builder.freebsdmall.com) Received: (from root@localhost) by builder.freebsdmall.com (8.12.8/8.11.6) id h34KKQIw022540; Fri, 4 Apr 2003 12:20:26 -0800 (PST) (envelope-from murray) Date: Fri, 4 Apr 2003 12:20:24 -0800 From: Murray Stokely To: Ceri Davies Message-ID: <20030404122024.M43794@freebsdmall.com> References: <200304040955.h349tMjU077684@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200304040955.h349tMjU077684@repoman.freebsd.org>; from ceri@FreeBSD.org on Fri, Apr 04, 2003 at 01:55:22AM -0800 X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/donations wantlist.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:20:29 -0000 On Fri, Apr 04, 2003 at 01:55:22AM -0800, Ceri Davies wrote: > I could do with a hard copy of O'Reilly's "DocBook, the Definitive Guide". Mail me your address privately and I'll send you one. - Murray From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:23:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D38D37B401; Fri, 4 Apr 2003 12:23:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE36243FD7; Fri, 4 Apr 2003 12:23:31 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34KNV0U044160; Fri, 4 Apr 2003 12:23:31 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34KNV1w044159; Fri, 4 Apr 2003 12:23:31 -0800 (PST) Message-Id: <200304042023.h34KNV1w044159@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 12:23:31 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fonts/Xft Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:23:34 -0000 marcus 2003/04/04 12:23:31 PST FreeBSD ports repository Modified files: x11-fonts/Xft Makefile Log: fontconfig-config is no longer installed. Therefore, Xft wasn't being linked against libfontconfig. This broke KDE since KDE expected libfontconfig to be imported via Xft. GNOME was okay since it uses pkg-config, and explicitly linked against fontconfig. Reported by: Benjamin Lutz Bjarne Wichmann Petersen Revision Changes Path 1.14 +2 -1 ports/x11-fonts/Xft/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:26:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 109AB37B401; Fri, 4 Apr 2003 12:26:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B47A943F93; Fri, 4 Apr 2003 12:26:07 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34KQ70U044323; Fri, 4 Apr 2003 12:26:07 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34KQ7KI044322; Fri, 4 Apr 2003 12:26:07 -0800 (PST) Message-Id: <200304042026.h34KQ7KI044322@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 12:26:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang Makefile ports/lang/stklos Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:26:08 -0000 nork 2003/04/04 12:26:07 PST FreeBSD ports repository Modified files: lang Makefile Added files: lang/stklos Makefile distinfo pkg-descr pkg-plist Log: Add stklos 0.54, the successor of the STk Scheme interpreter. STklos is a free Scheme System (nearly) conform to R5RS. The aim of this implementation is to be fast as well as light. PR: ports/50231 Submitted by: Kimura Fuyuki Revision Changes Path 1.336 +1 -0 ports/lang/Makefile 1.1 +42 -0 ports/lang/stklos/Makefile (new) 1.1 +1 -0 ports/lang/stklos/distinfo (new) 1.1 +7 -0 ports/lang/stklos/pkg-descr (new) 1.1 +89 -0 ports/lang/stklos/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:26:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D368437B404; Fri, 4 Apr 2003 12:26:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7144943FCB; Fri, 4 Apr 2003 12:26:18 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34KQI0U044361; Fri, 4 Apr 2003 12:26:18 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34KQIjL044360; Fri, 4 Apr 2003 12:26:18 -0800 (PST) Message-Id: <200304042026.h34KQIjL044360@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 12:26:18 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:26:19 -0000 nork 2003/04/04 12:26:18 PST FreeBSD ports repository Modified files: . modules Log: stklos --> ports/lang/stklos Revision Changes Path 1.6981 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:29:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6834F37B401; Fri, 4 Apr 2003 12:29:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0018643FAF; Fri, 4 Apr 2003 12:29:33 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34KTX0U044517; Fri, 4 Apr 2003 12:29:33 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34KTXiW044516; Fri, 4 Apr 2003 12:29:33 -0800 (PST) Message-Id: <200304042029.h34KTXiW044516@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 12:29:33 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro/xphoon Makefile distinfo pkg-descr ports/astro/xphoon/files patch-ab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:29:34 -0000 nork 2003/04/04 12:29:33 PST FreeBSD ports repository Modified files: astro/xphoon Makefile distinfo pkg-descr astro/xphoon/files patch-ab Log: Update to 2000.06.13. PR: ports/50203 Submitted by: Kimura Fuyuki Revision Changes Path 1.21 +5 -5 ports/astro/xphoon/Makefile 1.2 +1 -1 ports/astro/xphoon/distinfo 1.2 +8 -19 ports/astro/xphoon/files/patch-ab 1.2 +2 -0 ports/astro/xphoon/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:33:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C824737B401; Fri, 4 Apr 2003 12:33:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76E0643F85; Fri, 4 Apr 2003 12:33:47 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34KXl0U045041; Fri, 4 Apr 2003 12:33:47 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34KXlnr045040; Fri, 4 Apr 2003 12:33:47 -0800 (PST) Message-Id: <200304042033.h34KXlnr045040@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 12:33:47 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits Makefileports/x11-toolkits/gtkglextmm Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:33:48 -0000 nork 2003/04/04 12:33:47 PST FreeBSD ports repository Modified files: x11-toolkits Makefile Added files: x11-toolkits/gtkglextmm Makefile distinfo pkg-descr pkg-plist Log: Add gtkglextmm 0.7.1, c++ wrapper for GtkGLExt. OpenGL Extension to GTK. PR: 50186 Submitted by: Kimura Fuyuki Revision Changes Path 1.229 +1 -0 ports/x11-toolkits/Makefile 1.1 +28 -0 ports/x11-toolkits/gtkglextmm/Makefile (new) 1.1 +1 -0 ports/x11-toolkits/gtkglextmm/distinfo (new) 1.1 +3 -0 ports/x11-toolkits/gtkglextmm/pkg-descr (new) 1.1 +187 -0 ports/x11-toolkits/gtkglextmm/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:33:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8E8137B401; Fri, 4 Apr 2003 12:33:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A49A43F3F; Fri, 4 Apr 2003 12:33:58 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34KXw0U045079; Fri, 4 Apr 2003 12:33:58 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34KXw16045078; Fri, 4 Apr 2003 12:33:58 -0800 (PST) Message-Id: <200304042033.h34KXw16045078@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 12:33:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:33:59 -0000 nork 2003/04/04 12:33:58 PST FreeBSD ports repository Modified files: . modules Log: gtkglextmm --> ports/x11-toolkits/gtkglextmm Revision Changes Path 1.6982 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:35:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A052437B401; Fri, 4 Apr 2003 12:35:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C95243FB1; Fri, 4 Apr 2003 12:35:59 -0800 (PST) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34KZw0U045235; Fri, 4 Apr 2003 12:35:58 -0800 (PST) (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34KZwU4045234; Fri, 4 Apr 2003 12:35:58 -0800 (PST) Message-Id: <200304042035.h34KZwU4045234@repoman.freebsd.org> From: Tor Egge Date: Fri, 4 Apr 2003 12:35:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/sys mount.h src/sys/kern vfs_subr.c vfs_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:36:00 -0000 tegge 2003/04/04 12:35:58 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/sys mount.h sys/kern vfs_subr.c vfs_syscalls.c Log: MFC: Sleep in getnewvnode() if max number of vnodes has been reached. Adjust the number of vnodes scanned by vlrureclaim() according to the size of the vnode list. Revision Changes Path 1.249.2.30 +18 -6 src/sys/kern/vfs_subr.c 1.151.2.18 +1 -0 src/sys/kern/vfs_syscalls.c 1.89.2.7 +1 -0 src/sys/sys/mount.h From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:52:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87CFB37B401; Fri, 4 Apr 2003 12:52:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3879843F93; Fri, 4 Apr 2003 12:52:06 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Kq50U051537; Fri, 4 Apr 2003 12:52:05 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Kq502051536; Fri, 4 Apr 2003 12:52:05 -0800 (PST) Message-Id: <200304042052.h34Kq502051536@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 12:52:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang Makefile ports/lang/sisc Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:52:07 -0000 nork 2003/04/04 12:52:05 PST FreeBSD ports repository Modified files: lang Makefile Added files: lang/sisc Makefile distinfo pkg-descr pkg-plist Log: Add sisc 1.7.7, an extensible Java-based Scheme interpreter of the algorithmic language Scheme. SISC uses modern interpretation techniques, and handily outperforms all existing Java interpreters. PR: ports/50109 Submitted by: Kimura Fuyuki Revision Changes Path 1.337 +1 -0 ports/lang/Makefile 1.1 +43 -0 ports/lang/sisc/Makefile (new) 1.1 +1 -0 ports/lang/sisc/distinfo (new) 1.1 +5 -0 ports/lang/sisc/pkg-descr (new) 1.1 +8 -0 ports/lang/sisc/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:52:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94CFE37B401; Fri, 4 Apr 2003 12:52:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 340BF43FD7; Fri, 4 Apr 2003 12:52:18 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34KqH0U051575; Fri, 4 Apr 2003 12:52:17 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34KqHKP051574; Fri, 4 Apr 2003 12:52:17 -0800 (PST) Message-Id: <200304042052.h34KqHKP051574@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 12:52:17 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:52:19 -0000 nork 2003/04/04 12:52:17 PST FreeBSD ports repository Modified files: . modules Log: sisc --> ports/lang/sisc Revision Changes Path 1.6983 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 12:55:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6188D37B401; Fri, 4 Apr 2003 12:55:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F002143F75; Fri, 4 Apr 2003 12:55:35 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34KtZ0U051765; Fri, 4 Apr 2003 12:55:35 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34KtZGm051764; Fri, 4 Apr 2003 12:55:35 -0800 (PST) Message-Id: <200304042055.h34KtZGm051764@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 12:55:35 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/rscheme Makefile distinfo ports/lang/rscheme/files patch-..::Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 20:55:36 -0000 nork 2003/04/04 12:55:35 PST FreeBSD ports repository Modified files: lang/rscheme Makefile distinfo lang/rscheme/files patch-..::Makefile Log: Update to 0.7.3.2. PR: ports/49089 Submitted by: Kimura Fuyuki Revision Changes Path 1.5 +3 -2 ports/lang/rscheme/Makefile 1.2 +1 -1 ports/lang/rscheme/distinfo 1.2 +4 -4 ports/lang/rscheme/files/patch-..::Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:02:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AE6637B401; Fri, 4 Apr 2003 13:02:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33C7E43F75; Fri, 4 Apr 2003 13:02:51 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34L2p0U052357; Fri, 4 Apr 2003 13:02:51 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34L2opl052356; Fri, 4 Apr 2003 13:02:50 -0800 (PST) Message-Id: <200304042102.h34L2opl052356@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 13:02:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/tinycdb Makefile pkg-descr ports/databases/tinycdb/files patch-cdb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:02:52 -0000 nork 2003/04/04 13:02:50 PST FreeBSD ports repository Modified files: databases/tinycdb Makefile pkg-descr Added files: databases/tinycdb/files patch-cdb.c Log: Fix tinycdb dosen't work. PR: ports/48857 Submitted by: Kimura Fuyuki Revision Changes Path 1.6 +1 -0 ports/databases/tinycdb/Makefile 1.1 +11 -0 ports/databases/tinycdb/files/patch-cdb.c (new) 1.2 +2 -0 ports/databases/tinycdb/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:03:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF86A37B401; Fri, 4 Apr 2003 13:03:59 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D6B243F75; Fri, 4 Apr 2003 13:03:58 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 153385308; Fri, 4 Apr 2003 23:03:57 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Kris Kennaway From: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Fri, 04 Apr 2003 23:03:56 +0200 In-Reply-To: <20030404173635.GA22147@rot13.obsecurity.org> (Kris Kennaway's message of "Fri, 4 Apr 2003 09:36:36 -0800") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <200304041729.h34HTtVb027430@repoman.freebsd.org> <20030404173635.GA22147@rot13.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s src/sys/powerpc/powerpc bcopy.c src/sys/sparc64/sparc64 support.S ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:04:00 -0000 Kris Kennaway writes: > On Fri, Apr 04, 2003 at 09:29:55AM -0800, Dag-Erling Smorgrav wrote: > > Define ovbcopy() as a macro which expands to the equivalent bcopy() c= all, > > to take care of the KAME IPv6 code which needs ovbcopy() because NetB= SD's > > bcopy() doesn't handle overlap like ours. > Was this for optimization reasons, hysterical raisins, or some other reas= on? The existence of ovbcopy()? I imagine it was just an API issue, someone didn't feel comfortable assuming that the kernel bcopy() handles overlap when the userland version doesn't. In FreeBSD however, ovbcopy() has always (for appropriate values of "always") been an alias for or duplicate of bcopy(). On i386, ovbcopy() was an alternate name for bcopy from its inception in revision 1.1 of locore.s (originally from 386BSD) until revision 1.40 (late 1996) when Bruce made it a trampoline (and bcopy() a function pointer) to allow for multiple processor-specific versions. On powerpc, it was a separate function but an exact duplicate of bcopy() (which itself is a wrapper for memcpy()). On all other platforms, it was an alternate name for bcopy(). In NetBSD, the situation is a little confused, because most platforms use a generic C implementation of bcopy() (in libkern) which handles overlap, but some use optimized assembler versions which don't, and these platforms have ovbcopy() - but the only part of the tree which actually uses ovbcopy() is the IPv6 stack (KAME), and it has its own version (a macro wrapper for memmove()) so in effect the real ovbcopy() is never used. The current situation in FreeBSD (after my commits) is much like that in NetBSD, except we have no real ovbcopy() at all, just a macro in for KAME's benefit. DES --=20 Dag-Erling Sm=F8rgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:05:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CDB137B401; Fri, 4 Apr 2003 13:05:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEAB643F75; Fri, 4 Apr 2003 13:05:50 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34L5o0U053452; Fri, 4 Apr 2003 13:05:50 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34L5oSU053451; Fri, 4 Apr 2003 13:05:50 -0800 (PST) Message-Id: <200304042105.h34L5oSU053451@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 13:05:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/sdl_gfx Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:05:51 -0000 nork 2003/04/04 13:05:50 PST FreeBSD ports repository Modified files: graphics/sdl_gfx Makefile pkg-plist Log: Use the same header location as other SDL families. PR: ports/48611 Submitted by: Kimura Fuyuki Revision Changes Path 1.6 +6 -1 ports/graphics/sdl_gfx/Makefile 1.3 +5 -5 ports/graphics/sdl_gfx/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:09:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B76C37B401; Fri, 4 Apr 2003 13:09:25 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58DB943FBD; Fri, 4 Apr 2003 13:09:24 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id F03B05309; Fri, 4 Apr 2003 23:09:22 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Kris Kennaway From: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Fri, 04 Apr 2003 23:09:22 +0200 In-Reply-To: <20030404182223.GA36706@HAL9000.homeunix.com> (David Schultz's message of "Fri, 4 Apr 2003 10:22:23 -0800") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <200304041729.h34HTtVb027430@repoman.freebsd.org> <20030404173635.GA22147@rot13.obsecurity.org> <20030404182223.GA36706@HAL9000.homeunix.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s src/sys/powerpc/powerpc bcopy.c src/sys/sparc64/sparc64 support.S ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:09:25 -0000 David Schultz writes: > BTW, why does this change convert bcopy from a function pointer to > a function that jumps to the address of a pointer? This looks > like a net gain in lines of code and a net gain in pipeline > stalls. Is there something in particular that it makes easier? Just code hygiene. There is no such optimization for bzero or any of the other functions in support.s (copyin, copyout), and it required an i386-specific declaration in . Of course, if the consensus is that this micro-optimization is desirable, I'll back out this part of the patch, but in that case I'll turn the other functions into pointers as well rather than have a mixed bag. DES --=20 Dag-Erling Sm=F8rgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:17:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C02837B401; Fri, 4 Apr 2003 13:17:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADCF543FA3; Fri, 4 Apr 2003 13:17:28 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34LHS0U054151; Fri, 4 Apr 2003 13:17:28 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34LHSKZ054150; Fri, 4 Apr 2003 13:17:28 -0800 (PST) Message-Id: <200304042117.h34LHSKZ054150@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 13:17:28 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/slib Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:17:29 -0000 nork 2003/04/04 13:17:28 PST FreeBSD ports repository Modified files: lang/slib Makefile distinfo pkg-descr pkg-plist Log: Update to 2d5. PR: ports/45845 Submitted by: Kimura Fuyuki Approved by: maintainer timeout (4 months) Revision Changes Path 1.18 +15 -5 ports/lang/slib/Makefile 1.6 +1 -1 ports/lang/slib/distinfo 1.2 +9 -1 ports/lang/slib/pkg-descr 1.8 +145 -125 ports/lang/slib/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:25:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1549F37B401; Fri, 4 Apr 2003 13:25:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8C9843F3F; Fri, 4 Apr 2003 13:25:21 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34LPL0U054773; Fri, 4 Apr 2003 13:25:21 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34LPLMe054772; Fri, 4 Apr 2003 13:25:21 -0800 (PST) Message-Id: <200304042125.h34LPLMe054772@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 13:25:21 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc Makefile ports/textproc/gauche-sxml Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:25:22 -0000 nork 2003/04/04 13:25:21 PST FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/gauche-sxml Makefile distinfo pkg-descr pkg-plist Log: Add gauche-sxml 0.9, a port of Oleg Kiselyov's (S)XML utilities to Gauche. PR: ports/44079 Submitted by: Kimura Fuyuki Revision Changes Path 1.501 +1 -0 ports/textproc/Makefile 1.1 +33 -0 ports/textproc/gauche-sxml/Makefile (new) 1.1 +1 -0 ports/textproc/gauche-sxml/distinfo (new) 1.1 +4 -0 ports/textproc/gauche-sxml/pkg-descr (new) 1.1 +8 -0 ports/textproc/gauche-sxml/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:25:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAAAC37B40A; Fri, 4 Apr 2003 13:25:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58E9F43FBF; Fri, 4 Apr 2003 13:25:32 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34LPW0U054811; Fri, 4 Apr 2003 13:25:32 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34LPW7f054810; Fri, 4 Apr 2003 13:25:32 -0800 (PST) Message-Id: <200304042125.h34LPW7f054810@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 13:25:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:25:33 -0000 nork 2003/04/04 13:25:32 PST FreeBSD ports repository Modified files: . modules Log: gauche-sxml --> ports/textproc/gauche-sxml Revision Changes Path 1.6984 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:26:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9561337B401; Fri, 4 Apr 2003 13:26:29 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5838343F3F; Fri, 4 Apr 2003 13:26:28 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id D044D66B9B; Fri, 4 Apr 2003 13:26:27 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 93A2312AB; Fri, 4 Apr 2003 13:26:27 -0800 (PST) Date: Fri, 4 Apr 2003 13:26:27 -0800 From: Kris Kennaway To: Kris Kennaway , Dag-Erling Smorgrav , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20030404212627.GE25811@rot13.obsecurity.org> References: <200304041729.h34HTtVb027430@repoman.freebsd.org> <20030404173635.GA22147@rot13.obsecurity.org> <20030404182223.GA36706@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EXKGNeO8l0xGFBjy" Content-Disposition: inline In-Reply-To: <20030404182223.GA36706@HAL9000.homeunix.com> User-Agent: Mutt/1.4i Subject: Re: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s src/sys/powerpc/powerpc bcopy.c src/sys/sparc64/sparc64 support.S ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:26:30 -0000 --EXKGNeO8l0xGFBjy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 04, 2003 at 10:22:23AM -0800, David Schultz wrote: > Thus spake Kris Kennaway : > > On Fri, Apr 04, 2003 at 09:29:55AM -0800, Dag-Erling Smorgrav wrote: > >=20 > > > Define ovbcopy() as a macro which expands to the equivalent bcopy()= call, > > > to take care of the KAME IPv6 code which needs ovbcopy() because Ne= tBSD's > > > bcopy() doesn't handle overlap like ours. > >=20 > > Was this for optimization reasons, hysterical raisins, or some other re= ason? >=20 > The ovbcopy-->bcopy conversion doesn't make things any faster or > slower, but it does make some minor optimizations impossible to > implement in the future. I'm not sure I agree with the changes, > but I don't violently disagree either. I was actually referring to NetBSD's different implementation in my question. Sorry, it wasn't clear from my email. To rephase it, why do NetBSD have ovbcopy() and bcopy() as separate functions? Kris --EXKGNeO8l0xGFBjy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jfiCWry0BWjoQKURAuBNAKCjXohNdFB0TjaTQVNwhoJO0cVXUQCg+zkr uGVsA3y2cs0dz5Xoi92rKhY= =oIKT -----END PGP SIGNATURE----- --EXKGNeO8l0xGFBjy-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:33:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C9EC37B401; Fri, 4 Apr 2003 13:33:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AFEC43F93; Fri, 4 Apr 2003 13:33:11 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34LXA0U055395; Fri, 4 Apr 2003 13:33:10 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34LXAXF055394; Fri, 4 Apr 2003 13:33:10 -0800 (PST) Message-Id: <200304042133.h34LXAXF055394@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 13:33:10 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/sisc Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:33:12 -0000 nork 2003/04/04 13:33:10 PST FreeBSD ports repository Modified files: lang/sisc Makefile distinfo Log: Update to 1.7.8. I forgot to commit remain PR. PR: ports/50155 Submitted by: Kimura Fuyuki (maintainer) Revision Changes Path 1.2 +1 -1 ports/lang/sisc/Makefile 1.2 +1 -1 ports/lang/sisc/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:33:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26F3E37B404; Fri, 4 Apr 2003 13:33:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB36043F75; Fri, 4 Apr 2003 13:33:15 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34LXF0U055422; Fri, 4 Apr 2003 13:33:15 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34LXFdA055421; Fri, 4 Apr 2003 13:33:15 -0800 (PST) Message-Id: <200304042133.h34LXFdA055421@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 4 Apr 2003 13:33:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/secure/lib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:33:17 -0000 ru 2003/04/04 13:33:15 PST FreeBSD src repository Modified files: (Branch: RELENG_4) secure/lib Makefile Log: MFC: revision 1.27 (libtelnet depends on OpenSSL). Revision Changes Path 1.19.2.5 +1 -1 src/secure/lib/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:40:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C33A237B401; Fri, 4 Apr 2003 13:40:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72C8543FA3; Fri, 4 Apr 2003 13:40:54 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Les0U056053; Fri, 4 Apr 2003 13:40:54 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34LesNf056052; Fri, 4 Apr 2003 13:40:54 -0800 (PST) Message-Id: <200304042140.h34LesNf056052@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 13:40:54 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang Makefile ports/lang/chicken Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:40:55 -0000 nork 2003/04/04 13:40:54 PST FreeBSD ports repository Modified files: lang Makefile Added files: lang/chicken Makefile distinfo pkg-descr pkg-plist Log: Add chicken 1.0, a Scheme-to-C compiler supporting most of the features as described in the Revised^5 Report on the Algorithmic Language Scheme. PR: ports/50155 Submitted by: Kimura Fuyuki Revision Changes Path 1.338 +1 -0 ports/lang/Makefile 1.1 +34 -0 ports/lang/chicken/Makefile (new) 1.1 +1 -0 ports/lang/chicken/distinfo (new) 1.1 +5 -0 ports/lang/chicken/pkg-descr (new) 1.1 +146 -0 ports/lang/chicken/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:41:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D731A37B405; Fri, 4 Apr 2003 13:41:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7794543F75; Fri, 4 Apr 2003 13:41:05 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Lf50U056097; Fri, 4 Apr 2003 13:41:05 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Lf5kC056096; Fri, 4 Apr 2003 13:41:05 -0800 (PST) Message-Id: <200304042141.h34Lf5kC056096@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 13:41:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:41:06 -0000 nork 2003/04/04 13:41:05 PST FreeBSD ports repository Modified files: . modules Log: chicken --> ports/lang/chicken Revision Changes Path 1.6985 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:53:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D191A37B401; Fri, 4 Apr 2003 13:53:08 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-131.client.attbi.com [12.233.57.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8EA043FB1; Fri, 4 Apr 2003 13:53:07 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) h34Lr2Kj037432; Fri, 4 Apr 2003 13:53:02 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6p2/8.12.5/Submit) id h34Lr2w8037431; Fri, 4 Apr 2003 13:53:02 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Fri, 4 Apr 2003 13:53:02 -0800 From: David Schultz To: "Dag-Erling =?us-ascii:iso-8859-1?Q?Sm=F8rgrav?=" Message-ID: <20030404215301.GA37335@HAL9000.homeunix.com> Mail-Followup-To: "Dag-Erling =?us-ascii:iso-8859-1?Q?Sm=F8rgrav?=" , Kris Kennaway , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200304041729.h34HTtVb027430@repoman.freebsd.org> <20030404173635.GA22147@rot13.obsecurity.org> <20030404182223.GA36706@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii:iso-8859-1" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: Kris Kennaway Subject: Re: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s src/sys/powerpc/powerpc bcopy.c src/sys/sparc64/sparc64 support.S ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:53:09 -0000 Thus spake Dag-Erling Smørgrav : > David Schultz writes: > > BTW, why does this change convert bcopy from a function pointer to > > a function that jumps to the address of a pointer? This looks > > like a net gain in lines of code and a net gain in pipeline > > stalls. Is there something in particular that it makes easier? > > Just code hygiene. There is no such optimization for bzero or any of > the other functions in support.s (copyin, copyout), and it required an > i386-specific declaration in . Of course, if the > consensus is that this micro-optimization is desirable, I'll back out > this part of the patch, but in that case I'll turn the other functions > into pointers as well rather than have a mixed bag. I don't care about the microoptimization if it's actually problematic in some way. I just don't see why calling a function that jumps to the address of a pointer is aesthetically better than calling the pointer in the first place. In any case, it's not a big deal and I probably shouldn't have even bothered to bring it up. From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:54:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FA8037B401; Fri, 4 Apr 2003 13:54:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E236A43F3F; Fri, 4 Apr 2003 13:54:46 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Lsk0U056864; Fri, 4 Apr 2003 13:54:46 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34LskC8056863; Fri, 4 Apr 2003 13:54:46 -0800 (PST) Message-Id: <200304042154.h34LskC8056863@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 13:54:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/slib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:54:47 -0000 nork 2003/04/04 13:54:46 PST FreeBSD ports repository Modified files: lang/slib Makefile Log: Remove unnecessary operation in do-install. I forgot to commit in previous. PR: ports/45845 Submitted by: Kimura Fuyuki Revision Changes Path 1.19 +1 -2 ports/lang/slib/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:55:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE18F37B401; Fri, 4 Apr 2003 13:55:33 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-131.client.attbi.com [12.233.57.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30DAA43F93; Fri, 4 Apr 2003 13:55:33 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) h34LtRKj037452; Fri, 4 Apr 2003 13:55:28 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6p2/8.12.5/Submit) id h34LtRiT037451; Fri, 4 Apr 2003 13:55:27 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Fri, 4 Apr 2003 13:55:27 -0800 From: David Schultz To: Michael Lucas Message-ID: <20030404215527.GB37335@HAL9000.homeunix.com> Mail-Followup-To: Michael Lucas , doc-committers@freebsd.org, cvs-doc@freebsd.org, cvs-all@freebsd.org References: <200304041951.h34JpVaX040786@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304041951.h34JpVaX040786@repoman.freebsd.org> cc: doc-committers@FreeBSD.ORG cc: cvs-doc@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:55:34 -0000 Thus spake Michael Lucas : > mwlucas 2003/04/04 11:51:31 PST > > FreeBSD doc repository > > Modified files: > en_US.ISO8859-1/books/faq book.sgml > Log: > "Can I install FreeBSD with only 4MB of RAM"? No. > > Remove advice to install FreeBSD 2.0.5. > > Remove 2.1.7 installation suggestion. > > Leave a reference to FreeBSD 2.1.7, only to give this asker a sense of > "We're no longer in the stone age." I'm glad someone has taken the time to clean up that part of the FAQ a bit! It seems to have been neglected for a while. From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:55:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6547B37B401; Fri, 4 Apr 2003 13:55:51 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92CA943F85; Fri, 4 Apr 2003 13:55:50 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id ECC065309; Fri, 4 Apr 2003 23:55:48 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Kris Kennaway From: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Fri, 04 Apr 2003 23:55:47 +0200 In-Reply-To: <20030404212627.GE25811@rot13.obsecurity.org> (Kris Kennaway's message of "Fri, 4 Apr 2003 13:26:27 -0800") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <200304041729.h34HTtVb027430@repoman.freebsd.org> <20030404173635.GA22147@rot13.obsecurity.org> <20030404182223.GA36706@HAL9000.homeunix.com> <20030404212627.GE25811@rot13.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s src/sys/powerpc/powerpc bcopy.c src/sys/sparc64/sparc64 support.S ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:55:51 -0000 Kris Kennaway writes: > I was actually referring to NetBSD's different implementation in my > question. Sorry, it wasn't clear from my email. To rephase it, why > do NetBSD have ovbcopy() and bcopy() as separate functions? They don't any more, since 1.4. There are some scattered remains but nothing uses them. In FreeBSD (and 386BSD before it), ovbcopy() has always been an alias or synonym for bcopy(). DES --=20 Dag-Erling Sm=F8rgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Fri Apr 4 13:57:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C699F37B401; Fri, 4 Apr 2003 13:57:54 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id E606043F75; Fri, 4 Apr 2003 13:57:53 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 7B8765308; Fri, 4 Apr 2003 23:57:52 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Kris Kennaway From: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Fri, 04 Apr 2003 23:57:51 +0200 In-Reply-To: <20030404215301.GA37335@HAL9000.homeunix.com> (David Schultz's message of "Fri, 4 Apr 2003 13:53:02 -0800") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <200304041729.h34HTtVb027430@repoman.freebsd.org> <20030404173635.GA22147@rot13.obsecurity.org> <20030404182223.GA36706@HAL9000.homeunix.com> <20030404215301.GA37335@HAL9000.homeunix.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s src/sys/powerpc/powerpc bcopy.c src/sys/sparc64/sparc64 support.S ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 21:57:55 -0000 David Schultz writes: > I don't care about the microoptimization if it's actually > problematic in some way. I just don't see why calling a function > that jumps to the address of a pointer is aesthetically better > than calling the pointer in the first place. Mostly because none of the other platforms do it that way, so we had to special-case i386 in which is supposed to be MI. DES --=20 Dag-Erling Sm=F8rgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Fri Apr 4 14:05:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5D0437B401; Fri, 4 Apr 2003 14:05:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6387743FA3; Fri, 4 Apr 2003 14:05:34 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34M5Y0U058526; Fri, 4 Apr 2003 14:05:34 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34M5XKr058525; Fri, 4 Apr 2003 14:05:33 -0800 (PST) Message-Id: <200304042205.h34M5XKr058525@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 14:05:33 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/rtc/files Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 22:05:35 -0000 nork 2003/04/04 14:05:33 PST FreeBSD ports repository Modified files: emulators/rtc/files Makefile Log: Correct dependency on linux.ko. PR: ports/40973 Submitted by: Vladimir B. Grebenschikov Revision Changes Path 1.4 +2 -0 ports/emulators/rtc/files/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 14:09:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3ED237B405; Fri, 4 Apr 2003 14:09:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1C1B43FA3; Fri, 4 Apr 2003 14:09:04 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34M940U058657; Fri, 4 Apr 2003 14:09:04 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34M94Xl058656; Fri, 4 Apr 2003 14:09:04 -0800 (PST) Message-Id: <200304042209.h34M94Xl058656@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 4 Apr 2003 14:09:04 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/rtc Makefile ports/emulators/rtc/files Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 22:09:10 -0000 nork 2003/04/04 14:09:04 PST FreeBSD ports repository Modified files: emulators/rtc Makefile emulators/rtc/files Makefile Log: [Forced commit] Correct dependency on linux.ko and Bump PORTREVISION. PR: ports/37992, ports/40973 Submitted by: Alexandr Kovalenko Vladimir B. Grebenschikov Revision Changes Path 1.15 +1 -0 ports/emulators/rtc/Makefile 1.5 +0 -0 ports/emulators/rtc/files/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 14:11:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66D3E37B401; Fri, 4 Apr 2003 14:11:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13E3443F3F; Fri, 4 Apr 2003 14:11:00 -0800 (PST) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34MAx0U059113; Fri, 4 Apr 2003 14:10:59 -0800 (PST) (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34MAxiN059112; Fri, 4 Apr 2003 14:10:59 -0800 (PST) Message-Id: <200304042210.h34MAxiN059112@repoman.freebsd.org> From: Anton Berezin Date: Fri, 4 Apr 2003 14:10:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/nvi-perl Makefileports/editors/nvi-perl/files patch-configure patch-perl.xs patch-perlsfio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 22:11:00 -0000 tobez 2003/04/04 14:10:59 PST FreeBSD ports repository Modified files: editors/nvi-perl Makefile Added files: editors/nvi-perl/files patch-configure patch-perl.xs patch-perlsfio.c Log: Make nvi-perl work with newer perls. Unbreak it for -CURRENT. PR: 37730 Reported by: parv Revision Changes Path 1.19 +2 -5 ports/editors/nvi-perl/Makefile 1.1 +11 -0 ports/editors/nvi-perl/files/patch-configure (new) 1.1 +17 -0 ports/editors/nvi-perl/files/patch-perl.xs (new) 1.1 +17 -0 ports/editors/nvi-perl/files/patch-perlsfio.c (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 14:21:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7985537B401; Fri, 4 Apr 2003 14:21:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2439443FBD; Fri, 4 Apr 2003 14:21:31 -0800 (PST) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34MLU0U059945; Fri, 4 Apr 2003 14:21:30 -0800 (PST) (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34MLUNK059944; Fri, 4 Apr 2003 14:21:30 -0800 (PST) Message-Id: <200304042221.h34MLUNK059944@repoman.freebsd.org> From: Tor Egge Date: Fri, 4 Apr 2003 14:21:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/conf files options src/sys/ufs/ufs ufs_readwrite.c src/sys/i386/i386 machdep.c src/sys/ufs/ffs ffs_rawread.c src/sys/i386/conf LINT X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 22:21:32 -0000 tegge 2003/04/04 14:21:30 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/conf files options sys/ufs/ufs ufs_readwrite.c sys/i386/i386 machdep.c sys/i386/conf LINT Added files: (Branch: RELENG_4) sys/ufs/ffs ffs_rawread.c Log: MFC: Support for bypassing buffer cache for O_DIRECT reads. Revision Changes Path 1.340.2.133 +1 -0 src/sys/conf/files 1.191.2.50 +2 -0 src/sys/conf/options 1.749.2.140 +13 -0 src/sys/i386/conf/LINT 1.385.2.29 +13 -0 src/sys/i386/i386/machdep.c 1.3.2.1 +477 -0 src/sys/ufs/ffs/ffs_rawread.c (new) 1.65.2.14 +14 -0 src/sys/ufs/ufs/ufs_readwrite.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 14:26:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0262F37B401; Fri, 4 Apr 2003 14:26:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96CD743FCB; Fri, 4 Apr 2003 14:26:08 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34MQ80U060087; Fri, 4 Apr 2003 14:26:08 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34MQ8Vx060086; Fri, 4 Apr 2003 14:26:08 -0800 (PST) Message-Id: <200304042226.h34MQ8Vx060086@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 14:26:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/dia Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 22:26:09 -0000 marcus 2003/04/04 14:26:08 PST FreeBSD ports repository Modified files: graphics/dia Makefile Log: Add a missing BUIL_DEPENDS on py-gtk2. Submitted by: David Thiel Revision Changes Path 1.26 +1 -0 ports/graphics/dia/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 14:30:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8909137B401; Fri, 4 Apr 2003 14:30:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2557543FA3; Fri, 4 Apr 2003 14:30:17 -0800 (PST) (envelope-from seanc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34MUG0U060301; Fri, 4 Apr 2003 14:30:16 -0800 (PST) (envelope-from seanc@repoman.freebsd.org) Received: (from seanc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34MUGKm060300; Fri, 4 Apr 2003 14:30:16 -0800 (PST) Message-Id: <200304042230.h34MUGKm060300@repoman.freebsd.org> From: Sean Chittenden Date: Fri, 4 Apr 2003 14:30:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/bmf Makefile ports/mail/bmf/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 22:30:17 -0000 seanc 2003/04/04 14:30:16 PST FreeBSD ports repository Modified files: mail/bmf Makefile Added files: mail/bmf/files patch-configure Log: Fix bmf to work correctly with db3, db4, and db41. Noticed by: Keltia on IRC Revision Changes Path 1.2 +7 -0 ports/mail/bmf/Makefile 1.1 +14 -0 ports/mail/bmf/files/patch-configure (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 14:46:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E6BF37B401; Fri, 4 Apr 2003 14:46:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4A9943F93; Fri, 4 Apr 2003 14:46:08 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Mk80U061425; Fri, 4 Apr 2003 14:46:08 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34Mk8D0061424; Fri, 4 Apr 2003 14:46:08 -0800 (PST) Message-Id: <200304042246.h34Mk8D0061424@repoman.freebsd.org> From: Warner Losh Date: Fri, 4 Apr 2003 14:46:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 22:46:09 -0000 imp 2003/04/04 14:46:08 PST FreeBSD src repository Modified files: . Makefile.inc1 Log: Diff reduction with my p4 changes: Add @ before ${ECHODIR} where appropriate because we don't need to echo the echo command... This gets rid of extra echo ===> in log files... Revision Changes Path 1.331 +5 -5 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Fri Apr 4 14:48:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1318C37B401; Fri, 4 Apr 2003 14:48:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A573743FA3; Fri, 4 Apr 2003 14:48:19 -0800 (PST) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34MmJ0U061480; Fri, 4 Apr 2003 14:48:19 -0800 (PST) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34MmJQb061479; Fri, 4 Apr 2003 14:48:19 -0800 (PST) Message-Id: <200304042248.h34MmJQb061479@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 4 Apr 2003 14:48:19 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/gallery gallery.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 22:48:20 -0000 brueffer 2003/04/04 14:48:19 PST FreeBSD doc repository Modified files: en/gallery gallery.xml Log: A bunch of spelling, grammar and whitespace fixes. Approved by: phantom Revision Changes Path 1.28 +109 -109 www/en/gallery/gallery.xml From owner-cvs-all@FreeBSD.ORG Fri Apr 4 14:48:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A6BC37B401; Fri, 4 Apr 2003 14:48:57 -0800 (PST) Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C7A843FAF; Fri, 4 Apr 2003 14:48:56 -0800 (PST) (envelope-from mwlucas@blackhelicopters.org) Received: from blackhelicopters.org (mwlucas@localhost [127.0.0.1]) by blackhelicopters.org (8.12.8/8.12.8) with ESMTP id h34MmtDn051746; Fri, 4 Apr 2003 17:48:55 -0500 (EST) (envelope-from mwlucas@blackhelicopters.org) Received: (from mwlucas@localhost) by blackhelicopters.org (8.12.8/8.12.8/Submit) id h34Mmt59051745; Fri, 4 Apr 2003 17:48:55 -0500 (EST) Date: Fri, 4 Apr 2003 17:48:55 -0500 From: "Michael W . Lucas" To: Michael Lucas , doc-committers@freebsd.org, cvs-doc@freebsd.org, cvs-all@freebsd.org Message-ID: <20030404174855.A51723@blackhelicopters.org> References: <200304041951.h34JpVaX040786@repoman.freebsd.org> <20030404215527.GB37335@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030404215527.GB37335@HAL9000.homeunix.com>; from das@FreeBSD.ORG on Fri, Apr 04, 2003 at 01:55:27PM -0800 Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 22:48:57 -0000 On Fri, Apr 04, 2003 at 01:55:27PM -0800, David Schultz wrote: > Thus spake Michael Lucas : > > mwlucas 2003/04/04 11:51:31 PST > > > > FreeBSD doc repository > > > > Modified files: > > en_US.ISO8859-1/books/faq book.sgml > > Log: > > "Can I install FreeBSD with only 4MB of RAM"? No. > > > > Remove advice to install FreeBSD 2.0.5. > > > > Remove 2.1.7 installation suggestion. > > > > Leave a reference to FreeBSD 2.1.7, only to give this asker a sense of > > "We're no longer in the stone age." > > I'm glad someone has taken the time to clean up that part of the > FAQ a bit! It seems to have been neglected for a while. There's more to come. :-) It's not so much neglected, as, well, "how far back does the FAQ support?" The answer is, now that 5.x is out, 2.x is going away. ==ml -- Michael Lucas mwlucas@FreeBSD.org, mwlucas@BlackHelicopters.org http://www.BlackHelicopters.org/~mwlucas/ Absolute BSD: http://www.AbsoluteBSD.com/ From owner-cvs-all@FreeBSD.ORG Fri Apr 4 15:09:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1060F37B401; Fri, 4 Apr 2003 15:09:39 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7A5643FA3; Fri, 4 Apr 2003 15:09:36 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h34N9MA7068407; Fri, 4 Apr 2003 16:09:22 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Fri, 04 Apr 2003 16:08:23 -0700 (MST) Message-Id: <20030404.160823.91026001.imp@bsdimp.com> To: ru@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20030404085200.GA1765@sunbay.com> References: <20030403184229.D18209@espresso.bsdmike.org> <20030404085200.GA1765@sunbay.com> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: obrien@FreeBSD.org cc: phk@FreeBSD.org cc: src-committers@FreeBSD.org cc: nate@root.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: mike@FreeBSD.org Subject: Re: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 23:09:39 -0000 In message: <20030404085200.GA1765@sunbay.com> Ruslan Ermilov writes: : +#define BSWAP64(x) (uint64_t) \ : + (((x) >> 56) | (((x) >> 40) & 0xff00) | (((x) >> 24) & 0xff0000) | \ : + (((x) >> 8) & 0xff000000) | (((x) << 8) & ((uint64_t)0xff << 32)) | \ : + (((x) << 24) & ((uint64_t)0xff << 40)) | \ : + (((x) << 40) & ((uint64_t)0xff << 48)) | (((x) << 56))) 0xffull or 0xffULL might be better than the casts here. This does assume that 0ull == (uint64_t)0, which does hold for all our architectures... Warner From owner-cvs-all@FreeBSD.ORG Fri Apr 4 15:23:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0D6237B401; Fri, 4 Apr 2003 15:23:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B40243F3F; Fri, 4 Apr 2003 15:23:33 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34NNX0U064726; Fri, 4 Apr 2003 15:23:33 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34NNXN8064725; Fri, 4 Apr 2003 15:23:33 -0800 (PST) Message-Id: <200304042323.h34NNXN8064725@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Fri, 4 Apr 2003 15:23:33 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/ipcheck Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 23:23:34 -0000 lioux 2003/04/04 15:23:33 PST FreeBSD ports repository Modified files: net/ipcheck Makefile distinfo Log: Update to 0.202 Revision Changes Path 1.26 +1 -1 ports/net/ipcheck/Makefile 1.21 +1 -1 ports/net/ipcheck/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 4 15:54:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F2A837B408; Fri, 4 Apr 2003 15:54:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5819743F93; Fri, 4 Apr 2003 15:54:47 -0800 (PST) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h34Nsl0U075998; Fri, 4 Apr 2003 15:54:47 -0800 (PST) (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h34NslFp075997; Fri, 4 Apr 2003 15:54:47 -0800 (PST) Message-Id: <200304042354.h34NslFp075997@repoman.freebsd.org> From: Tor Egge Date: Fri, 4 Apr 2003 15:54:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 tsc.c src/sys/i386/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 23:54:49 -0000 tegge 2003/04/04 15:54:47 PST FreeBSD src repository Modified files: sys/conf options.i386 sys/i386/i386 tsc.c sys/i386/conf NOTES Log: Add SMP_TSC option, which can be used on SMP systems where the TSCs are synchronized to reduce context switch cost. Revision Changes Path 1.189 +1 -0 src/sys/conf/options.i386 1.1083 +5 -0 src/sys/i386/conf/NOTES 1.198 +1 -1 src/sys/i386/i386/tsc.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 15:56:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EAFC37B401; Fri, 4 Apr 2003 15:56:33 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16E1743FBF; Fri, 4 Apr 2003 15:56:32 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id AF0BE66B9B; Fri, 4 Apr 2003 15:56:31 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 7779512AB; Fri, 4 Apr 2003 15:56:31 -0800 (PST) Date: Fri, 4 Apr 2003 15:56:31 -0800 From: Kris Kennaway To: Anton Berezin Message-ID: <20030404235631.GA26903@rot13.obsecurity.org> References: <200304042210.h34MAxiN059112@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="9jxsPFA5p3P2qPhR" Content-Disposition: inline In-Reply-To: <200304042210.h34MAxiN059112@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/editors/nvi-perl Makefile ports/editors/nvi-perl/files patch-configure patch-perl.xs patch-perlsfio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 23:56:33 -0000 --9jxsPFA5p3P2qPhR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 04, 2003 at 02:10:59PM -0800, Anton Berezin wrote: > tobez 2003/04/04 14:10:59 PST >=20 > FreeBSD ports repository >=20 > Modified files: > editors/nvi-perl Makefile=20 > Added files: > editors/nvi-perl/files patch-configure patch-perl.xs=20 > patch-perlsfio.c=20 > Log: > Make nvi-perl work with newer perls. Unbreak it for -CURRENT. Thanks! Kris --9jxsPFA5p3P2qPhR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jhuvWry0BWjoQKURAiH4AKCp73qHhL3IWBHBU+S7dNUWbtDKQQCgp4b1 RfRYXGmMIkqvH6qTm5WZU7Q= =sXVq -----END PGP SIGNATURE----- --9jxsPFA5p3P2qPhR-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 17:13:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20D8E37B401; Fri, 4 Apr 2003 17:13:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B333B43FB1; Fri, 4 Apr 2003 17:13:10 -0800 (PST) (envelope-from rushani@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h351DA0U088186; Fri, 4 Apr 2003 17:13:10 -0800 (PST) (envelope-from rushani@repoman.freebsd.org) Received: (from rushani@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h351DA7h088185; Fri, 4 Apr 2003 17:13:10 -0800 (PST) Message-Id: <200304050113.h351DA7h088185@repoman.freebsd.org> From: Hideyuki KURASHINA Date: Fri, 4 Apr 2003 17:13:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/ja_JP.eucJP/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 01:13:11 -0000 rushani 2003/04/04 17:13:10 PST FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) release/doc/ja_JP.eucJP/errata article.sgml Log: Merge the following from the English version: 1.1.2.98 -> 1.1.2.100 errata/article.sgml Revision Changes Path 1.3.2.9 +44 -116 src/release/doc/ja_JP.eucJP/errata/article.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 4 17:16:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF2FE37B401; Fri, 4 Apr 2003 17:16:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CCFC43FCB; Fri, 4 Apr 2003 17:16:17 -0800 (PST) (envelope-from rushani@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h351GH0U088343; Fri, 4 Apr 2003 17:16:17 -0800 (PST) (envelope-from rushani@repoman.freebsd.org) Received: (from rushani@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h351GG3v088342; Fri, 4 Apr 2003 17:16:16 -0800 (PST) Message-Id: <200304050116.h351GG3v088342@repoman.freebsd.org> From: Hideyuki KURASHINA Date: Fri, 4 Apr 2003 17:16:16 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/ja/releases/4.8R errata.html X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 01:16:18 -0000 rushani 2003/04/04 17:16:16 PST FreeBSD doc repository Modified files: ja/releases/4.8R errata.html Log: Regen from article.sgml 1.1.2.100. Revision Changes Path 1.2 +77 -8 www/ja/releases/4.8R/errata.html From owner-cvs-all@FreeBSD.ORG Fri Apr 4 17:27:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8BE337B401; Fri, 4 Apr 2003 17:27:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 893A243FA3; Fri, 4 Apr 2003 17:27:18 -0800 (PST) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h351RI0U088964; Fri, 4 Apr 2003 17:27:18 -0800 (PST) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h351RIER088963; Fri, 4 Apr 2003 17:27:18 -0800 (PST) Message-Id: <200304050127.h351RIER088963@repoman.freebsd.org> From: Maxime Henrion Date: Fri, 4 Apr 2003 17:27:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fxp if_fxp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 01:27:19 -0000 mux 2003/04/04 17:27:18 PST FreeBSD src repository Modified files: sys/dev/fxp if_fxp.c Log: Setup our interrupt only at the end of fxp_attach(), when all other allocations/initializations have been successful. I kinda doubt it will fix the recent breakage that some people are seeing, but this could have caused problems for sure. Revision Changes Path 1.155 +12 -12 src/sys/dev/fxp/if_fxp.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 17:54:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01F9637B401; Fri, 4 Apr 2003 17:54:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9377C43FD7; Fri, 4 Apr 2003 17:54:19 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h351sJ0U090930; Fri, 4 Apr 2003 17:54:19 -0800 (PST) (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h351sJNd090929; Fri, 4 Apr 2003 17:54:19 -0800 (PST) Message-Id: <200304050154.h351sJNd090929@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Fri, 4 Apr 2003 17:54:19 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/squirrelmail Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 01:54:20 -0000 vanilla 2003/04/04 17:54:19 PST FreeBSD ports repository Modified files: mail/squirrelmail Makefile distinfo pkg-plist Log: Upgrade to 1.4.0. PR: ports/50602 Submitted by: maintainer. Revision Changes Path 1.11 +1 -1 ports/mail/squirrelmail/Makefile 1.8 +1 -1 ports/mail/squirrelmail/distinfo 1.9 +192 -120 ports/mail/squirrelmail/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 18:14:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FFF437B401; Fri, 4 Apr 2003 18:14:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0E3443F3F; Fri, 4 Apr 2003 18:14:03 -0800 (PST) (envelope-from yoichi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h352E30U093516; Fri, 4 Apr 2003 18:14:03 -0800 (PST) (envelope-from yoichi@repoman.freebsd.org) Received: (from yoichi@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h352E3WY093515; Fri, 4 Apr 2003 18:14:03 -0800 (PST) Message-Id: <200304050214.h352E3WY093515@repoman.freebsd.org> From: Yoichi NAKAYAMA Date: Fri, 4 Apr 2003 18:14:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/yc.el Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 02:14:04 -0000 yoichi 2003/04/04 18:14:03 PST FreeBSD ports repository Modified files: japanese/yc.el Makefile distinfo pkg-descr Log: Update to 3.5.2 PR: ports/50332 Submitted by: Takayuki Nakao (MAINTAINER) Revision Changes Path 1.10 +1 -1 ports/japanese/yc.el/Makefile 1.7 +1 -1 ports/japanese/yc.el/distinfo 1.3 +2 -2 ports/japanese/yc.el/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Apr 4 18:47:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B110237B401; Fri, 4 Apr 2003 18:47:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50C6543FB1; Fri, 4 Apr 2003 18:47:41 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h352lf0U095639; Fri, 4 Apr 2003 18:47:41 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h352lfxk095638; Fri, 4 Apr 2003 18:47:41 -0800 (PST) Message-Id: <200304050247.h352lfxk095638@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 18:47:41 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/xbae pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 02:47:42 -0000 kris 2003/04/04 18:47:40 PST FreeBSD ports repository Modified files: x11-toolkits/xbae pkg-plist Log: Add missing symlink Revision Changes Path 1.12 +1 -0 ports/x11-toolkits/xbae/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 18:53:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12EDA37B401; Fri, 4 Apr 2003 18:53:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A67EC43F85; Fri, 4 Apr 2003 18:53:48 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h352rm0U096152; Fri, 4 Apr 2003 18:53:48 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h352rmo2096151; Fri, 4 Apr 2003 18:53:48 -0800 (PST) Message-Id: <200304050253.h352rmo2096151@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 18:53:48 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/vcdimager Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 02:53:49 -0000 kris 2003/04/04 18:53:48 PST FreeBSD ports repository Modified files: multimedia/vcdimager Makefile Log: Add missing manpage Revision Changes Path 1.8 +2 -1 ports/multimedia/vcdimager/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 18:55:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC1D637B401; Fri, 4 Apr 2003 18:55:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C81943F75; Fri, 4 Apr 2003 18:55:50 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h352to0U096266; Fri, 4 Apr 2003 18:55:50 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h352todd096265; Fri, 4 Apr 2003 18:55:50 -0800 (PST) Message-Id: <200304050255.h352todd096265@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 18:55:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/totd pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 02:55:51 -0000 kris 2003/04/04 18:55:50 PST FreeBSD ports repository Modified files: net/totd pkg-plist Log: Add missing file. This port has an incorrect pkg-deinstall (refers to /etc/totd.conf) Revision Changes Path 1.2 +1 -0 ports/net/totd/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 19:05:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B01E37B401; Fri, 4 Apr 2003 19:05:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E46E43F93; Fri, 4 Apr 2003 19:05:34 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3535Y0U097852; Fri, 4 Apr 2003 19:05:34 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3535YUN097851; Fri, 4 Apr 2003 19:05:34 -0800 (PST) Message-Id: <200304050305.h3535YUN097851@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 19:05:34 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/smartdoc-devel pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 03:05:35 -0000 kris 2003/04/04 19:05:34 PST FreeBSD ports repository Modified files: textproc/smartdoc-devel pkg-plist Log: Don't remove the share/java/classes system directory Revision Changes Path 1.5 +0 -1 ports/textproc/smartdoc-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 19:08:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F080A37B401; Fri, 4 Apr 2003 19:08:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F94F43FB1; Fri, 4 Apr 2003 19:08:25 -0800 (PST) (envelope-from petef@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3538P0U097945; Fri, 4 Apr 2003 19:08:25 -0800 (PST) (envelope-from petef@repoman.freebsd.org) Received: (from petef@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3538PXW097944; Fri, 4 Apr 2003 19:08:25 -0800 (PST) Message-Id: <200304050308.h3538PXW097944@repoman.freebsd.org> From: Pete Fritchman Date: Fri, 4 Apr 2003 19:08:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/eboard Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 03:08:26 -0000 petef 2003/04/04 19:08:25 PST FreeBSD ports repository Modified files: games/eboard Makefile distinfo pkg-plist Log: Update to 0.8.0. Revision Changes Path 1.20 +5 -2 ports/games/eboard/Makefile 1.14 +1 -1 ports/games/eboard/distinfo 1.5 +3 -0 ports/games/eboard/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 19:37:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 273E337B401; Fri, 4 Apr 2003 19:37:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB40A43F85; Fri, 4 Apr 2003 19:37:33 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h353bX0U099997; Fri, 4 Apr 2003 19:37:33 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h353bXeC099996; Fri, 4 Apr 2003 19:37:33 -0800 (PST) Message-Id: <200304050337.h353bXeC099996@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 19:37:33 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/gnumeric2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 03:37:34 -0000 marcus 2003/04/04 19:37:33 PST FreeBSD ports repository Modified files: math/gnumeric2 Makefile Log: Chase the gal2 shared lib version. Reported by: Mike Harding Revision Changes Path 1.102 +2 -1 ports/math/gnumeric2/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 20:17:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0718137B401; Fri, 4 Apr 2003 20:17:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C16043FBD; Fri, 4 Apr 2003 20:17:06 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h354H60U003783; Fri, 4 Apr 2003 20:17:06 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h354H6lG003782; Fri, 4 Apr 2003 20:17:06 -0800 (PST) Message-Id: <200304050417.h354H6lG003782@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 4 Apr 2003 20:17:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/i386/string Makefile.inc wcschr.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 04:17:07 -0000 tjr 2003/04/04 20:17:05 PST FreeBSD src repository Modified files: lib/libc/i386/string Makefile.inc Added files: lib/libc/i386/string wcschr.S Log: MFp4: Pentium/Athlon-optimised implementation of wcschr(). Revision Changes Path 1.13 +2 -1 src/lib/libc/i386/string/Makefile.inc 1.1 +76 -0 src/lib/libc/i386/string/wcschr.S (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 20:39:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F1D037B401; Fri, 4 Apr 2003 20:39:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4487D43FAF; Fri, 4 Apr 2003 20:39:14 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h354dE0U005194; Fri, 4 Apr 2003 20:39:14 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h354dDVi005193; Fri, 4 Apr 2003 20:39:13 -0800 (PST) Message-Id: <200304050439.h354dDVi005193@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 20:39:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/benchmarks/bonnie++ pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 04:39:15 -0000 kris 2003/04/04 20:39:13 PST FreeBSD ports repository Modified files: benchmarks/bonnie++ pkg-plist Log: Add missing files Revision Changes Path 1.4 +4 -1 ports/benchmarks/bonnie++/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 20:46:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E5BF37B401; Fri, 4 Apr 2003 20:46:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2F0A43FBD; Fri, 4 Apr 2003 20:46:42 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h354kg0U005819; Fri, 4 Apr 2003 20:46:42 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h354kgfg005818; Fri, 4 Apr 2003 20:46:42 -0800 (PST) Message-Id: <200304050446.h354kgfg005818@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 20:46:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/gputils pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 04:46:43 -0000 kris 2003/04/04 20:46:42 PST FreeBSD ports repository Modified files: devel/gputils pkg-plist Log: Add missing @dirrm Revision Changes Path 1.7 +1 -0 ports/devel/gputils/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 20:48:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B60AB37B401; Fri, 4 Apr 2003 20:48:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5703C43FA3; Fri, 4 Apr 2003 20:48:17 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h354mH0U011005; Fri, 4 Apr 2003 20:48:17 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h354mHHB011004; Fri, 4 Apr 2003 20:48:17 -0800 (PST) Message-Id: <200304050448.h354mHHB011004@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 20:48:17 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/postgresql-docs Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 04:48:18 -0000 kris 2003/04/04 20:48:17 PST FreeBSD ports repository Modified files: databases/postgresql-docs Makefile Log: Add missing @dirrm Revision Changes Path 1.6 +1 -0 ports/databases/postgresql-docs/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 20:55:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 345F537B401; Fri, 4 Apr 2003 20:55:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1A2843F75; Fri, 4 Apr 2003 20:55:05 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h354t50U011559; Fri, 4 Apr 2003 20:55:05 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h354t5s5011558; Fri, 4 Apr 2003 20:55:05 -0800 (PST) Message-Id: <200304050455.h354t5s5011558@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 20:55:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/gtkhtml Makefile distinfo pkg-plist ports/www/gtkhtml/files patch-af X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 04:55:06 -0000 marcus 2003/04/04 20:55:05 PST FreeBSD ports repository Modified files: www/gtkhtml Makefile distinfo pkg-plist www/gtkhtml/files patch-af Log: * Update to 1.1.10 * Remove USE_GNOMENG macro Revision Changes Path 1.59 +1 -3 ports/www/gtkhtml/Makefile 1.24 +1 -1 ports/www/gtkhtml/distinfo 1.5 +7 -7 ports/www/gtkhtml/files/patch-af 1.26 +34 -34 ports/www/gtkhtml/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 20:55:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1A1B37B401; Fri, 4 Apr 2003 20:55:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F95443FCB; Fri, 4 Apr 2003 20:55:31 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h354tV0U011653; Fri, 4 Apr 2003 20:55:31 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h354tVBl011652; Fri, 4 Apr 2003 20:55:31 -0800 (PST) Message-Id: <200304050455.h354tVBl011652@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 20:55:31 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/evolution Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 04:55:32 -0000 marcus 2003/04/04 20:55:31 PST FreeBSD ports repository Modified files: mail/evolution Makefile distinfo pkg-plist Log: * Update to 1.2.4 * Remove USE_GNOMENG macro Revision Changes Path 1.79 +2 -3 ports/mail/evolution/Makefile 1.32 +1 -1 ports/mail/evolution/distinfo 1.37 +1 -0 ports/mail/evolution/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:02:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 685D937B401; Fri, 4 Apr 2003 21:02:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0697D43F3F; Fri, 4 Apr 2003 21:02:09 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355280U012202; Fri, 4 Apr 2003 21:02:08 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3552846012201; Fri, 4 Apr 2003 21:02:08 -0800 (PST) Message-Id: <200304050502.h3552846012201@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 21:02:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/gnomespell Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:02:10 -0000 marcus 2003/04/04 21:02:08 PST FreeBSD ports repository Modified files: textproc/gnomespell Makefile Log: This port doesn't install shared libs. While I'm here, remove the USE_GNOMENG macro. Revision Changes Path 1.10 +0 -2 ports/textproc/gnomespell/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:09:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EB6037B401; Fri, 4 Apr 2003 21:09:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D21C243FA3; Fri, 4 Apr 2003 21:09:09 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355990U013415; Fri, 4 Apr 2003 21:09:09 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35599nT013414; Fri, 4 Apr 2003 21:09:09 -0800 (PST) Message-Id: <200304050509.h35599nT013414@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 21:09:09 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/arla Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:09:10 -0000 kris 2003/04/04 21:09:09 PST FreeBSD ports repository Modified files: net/arla Makefile Log: Remove previous maintainer for inactivity Revision Changes Path 1.25 +1 -1 ports/net/arla/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:09:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CB3B37B401; Fri, 4 Apr 2003 21:09:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B97843F75; Fri, 4 Apr 2003 21:09:41 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3559f0U013450; Fri, 4 Apr 2003 21:09:41 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3559eE7013449; Fri, 4 Apr 2003 21:09:40 -0800 (PST) Message-Id: <200304050509.h3559eE7013449@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 21:09:40 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/mingw-bin-msvcrt pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:09:42 -0000 kris 2003/04/04 21:09:40 PST FreeBSD ports repository Modified files: devel/mingw-bin-msvcrt pkg-plist Log: Remove directory on deinstall Revision Changes Path 1.6 +1 -1 ports/devel/mingw-bin-msvcrt/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:10:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8548C37B401; Fri, 4 Apr 2003 21:10:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F00F43FAF; Fri, 4 Apr 2003 21:10:38 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355Ab0U013777; Fri, 4 Apr 2003 21:10:37 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355AbZ2013775; Fri, 4 Apr 2003 21:10:37 -0800 (PST) Message-Id: <200304050510.h355AbZ2013775@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 21:10:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/tac_plus4 Makefile ports/net/tac_plus4/files patch-md5.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:10:38 -0000 marcus 2003/04/04 21:10:37 PST FreeBSD ports repository Modified files: net/tac_plus4 Makefile Added files: net/tac_plus4/files patch-md5.h Log: Fix a problem with authentication not working on 64-bit platforms. Submitted by: Ivan Dolezal Revision Changes Path 1.25 +1 -1 ports/net/tac_plus4/Makefile 1.1 +11 -0 ports/net/tac_plus4/files/patch-md5.h (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:13:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28C6837B401; Fri, 4 Apr 2003 21:13:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCAED43F85; Fri, 4 Apr 2003 21:13:32 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355DW0U014032; Fri, 4 Apr 2003 21:13:32 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355DWhH014031; Fri, 4 Apr 2003 21:13:32 -0800 (PST) Message-Id: <200304050513.h355DWhH014031@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 21:13:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/firebird Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:13:33 -0000 kris 2003/04/04 21:13:32 PST FreeBSD ports repository Modified files: databases/firebird Makefile Log: Mark BROKEN: Installs files in /usr/interbase Revision Changes Path 1.17 +2 -0 ports/databases/firebird/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:14:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7552737B401; Fri, 4 Apr 2003 21:14:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 143E243FBF; Fri, 4 Apr 2003 21:14:25 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355EO0U014093; Fri, 4 Apr 2003 21:14:24 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355EO5U014092; Fri, 4 Apr 2003 21:14:24 -0800 (PST) Message-Id: <200304050514.h355EO5U014092@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 21:14:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/mipsel-linux-kernel-headers pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:14:25 -0000 kris 2003/04/04 21:14:24 PST FreeBSD ports repository Modified files: devel/mipsel-linux-kernel-headers pkg-plist Log: Remove directory on deinstall Revision Changes Path 1.4 +1 -0 ports/devel/mipsel-linux-kernel-headers/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:16:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F61137B401; Fri, 4 Apr 2003 21:16:37 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6D8043FA3; Fri, 4 Apr 2003 21:16:33 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h355GLgg041100 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 5 Apr 2003 08:16:22 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h355GHxw041091; Sat, 5 Apr 2003 08:16:17 +0300 (EEST) (envelope-from ru) Date: Sat, 5 Apr 2003 08:16:17 +0300 From: Ruslan Ermilov To: "M. Warner Losh" Message-ID: <20030405051617.GB38538@sunbay.com> References: <20030403184229.D18209@espresso.bsdmike.org> <20030404085200.GA1765@sunbay.com> <20030404.160823.91026001.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8w3uRX/HFJGApMzv" Content-Disposition: inline In-Reply-To: <20030404.160823.91026001.imp@bsdimp.com> User-Agent: Mutt/1.5.4i cc: obrien@FreeBSD.org cc: phk@FreeBSD.org cc: src-committers@FreeBSD.org cc: nate@root.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: mike@FreeBSD.org Subject: Re: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:16:37 -0000 --8w3uRX/HFJGApMzv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 04, 2003 at 04:08:23PM -0700, M. Warner Losh wrote: > In message: <20030404085200.GA1765@sunbay.com> > Ruslan Ermilov writes: > : +#define BSWAP64(x) (uint64_t) \ > : + (((x) >> 56) | (((x) >> 40) & 0xff00) | (((x) >> 24) & 0xff0000) | \ > : + (((x) >> 8) & 0xff000000) | (((x) << 8) & ((uint64_t)0xff << 32)) | \ > : + (((x) << 24) & ((uint64_t)0xff << 40)) | \ > : + (((x) << 40) & ((uint64_t)0xff << 48)) | (((x) << 56))) >=20 > 0xffull or 0xffULL might be better than the casts here. This does > assume that 0ull =3D=3D (uint64_t)0, which does hold for all our > architectures... >=20 Why make assumptions where uint64_t gives us precisely what we need? Note that these are evaluated at compile time, so it cannot affect the run-time performance. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --8w3uRX/HFJGApMzv Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jmahUkv4P6juNwoRAuJ3AJ9Rc8UbtMvJo6/88fmsuxWuC+Sj2ACfccgo Dlr3EVZdp3l5jgC6R2c9LXU= =vfBQ -----END PGP SIGNATURE----- --8w3uRX/HFJGApMzv-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:18:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 693E137B401; Fri, 4 Apr 2003 21:18:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0879743F85; Fri, 4 Apr 2003 21:18:24 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355IN0U014250; Fri, 4 Apr 2003 21:18:23 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355IN8C014249; Fri, 4 Apr 2003 21:18:23 -0800 (PST) Message-Id: <200304050518.h355IN8C014249@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 21:18:23 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/zziplib pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:18:24 -0000 kris 2003/04/04 21:18:23 PST FreeBSD ports repository Modified files: devel/zziplib pkg-plist Log: Correct typo in @unexec Revision Changes Path 1.4 +1 -1 ports/devel/zziplib/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:18:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C34EE37B40C; Fri, 4 Apr 2003 21:18:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DBB843F3F; Fri, 4 Apr 2003 21:18:27 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355IR0U014295; Fri, 4 Apr 2003 21:18:27 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355IR38014294; Fri, 4 Apr 2003 21:18:27 -0800 (PST) Message-Id: <200304050518.h355IR38014294@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 21:18:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fonts/fontconfig Makefileports/x11-toolkits/pango Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:18:29 -0000 marcus 2003/04/04 21:18:27 PST FreeBSD ports repository Modified files: x11-fonts/fontconfig Makefile x11-toolkits/pango Makefile Log: * Allow these ports to build in a read-only ${PORTSDIR} [1] * Remove USE_GNOMENG macro Requested by: Cory Bajus [1] Revision Changes Path 1.16 +1 -2 ports/x11-fonts/fontconfig/Makefile 1.46 +1 -1 ports/x11-toolkits/pango/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:30:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C46337B401; Fri, 4 Apr 2003 21:30:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D78543FAF; Fri, 4 Apr 2003 21:30:40 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355Ue0U015211; Fri, 4 Apr 2003 21:30:40 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355UdrU015209; Fri, 4 Apr 2003 21:30:39 -0800 (PST) Message-Id: <200304050530.h355UdrU015209@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 21:30:39 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/ebw3 pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:30:41 -0000 kris 2003/04/04 21:30:39 PST FreeBSD ports repository Modified files: japanese/ebw3 pkg-plist Log: Remove directory on deinstall Revision Changes Path 1.2 +1 -0 ports/japanese/ebw3/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:31:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2A8D37B401; Fri, 4 Apr 2003 21:31:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41F7E43F75; Fri, 4 Apr 2003 21:31:52 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355Vq0U015426; Fri, 4 Apr 2003 21:31:52 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355VpVi015425; Fri, 4 Apr 2003 21:31:51 -0800 (PST) Message-Id: <200304050531.h355VpVi015425@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 21:31:51 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/png pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:31:53 -0000 kris 2003/04/04 21:31:51 PST FreeBSD ports repository Modified files: graphics/png pkg-plist Log: Correct @unexec command Revision Changes Path 1.24 +1 -1 ports/graphics/png/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:32:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50C8337B401; Fri, 4 Apr 2003 21:32:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E446A43FAF; Fri, 4 Apr 2003 21:32:43 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355Wh0U015494; Fri, 4 Apr 2003 21:32:43 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355WhB1015493; Fri, 4 Apr 2003 21:32:43 -0800 (PST) Message-Id: <200304050532.h355WhB1015493@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 21:32:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/wnn7egg pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:32:44 -0000 kris 2003/04/04 21:32:43 PST FreeBSD ports repository Modified files: japanese/wnn7egg pkg-plist Log: Add missing file Revision Changes Path 1.2 +1 -0 ports/japanese/wnn7egg/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:33:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EC6B37B401; Fri, 4 Apr 2003 21:33:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 287A043F85; Fri, 4 Apr 2003 21:33:29 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355XS0U015555; Fri, 4 Apr 2003 21:33:28 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355XSRI015554; Fri, 4 Apr 2003 21:33:28 -0800 (PST) Message-Id: <200304050533.h355XSRI015554@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 21:33:28 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/rubrica Makefile distinfo ports/deskutils/rubrica/files patch-src_file.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:33:29 -0000 marcus 2003/04/04 21:33:28 PST FreeBSD ports repository Modified files: deskutils/rubrica Makefile distinfo Removed files: deskutils/rubrica/files patch-src_file.c Log: * Update to 1.0.0 * Use the new GNOME infrastructure PR: 49011 Submitted by: maintainer Revision Changes Path 1.2 +2 -6 ports/deskutils/rubrica/Makefile 1.2 +1 -1 ports/deskutils/rubrica/distinfo 1.2 +0 -18 ports/deskutils/rubrica/files/patch-src_file.c (dead) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:46:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2B3237B401; Fri, 4 Apr 2003 21:46:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61F9043FBF; Fri, 4 Apr 2003 21:46:44 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355ki0U016378; Fri, 4 Apr 2003 21:46:44 -0800 (PST) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355kiWS016377; Fri, 4 Apr 2003 21:46:44 -0800 (PST) Message-Id: <200304050546.h355kiWS016377@repoman.freebsd.org> From: Mike Makonnen Date: Fri, 4 Apr 2003 21:46:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdtime strptime.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:46:45 -0000 mtm 2003/04/04 21:46:44 PST FreeBSD src repository Modified files: lib/libc/stdtime strptime.c Log: Zero out the struct tm supplied by the caller. Otherwise, strange things might happen when garbage values in the struct get passed in to localtime_r() and family. Noticed by: marcus Approved by: markm (mentor)(implicit) Revision Changes Path 1.33 +1 -0 src/lib/libc/stdtime/strptime.c From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:52:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8799D37B401; Fri, 4 Apr 2003 21:52:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 260FF43FA3; Fri, 4 Apr 2003 21:52:37 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355qa0U016902; Fri, 4 Apr 2003 21:52:36 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355qarm016901; Fri, 4 Apr 2003 21:52:36 -0800 (PST) Message-Id: <200304050552.h355qarm016901@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 21:52:36 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/hebrew/hspell Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:52:37 -0000 edwin 2003/04/04 21:52:36 PST FreeBSD ports repository Modified files: hebrew/hspell Makefile Log: typo USE_PERL -> USE_PERL5 Noticed by: kento/bris :-) Revision Changes Path 1.2 +1 -1 ports/hebrew/hspell/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:56:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8A0737B401; Fri, 4 Apr 2003 21:56:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9054143F85; Fri, 4 Apr 2003 21:56:44 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355ui0U017126; Fri, 4 Apr 2003 21:56:44 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355ui5M017125; Fri, 4 Apr 2003 21:56:44 -0800 (PST) Message-Id: <200304050556.h355ui5M017125@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Fri, 4 Apr 2003 21:56:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/py-bittorrent Makefile distinfo pkg-descr pkg-plist ports/net/py-bittorrent/files extra-nogui-patch-setup.py X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:56:45 -0000 lioux 2003/04/04 21:56:44 PST FreeBSD ports repository Modified files: net Makefile Added files: net/py-bittorrent Makefile distinfo pkg-descr pkg-plist net/py-bittorrent/files extra-nogui-patch-setup.py Log: New port BitTorrent version 3.2.1b: A peer-to-peer tool for distributing files written in Python Revision Changes Path 1.953 +1 -0 ports/net/Makefile 1.1 +59 -0 ports/net/py-bittorrent/Makefile (new) 1.1 +1 -0 ports/net/py-bittorrent/distinfo (new) 1.1 +14 -0 ports/net/py-bittorrent/files/extra-nogui-patch-setup.py (new) 1.1 +11 -0 ports/net/py-bittorrent/pkg-descr (new) 1.1 +105 -0 ports/net/py-bittorrent/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:57:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F15237B401; Fri, 4 Apr 2003 21:57:04 -0800 (PST) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13D0243F3F; Fri, 4 Apr 2003 21:57:01 -0800 (PST) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h355tgTc013799; Sat, 5 Apr 2003 00:55:42 -0500 (EST) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Mike Makonnen In-Reply-To: <200304050546.h355kiWS016377@repoman.freebsd.org> References: <200304050546.h355kiWS016377@repoman.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-o5UHRCnQ8aRCIg3eni2J" Organization: MarcusCom, Inc. Message-Id: <1049522213.55676.14.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.4 Date: 05 Apr 2003 00:56:54 -0500 X-Spam-Status: No, hits=-38.6 required=5.0 tests=BAYES_00,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES autolearn=ham version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/stdtime strptime.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:57:04 -0000 --=-o5UHRCnQ8aRCIg3eni2J Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2003-04-05 at 00:46, Mike Makonnen wrote: > mtm 2003/04/04 21:46:44 PST >=20 > FreeBSD src repository >=20 > Modified files: > lib/libc/stdtime strptime.c=20 > Log: > Zero out the struct tm supplied by the caller. Otherwise, > strange things might happen when garbage values in the struct > get passed in to localtime_r() and family. Thanks! Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-o5UHRCnQ8aRCIg3eni2J Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+jnAlb2iPiv4Uz4cRAgPhAKCryHq0NczNaAeclPiukxyHuFesNgCeNjka m+/OCiwTnvaV/L/p/+hHKoE= =6vGc -----END PGP SIGNATURE----- --=-o5UHRCnQ8aRCIg3eni2J-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:57:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE9BE37B404; Fri, 4 Apr 2003 21:57:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E85443F3F; Fri, 4 Apr 2003 21:57:06 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355v60U017170; Fri, 4 Apr 2003 21:57:06 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355v6Rp017169; Fri, 4 Apr 2003 21:57:06 -0800 (PST) Message-Id: <200304050557.h355v6Rp017169@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Fri, 4 Apr 2003 21:57:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:57:07 -0000 lioux 2003/04/04 21:57:06 PST FreeBSD ports repository Modified files: . modules Log: py-bittorrent --> ports/net/py-bittorrent Revision Changes Path 1.6986 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 4 21:59:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDD6F37B401; Fri, 4 Apr 2003 21:59:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BC0243FBD; Fri, 4 Apr 2003 21:59:22 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h355xM0U017307; Fri, 4 Apr 2003 21:59:22 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h355xMd0017306; Fri, 4 Apr 2003 21:59:22 -0800 (PST) Message-Id: <200304050559.h355xMd0017306@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 21:59:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/totem Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 05:59:23 -0000 marcus 2003/04/04 21:59:22 PST FreeBSD ports repository Modified files: multimedia/totem Makefile Log: Chase libxine shared lib version. Reported by: Mike Harding Revision Changes Path 1.9 +2 -1 ports/multimedia/totem/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:12:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09ABB37B401; Fri, 4 Apr 2003 22:12:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D2A943FE1; Fri, 4 Apr 2003 22:12:02 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h356C20U019312; Fri, 4 Apr 2003 22:12:02 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h356C26O019311; Fri, 4 Apr 2003 22:12:02 -0800 (PST) Message-Id: <200304050612.h356C26O019311@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 22:12:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:12:03 -0000 marcus 2003/04/04 22:12:02 PST FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Move some of the USE_* compatability macros outside of the if defined(USE_GNOME) check as those macros will not exist if USE_GNOME is defined. Reported by: bento c/o kris Revision Changes Path 1.24 +9 -8 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:14:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3070F37B401; Fri, 4 Apr 2003 22:14:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C315443F3F; Fri, 4 Apr 2003 22:14:08 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h356E80U019448; Fri, 4 Apr 2003 22:14:08 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h356E8Hp019447; Fri, 4 Apr 2003 22:14:08 -0800 (PST) Message-Id: <200304050614.h356E8Hp019447@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 22:14:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/althea Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:14:09 -0000 marcus 2003/04/04 22:14:08 PST FreeBSD ports repository Modified files: mail/althea Makefile Log: Convert to new GNOME infrastructure. Revision Changes Path 1.12 +1 -1 ports/mail/althea/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:22:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49D6337B401; Fri, 4 Apr 2003 22:22:43 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57E1143F85; Fri, 4 Apr 2003 22:22:41 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id QAA25634; Sat, 5 Apr 2003 16:22:24 +1000 Date: Sat, 5 Apr 2003 16:22:23 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= In-Reply-To: Message-ID: <20030405160449.L37042@gamplex.bde.org> References: <200304041729.h34HTtVb027430@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s src/sys/powerpc/powerpc bcopy.c sr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:22:43 -0000 On Fri, 4 Apr 2003, Dag-Erling [iso-8859-1] Sm=F8rgrav wrote: > Kris Kennaway writes: > > On Fri, Apr 04, 2003 at 09:29:55AM -0800, Dag-Erling Smorgrav wrote: > > > Define ovbcopy() as a macro which expands to the equivalent bcopy()= call, > > > to take care of the KAME IPv6 code which needs ovbcopy() because Ne= tBSD's > > > bcopy() doesn't handle overlap like ours. > > Was this for optimization reasons, hysterical raisins, or some other re= ason? > > The existence of ovbcopy()? I imagine it was just an API issue, > someone didn't feel comfortable assuming that the kernel bcopy() > handles overlap when the userland version doesn't. In FreeBSD I think the problem is more the reverse. The userland bcopy() has handled overlap (and has been documented to do so) since at least FreeBSD-1.1. It's hard to see how the BSD bcopy() family could work if bcopy() didn't handle overlap, since this family has no other member corresponding to Standard C's memmove(). > however, ovbcopy() has always (for appropriate values of "always") > been an alias for or duplicate of bcopy(). On i386, ovbcopy() was an > alternate name for bcopy from its inception in revision 1.1 of > locore.s (originally from 386BSD) until revision 1.40 (late 1996) when > Bruce made it a trampoline (and bcopy() a function pointer) to allow > for multiple processor-specific versions. On powerpc, it was a I only made bzero a function pointer. bcopy() and ovbcopy() are still functions. They just use a trampoline internally. > separate function but an exact duplicate of bcopy() (which itself is a > wrapper for memcpy()). On all other platforms, it was an alternate > name for bcopy(). > > In NetBSD, the situation is a little confused, because most platforms > use a generic C implementation of bcopy() (in libkern) which handles > overlap, but some use optimized assembler versions which don't, and > these platforms have ovbcopy() - but the only part of the tree which > actually uses ovbcopy() is the IPv6 stack (KAME), and it has its own > version (a macro wrapper for memmove()) so in effect the real > ovbcopy() is never used. Urgh. This is a good example of the morass you can get into with micro-optimizations, especally when everyone/everyarch doesn't know about and/or want all of their details. And this is without even the complications for memcpy vs bcopy, compiler builtins for memcpy and C inlines for memcpy. > The current situation in FreeBSD (after my commits) is much like that > in NetBSD, except we have no real ovbcopy() at all, just a macro in > for KAME's benefit. The main problem with the commit is not mentioned in its log message: changing bzero from a function pointer back to a function breaks binary compatibility of many modules. In defence of this, 5.0 breaks binary compatibility of most modules for other reasons. Bruce From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:23:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 638F137B401; Fri, 4 Apr 2003 22:23:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0472443F93; Fri, 4 Apr 2003 22:23:25 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h356NO0U020076; Fri, 4 Apr 2003 22:23:24 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h356NOXx020075; Fri, 4 Apr 2003 22:23:24 -0800 (PST) Message-Id: <200304050623.h356NOXx020075@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 22:23:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/python21 pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:23:25 -0000 kris 2003/04/04 22:23:24 PST FreeBSD ports repository Modified files: lang/python21 pkg-plist Log: Add missing file Revision Changes Path 1.41 +1 -0 ports/lang/python21/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:24:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1E1D37B401; Fri, 4 Apr 2003 22:24:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D63043FE0; Fri, 4 Apr 2003 22:24:23 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h356ON0U020120; Fri, 4 Apr 2003 22:24:23 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h356ONRQ020119; Fri, 4 Apr 2003 22:24:23 -0800 (PST) Message-Id: <200304050624.h356ONRQ020119@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 22:24:23 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/mimedefang Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:24:24 -0000 edwin 2003/04/04 22:24:23 PST FreeBSD ports repository Modified files: mail/mimedefang Makefile distinfo Log: Update port: mail/mimedefang to 2.31 Update to 2.31 Added IPv6 support, Better performance and scalability on very busy mail servers, Support for Symantec CarrierScan Server and F-Risk FPROTD virus-scanners, Documentation fixes, etc... PR: ports/50102 Submitted by: Andrey V. Pevnev Revision Changes Path 1.18 +7 -5 ports/mail/mimedefang/Makefile 1.16 +1 -1 ports/mail/mimedefang/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:45:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B5BC37B401; Fri, 4 Apr 2003 22:45:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B048343FB1; Fri, 4 Apr 2003 22:45:42 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h356jg0U021650; Fri, 4 Apr 2003 22:45:42 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h356jg4K021649; Fri, 4 Apr 2003 22:45:42 -0800 (PST) Message-Id: <200304050645.h356jg4K021649@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 22:45:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/ftimes pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:45:44 -0000 kris 2003/04/04 22:45:42 PST FreeBSD ports repository Modified files: security/ftimes pkg-plist Log: Don't remove system directories Revision Changes Path 1.2 +0 -5 ports/security/ftimes/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:48:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82F3C37B401; Fri, 4 Apr 2003 22:48:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 225F643FAF; Fri, 4 Apr 2003 22:48:53 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h356mq0U021725; Fri, 4 Apr 2003 22:48:52 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h356mqM7021724; Fri, 4 Apr 2003 22:48:52 -0800 (PST) Message-Id: <200304050648.h356mqM7021724@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 22:48:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/man.el pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:48:53 -0000 kris 2003/04/04 22:48:52 PST FreeBSD ports repository Modified files: misc/man.el pkg-plist Log: Add missing directories Revision Changes Path 1.3 +4 -0 ports/misc/man.el/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:51:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 083C537B401; Fri, 4 Apr 2003 22:51:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C14C43F3F; Fri, 4 Apr 2003 22:51:04 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h356p40U022193; Fri, 4 Apr 2003 22:51:04 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h356p4DO022192; Fri, 4 Apr 2003 22:51:04 -0800 (PST) Message-Id: <200304050651.h356p4DO022192@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 22:51:04 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/ifhp pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:51:05 -0000 kris 2003/04/04 22:51:04 PST FreeBSD ports repository Modified files: print/ifhp pkg-plist Log: Add missing directory. This still handles the config file incorrectly. Revision Changes Path 1.5 +2 -1 ports/print/ifhp/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:54:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59AF337B401; Fri, 4 Apr 2003 22:54:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F049443F75; Fri, 4 Apr 2003 22:54:24 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h356sO0U022303; Fri, 4 Apr 2003 22:54:24 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h356sOIK022302; Fri, 4 Apr 2003 22:54:24 -0800 (PST) Message-Id: <200304050654.h356sOIK022302@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 22:54:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/p0f Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:54:25 -0000 kris 2003/04/04 22:54:24 PST FreeBSD ports repository Modified files: net/p0f Makefile Log: Fix installation directory Revision Changes Path 1.9 +1 -1 ports/net/p0f/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:54:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CCF037B404; Fri, 4 Apr 2003 22:54:36 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id B24B943FBF; Fri, 4 Apr 2003 22:54:35 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.8/8.12.3) with ESMTP id h356rHA7071003; Fri, 4 Apr 2003 23:53:17 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Fri, 04 Apr 2003 23:52:53 -0700 (MST) Message-Id: <20030404.235253.02300362.imp@bsdimp.com> To: bde@zeta.org.au From: "M. Warner Losh" In-Reply-To: <20030405160449.L37042@gamplex.bde.org> References: <20030404173635.GA22147@rot13.obsecurity.org> <20030405160449.L37042@gamplex.bde.org> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: kris@obsecurity.org cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org cc: des@ofug.org Subject: Re: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s src/sys/powerpc/powerpc bcopy.c sr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:54:37 -0000 In message: <20030405160449.L37042@gamplex.bde.org> Bruce Evans writes: : > The existence of ovbcopy()? I imagine it was just an API issue, : > someone didn't feel comfortable assuming that the kernel bcopy() : > handles overlap when the userland version doesn't. In FreeBSD : : I think the problem is more the reverse. The userland bcopy() has handled : overlap (and has been documented to do so) since at least FreeBSD-1.1. : It's hard to see how the BSD bcopy() family could work if bcopy() didn't : handle overlap, since this family has no other member corresponding to : Standard C's memmove(). Actually ovbcopy was introduced in some of the Sys V or Sys III ports when people found they could (or thought they could) write 'memcpy' faster than 'memmove' and it matter enough to go through their source code trees and hack the overlap cases to deal with ovbcopy. In BSD land bcopy has always ment what we spell these days as 'memmove'. In the middle 1980's there was a lot of ifdefs to deal with all this madness, and I think only IRIX and/or HP-UX were the only machines that changed the API of bcopy to mean 'memcpy' and had ovbopy for the overlapping cases, but I couldn't find anything in my ancient collection of unix books tonight to back up my vague memory. Warner From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:55:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFBCF37B401; Fri, 4 Apr 2003 22:55:35 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0F1943FA3; Fri, 4 Apr 2003 22:55:32 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id QAA28230; Sat, 5 Apr 2003 16:55:27 +1000 Date: Sat, 5 Apr 2003 16:55:26 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Nate Lawson In-Reply-To: Message-ID: <20030405164849.Y37179@gamplex.bde.org> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: David O'Brien cc: Ruslan Ermilov cc: Poul-Henning Kamp cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Mike Barcroft Subject: Re: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:55:36 -0000 On Fri, 4 Apr 2003, Nate Lawson wrote: > On Fri, 4 Apr 2003, Ruslan Ermilov wrote: > > +#define BSWAP16(x) (uint16_t) \ > > + (((x) >> 8) | ((x) << 8)) > > + > > +#define BSWAP32(x) (uint32_t) \ > > + (((x) >> 24) | (((x) >> 8) & 0xff00) | \ > > + (((x) << 8) & 0xff0000) | ((x) << 24)) > I don't mind the addition of the macros but I don't like the > implementation. Too many unnecessary casts and overly complicated. I fear it has not enough necessary casts :-). E.g., if x = (int16_t)0xfffe, then on 32-bit machines sign extension gives 0xffffffff for BSWAP16(x). Of course, BSWAP16()'s arg should be precisely uint16_t, but the function interfaces don't require it to have the correct type except possibly on non-2's complement machines where coercing the arg's type may cause surprising changes to the arg's value. Bruce From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:55:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFFCF37B401; Fri, 4 Apr 2003 22:55:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7049143FB1; Fri, 4 Apr 2003 22:55:55 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h356tt0U022408; Fri, 4 Apr 2003 22:55:55 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h356ttWD022406; Fri, 4 Apr 2003 22:55:55 -0800 (PST) Message-Id: <200304050655.h356ttWD022406@repoman.freebsd.org> From: Dirk Meyer Date: Fri, 4 Apr 2003 22:55:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/apache13-ssl Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:55:56 -0000 dinoex 2003/04/04 22:55:55 PST FreeBSD ports repository Modified files: www/apache13-ssl Makefile Log: - caption in MAINTAINER Revision Changes Path 1.90 +1 -1 ports/www/apache13-ssl/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 22:57:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC27237B401; Fri, 4 Apr 2003 22:57:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B93A43FDD; Fri, 4 Apr 2003 22:57:35 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h356vZ0U022473; Fri, 4 Apr 2003 22:57:35 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h356vZkL022472; Fri, 4 Apr 2003 22:57:35 -0800 (PST) Message-Id: <200304050657.h356vZkL022472@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 22:57:35 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/silc-doc pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 06:57:36 -0000 kris 2003/04/04 22:57:35 PST FreeBSD ports repository Modified files: net/silc-doc pkg-plist Log: Fix @unexec Revision Changes Path 1.4 +1 -1 ports/net/silc-doc/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:08:21 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1AD437B401; Fri, 4 Apr 2003 23:08:21 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E10243FB1; Fri, 4 Apr 2003 23:08:19 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id RAA29197; Sat, 5 Apr 2003 17:08:12 +1000 Date: Sat, 5 Apr 2003 17:08:11 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: "M. Warner Losh" In-Reply-To: <20030404.160823.91026001.imp@bsdimp.com> Message-ID: <20030405165535.X37179@gamplex.bde.org> References: <20030404085200.GA1765@sunbay.com> <20030404.160823.91026001.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: ru@FreeBSD.org cc: phk@FreeBSD.org cc: nate@root.org cc: obrien@FreeBSD.org cc: cvs-all@FreeBSD.org cc: mike@FreeBSD.org Subject: Re: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:08:22 -0000 On Fri, 4 Apr 2003, M. Warner Losh wrote: > In message: <20030404085200.GA1765@sunbay.com> > Ruslan Ermilov writes: > : +#define BSWAP64(x) (uint64_t) \ > : + (((x) >> 56) | (((x) >> 40) & 0xff00) | (((x) >> 24) & 0xff0000) | \ > : + (((x) >> 8) & 0xff000000) | (((x) << 8) & ((uint64_t)0xff << 32)) | \ > : + (((x) << 24) & ((uint64_t)0xff << 40)) | \ > : + (((x) << 40) & ((uint64_t)0xff << 48)) | (((x) << 56))) > > 0xffull or 0xffULL might be better than the casts here. This does > assume that 0ull == (uint64_t)0, which does hold for all our > architectures... It would be worse because it breaks compilation by C compilers (C90), but not because it assumes that 0ull == (uint64_t)0. Unsigned long long has at least 64 bits in C99, and nothing more or less is needed for the casts of the literal constants. Casting of all of the instances of (x) that aren't masked later, and of the result, is needed if x can have any type other than uint64_t. E.g., if x is uint128_t and all of its bits are 1's then, (x) >> 56 is too large; if x is int64_t and negative and has any value other than -1, then (x) >> 56 leaves too many bits set. Bruce From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:14:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2304C37B401; Fri, 4 Apr 2003 23:14:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFEF743FAF; Fri, 4 Apr 2003 23:14:03 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357E30U024635; Fri, 4 Apr 2003 23:14:03 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357E3bY024632; Fri, 4 Apr 2003 23:14:03 -0800 (PST) Message-Id: <200304050714.h357E3bY024632@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 23:14:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/xrmap Makefile distinfo pkg-plist ports/misc/xrmap/files patch-Imakefile patch-editkit-Imakfile pkg-message.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:14:04 -0000 edwin 2003/04/04 23:14:03 PST FreeBSD ports repository Modified files: misc/xrmap Makefile distinfo pkg-plist misc/xrmap/files patch-Imakefile Added files: misc/xrmap/files patch-editkit-Imakfile Removed files: misc/xrmap/files pkg-message.in Log: Update ports misc/xrmap to 2.26 - Now fetch and install automatically the data file needed by xrmap and a lot of goodies. - A lot of improvement since 2.10 - A lot of bug fix since 2.10 PR: ports/50492 Submitted by: Serge Gagnon Revision Changes Path 1.7 +33 -13 ports/misc/xrmap/Makefile 1.3 +8 -1 ports/misc/xrmap/distinfo 1.3 +51 -25 ports/misc/xrmap/files/patch-Imakefile 1.1 +26 -0 ports/misc/xrmap/files/patch-editkit-Imakfile (new) 1.3 +0 -6 ports/misc/xrmap/files/pkg-message.in (dead) 1.3 +1626 -255 ports/misc/xrmap/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:16:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 105CE37B401; Fri, 4 Apr 2003 23:16:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D15843F3F; Fri, 4 Apr 2003 23:16:18 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357GI0U024767; Fri, 4 Apr 2003 23:16:18 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357GILh024766; Fri, 4 Apr 2003 23:16:18 -0800 (PST) Message-Id: <200304050716.h357GILh024766@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 23:16:18 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/gtksql Makefileports/databases/gtksql/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:16:19 -0000 edwin 2003/04/04 23:16:18 PST FreeBSD ports repository Modified files: databases/gtksql Makefile databases/gtksql/files patch-aa Log: gtksql fixes: PERL/REINPLACE, postgres, LOCALBASE 1. the port now uses REINPLACE_CMD instead of perl 2. the MySQL and Postgres dependencies are now LOCALBASE-clean 3. PGSQLCFLAGS is updated to track changes in the Postgres tree PR: ports/50502 Submitted by: Dominik Brettnacher Revision Changes Path 1.17 +3 -2 ports/databases/gtksql/Makefile 1.5 +4 -4 ports/databases/gtksql/files/patch-aa From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:21:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41A1937B404; Fri, 4 Apr 2003 23:21:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3C3F43FB1; Fri, 4 Apr 2003 23:21:07 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357L70U025265; Fri, 4 Apr 2003 23:21:07 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357L7KZ025264; Fri, 4 Apr 2003 23:21:07 -0800 (PST) Message-Id: <200304050721.h357L7KZ025264@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 23:21:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fm/twander Makefile distinfo pkg-plist ports/x11-fm/twander/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:21:08 -0000 edwin 2003/04/04 23:21:07 PST FreeBSD ports repository Modified files: x11-fm/twander Makefile distinfo pkg-plist Removed files: x11-fm/twander/files patch-Makefile Log: PORT UPDATE: x11-fm/twander This updates the port to the latest version. Port has also been cleaned up so it passes portlint and now uses the BSD_INSTALL_* macros. PR: ports/49950 Submitted by: Tim Daneliuk Revision Changes Path 1.2 +4 -3 ports/x11-fm/twander/Makefile 1.2 +1 -1 ports/x11-fm/twander/distinfo 1.2 +0 -13 ports/x11-fm/twander/files/patch-Makefile (dead) 1.2 +6 -0 ports/x11-fm/twander/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:22:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DA5E37B401; Fri, 4 Apr 2003 23:22:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C217843F3F; Fri, 4 Apr 2003 23:22:07 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357M70U025318; Fri, 4 Apr 2003 23:22:07 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357M7RG025317; Fri, 4 Apr 2003 23:22:07 -0800 (PST) Message-Id: <200304050722.h357M7RG025317@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 23:22:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/coda5_doc Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:22:08 -0000 kris 2003/04/04 23:22:07 PST FreeBSD ports repository Modified files: net/coda5_doc Makefile Log: Don't change the ownership of the man directories Submitted by: tjr Revision Changes Path 1.9 +1 -0 ports/net/coda5_doc/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:23:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B5DA37B401; Fri, 4 Apr 2003 23:23:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EFE143FAF; Fri, 4 Apr 2003 23:23:46 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357Nk0U025382; Fri, 4 Apr 2003 23:23:46 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357NkCr025381; Fri, 4 Apr 2003 23:23:46 -0800 (PST) Message-Id: <200304050723.h357NkCr025381@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 23:23:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/flashplugin pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:23:48 -0000 kris 2003/04/04 23:23:46 PST FreeBSD ports repository Modified files: www/flashplugin pkg-plist Log: Don't remove lib/ Revision Changes Path 1.3 +2 -1 ports/www/flashplugin/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:25:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C3F037B401; Fri, 4 Apr 2003 23:25:28 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A4FD43FA3; Fri, 4 Apr 2003 23:25:26 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id RAA30319; Sat, 5 Apr 2003 17:25:24 +1000 Date: Sat, 5 Apr 2003 17:25:23 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Tor Egge In-Reply-To: <200304042354.h34NslFp075997@repoman.freebsd.org> Message-ID: <20030405171037.Y37234@gamplex.bde.org> References: <200304042354.h34NslFp075997@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 tsc.c src/sys/i386/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:25:29 -0000 On Fri, 4 Apr 2003, Tor Egge wrote: > tegge 2003/04/04 15:54:47 PST > > FreeBSD src repository > > Modified files: > sys/conf options.i386 > sys/i386/i386 tsc.c > sys/i386/conf NOTES > Log: > Add SMP_TSC option, which can be used on SMP systems where the TSCs > are synchronized to reduce context switch cost. This should be implemented by making the TSC timecounter available on all systems that have a TSC, but not actually using it for the SMP case unless it is enabled using sysctl "machdep.timecounter.hardware=TSC". Bruce From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:25:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 980CC37B401; Fri, 4 Apr 2003 23:25:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 371AD43FD7; Fri, 4 Apr 2003 23:25:42 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357Pg0U025492; Fri, 4 Apr 2003 23:25:42 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357PfOK025491; Fri, 4 Apr 2003 23:25:41 -0800 (PST) Message-Id: <200304050725.h357PfOK025491@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 23:25:41 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/mguesser pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:25:43 -0000 kris 2003/04/04 23:25:41 PST FreeBSD ports repository Modified files: textproc/mguesser pkg-plist Log: Fix pkg-plist Revision Changes Path 1.2 +2 -0 ports/textproc/mguesser/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:28:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 148DA37B404; Fri, 4 Apr 2003 23:28:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33AD643FDF; Fri, 4 Apr 2003 23:28:17 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357SH0U025582; Fri, 4 Apr 2003 23:28:17 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357SGmM025581; Fri, 4 Apr 2003 23:28:16 -0800 (PST) Message-Id: <200304050728.h357SGmM025581@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 23:28:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/russian/messarge pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:28:18 -0000 kris 2003/04/04 23:28:16 PST FreeBSD ports repository Modified files: russian/messarge pkg-plist Log: Remove manpage directories on deinstall Revision Changes Path 1.3 +2 -0 ports/russian/messarge/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:28:32 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B44B37B401; Fri, 4 Apr 2003 23:28:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C25B43FA3; Fri, 4 Apr 2003 23:28:32 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357SV0U025640; Fri, 4 Apr 2003 23:28:31 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357SViq025639; Fri, 4 Apr 2003 23:28:31 -0800 (PST) Message-Id: <200304050728.h357SViq025639@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 23:28:31 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/racoon pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:28:32 -0000 kris 2003/04/04 23:28:31 PST FreeBSD ports repository Modified files: security/racoon pkg-plist Log: Add missing file Revision Changes Path 1.4 +1 -0 ports/security/racoon/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:30:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 588CD37B401; Fri, 4 Apr 2003 23:30:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E51F043FBD; Fri, 4 Apr 2003 23:29:59 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357Tx0U025692; Fri, 4 Apr 2003 23:29:59 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357TxR4025691; Fri, 4 Apr 2003 23:29:59 -0800 (PST) Message-Id: <200304050729.h357TxR4025691@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 23:29:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/ssserver pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:30:00 -0000 kris 2003/04/04 23:29:59 PST FreeBSD ports repository Modified files: www/ssserver pkg-plist Log: Remove www and www/cgi-bin if possible Revision Changes Path 1.2 +2 -0 ports/www/ssserver/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:33:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1796637B401; Fri, 4 Apr 2003 23:33:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB84043FAF; Fri, 4 Apr 2003 23:33:42 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357Xg0U026148; Fri, 4 Apr 2003 23:33:42 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357Xge7026147; Fri, 4 Apr 2003 23:33:42 -0800 (PST) Message-Id: <200304050733.h357Xge7026147@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 23:33:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/webjob pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:33:43 -0000 kris 2003/04/04 23:33:42 PST FreeBSD ports repository Modified files: sysutils/webjob pkg-plist Log: Don't remove system directories Revision Changes Path 1.2 +0 -6 ports/sysutils/webjob/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:33:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACD8437B40D; Fri, 4 Apr 2003 23:33:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C7FA43F85; Fri, 4 Apr 2003 23:33:47 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357Xl0U026175; Fri, 4 Apr 2003 23:33:47 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357XlD1026174; Fri, 4 Apr 2003 23:33:47 -0800 (PST) Message-Id: <200304050733.h357XlD1026174@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 4 Apr 2003 23:33:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdlib Makefile.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:33:48 -0000 tjr 2003/04/04 23:33:46 PST FreeBSD src repository Modified files: lib/libc/stdlib Makefile.inc Log: MFp4: Link strtof.3 and strtold.3 to strtod.3. Revision Changes Path 1.45 +1 -0 src/lib/libc/stdlib/Makefile.inc From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:34:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CD3637B405; Fri, 4 Apr 2003 23:34:56 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CA2243F93; Fri, 4 Apr 2003 23:34:52 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h357Yagg052927 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 5 Apr 2003 10:34:36 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h357YaIN052922; Sat, 5 Apr 2003 10:34:36 +0300 (EEST) (envelope-from ru) Date: Sat, 5 Apr 2003 10:34:36 +0300 From: Ruslan Ermilov To: Bruce Evans Message-ID: <20030405073436.GC52420@sunbay.com> References: <20030405164849.Y37179@gamplex.bde.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mSxgbZZZvrAyzONB" Content-Disposition: inline In-Reply-To: <20030405164849.Y37179@gamplex.bde.org> User-Agent: Mutt/1.5.4i cc: David O'Brien cc: Poul-Henning Kamp cc: src-committers@FreeBSD.org cc: Nate Lawson cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Mike Barcroft Subject: Re: cvs commit: src/sys/sys endian.h src/share/man/man9 byteorder.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:34:56 -0000 --mSxgbZZZvrAyzONB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 05, 2003 at 04:55:26PM +1000, Bruce Evans wrote: > On Fri, 4 Apr 2003, Nate Lawson wrote: >=20 > > On Fri, 4 Apr 2003, Ruslan Ermilov wrote: > > > +#define BSWAP16(x) (uint16_t) \ > > > + (((x) >> 8) | ((x) << 8)) > > > + > > > +#define BSWAP32(x) (uint32_t) \ > > > + (((x) >> 24) | (((x) >> 8) & 0xff00) | \ > > > + (((x) << 8) & 0xff0000) | ((x) << 24)) >=20 > > I don't mind the addition of the macros but I don't like the > > implementation. Too many unnecessary casts and overly complicated. >=20 > I fear it has not enough necessary casts :-). E.g., if x =3D (int16_t)0x= fffe, > then on 32-bit machines sign extension gives 0xffffffff for BSWAP16(x). > Of course, BSWAP16()'s arg should be precisely uint16_t, Yes, this is assumed. > but the function > interfaces don't require it to have the correct type except possibly on > non-2's complement machines where coercing the arg's type may cause > surprising changes to the arg's value. >=20 > Bruce --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --mSxgbZZZvrAyzONB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jocMUkv4P6juNwoRAmLDAJ9Wn1LqW0kYum80wCldYR575K+wugCcD5ie kUsECNItgm69ahsmwinsS9g= =znhp -----END PGP SIGNATURE----- --mSxgbZZZvrAyzONB-- From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:36:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BDF937B401; Fri, 4 Apr 2003 23:36:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF46443FBD; Fri, 4 Apr 2003 23:36:57 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357av0U026359; Fri, 4 Apr 2003 23:36:57 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357avln026358; Fri, 4 Apr 2003 23:36:57 -0800 (PST) Message-Id: <200304050736.h357avln026358@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 23:36:57 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/thttpd Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:36:58 -0000 kris 2003/04/04 23:36:57 PST FreeBSD ports repository Modified files: www/thttpd Makefile pkg-plist Log: Don't create a thttpd.sh.bak Don't emit errors if directories under www/ cannot be removed Revision Changes Path 1.32 +1 -1 ports/www/thttpd/Makefile 1.6 +4 -4 ports/www/thttpd/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:41:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD85337B401; Fri, 4 Apr 2003 23:41:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D85843FB1; Fri, 4 Apr 2003 23:41:52 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357fq0U026825; Fri, 4 Apr 2003 23:41:52 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357fqxi026824; Fri, 4 Apr 2003 23:41:52 -0800 (PST) Message-Id: <200304050741.h357fqxi026824@repoman.freebsd.org> From: Warner Losh Date: Fri, 4 Apr 2003 23:41:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 wi.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:41:53 -0000 imp 2003/04/04 23:41:52 PST FreeBSD src repository Modified files: share/man/man4 wi.4 Log: DWL-520 is used to describe three or four different cards. only some of them are prism based and are thus supported by wi. Document this fact. Revision Changes Path 1.40 +7 -0 src/share/man/man4/wi.4 From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:42:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0E0937B401; Fri, 4 Apr 2003 23:42:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 416F543FDD; Fri, 4 Apr 2003 23:42:12 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357gC0U026867; Fri, 4 Apr 2003 23:42:12 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357gBta026866; Fri, 4 Apr 2003 23:42:11 -0800 (PST) Message-Id: <200304050742.h357gBta026866@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 4 Apr 2003 23:42:11 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:42:13 -0000 marcus 2003/04/04 23:42:11 PST FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Fix some spelling and grammar nits. Revision Changes Path 1.25 +4 -4 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:43:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17FAC37B401; Fri, 4 Apr 2003 23:43:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA4E643FCB; Fri, 4 Apr 2003 23:43:02 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357h20U026925; Fri, 4 Apr 2003 23:43:02 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357h2K9026921; Fri, 4 Apr 2003 23:43:02 -0800 (PST) Message-Id: <200304050743.h357h2K9026921@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 4 Apr 2003 23:43:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/perforce Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:43:03 -0000 edwin 2003/04/04 23:43:02 PST FreeBSD ports repository Modified files: devel/perforce Makefile distinfo Log: update perforce binaries Perforce has released new versions of the i386 binaries. Revision Changes Path 1.18 +1 -1 ports/devel/perforce/Makefile 1.13 +4 -4 ports/devel/perforce/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 4 23:51:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DA3637B401; Fri, 4 Apr 2003 23:51:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A15F543FBF; Fri, 4 Apr 2003 23:51:44 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h357pi0U027576; Fri, 4 Apr 2003 23:51:44 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h357pi7J027575; Fri, 4 Apr 2003 23:51:44 -0800 (PST) Message-Id: <200304050751.h357pi7J027575@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 4 Apr 2003 23:51:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/smssend pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 07:51:45 -0000 kris 2003/04/04 23:51:44 PST FreeBSD ports repository Modified files: misc/smssend pkg-plist Log: Fix @unexec rmdirs Revision Changes Path 1.6 +2 -2 ports/misc/smssend/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 00:05:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CE7137B401; Sat, 5 Apr 2003 00:05:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DEEC43F93; Sat, 5 Apr 2003 00:05:56 -0800 (PST) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3585u0U029327; Sat, 5 Apr 2003 00:05:56 -0800 (PST) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3585tvT029326; Sat, 5 Apr 2003 00:05:55 -0800 (PST) Message-Id: <200304050805.h3585tvT029326@repoman.freebsd.org> From: Murray Stokely Date: Sat, 5 Apr 2003 00:05:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/sys param.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 08:05:57 -0000 murray 2003/04/05 00:05:55 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/sys param.h Log: Bump for 4.8-STABLE. Revision Changes Path 1.61.2.37 +1 -1 src/sys/sys/param.h From owner-cvs-all@FreeBSD.ORG Sat Apr 5 00:08:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8170937B401; Sat, 5 Apr 2003 00:08:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2054843F75; Sat, 5 Apr 2003 00:08:09 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h358880U029418; Sat, 5 Apr 2003 00:08:08 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h358881X029417; Sat, 5 Apr 2003 00:08:08 -0800 (PST) Message-Id: <200304050808.h358881X029417@repoman.freebsd.org> From: Dirk Meyer Date: Sat, 5 Apr 2003 00:08:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/german/unix-connect Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 08:08:10 -0000 dinoex 2003/04/05 00:08:08 PST FreeBSD ports repository Modified files: german/unix-connect Makefile pkg-plist Log: - fix PLIST Revision Changes Path 1.12 +1 -1 ports/german/unix-connect/Makefile 1.2 +26 -0 ports/german/unix-connect/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 00:10:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32DF337B401; Sat, 5 Apr 2003 00:10:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2D3C43F75; Sat, 5 Apr 2003 00:10:44 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h358Ai0U029714; Sat, 5 Apr 2003 00:10:44 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h358AiYQ029711; Sat, 5 Apr 2003 00:10:44 -0800 (PST) Message-Id: <200304050810.h358AiYQ029711@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 00:10:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/science/openbabel Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 08:10:45 -0000 edwin 2003/04/05 00:10:44 PST FreeBSD ports repository Modified files: science/openbabel Makefile pkg-plist Log: science/openbabel and biology/babel binary names conflict renamed the binaries and manpages of science/openbabel to openbabel instead of babel. PR: ports/47109 Submitted by: Glenn Johnson Revision Changes Path 1.3 +1 -1 ports/science/openbabel/Makefile 1.2 +1 -1 ports/science/openbabel/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 00:11:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A60B37B401; Sat, 5 Apr 2003 00:11:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAEC243FAF; Sat, 5 Apr 2003 00:11:47 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h358Bl0U029958; Sat, 5 Apr 2003 00:11:47 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h358Bl6V029957; Sat, 5 Apr 2003 00:11:47 -0800 (PST) Message-Id: <200304050811.h358Bl6V029957@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 00:11:47 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/science/openbabel/files patch-Makefile.in patch-src::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 08:11:48 -0000 edwin 2003/04/05 00:11:47 PST FreeBSD ports repository Added files: science/openbabel/files patch-Makefile.in patch-src::Makefile.in Log: forgot to add the patches. Revision Changes Path 1.1 +11 -0 ports/science/openbabel/files/patch-Makefile.in (new) 1.1 +11 -0 ports/science/openbabel/files/patch-src::Makefile.in (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 00:12:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96D2437B401; Sat, 5 Apr 2003 00:12:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37F1D43F3F; Sat, 5 Apr 2003 00:12:58 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h358Cw0U030001; Sat, 5 Apr 2003 00:12:58 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h358Cvqq030000; Sat, 5 Apr 2003 00:12:57 -0800 (PST) Message-Id: <200304050812.h358Cvqq030000@repoman.freebsd.org> From: Dirk Meyer Date: Sat, 5 Apr 2003 00:12:57 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/freebsd-uucp pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 08:12:59 -0000 dinoex 2003/04/05 00:12:57 PST FreeBSD ports repository Modified files: net/freebsd-uucp pkg-plist Log: - add empty directories Revision Changes Path 1.8 +3 -1 ports/net/freebsd-uucp/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 00:19:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF96537B401; Sat, 5 Apr 2003 00:19:52 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id C49DB43FB1; Sat, 5 Apr 2003 00:19:51 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.9/8.12.9) with ESMTP id h358JgLd017523; Sat, 5 Apr 2003 10:19:48 +0200 (CEST) (envelope-from phk@phk.freebsd.dk) To: Bruce Evans From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sat, 05 Apr 2003 17:25:23 +1000." <20030405171037.Y37234@gamplex.bde.org> Date: Sat, 05 Apr 2003 10:19:42 +0200 Message-ID: <17522.1049530782@critter.freebsd.dk> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Tor Egge cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 tsc.c src/sys/i386/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 08:19:53 -0000 In message <20030405171037.Y37234@gamplex.bde.org>, Bruce Evans writes: >On Fri, 4 Apr 2003, Tor Egge wrote: > >> tegge 2003/04/04 15:54:47 PST >> >> FreeBSD src repository >> >> Modified files: >> sys/conf options.i386 >> sys/i386/i386 tsc.c >> sys/i386/conf NOTES >> Log: >> Add SMP_TSC option, which can be used on SMP systems where the TSCs >> are synchronized to reduce context switch cost. > >This should be implemented by making the TSC timecounter available on >all systems that have a TSC, but not actually using it for the SMP case >unless it is enabled using sysctl "machdep.timecounter.hardware=TSC". That would make more sense, yes. -- 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. From owner-cvs-all@FreeBSD.ORG Sat Apr 5 00:20:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B4AD37B401; Sat, 5 Apr 2003 00:20:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CB9943F3F; Sat, 5 Apr 2003 00:20:27 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h358KR0U030367; Sat, 5 Apr 2003 00:20:27 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h358KRrU030366; Sat, 5 Apr 2003 00:20:27 -0800 (PST) Message-Id: <200304050820.h358KRrU030366@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 00:20:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/netams Makefile distinfo pkg-descr pkg-message pkg-plist ports/net/netams/files netams.sh ports/net/netams/scripts configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 08:20:28 -0000 edwin 2003/04/05 00:20:27 PST FreeBSD ports repository Modified files: net Makefile Added files: net/netams Makefile distinfo pkg-descr pkg-message pkg-plist net/netams/files netams.sh patch-Makefile patch-addon::netams-startup.sh net/netams/scripts configure Log: NeTAMS - Network Traffic Accounting and Monitoring Software NeTAMS is a Network Traffic Accounting and Monitoring Software. It runs as a daemon under FreeBSD and Linux operating systems. Collects an IP traffic information flowing via your PC/UNIX or Cisco router, filters it, aggregates, stores onto HASH/SQL database, and makes SMTP/HTML reports to site administrator. Anoter features are flexible policy targets, firewalling, access control, quotas, scheduler and much much more. PR: ports/46777 Submitted by: Yuriy N. Shkandybin Revision Changes Path 1.954 +1 -0 ports/net/Makefile 1.1 +72 -0 ports/net/netams/Makefile (new) 1.1 +1 -0 ports/net/netams/distinfo (new) 1.1 +26 -0 ports/net/netams/files/netams.sh (new) 1.1 +20 -0 ports/net/netams/files/patch-Makefile (new) 1.1 +22 -0 ports/net/netams/files/patch-addon::netams-startup.sh (new) 1.1 +9 -0 ports/net/netams/pkg-descr (new) 1.1 +15 -0 ports/net/netams/pkg-message (new) 1.1 +27 -0 ports/net/netams/pkg-plist (new) 1.1 +26 -0 ports/net/netams/scripts/configure (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 00:21:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F65D37B401; Sat, 5 Apr 2003 00:21:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C813043F85; Sat, 5 Apr 2003 00:21:02 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h358L20U030630; Sat, 5 Apr 2003 00:21:02 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h358L2bC030628; Sat, 5 Apr 2003 00:21:02 -0800 (PST) Message-Id: <200304050821.h358L2bC030628@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 00:21:02 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 08:21:03 -0000 edwin 2003/04/05 00:21:02 PST FreeBSD ports repository Modified files: . modules Log: netams --> ports/net/netams Revision Changes Path 1.6987 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 00:28:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFE2737B401; Sat, 5 Apr 2003 00:28:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51AC443FBD; Sat, 5 Apr 2003 00:28:22 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h358SM0U030985; Sat, 5 Apr 2003 00:28:22 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h358SMt1030984; Sat, 5 Apr 2003 00:28:22 -0800 (PST) Message-Id: <200304050828.h358SMt1030984@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 00:28:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/rlwrap pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 08:28:23 -0000 kris 2003/04/05 00:28:21 PST FreeBSD ports repository Modified files: devel/rlwrap pkg-plist Log: Fix pkg-plist Revision Changes Path 1.2 +3 -0 ports/devel/rlwrap/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 00:28:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FA4337B411; Sat, 5 Apr 2003 00:28:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2467243F3F; Sat, 5 Apr 2003 00:28:25 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h358SO0U031012; Sat, 5 Apr 2003 00:28:24 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h358SOPE031011; Sat, 5 Apr 2003 00:28:24 -0800 (PST) Message-Id: <200304050828.h358SOPE031011@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 5 Apr 2003 00:28:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/lib/libc/locale ansi.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 08:28:28 -0000 tjr 2003/04/05 00:28:24 PST FreeBSD src repository Modified files: (Branch: RELENG_4) lib/libc/locale ansi.c Log: MFC wcstombs.c 1.1-1.5, mbstowcs.c 1.1-1.6: Implement the XSI extension that allows the destination string to be NULL, and returns the number of bytes (wcstombs) or wide characters (mbstowcs) that would be required to store the result of the conversion without storing anything. PR: 17694 Revision Changes Path 1.3.6.1 +59 -12 src/lib/libc/locale/ansi.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 01:08:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38E6037B401; Sat, 5 Apr 2003 01:08:37 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id A65D843FCB; Sat, 5 Apr 2003 01:08:33 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h3598Tgg061484 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 5 Apr 2003 12:08:30 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h3598TUD061483; Sat, 5 Apr 2003 12:08:29 +0300 (EEST) (envelope-from ru) Date: Sat, 5 Apr 2003 12:08:28 +0300 From: Ruslan Ermilov To: Brian Somers Message-ID: <20030405090828.GC55982@sunbay.com> References: <200303260203.h2Q239Zi034377@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="VMt1DrMGOVs3KQwf" Content-Disposition: inline In-Reply-To: <200303260203.h2Q239Zi034377@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Sergey Starosek cc: cvs-all@FreeBSD.org cc: Andrey Meklenko Subject: Re: cvs commit: src/usr.sbin/ppp bundle.h command.c datalink.c ppp.8.m4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 09:08:37 -0000 --VMt1DrMGOVs3KQwf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Mar 25, 2003 at 06:03:09PM -0800, Brian Somers wrote: > brian 2003/03/25 18:03:09 PST >=20 > FreeBSD src repository >=20 > Modified files: > usr.sbin/ppp bundle.h command.c datalink.c ppp.8.m4=20 > Log: > Add a ``force-scripts'' option for using chat scripts with -direct and > -dedicated links. > =20 > Submitted by: Maksim Yevmenkin > =20 > Revision Changes Path > 1.49 +15 -14 src/usr.sbin/ppp/bundle.h > 1.294 +5 -2 src/usr.sbin/ppp/command.c > 1.75 +2 -1 src/usr.sbin/ppp/datalink.c > 1.302 +18 -3 src/usr.sbin/ppp/ppp.8.m4 >=20 Oh cool! I needed it for CLIENT/CLIENTSERVER handshake with W2K's direct-wired connection just recently. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --VMt1DrMGOVs3KQwf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jp0MUkv4P6juNwoRAhcXAJ4++FENgobnAajAIO4Zd3j79NdpAACeOThQ 8Wd3Yk3n52LKFrmlEtV8HS4= =IHlj -----END PGP SIGNATURE----- --VMt1DrMGOVs3KQwf-- From owner-cvs-all@FreeBSD.ORG Sat Apr 5 01:09:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A0CA37B401; Sat, 5 Apr 2003 01:09:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BED1D43FB1; Sat, 5 Apr 2003 01:09:16 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3599G0U039708; Sat, 5 Apr 2003 01:09:16 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3599GHB039707; Sat, 5 Apr 2003 01:09:16 -0800 (PST) Message-Id: <200304050909.h3599GHB039707@repoman.freebsd.org> From: Dirk Meyer Date: Sat, 5 Apr 2003 01:09:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/galeon Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 09:09:17 -0000 dinoex 2003/04/05 01:09:16 PST FreeBSD ports repository Modified files: www/galeon Makefile Log: allow build with more warnings enabled, NO_WERROR=yes Approved by: marcus Revision Changes Path 1.97 +4 -0 ports/www/galeon/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 01:13:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB1D337B401; Sat, 5 Apr 2003 01:13:05 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 194B043FBD; Sat, 5 Apr 2003 01:13:02 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h359Cwgg062011 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 5 Apr 2003 12:12:58 +0300 (EEST) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h359Cw7n062006; Sat, 5 Apr 2003 12:12:58 +0300 (EEST) (envelope-from ru) Date: Sat, 5 Apr 2003 12:12:58 +0300 From: Ruslan Ermilov To: Mario Sergio Fujikawa Ferreira Message-ID: <20030405091258.GD55982@sunbay.com> References: <200303261709.h2QH9330027551@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="k3qmt+ucFURmlhDS" Content-Disposition: inline In-Reply-To: <200303261709.h2QH9330027551@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/net/mldonkey Makefile distinfo pkg-plist ports/net/mldonkey-gui Makefile distinfo pkg-plist ports/net/mldonkey-gui/files wrapper.sh ports/net/mldonkey-src Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 09:13:06 -0000 --k3qmt+ucFURmlhDS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Can you please tell me why we need net/mldonkey port? Why one can't just install the package? On Wed, Mar 26, 2003 at 09:09:03AM -0800, Mario Sergio Fujikawa Ferreira wr= ote: > lioux 2003/03/26 09:09:03 PST >=20 > FreeBSD ports repository >=20 > Modified files: > net/mldonkey Makefile distinfo pkg-plist=20 > net/mldonkey-gui Makefile distinfo pkg-plist=20 > net/mldonkey-src Makefile distinfo pkg-plist=20 > Added files: > net/mldonkey-gui/files wrapper.sh=20 > Log: > Update to 2.04 rc1 > =20 > Submitted by: maintainer > =20 > Revision Changes Path > 1.7 +19 -7 ports/net/mldonkey-gui/Makefile > 1.3 +2 -2 ports/net/mldonkey-gui/distinfo > 1.3 +18 -0 ports/net/mldonkey-gui/files/wrapper.sh (new) > 1.3 +5 -0 ports/net/mldonkey-gui/pkg-plist > 1.9 +13 -11 ports/net/mldonkey-src/Makefile > 1.4 +1 -1 ports/net/mldonkey-src/distinfo > 1.4 +4 -2 ports/net/mldonkey-src/pkg-plist > 1.8 +4 -7 ports/net/mldonkey/Makefile > 1.3 +2 -2 ports/net/mldonkey/distinfo > 1.3 +0 -1 ports/net/mldonkey/pkg-plist --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --k3qmt+ucFURmlhDS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jp4aUkv4P6juNwoRAj4pAJ9SY3oy9elrgEOG+/9qxemnMD+VrgCePwaV 3FQCMU858Fshhy7Edts9xkY= =x8Ya -----END PGP SIGNATURE----- --k3qmt+ucFURmlhDS-- From owner-cvs-all@FreeBSD.ORG Sat Apr 5 01:22:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98F5837B401; Sat, 5 Apr 2003 01:22:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F17243FCB; Sat, 5 Apr 2003 01:22:41 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h359Mf0U040881; Sat, 5 Apr 2003 01:22:41 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h359Menl040880; Sat, 5 Apr 2003 01:22:40 -0800 (PST) Message-Id: <200304050922.h359Menl040880@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 01:22:40 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics Makefile ports/graphics/compupic Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 09:22:42 -0000 edwin 2003/04/05 01:22:40 PST FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/compupic Makefile distinfo pkg-descr pkg-plist Log: CompuPic 5.1.1016 CompuPic 5.1.1016 - Digital Content Manager PR: ports/35919 Submitted by: Abel Chow Revision Changes Path 1.574 +1 -0 ports/graphics/Makefile 1.1 +31 -0 ports/graphics/compupic/Makefile (new) 1.1 +1 -0 ports/graphics/compupic/distinfo (new) 1.1 +8 -0 ports/graphics/compupic/pkg-descr (new) 1.1 +786 -0 ports/graphics/compupic/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 01:22:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B40337B401; Sat, 5 Apr 2003 01:22:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2D4243F75; Sat, 5 Apr 2003 01:22:56 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h359Mu0U040919; Sat, 5 Apr 2003 01:22:56 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h359Mut7040918; Sat, 5 Apr 2003 01:22:56 -0800 (PST) Message-Id: <200304050922.h359Mut7040918@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 01:22:56 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 09:22:57 -0000 edwin 2003/04/05 01:22:56 PST FreeBSD ports repository Modified files: . modules Log: compupic --> ports/graphics/compupic Revision Changes Path 1.6988 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 01:25:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89E7B37B434; Sat, 5 Apr 2003 01:25:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2540443F93; Sat, 5 Apr 2003 01:25:20 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h359PJ0U041044; Sat, 5 Apr 2003 01:25:19 -0800 (PST) (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h359PJXj041043; Sat, 5 Apr 2003 01:25:19 -0800 (PST) Message-Id: <200304050925.h359PJXj041043@repoman.freebsd.org> From: Darren Reed Date: Sat, 5 Apr 2003 01:25:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/ipfilter Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 09:25:21 -0000 darrenr 2003/04/05 01:25:19 PST FreeBSD src repository Modified files: contrib/ipfilter Makefile Log: Change the default syslog facility from LOG_LOCAL0 to LOG_SECURITY after discussion on security@freebsd.org. Revision Changes Path 1.2 +199 -66 src/contrib/ipfilter/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 01:40:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D2EA37B401; Sat, 5 Apr 2003 01:40:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42B5843FCB; Sat, 5 Apr 2003 01:40:56 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h359eu0U042317; Sat, 5 Apr 2003 01:40:56 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h359etho042316; Sat, 5 Apr 2003 01:40:55 -0800 (PST) Message-Id: <200304050940.h359etho042316@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 01:40:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security Makefile ports/security/avmailgate Makefile distinfo pkg-descr pkg-plist ports/security/avmailgate/files avmailgate.sh diff.rc patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 09:40:57 -0000 edwin 2003/04/05 01:40:55 PST FreeBSD ports repository Modified files: security Makefile Added files: security/avmailgate Makefile distinfo pkg-descr pkg-plist security/avmailgate/files avmailgate.sh diff.rc patch-aa Log: Port for H+B EDV avmailgate AntiVir MailGate for FreeBSD protects your electronic post office against viruses. It is working with numerous common Mail Transport Agents (MTA), like sendmail, postfix, qmail and exim. Operates at high speed, is easy to configure and checks both incoming and outgoing emails. PR: ports/34461 Submitted by: Oliver Breuninger Revision Changes Path 1.392 +1 -0 ports/security/Makefile 1.1 +65 -0 ports/security/avmailgate/Makefile (new) 1.1 +1 -0 ports/security/avmailgate/distinfo (new) 1.1 +26 -0 ports/security/avmailgate/files/avmailgate.sh (new) 1.1 +7 -0 ports/security/avmailgate/files/diff.rc (new) 1.1 +21 -0 ports/security/avmailgate/files/patch-aa (new) 1.1 +34 -0 ports/security/avmailgate/pkg-descr (new) 1.1 +15 -0 ports/security/avmailgate/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 01:41:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCF2037B404; Sat, 5 Apr 2003 01:41:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DD0B43FBF; Sat, 5 Apr 2003 01:41:11 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h359fB0U042359; Sat, 5 Apr 2003 01:41:11 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h359fBaD042358; Sat, 5 Apr 2003 01:41:11 -0800 (PST) Message-Id: <200304050941.h359fBaD042358@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 01:41:11 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 09:41:12 -0000 edwin 2003/04/05 01:41:11 PST FreeBSD ports repository Modified files: . modules Log: avmailgate --> ports/security/avmailgate Revision Changes Path 1.6989 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 01:54:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12A6737B401; Sat, 5 Apr 2003 01:54:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FE8243F75; Sat, 5 Apr 2003 01:54:48 -0800 (PST) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h359sm0U043114; Sat, 5 Apr 2003 01:54:48 -0800 (PST) (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h359smqg043113; Sat, 5 Apr 2003 01:54:48 -0800 (PST) Message-Id: <200304050954.h359smqg043113@repoman.freebsd.org> From: Jimmy Olgeni Date: Sat, 5 Apr 2003 01:54:48 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/rox-memo Makefile distinfo ports/deskutils/rox-memo/files patch-Memo_EditBox.py X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 09:54:49 -0000 olgeni 2003/04/05 01:54:48 PST FreeBSD ports repository Modified files: deskutils/rox-memo Makefile distinfo Removed files: deskutils/rox-memo/files patch-Memo_EditBox.py Log: Update to version 1.9.2. Revision Changes Path 1.4 +1 -2 ports/deskutils/rox-memo/Makefile 1.2 +1 -1 ports/deskutils/rox-memo/distinfo 1.2 +0 -14 ports/deskutils/rox-memo/files/patch-Memo_EditBox.py (dead) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 01:56:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21B4637B401; Sat, 5 Apr 2003 01:56:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2CE043F93; Sat, 5 Apr 2003 01:56:09 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h359u90U043228; Sat, 5 Apr 2003 01:56:09 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h359u9ei043227; Sat, 5 Apr 2003 01:56:09 -0800 (PST) Message-Id: <200304050956.h359u9ei043227@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sat, 5 Apr 2003 01:56:09 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/converters/p5-MIME-Base64/files patch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 09:56:10 -0000 nork 2003/04/05 01:56:09 PST FreeBSD ports repository Added files: converters/p5-MIME-Base64/files patch-Makefile.PL Log: Fix install directory with perl 5.8 or later. PR: ports/50554 Submitted by: Sergey Matveychuk Approved by: maintainer timeout (3 days) Revision Changes Path 1.1 +9 -0 ports/converters/p5-MIME-Base64/files/patch-Makefile.PL (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 02:10:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02F1837B401; Sat, 5 Apr 2003 02:10:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96D4C43FA3; Sat, 5 Apr 2003 02:10:33 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35AAX0U045160; Sat, 5 Apr 2003 02:10:33 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35AAXoZ045158; Sat, 5 Apr 2003 02:10:33 -0800 (PST) Message-Id: <200304051010.h35AAXoZ045158@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 5 Apr 2003 02:10:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/ppp ncpaddr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 10:10:34 -0000 ume 2003/04/05 02:10:33 PST FreeBSD src repository Modified files: usr.sbin/ppp ncpaddr.c Log: When session is over, IPv6 default route to tun should be removed, too. MFC after: 1 week Revision Changes Path 1.12 +4 -1 src/usr.sbin/ppp/ncpaddr.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 02:28:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E793737B401; Sat, 5 Apr 2003 02:28:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 863A343FBF; Sat, 5 Apr 2003 02:28:53 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35ASr0U046310; Sat, 5 Apr 2003 02:28:53 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35ASrcA046309; Sat, 5 Apr 2003 02:28:53 -0800 (PST) Message-Id: <200304051028.h35ASrcA046309@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 5 Apr 2003 02:28:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/netinet6 nd6_rtr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 10:28:54 -0000 ume 2003/04/05 02:28:53 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/netinet6 nd6_rtr.c Log: MFC 1.15: made sure to keep the current stored lifetime when it was not updated by an RA. (a detailed description of this issue is found at the following URL.) http://www.tahi.org/report/freebsd/freebsd48-rc2-20030316/host/lcna-stateless-addrconf/38.html Revision Changes Path 1.2.2.5 +9 -3 src/sys/netinet6/nd6_rtr.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 02:31:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A59EE37B401; Sat, 5 Apr 2003 02:31:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45FC443F75; Sat, 5 Apr 2003 02:31:59 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35AVx0U046797; Sat, 5 Apr 2003 02:31:59 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35AVw4E046796; Sat, 5 Apr 2003 02:31:58 -0800 (PST) Message-Id: <200304051031.h35AVw4E046796@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 5 Apr 2003 02:31:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.sbin/rtadvd rtadvd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 10:32:00 -0000 ume 2003/04/05 02:31:58 PST FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/rtadvd rtadvd.c Log: MFC 1.11: tightened check for the length of ND options. Revision Changes Path 1.3.2.4 +25 -2 src/usr.sbin/rtadvd/rtadvd.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 02:37:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E719A37B401; Sat, 5 Apr 2003 02:37:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8514A43FAF; Sat, 5 Apr 2003 02:37:08 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Ab80U047010; Sat, 5 Apr 2003 02:37:08 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Ab8lu047009; Sat, 5 Apr 2003 02:37:08 -0800 (PST) Message-Id: <200304051037.h35Ab8lu047009@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 5 Apr 2003 02:37:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.sbin/ppp ipv6cp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 10:37:09 -0000 ume 2003/04/05 02:37:07 PST FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/ppp ipv6cp.c Log: MFC 1.9: Since ppp.link{up,down} is invoked at the end of IPCP negotiation, if we need ppp.link{up,down}, we couldn't disable IPCP. Now, if IPCP is disabled, ppp.link{up,down} is invoked at the end of IPV6CP negotiation. Revision Changes Path 1.8.2.2 +32 -2 src/usr.sbin/ppp/ipv6cp.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 02:39:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02F4A37B401; Sat, 5 Apr 2003 02:39:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 976D043FBF; Sat, 5 Apr 2003 02:39:05 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Ad50U047153; Sat, 5 Apr 2003 02:39:05 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Ad5da047152; Sat, 5 Apr 2003 02:39:05 -0800 (PST) Message-Id: <200304051039.h35Ad5da047152@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 5 Apr 2003 02:39:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.sbin/ppp route.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 10:39:06 -0000 ume 2003/04/05 02:39:05 PST FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/ppp route.c Log: MFC 1.91: We need filling scopeid to install routes for link-local scope addresses. Revision Changes Path 1.60.2.8 +24 -0 src/usr.sbin/ppp/route.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 02:41:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30AFB37B401; Sat, 5 Apr 2003 02:41:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C420143F93; Sat, 5 Apr 2003 02:41:54 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Afs0U047606; Sat, 5 Apr 2003 02:41:54 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Afswi047605; Sat, 5 Apr 2003 02:41:54 -0800 (PST) Message-Id: <200304051041.h35Afswi047605@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 5 Apr 2003 02:41:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.sbin/ppp ipv6cp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 10:41:55 -0000 ume 2003/04/05 02:41:54 PST FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/ppp ipv6cp.c Log: MFC 1.10: Once ppp session is over, the route to ff02::tun0/32 was deleted, and never came back. Now, the route to ff02::tun0/32 is installed at the end of IPV6CP negotiaton. Revision Changes Path 1.8.2.3 +12 -1 src/usr.sbin/ppp/ipv6cp.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 02:42:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63D5737B401; Sat, 5 Apr 2003 02:42:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 025E743F93; Sat, 5 Apr 2003 02:42:39 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Agc0U047643; Sat, 5 Apr 2003 02:42:38 -0800 (PST) (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35AgcAx047642; Sat, 5 Apr 2003 02:42:38 -0800 (PST) Message-Id: <200304051042.h35AgcAx047642@repoman.freebsd.org> From: Darren Reed Date: Sat, 5 Apr 2003 02:42:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ipmon Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 10:42:39 -0000 darrenr 2003/04/05 02:42:38 PST FreeBSD src repository Modified files: sbin/ipmon Makefile Log: Change the default syslog facility from LOG_LOCAL0 to LOG_SECURITY after discussion on security@freebsd.org. Revision Changes Path 1.12 +1 -1 src/sbin/ipmon/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 02:48:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BBDE37B404; Sat, 5 Apr 2003 02:48:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D36B43FAF; Sat, 5 Apr 2003 02:48:09 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Am90U047952; Sat, 5 Apr 2003 02:48:09 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Am9kD047951; Sat, 5 Apr 2003 02:48:09 -0800 (PST) Message-Id: <200304051048.h35Am9kD047951@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 5 Apr 2003 02:48:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.sbin/ppp command.c ncpaddr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 10:48:10 -0000 ume 2003/04/05 02:48:09 PST FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/ppp command.c ncpaddr.c Log: MFC: Don't install wrong IPv6 route by add command. usr.sbin/ppp/command.c: 1.295 usr.sbin/ppp/ncpaddr.c: 1.11 Revision Changes Path 1.230.2.18 +6 -1 src/usr.sbin/ppp/command.c 1.10.2.2 +6 -2 src/usr.sbin/ppp/ncpaddr.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 02:51:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C0E437B401; Sat, 5 Apr 2003 02:51:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE21343FAF; Sat, 5 Apr 2003 02:51:39 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Apd0U048418; Sat, 5 Apr 2003 02:51:39 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35ApdQA048417; Sat, 5 Apr 2003 02:51:39 -0800 (PST) Message-Id: <200304051051.h35ApdQA048417@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 5 Apr 2003 02:51:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.sbin/ppp prompt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 10:51:40 -0000 ume 2003/04/05 02:51:39 PST FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/ppp prompt.c Log: MFC 1.30: If IPCP is disabled, susccess of IPV6CP negotiation is sufficient to communicate by IPv6. So, the prompt should be `PPP' rather than `PPp'. Revision Changes Path 1.20.2.5 +5 -0 src/usr.sbin/ppp/prompt.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 02:54:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5BAC37B401; Sat, 5 Apr 2003 02:54:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4598243F85; Sat, 5 Apr 2003 02:54:52 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Asq0U048515; Sat, 5 Apr 2003 02:54:52 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35AsqBj048514; Sat, 5 Apr 2003 02:54:52 -0800 (PST) Message-Id: <200304051054.h35AsqBj048514@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 5 Apr 2003 02:54:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sbin/ip6fw ip6fw.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 10:54:53 -0000 ume 2003/04/05 02:54:51 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sbin/ip6fw ip6fw.c Log: MFC 1.12: Make -N option work. Revision Changes Path 1.1.2.9 +1 -1 src/sbin/ip6fw/ip6fw.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 03:30:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11DC037B401; Sat, 5 Apr 2003 03:30:16 -0800 (PST) Received: from comp.chem.msu.su (comp-ext.chem.msu.su [158.250.32.157]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AB4343FB1; Sat, 5 Apr 2003 03:30:10 -0800 (PST) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.12.3p2/8.12.3) with ESMTP id h35BSjhE087692; Sat, 5 Apr 2003 15:30:05 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.12.3p2/8.12.3/Submit) id h35BSiAI087691; Sat, 5 Apr 2003 15:28:44 +0400 (MSD) (envelope-from yar) Date: Sat, 5 Apr 2003 15:28:44 +0400 From: Yar Tikhiy To: Darren Reed Message-ID: <20030405112843.GA87495@comp.chem.msu.su> References: <200304051042.h35AgcAx047642@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304051042.h35AgcAx047642@repoman.freebsd.org> User-Agent: Mutt/1.5.3i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/ipmon Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 11:30:16 -0000 On Sat, Apr 05, 2003 at 02:42:38AM -0800, Darren Reed wrote: > darrenr 2003/04/05 02:42:38 PST > > FreeBSD src repository > > Modified files: > sbin/ipmon Makefile > Log: > Change the default syslog facility from LOG_LOCAL0 to LOG_SECURITY after > discussion on security@freebsd.org. > > Revision Changes Path > 1.12 +1 -1 src/sbin/ipmon/Makefile Thanks! Would you mind reflecting this in the ipmon(8) manpage? -- Yar From owner-cvs-all@FreeBSD.ORG Sat Apr 5 03:31:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF26337B401; Sat, 5 Apr 2003 03:31:07 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAC1E43F75; Sat, 5 Apr 2003 03:31:06 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 743C75309; Sat, 5 Apr 2003 13:31:04 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Bruce Evans From: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Sat, 05 Apr 2003 13:31:03 +0200 In-Reply-To: <20030405160449.L37042@gamplex.bde.org> (Bruce Evans's message of "Sat, 5 Apr 2003 16:22:23 +1000 (EST)") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <200304041729.h34HTtVb027430@repoman.freebsd.org> <20030404173635.GA22147@rot13.obsecurity.org> <20030405160449.L37042@gamplex.bde.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s src/sys/powerpc/powerpc bcopy.c sr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 11:31:08 -0000 Bruce Evans writes: > The main problem with the commit is not mentioned in its log message: > changing bzero from a function pointer back to a function breaks > binary compatibility of many modules. I am aware of that... > In defence of this, 5.0 breaks > binary compatibility of most modules for other reasons. which is precisely why I took the liberty of doing it now, before 5.x goes -STABLE. DES --=20 Dag-Erling Sm=F8rgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Sat Apr 5 03:31:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0C6337B401; Sat, 5 Apr 2003 03:31:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 428A843F3F; Sat, 5 Apr 2003 03:31:56 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35BVu0U052279; Sat, 5 Apr 2003 03:31:56 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35BVtN4052278; Sat, 5 Apr 2003 03:31:55 -0800 (PST) Message-Id: <200304051131.h35BVtN4052278@repoman.freebsd.org> From: Akinori MUSHA Date: Sat, 5 Apr 2003 03:31:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/ruby pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 11:31:57 -0000 knu 2003/04/05 03:31:55 PST FreeBSD ports repository Modified files: lang/ruby pkg-plist Log: Sort. Revision Changes Path 1.47 +53 -53 ports/lang/ruby/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 03:37:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1926337B401; Sat, 5 Apr 2003 03:37:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A732743FA3; Sat, 5 Apr 2003 03:37:55 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Bbt0U052541; Sat, 5 Apr 2003 03:37:55 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35BbtMt052540; Sat, 5 Apr 2003 03:37:55 -0800 (PST) Message-Id: <200304051137.h35BbtMt052540@repoman.freebsd.org> From: Akinori MUSHA Date: Sat, 5 Apr 2003 03:37:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/ruby Makefile pkg-plist ports/lang/ruby-devel Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 11:37:56 -0000 knu 2003/04/05 03:37:55 PST FreeBSD ports repository Modified files: lang/ruby Makefile pkg-plist lang/ruby-devel Makefile pkg-plist Log: Install a cookie file per variant in RUBY_ELISPDIR. Reported by: kris Revision Changes Path 1.58 +1 -1 ports/lang/ruby-devel/Makefile 1.33 +1 -1 ports/lang/ruby-devel/pkg-plist 1.105 +1 -1 ports/lang/ruby/Makefile 1.48 +1 -1 ports/lang/ruby/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 03:39:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 714F137B401; Sat, 5 Apr 2003 03:39:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11D2E43F93; Sat, 5 Apr 2003 03:39:53 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Bdq0U052620; Sat, 5 Apr 2003 03:39:52 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Bdqfc052619; Sat, 5 Apr 2003 03:39:52 -0800 (PST) Message-Id: <200304051139.h35Bdqfc052619@repoman.freebsd.org> From: Akinori MUSHA Date: Sat, 5 Apr 2003 03:39:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/ruby-mp3info Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 11:39:53 -0000 knu 2003/04/05 03:39:52 PST FreeBSD ports repository Modified files: audio/ruby-mp3info Makefile Log: Do not dig RUBY_EXAMPLESDIR for nothing. Reported by: kris Revision Changes Path 1.2 +1 -1 ports/audio/ruby-mp3info/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 03:43:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B3E837B401; Sat, 5 Apr 2003 03:43:56 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAA1243FCB; Sat, 5 Apr 2003 03:43:55 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 074665308; Sat, 5 Apr 2003 13:43:53 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Tor Egge From: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Sat, 05 Apr 2003 13:43:52 +0200 In-Reply-To: <200304042354.h34NslFp075997@repoman.freebsd.org> (Tor Egge's message of "Fri, 4 Apr 2003 15:54:47 -0800 (PST)") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <200304042354.h34NslFp075997@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 tsc.c src/sys/i386/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 11:43:57 -0000 Tor Egge writes: > Log: > Add SMP_TSC option, which can be used on SMP systems where the TSCs > are synchronized to reduce context switch cost. Out of curiosity, what kind of systems would that be? DES --=20 Dag-Erling Sm=F8rgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Sat Apr 5 03:45:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CDBD37B401; Sat, 5 Apr 2003 03:45:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD0F043FDD; Sat, 5 Apr 2003 03:45:13 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35BjD0U053217; Sat, 5 Apr 2003 03:45:13 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35BjDw5053216; Sat, 5 Apr 2003 03:45:13 -0800 (PST) Message-Id: <200304051145.h35BjDw5053216@repoman.freebsd.org> From: Akinori MUSHA Date: Sat, 5 Apr 2003 03:45:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/ruby-text-format Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 11:45:14 -0000 knu 2003/04/05 03:45:13 PST FreeBSD ports repository Modified files: textproc/ruby-text-format Makefile distinfo pkg-plist Log: Update to 0.62. Revision Changes Path 1.5 +2 -2 ports/textproc/ruby-text-format/Makefile 1.4 +1 -1 ports/textproc/ruby-text-format/distinfo 1.4 +0 -5 ports/textproc/ruby-text-format/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 03:47:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5F0F37B401; Sat, 5 Apr 2003 03:47:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8567F43F3F; Sat, 5 Apr 2003 03:47:27 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35BlR0U053298; Sat, 5 Apr 2003 03:47:27 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35BlRKs053297; Sat, 5 Apr 2003 03:47:27 -0800 (PST) Message-Id: <200304051147.h35BlRKs053297@repoman.freebsd.org> From: Akinori MUSHA Date: Sat, 5 Apr 2003 03:47:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ruby-rbtree Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 11:47:28 -0000 knu 2003/04/05 03:47:27 PST FreeBSD ports repository Modified files: devel/ruby-rbtree Makefile distinfo Log: Update to 0.0.6. Revision Changes Path 1.7 +1 -1 ports/devel/ruby-rbtree/Makefile 1.5 +1 -1 ports/devel/ruby-rbtree/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 5 03:48:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF29137B401; Sat, 5 Apr 2003 03:48:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C28243FBF; Sat, 5 Apr 2003 03:48:54 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Bms0U053344; Sat, 5 Apr 2003 03:48:54 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Bmsdv053343; Sat, 5 Apr 2003 03:48:54 -0800 (PST) Message-Id: <200304051148.h35Bmsdv053343@repoman.freebsd.org> From: Akinori MUSHA Date: Sat, 5 Apr 2003 03:48:54 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/ruby-bdb Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 11:48:55 -0000 knu 2003/04/05 03:48:54 PST FreeBSD ports repository Modified files: databases/ruby-bdb Makefile distinfo Log: Update to 0.4.1. Revision Changes Path 1.33 +1 -1 ports/databases/ruby-bdb/Makefile 1.24 +1 -1 ports/databases/ruby-bdb/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 5 04:14:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD93737B401; Sat, 5 Apr 2003 04:14:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BC3343FDD; Sat, 5 Apr 2003 04:14:59 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35CEx0U056081; Sat, 5 Apr 2003 04:14:59 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35CExbl056080; Sat, 5 Apr 2003 04:14:59 -0800 (PST) Message-Id: <200304051214.h35CExbl056080@repoman.freebsd.org> From: Akinori MUSHA Date: Sat, 5 Apr 2003 04:14:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/ruby-rmagick Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 12:15:00 -0000 knu 2003/04/05 04:14:59 PST FreeBSD ports repository Modified files: graphics/ruby-rmagick Makefile distinfo pkg-plist Log: Update to 1.1.0. The latest version of ImageMagick from ports is required. Revision Changes Path 1.6 +1 -1 ports/graphics/ruby-rmagick/Makefile 1.5 +1 -1 ports/graphics/ruby-rmagick/distinfo 1.5 +6 -0 ports/graphics/ruby-rmagick/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 04:27:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51A6837B401; Sat, 5 Apr 2003 04:27:41 -0800 (PST) Received: from magic.adaptec.com (magic-mail.adaptec.com [208.236.45.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D38243FBD; Sat, 5 Apr 2003 04:27:40 -0800 (PST) (envelope-from scottl@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6/8.11.6) with ESMTP id h35CPuZ30695; Sat, 5 Apr 2003 04:25:56 -0800 Received: from btc.btc.adaptec.com (btc.btc.adaptec.com [10.100.0.52]) by redfish.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id EAA12116; Sat, 5 Apr 2003 04:26:58 -0800 (PST) Received: from hollin.btc.adaptec.com (hollin [10.100.253.56]) by btc.btc.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id FAA00545; Sat, 5 Apr 2003 05:26:51 -0700 (MST) Received: from hollin.btc.adaptec.com (localhost [127.0.0.1]) h35CO7x8037014; Sat, 5 Apr 2003 05:24:08 -0700 (MST) (envelope-from scottl@hollin.btc.adaptec.com) Received: (from scottl@localhost) by hollin.btc.adaptec.com (8.12.8/8.12.8/Submit) id h35CO7oZ037013; Sat, 5 Apr 2003 05:24:07 -0700 (MST) Date: Sat, 5 Apr 2003 05:24:07 -0700 From: Scott Long To: Dag-Erling Sm?rgrav Message-ID: <20030405122406.GB36962@hollin.btc.adaptec.com> References: <200304041729.h34HTtVb027430@repoman.freebsd.org> <20030404173635.GA22147@rot13.obsecurity.org> <20030405160449.L37042@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Bruce Evans cc: Kris Kennaway Subject: Re: cvs commit: src/sys/alpha/alpha support.s src/sys/i386/i386 identcpu.c support.s src/sys/i386/include md_var.h src/sys/i386/isa npx.c src/sys/ia64/ia64 support.s src/sys/powerpc/powerpc bcopy.csr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 12:27:41 -0000 On Sat, Apr 05, 2003 at 01:31:03PM +0200, Dag-Erling Sm?rgrav wrote: > Bruce Evans writes: > > The main problem with the commit is not mentioned in its log message: > > changing bzero from a function pointer back to a function breaks > > binary compatibility of many modules. > > I am aware of that... > > > In defence of this, 5.0 breaks > > binary compatibility of most modules for other reasons. > > which is precisely why I took the liberty of doing it now, before 5.x > goes -STABLE. > As I've scolded others, changes to HEAD that change the ABI and/or API should be preceded by an email to re@. Please re-read the many emails about the semi-frozen state of HEAD for futher guidance. I'm not terribly thrilled by this change, but I'm not going to ask for a backout right now. Scott From owner-cvs-all@FreeBSD.ORG Sat Apr 5 04:43:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C6FB37B401; Sat, 5 Apr 2003 04:43:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C5D943F75; Sat, 5 Apr 2003 04:43:22 -0800 (PST) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35ChL0U060221; Sat, 5 Apr 2003 04:43:21 -0800 (PST) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35ChLPe060220; Sat, 5 Apr 2003 04:43:21 -0800 (PST) Message-Id: <200304051243.h35ChLPe060220@repoman.freebsd.org> From: Maxime Henrion Date: Sat, 5 Apr 2003 04:43:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fxp if_fxp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 12:43:22 -0000 mux 2003/04/05 04:43:21 PST FreeBSD src repository Modified files: sys/dev/fxp if_fxp.c Log: - Change a FXP_NRFABUFS which would have been a FXP_NTXCB. - Correct some bus_dmamap_sync() calls. Submitted by: jake Revision Changes Path 1.156 +3 -3 src/sys/dev/fxp/if_fxp.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 04:47:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D9C937B401; Sat, 5 Apr 2003 04:47:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A1C743FA3; Sat, 5 Apr 2003 04:47:14 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35ClE0U065656; Sat, 5 Apr 2003 04:47:14 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35ClElC065655; Sat, 5 Apr 2003 04:47:14 -0800 (PST) Message-Id: <200304051247.h35ClElC065655@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 04:47:13 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel Makefile ports/devel/ccmalloc Makefile distinfo pkg-descr pkg-message pkg-plist ports/devel/ccmalloc/files patch-Makefile.in patch-configure patch-src::ccmalloc.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 12:47:15 -0000 edwin 2003/04/05 04:47:13 PST FreeBSD ports repository Modified files: devel Makefile Added files: devel/ccmalloc Makefile distinfo pkg-descr pkg-message pkg-plist devel/ccmalloc/files patch-Makefile.in patch-configure patch-src::ccmalloc.in Log: port of ccmalloc This is port of ccmalloc, memory leak detector for C/C++. PR: ports/36336 Submitted by: Jure Menart Revision Changes Path 1.1080 +1 -0 ports/devel/Makefile 1.1 +29 -0 ports/devel/ccmalloc/Makefile (new) 1.1 +1 -0 ports/devel/ccmalloc/distinfo (new) 1.1 +18 -0 ports/devel/ccmalloc/files/patch-Makefile.in (new) 1.1 +82 -0 ports/devel/ccmalloc/files/patch-configure (new) 1.1 +29 -0 ports/devel/ccmalloc/files/patch-src::ccmalloc.in (new) 1.1 +4 -0 ports/devel/ccmalloc/pkg-descr (new) 1.1 +6 -0 ports/devel/ccmalloc/pkg-message (new) 1.1 +5 -0 ports/devel/ccmalloc/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 04:47:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF1F937B404; Sat, 5 Apr 2003 04:47:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C2AC43FBF; Sat, 5 Apr 2003 04:47:34 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35ClX0U065702; Sat, 5 Apr 2003 04:47:33 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35ClXPb065701; Sat, 5 Apr 2003 04:47:33 -0800 (PST) Message-Id: <200304051247.h35ClXPb065701@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 04:47:33 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 12:47:35 -0000 edwin 2003/04/05 04:47:33 PST FreeBSD ports repository Modified files: . modules Log: ccmalloc --> ports/devel/ccmalloc Revision Changes Path 1.6990 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 05:05:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55CED37B401; Sat, 5 Apr 2003 05:05:44 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED23843F93; Sat, 5 Apr 2003 05:05:43 -0800 (PST) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id D5E1B2ED410; Sat, 5 Apr 2003 05:05:43 -0800 (PST) Date: Sat, 5 Apr 2003 15:05:43 +0200 From: Maxime Henrion To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20030405130543.GT1750@elvis.mu.org> References: <200304051243.h35ChLPe060220@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304051243.h35ChLPe060220@repoman.freebsd.org> User-Agent: Mutt/1.4.1i Subject: Re: cvs commit: src/sys/dev/fxp if_fxp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 13:05:44 -0000 Maxime Henrion wrote: > mux 2003/04/05 04:43:21 PST > > FreeBSD src repository > > Modified files: > sys/dev/fxp if_fxp.c > Log: > - Change a FXP_NRFABUFS which would have been a FXP_NTXCB. > - Correct some bus_dmamap_sync() calls. Some BUS_DMASYNC_PREREAD were changed to BUS_DMASYNC_PREWRITE. For what it's worth, these should actually be BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE. But since, we have no architecture in the tree that needs BUS_DMASYNC_PREREAD, I'll change this when the bus_dmamap_sync() operations are not an enum anymore. Cheers, Maxime From owner-cvs-all@FreeBSD.ORG Sat Apr 5 05:07:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F24E37B401; Sat, 5 Apr 2003 05:07:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D521643F75; Sat, 5 Apr 2003 05:07:44 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35D7i0U067951; Sat, 5 Apr 2003 05:07:44 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35D7iHO067950; Sat, 5 Apr 2003 05:07:44 -0800 (PST) Message-Id: <200304051307.h35D7iHO067950@repoman.freebsd.org> From: Warner Losh Date: Sat, 5 Apr 2003 05:07:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 wi.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 13:07:45 -0000 imp 2003/04/05 05:07:44 PST FreeBSD src repository Modified files: share/man/man4 wi.4 Log: The Netgear MA311 is a Prism 2.5 card. Submitted by: duncan@quantumlogic.net Revision Changes Path 1.41 +1 -0 src/share/man/man4/wi.4 From owner-cvs-all@FreeBSD.ORG Sat Apr 5 05:11:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B17137B401; Sat, 5 Apr 2003 05:11:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09B1343FA3; Sat, 5 Apr 2003 05:11:57 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35DBu0U068455; Sat, 5 Apr 2003 05:11:56 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35DBuxM068454; Sat, 5 Apr 2003 05:11:56 -0800 (PST) Message-Id: <200304051311.h35DBuxM068454@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 05:11:56 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/jabber-msn Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 13:11:57 -0000 edwin 2003/04/05 05:11:56 PST FreeBSD ports repository Modified files: net Makefile Added files: net/jabber-msn Makefile distinfo pkg-descr pkg-plist Log: Jabber MSN-Transport module The Jabber server (jabberd) is a daemon for Jabber clients to connect and communicate with. The MSN-Transport allows clients to chat with MSN users. PR: ports/37737 Submitted by: Martijn Lina Revision Changes Path 1.955 +1 -0 ports/net/Makefile 1.1 +31 -0 ports/net/jabber-msn/Makefile (new) 1.1 +1 -0 ports/net/jabber-msn/distinfo (new) 1.1 +6 -0 ports/net/jabber-msn/pkg-descr (new) 1.1 +1 -0 ports/net/jabber-msn/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 05:12:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AC9E37B401; Sat, 5 Apr 2003 05:12:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B40143F85; Sat, 5 Apr 2003 05:12:12 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35DCC0U068503; Sat, 5 Apr 2003 05:12:12 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35DCBX0068502; Sat, 5 Apr 2003 05:12:11 -0800 (PST) Message-Id: <200304051312.h35DCBX0068502@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 05:12:11 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 13:12:13 -0000 edwin 2003/04/05 05:12:11 PST FreeBSD ports repository Modified files: . modules Log: jabber-msn --> ports/net/jabber-msn Revision Changes Path 1.6991 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 05:39:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC32537B401; Sat, 5 Apr 2003 05:39:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6984143FA3; Sat, 5 Apr 2003 05:39:19 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35DdJ0U069984; Sat, 5 Apr 2003 05:39:19 -0800 (PST) (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35DdIVY069983; Sat, 5 Apr 2003 05:39:18 -0800 (PST) Message-Id: <200304051339.h35DdIVY069983@repoman.freebsd.org> From: David Malone Date: Sat, 5 Apr 2003 05:39:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.sbin/inetd inetd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 13:39:20 -0000 dwmalone 2003/04/05 05:39:18 PST FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/inetd inetd.c Log: MFC: 1.108 Clear up a few warnings. 1.113 When printing the wait status, break it into a signal and a exit status. 1.118 Call login_close so that we don't leak memory. 1.119 Use close-on-exec rather than closing the discriptors manually. Revision Changes Path 1.80.2.11 +47 -20 src/usr.sbin/inetd/inetd.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 05:47:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A84DA37B401; Sat, 5 Apr 2003 05:47:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47FAD43F85; Sat, 5 Apr 2003 05:47:20 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35DlK0U070606; Sat, 5 Apr 2003 05:47:20 -0800 (PST) (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35DlKAa070605; Sat, 5 Apr 2003 05:47:20 -0800 (PST) Message-Id: <200304051347.h35DlKAa070605@repoman.freebsd.org> From: David Malone Date: Sat, 5 Apr 2003 05:47:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/i386/i386 initcpu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 13:47:21 -0000 dwmalone 2003/04/05 05:47:20 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/i386/i386 initcpu.c Log: MFC 1.44: Extend CPU_ATHLON_SSE_HACK to cover a few more revisions of Athlons. Revision Changes Path 1.19.2.9 +2 -1 src/sys/i386/i386/initcpu.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 05:53:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EA6937B401; Sat, 5 Apr 2003 05:53:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B51843FAF; Sat, 5 Apr 2003 05:53:06 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Dr50U071133; Sat, 5 Apr 2003 05:53:05 -0800 (PST) (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Dr5lJ071132; Sat, 5 Apr 2003 05:53:05 -0800 (PST) Message-Id: <200304051353.h35Dr5lJ071132@repoman.freebsd.org> From: David Malone Date: Sat, 5 Apr 2003 05:53:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/lib/libc/stdlib hcreate.3 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 13:53:07 -0000 dwmalone 2003/04/05 05:53:05 PST FreeBSD src repository Modified files: (Branch: RELENG_4) lib/libc/stdlib hcreate.3 Log: MFC 1.3: Document the fact that hdestory calls free on the keys added with hsearch(.., ENTER). Make the example reflect this. Revision Changes Path 1.2.2.2 +26 -6 src/lib/libc/stdlib/hcreate.3 From owner-cvs-all@FreeBSD.ORG Sat Apr 5 06:42:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6C3C37B401; Sat, 5 Apr 2003 06:42:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56B3843FCB; Sat, 5 Apr 2003 06:42:56 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Egu0U075178; Sat, 5 Apr 2003 06:42:56 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35EgupE075177; Sat, 5 Apr 2003 06:42:56 -0800 (PST) Message-Id: <200304051442.h35EgupE075177@repoman.freebsd.org> From: Yen-Ming Lee Date: Sat, 5 Apr 2003 06:42:56 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/chinese/fcitx Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 14:42:57 -0000 leeym 2003/04/05 06:42:55 PST FreeBSD ports repository Modified files: chinese/fcitx Makefile Log: modify tools.c and set default locale to zh_CN.EUC bump PORTREVISION PR: 50620 Submitted by: Statue Revision Changes Path 1.2 +4 -3 ports/chinese/fcitx/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 06:43:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EBD237B40B; Sat, 5 Apr 2003 06:43:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F14C43FBD; Sat, 5 Apr 2003 06:43:05 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Eh50U075226; Sat, 5 Apr 2003 06:43:05 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Eh51W075225; Sat, 5 Apr 2003 06:43:05 -0800 (PST) Message-Id: <200304051443.h35Eh51W075225@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 5 Apr 2003 06:43:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/timedef it_IT.ISO8859-1.src X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 14:43:06 -0000 trhodes 2003/04/05 06:43:05 PST FreeBSD src repository Modified files: share/timedef it_IT.ISO8859-1.src Log: Fix/add missing accents on the weekday names. PR: 37219 Submitted by: Nicola Vitale Reivewed by: Alex Dupre Revision Changes Path 1.11 +6 -6 src/share/timedef/it_IT.ISO8859-1.src From owner-cvs-all@FreeBSD.ORG Sat Apr 5 06:51:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91FDC37B401; Sat, 5 Apr 2003 06:51:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3565D43F3F; Sat, 5 Apr 2003 06:51:42 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Epf0U075920; Sat, 5 Apr 2003 06:51:41 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35EpfTV075919; Sat, 5 Apr 2003 06:51:41 -0800 (PST) Message-Id: <200304051451.h35EpfTV075919@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 5 Apr 2003 06:51:41 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/it_IT.ISO8859-15/articles/committers-guide article.sgml doc/it_IT.ISO8859-15/articles/multi-oschapter.sgml doc/it_IT.ISO8859-15/share/sgml mailing-lists.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 14:51:42 -0000 trhodes 2003/04/05 06:51:41 PST FreeBSD doc repository Modified files: it_IT.ISO8859-15/articles/committers-guide article.sgml it_IT.ISO8859-15/articles/multi-os article.sgml it_IT.ISO8859-15/books/handbook/eresources chapter.sgml it_IT.ISO8859-15/share/sgml mailing-lists.ent Log: Update some Italian translations. Submitted by: Alex Dupre Revision Changes Path 1.3 +12 -11 doc/it_IT.ISO8859-15/articles/committers-guide/article.sgml 1.3 +7 -2 doc/it_IT.ISO8859-15/articles/multi-os/article.sgml 1.3 +161 -81 doc/it_IT.ISO8859-15/books/handbook/eresources/chapter.sgml 1.3 +4 -1 doc/it_IT.ISO8859-15/share/sgml/mailing-lists.ent From owner-cvs-all@FreeBSD.ORG Sat Apr 5 06:53:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0AE637B401; Sat, 5 Apr 2003 06:53:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F0E443F75; Sat, 5 Apr 2003 06:53:55 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Ers0U076031; Sat, 5 Apr 2003 06:53:55 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Ers2D076030; Sat, 5 Apr 2003 06:53:54 -0800 (PST) Message-Id: <200304051453.h35Ers2D076030@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 5 Apr 2003 06:53:54 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/it includes.sgml includes.xsl index.xsl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 14:53:56 -0000 trhodes 2003/04/05 06:53:54 PST FreeBSD doc repository Modified files: it includes.sgml includes.xsl index.xsl Log: Update the Italian translation. Submitted by: Alex Dupre Revision Changes Path 1.2 +3 -3 www/it/includes.sgml 1.2 +2 -2 www/it/includes.xsl 1.3 +3 -3 www/it/index.xsl From owner-cvs-all@FreeBSD.ORG Sat Apr 5 07:27:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76EF937B404; Sat, 5 Apr 2003 07:27:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAADF43FAF; Sat, 5 Apr 2003 07:27:27 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35FRR0U079020; Sat, 5 Apr 2003 07:27:27 -0800 (PST) (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35FRRnQ079019; Sat, 5 Apr 2003 07:27:27 -0800 (PST) Message-Id: <200304051527.h35FRRnQ079019@repoman.freebsd.org> From: David Malone Date: Sat, 5 Apr 2003 07:27:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/picobsd/tinyware/simple_httpd simple_httpd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 15:27:28 -0000 dwmalone 2003/04/05 07:27:27 PST FreeBSD src repository Modified files: release/picobsd/tinyware/simple_httpd simple_httpd.c Log: More warns cleanups and misc cleanups: 1) Make fetch_mode a pointer 'cos we can just use the optarg. 2) Constness. 3) Add/complete prototypes. 4) Change an int to a socklen_t. 5) Don't use C++ style comments. 6) Check return values from read and fork a little more carefully. 7) Avoid closing an uninitialised int. 8) Get rid of unneeded extern declarations. Revision Changes Path 1.14 +31 -25 src/release/picobsd/tinyware/simple_httpd/simple_httpd.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 07:28:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C9CC37B401; Sat, 5 Apr 2003 07:28:29 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E33043F3F; Sat, 5 Apr 2003 07:28:28 -0800 (PST) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "madman.celabo.org", Issuer "celabo.org CA" (verified OK)) by gw.nectar.cc (Postfix) with ESMTP id 08F1F3C; Sat, 5 Apr 2003 09:28:28 -0600 (CST) Received: by madman.celabo.org (Postfix, from userid 1001) id 5F02878C67; Sat, 5 Apr 2003 09:28:27 -0600 (CST) Date: Sat, 5 Apr 2003 09:28:27 -0600 From: "Jacques A. Vidrine" To: Julian Elischer Message-ID: <20030405152827.GA16477@madman.celabo.org> References: <200304041909.h34J9jGH037754@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304041909.h34J9jGH037754@repoman.freebsd.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.3i-ja.1 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/xdr xdr_mem.c src/sys/conf newvers.sh src UPDATING src/include/rpc xdr.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 15:28:29 -0000 On Fri, Apr 04, 2003 at 11:09:45AM -0800, Julian Elischer wrote: > julian 2003/04/04 11:09:45 PST > > FreeBSD src repository > > Modified files: (Branch: RELENG_4_4) > lib/libc/xdr xdr_mem.c > sys/conf newvers.sh > . UPDATING > include/rpc xdr.h > Log: > MF4.6 > Security update FreeBSD-SA-03:05.xdr Thanks, Julian! The audience may notice that RELENG_4_5 has not been patched. I hope this doesn't cause any confusion. I don't think you've ever made a public statement that you would be extending the life of the RELENG_4_4 branch (apparently selectively ... I think you have skipped some fixes). > Approved by: re@ (blanket agreement for 4.4) Actually, you need approval from security-officer (which you have). Probably just a typo. Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se From owner-cvs-all@FreeBSD.ORG Sat Apr 5 08:10:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14F5137B401; Sat, 5 Apr 2003 08:10:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6D0843F93; Sat, 5 Apr 2003 08:10:09 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35GA90U082561; Sat, 5 Apr 2003 08:10:09 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35GA9iO082560; Sat, 5 Apr 2003 08:10:09 -0800 (PST) Message-Id: <200304051610.h35GA9iO082560@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 5 Apr 2003 08:10:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/timedef it_IT.ISO8859-1.src X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 16:10:10 -0000 trhodes 2003/04/05 08:10:09 PST FreeBSD src repository Modified files: (Branch: RELENG_4) share/timedef it_IT.ISO8859-1.src Log: MFC: Add/fix the accents in the Italian weekday names. Revision Changes Path 1.10.2.3 +5 -5 src/share/timedef/it_IT.ISO8859-1.src From owner-cvs-all@FreeBSD.ORG Sat Apr 5 08:17:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2259837B401; Sat, 5 Apr 2003 08:17:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AADE643F75; Sat, 5 Apr 2003 08:17:07 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35GH70U083206; Sat, 5 Apr 2003 08:17:07 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35GH7Qn083205; Sat, 5 Apr 2003 08:17:07 -0800 (PST) Message-Id: <200304051617.h35GH7Qn083205@repoman.freebsd.org> From: Yen-Ming Lee Date: Sat, 5 Apr 2003 08:17:07 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/upnp Makefile distinfo pkg-plist ports/devel/upnp/files patch-makefile patch-src::api::makefile patch-src::genlib::tpool::interrupts.cpp patch-threadutil::src::ThreadPool.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 16:17:08 -0000 leeym 2003/04/05 08:17:07 PST FreeBSD ports repository Modified files: devel/upnp Makefile distinfo pkg-plist Added files: devel/upnp/files patch-threadutil::src::ThreadPool.c patch-upnp::src::inc::sysdep.h patch-upnp::src::uuid::sysdep.c Removed files: devel/upnp/files patch-makefile patch-src::api::makefile patch-src::api::upnpapi.c patch-src::gena::Makefile patch-src::genlib::tpool::interrupts.cpp patch-src::genlib::util::gmtdate.cpp patch-src::ssdp::ssdplib.c Log: update to upnp 1.2.1 Noticed by: Steve Drew Revision Changes Path 1.4 +13 -13 ports/devel/upnp/Makefile 1.2 +1 -1 ports/devel/upnp/distinfo 1.2 +0 -45 ports/devel/upnp/files/patch-makefile (dead) 1.2 +0 -22 ports/devel/upnp/files/patch-src::api::makefile (dead) 1.2 +0 -11 ports/devel/upnp/files/patch-src::api::upnpapi.c (dead) 1.2 +0 -11 ports/devel/upnp/files/patch-src::gena::Makefile (dead) 1.2 +0 -11 ports/devel/upnp/files/patch-src::genlib::tpool::interrupts.cpp (dead) 1.2 +0 -20 ports/devel/upnp/files/patch-src::genlib::util::gmtdate.cpp (dead) 1.2 +0 -11 ports/devel/upnp/files/patch-src::ssdp::ssdplib.c (dead) 1.1 +20 -0 ports/devel/upnp/files/patch-threadutil::src::ThreadPool.c (new) 1.1 +11 -0 ports/devel/upnp/files/patch-upnp::src::inc::sysdep.h (new) 1.1 +11 -0 ports/devel/upnp/files/patch-upnp::src::uuid::sysdep.c (new) 1.2 +2 -15 ports/devel/upnp/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 08:59:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C73AC37B401; Sat, 5 Apr 2003 08:59:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6647A43FB1; Sat, 5 Apr 2003 08:59:02 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Gx20U090871; Sat, 5 Apr 2003 08:59:02 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Gx2Oe090870; Sat, 5 Apr 2003 08:59:02 -0800 (PST) Message-Id: <200304051659.h35Gx2Oe090870@repoman.freebsd.org> From: Ceri Davies Date: Sat, 5 Apr 2003 08:59:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/lib/libc/sys connect.2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 16:59:03 -0000 ceri 2003/04/05 08:59:01 PST FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) lib/libc/sys connect.2 Log: MFC r1.23: [1] - Document EHOSTUNREACH as a possible error [2] - Remove a contraction PR: docs/50401 Submitted by: [1] Slaven Rezic Revision Changes Path 1.11.2.8 +3 -1 src/lib/libc/sys/connect.2 From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:00:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC76637B404; Sat, 5 Apr 2003 09:00:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB31B43FF5; Sat, 5 Apr 2003 09:00:44 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35H0i0U091016; Sat, 5 Apr 2003 09:00:44 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35H0iUB091015; Sat, 5 Apr 2003 09:00:44 -0800 (PST) Message-Id: <200304051700.h35H0iUB091015@repoman.freebsd.org> From: Jacques Vidrine Date: Sat, 5 Apr 2003 09:00:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/krb4 pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:00:50 -0000 nectar 2003/04/05 09:00:44 PST FreeBSD ports repository Modified files: security/krb4 pkg-plist Log: Remove ${PREFIX}/include/ss on deinstall. Reported by: kris Revision Changes Path 1.2 +1 -0 ports/security/krb4/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:15:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D95F37B401; Sat, 5 Apr 2003 09:15:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE0BB43FAF; Sat, 5 Apr 2003 09:15:38 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35HFc0U093027; Sat, 5 Apr 2003 09:15:38 -0800 (PST) (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35HFcXg093026; Sat, 5 Apr 2003 09:15:38 -0800 (PST) Message-Id: <200304051715.h35HFcXg093026@repoman.freebsd.org> From: David Malone Date: Sat, 5 Apr 2003 09:15:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/picobsd/tinyware/simple_httpd simple_httpd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:15:39 -0000 dwmalone 2003/04/05 09:15:38 PST FreeBSD src repository Modified files: release/picobsd/tinyware/simple_httpd simple_httpd.c Log: Don't forget to send the Content-length header after calculating it. PR: 29725 Submitted by: Eugene Grosbein Revision Changes Path 1.15 +1 -0 src/release/picobsd/tinyware/simple_httpd/simple_httpd.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:30:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CD3E37B401; Sat, 5 Apr 2003 09:30:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B8D443FA3; Sat, 5 Apr 2003 09:30:19 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35HUI0U093868; Sat, 5 Apr 2003 09:30:18 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35HUIhY093866; Sat, 5 Apr 2003 09:30:18 -0800 (PST) Message-Id: <200304051730.h35HUIhY093866@repoman.freebsd.org> From: Yen-Ming Lee Date: Sat, 5 Apr 2003 09:30:18 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/chinese/xsim Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:30:19 -0000 leeym 2003/04/05 09:30:18 PST FreeBSD ports repository Modified files: chinese/xsim Makefile distinfo Log: fix xsim-data and xsinrc add xsim-data-freebsd-gb2312.tar.gz PR: 50597 Submitted by: Statue Revision Changes Path 1.3 +7 -6 ports/chinese/xsim/Makefile 1.2 +1 -0 ports/chinese/xsim/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:30:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B0F737B401; Sat, 5 Apr 2003 09:30:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 378F343F93; Sat, 5 Apr 2003 09:30:52 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35HUq0U094159; Sat, 5 Apr 2003 09:30:52 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35HUptp094157; Sat, 5 Apr 2003 09:30:51 -0800 (PST) Message-Id: <200304051730.h35HUptp094157@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 5 Apr 2003 09:30:51 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/pornview Makefile distinfo pkg-plist patch-src::support::widgets::gtkmplayer.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:30:53 -0000 arved 2003/04/05 09:30:51 PST FreeBSD ports repository Modified files: graphics/pornview Makefile distinfo pkg-plist Added files: graphics/pornview/files patch-src::support::widgets::gtkmplayer.c Log: Update to to 0.2.0.p.1. Fix libxinedependency after libxine libaryversion bump. Add a WITH_MPLAYER knob. (Does not work for me yet). Revision Changes Path 1.5 +6 -2 ports/graphics/pornview/Makefile 1.3 +1 -1 ports/graphics/pornview/distinfo 1.1 +10 -0 ports/graphics/pornview/files/patch-src::support::widgets::gtkmplayer.c (new) 1.3 +4 -0 ports/graphics/pornview/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:32:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84BDB37B401; Sat, 5 Apr 2003 09:32:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2450443F85; Sat, 5 Apr 2003 09:32:41 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35HWe0U094230; Sat, 5 Apr 2003 09:32:40 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35HWeLM094229; Sat, 5 Apr 2003 09:32:40 -0800 (PST) Message-Id: <200304051732.h35HWeLM094229@repoman.freebsd.org> From: Yen-Ming Lee Date: Sat, 5 Apr 2003 09:32:40 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/chinese/chinput3 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:32:42 -0000 leeym 2003/04/05 09:32:40 PST FreeBSD ports repository Modified files: chinese/chinput3 Makefile distinfo Log: Update to 3.0.2fix4 PR: 50623 Submitted by: Statue Revision Changes Path 1.3 +1 -1 ports/chinese/chinput3/Makefile 1.2 +1 -1 ports/chinese/chinput3/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:39:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FA9237B401; Sat, 5 Apr 2003 09:39:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2F0343FAF; Sat, 5 Apr 2003 09:39:28 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35HdS0U094474; Sat, 5 Apr 2003 09:39:28 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35HdSCu094473; Sat, 5 Apr 2003 09:39:28 -0800 (PST) Message-Id: <200304051739.h35HdSCu094473@repoman.freebsd.org> From: Yen-Ming Lee Date: Sat, 5 Apr 2003 09:39:28 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/ttf2pt1 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:39:29 -0000 leeym 2003/04/05 09:39:28 PST FreeBSD ports repository Modified files: print/ttf2pt1 Makefile distinfo pkg-plist Log: Update to 3.4.3 PR: 50018 Submitted by: Statue Revision Changes Path 1.8 +1 -1 ports/print/ttf2pt1/Makefile 1.5 +1 -1 ports/print/ttf2pt1/distinfo 1.4 +5 -0 ports/print/ttf2pt1/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:43:03 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E192137B401; Sat, 5 Apr 2003 09:43:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B4AD43FA3; Sat, 5 Apr 2003 09:43:03 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Hh30U094970; Sat, 5 Apr 2003 09:43:03 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Hh30e094969; Sat, 5 Apr 2003 09:43:03 -0800 (PST) Message-Id: <200304051743.h35Hh30e094969@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 5 Apr 2003 09:43:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/xmms-mailnotify Makefile ports/audio/xmms-mailnotify/files patch-ac X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:43:04 -0000 arved 2003/04/05 09:43:03 PST FreeBSD ports repository Modified files: audio/xmms-mailnotify Makefile Added files: audio/xmms-mailnotify/files patch-ac Log: Continue playing music after a new mail arrived. Submitted by: joerg Revision Changes Path 1.8 +1 -1 ports/audio/xmms-mailnotify/Makefile 1.1 +26 -0 ports/audio/xmms-mailnotify/files/patch-ac (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:55:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B26C37B401; Sat, 5 Apr 2003 09:55:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8BB943FB1; Sat, 5 Apr 2003 09:55:30 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35HtU0U095842; Sat, 5 Apr 2003 09:55:30 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35HtUsA095841; Sat, 5 Apr 2003 09:55:30 -0800 (PST) Message-Id: <200304051755.h35HtUsA095841@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 09:55:30 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gaim Makefile distinfo pkg-descr pkg-plist ports/net/gaim/files patch-aa patch-ab patch-ac patch-src_protocols_yahoo_yahoo.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:55:31 -0000 marcus 2003/04/05 09:55:30 PST FreeBSD ports repository Modified files: net/gaim Makefile distinfo pkg-descr pkg-plist Removed files: net/gaim/files patch-aa patch-ab patch-ac patch-src_protocols_yahoo_yahoo.c Log: Update to 0.60. Note, this is now a GTK+-2 application. Revision Changes Path 1.89 +16 -36 ports/net/gaim/Makefile 1.59 +1 -1 ports/net/gaim/distinfo 1.8 +0 -13 ports/net/gaim/files/patch-aa (dead) 1.12 +0 -32 ports/net/gaim/files/patch-ab (dead) 1.18 +0 -153 ports/net/gaim/files/patch-ac (dead) 1.6 +0 -12 ports/net/gaim/files/patch-src_protocols_yahoo_yahoo.c (dead) 1.5 +1 -1 ports/net/gaim/pkg-descr 1.39 +209 -12 ports/net/gaim/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:56:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B899937B401; Sat, 5 Apr 2003 09:56:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EE1F43F3F; Sat, 5 Apr 2003 09:56:23 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35HuN0U095914; Sat, 5 Apr 2003 09:56:23 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35HuNGS095913; Sat, 5 Apr 2003 09:56:23 -0800 (PST) Message-Id: <200304051756.h35HuNGS095913@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 09:56:23 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gaim-snapshot Makefile distinfo pkg-descr pkg-plist ports/net/gaim-snapshot/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:56:24 -0000 marcus 2003/04/05 09:56:23 PST FreeBSD ports repository Removed files: net/gaim-snapshot Makefile distinfo pkg-descr pkg-plist net/gaim-snapshot/files patch-configure Log: Remove gaim-snapshot. It has been rolled into gaim. Revision Changes Path 1.92 +0 -55 ports/net/gaim-snapshot/Makefile (dead) 1.60 +0 -1 ports/net/gaim-snapshot/distinfo (dead) 1.2 +0 -10 ports/net/gaim-snapshot/files/patch-configure (dead) 1.6 +0 -11 ports/net/gaim-snapshot/pkg-descr (dead) 1.41 +0 -223 ports/net/gaim-snapshot/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:57:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2716F37B401; Sat, 5 Apr 2003 09:57:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB50743FBD; Sat, 5 Apr 2003 09:57:00 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Hv00U095961; Sat, 5 Apr 2003 09:57:00 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Hv06P095959; Sat, 5 Apr 2003 09:57:00 -0800 (PST) Message-Id: <200304051757.h35Hv06P095959@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 09:57:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:57:01 -0000 marcus 2003/04/05 09:57:00 PST FreeBSD ports repository Modified files: net Makefile Log: Remove gaim-snapshot. Revision Changes Path 1.956 +0 -1 ports/net/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:58:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7727637B401; Sat, 5 Apr 2003 09:58:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3A1443FA3; Sat, 5 Apr 2003 09:58:25 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35HwP0U096042; Sat, 5 Apr 2003 09:58:25 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35HwP52096041; Sat, 5 Apr 2003 09:58:25 -0800 (PST) Message-Id: <200304051758.h35HwP52096041@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 09:58:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports MOVED X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:58:27 -0000 marcus 2003/04/05 09:58:25 PST FreeBSD ports repository Modified files: . MOVED Log: gaim-snapshot was removed, as net/gaim was updated to 0.60. Revision Changes Path 1.91 +2 -1 ports/MOVED From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:59:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B28937B401; Sat, 5 Apr 2003 09:59:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF28743FDD; Sat, 5 Apr 2003 09:59:05 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Hx50U096105; Sat, 5 Apr 2003 09:59:05 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Hx5Ag096104; Sat, 5 Apr 2003 09:59:05 -0800 (PST) Message-Id: <200304051759.h35Hx5Ag096104@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 09:59:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gnome2-fifth-toe Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:59:07 -0000 marcus 2003/04/05 09:59:05 PST FreeBSD ports repository Modified files: x11/gnome2-fifth-toe Makefile Log: Depend on net/gaim now. Revision Changes Path 1.27 +2 -1 ports/x11/gnome2-fifth-toe/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 09:59:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB8C737B401; Sat, 5 Apr 2003 09:59:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CF6743F75; Sat, 5 Apr 2003 09:59:52 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Hxq0U096154; Sat, 5 Apr 2003 09:59:52 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35HxqIQ096153; Sat, 5 Apr 2003 09:59:52 -0800 (PST) Message-Id: <200304051759.h35HxqIQ096153@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 09:59:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 17:59:53 -0000 marcus 2003/04/05 09:59:52 PST FreeBSD ports repository Modified files: . modules Log: Remove ports/net/gaim-snapshot. Revision Changes Path 1.6992 +0 -1 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 10:01:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CAC537B401; Sat, 5 Apr 2003 10:01:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBDF143FAF; Sat, 5 Apr 2003 10:01:47 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35I1l0U096594; Sat, 5 Apr 2003 10:01:47 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35I1lnl096593; Sat, 5 Apr 2003 10:01:47 -0800 (PST) Message-Id: <200304051801.h35I1lnl096593@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 10:01:47 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gaim Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 18:01:48 -0000 marcus 2003/04/05 10:01:47 PST FreeBSD ports repository Modified files: net/gaim Makefile Log: Gaim no longer needs WANT_GNOME. Revision Changes Path 1.90 +0 -1 ports/net/gaim/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 10:08:23 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B943237B401; Sat, 5 Apr 2003 10:08:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54C6843F85; Sat, 5 Apr 2003 10:08:23 -0800 (PST) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35I8N0U097737; Sat, 5 Apr 2003 10:08:23 -0800 (PST) (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35I8NuS097736; Sat, 5 Apr 2003 10:08:23 -0800 (PST) Message-Id: <200304051808.h35I8NuS097736@repoman.freebsd.org> From: Olivier Houchard Date: Sat, 5 Apr 2003 10:08:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa vesa.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 18:08:24 -0000 cognet 2003/04/05 10:08:22 PST FreeBSD src repository Modified files: sys/i386/isa vesa.c Log: Use vm_paddr_t instead of vm_offset_t for the paddr parameter of vesa_mmap. Revision Changes Path 1.42 +1 -1 src/sys/i386/isa/vesa.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 10:12:37 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5609937B401; Sat, 5 Apr 2003 10:12:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBE6243FA3; Sat, 5 Apr 2003 10:12:36 -0800 (PST) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35ICa0U098241; Sat, 5 Apr 2003 10:12:36 -0800 (PST) (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35ICaA5098240; Sat, 5 Apr 2003 10:12:36 -0800 (PST) Message-Id: <200304051812.h35ICaA5098240@repoman.freebsd.org> From: Olivier Houchard Date: Sat, 5 Apr 2003 10:12:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ed if_ed.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 18:12:37 -0000 cognet 2003/04/05 10:12:36 PST FreeBSD src repository Modified files: sys/dev/ed if_ed.c Log: Fix ed compilation with PAE by using %jx instead of %x. Revision Changes Path 1.217 +4 -4 src/sys/dev/ed/if_ed.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 10:16:50 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C775737B401; Sat, 5 Apr 2003 10:16:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66EB443FB1; Sat, 5 Apr 2003 10:16:50 -0800 (PST) (envelope-from jesusr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35IGo0U098521; Sat, 5 Apr 2003 10:16:50 -0800 (PST) (envelope-from jesusr@repoman.freebsd.org) Received: (from jesusr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35IGoga098520; Sat, 5 Apr 2003 10:16:50 -0800 (PST) Message-Id: <200304051816.h35IGoga098520@repoman.freebsd.org> From: Jesus Rodriguez Cuesta Date: Sat, 5 Apr 2003 10:16:50 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/es index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 18:16:51 -0000 jesusr 2003/04/05 10:16:50 PST FreeBSD doc repository Modified files: es index.sgml Log: Grammar fix and update copyright year. PR: 50416 Revision Changes Path 1.27 +3 -3 www/es/index.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 5 10:28:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0670C37B401; Sat, 5 Apr 2003 10:28:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CBEC43FAF; Sat, 5 Apr 2003 10:28:25 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35ISP0U099815; Sat, 5 Apr 2003 10:28:25 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35ISPmD099814; Sat, 5 Apr 2003 10:28:25 -0800 (PST) Message-Id: <200304051828.h35ISPmD099814@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 10:28:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports MOVED X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 18:28:26 -0000 marcus 2003/04/05 10:28:25 PST FreeBSD ports repository Modified files: . MOVED Log: Point net/gaim-snapshot to net/gaim. Revision Changes Path 1.92 +2 -2 ports/MOVED From owner-cvs-all@FreeBSD.ORG Sat Apr 5 10:28:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 211D037B401; Sat, 5 Apr 2003 10:28:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E20C43FD7; Sat, 5 Apr 2003 10:28:52 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35ISq0U099872; Sat, 5 Apr 2003 10:28:52 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35ISq6Y099871; Sat, 5 Apr 2003 10:28:52 -0800 (PST) Message-Id: <200304051828.h35ISq6Y099871@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 10:28:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gaim Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 18:28:53 -0000 marcus 2003/04/05 10:28:52 PST FreeBSD ports repository Modified files: net/gaim Makefile Log: Add a missing dependency on audiofile. Revision Changes Path 1.91 +2 -1 ports/net/gaim/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 10:33:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37A0C37B401; Sat, 5 Apr 2003 10:33:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5EC343F3F; Sat, 5 Apr 2003 10:33:01 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35IX10U000526; Sat, 5 Apr 2003 10:33:01 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35IX1bs000525; Sat, 5 Apr 2003 10:33:01 -0800 (PST) Message-Id: <200304051833.h35IX1bs000525@repoman.freebsd.org> From: Yen-Ming Lee Date: Sat, 5 Apr 2003 10:33:01 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/upnp/files patch-src::urlconfig::urlconfig.c patch-src::uuid::uuid.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 18:33:02 -0000 leeym 2003/04/05 10:33:01 PST FreeBSD ports repository Added files: devel/upnp/files patch-src::urlconfig::urlconfig.c patch-src::uuid::uuid.c Log: add 2 patch files and unbreak upnp on FreeBSD 4.x Submitted by: Steve Drew Revision Changes Path 1.1 +10 -0 ports/devel/upnp/files/patch-src::urlconfig::urlconfig.c (new) 1.1 +10 -0 ports/devel/upnp/files/patch-src::uuid::uuid.c (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 10:35:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90BB837B401; Sat, 5 Apr 2003 10:35:33 -0800 (PST) Received: from mail.droso.net (koala.droso.net [193.162.142.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7D9043F3F; Sat, 5 Apr 2003 10:35:32 -0800 (PST) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id 265FD32D09; Sat, 5 Apr 2003 20:35:31 +0200 (CEST) Date: Sat, 5 Apr 2003 20:35:31 +0200 From: Erwin Lansing To: Norikatsu Shigemura Message-ID: <20030405183531.GB76804@droso.net> References: <200304050956.h359u9ei043227@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="k1lZvvs/B4yU6o8G" Content-Disposition: inline In-Reply-To: <200304050956.h359u9ei043227@repoman.freebsd.org> X-Operating-System: FreeBSD/i386 4.8-RC User-Agent: Mutt/1.5.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/converters/p5-MIME-Base64/files patch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 18:35:34 -0000 --k1lZvvs/B4yU6o8G Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 05, 2003 at 01:56:09AM -0800, Norikatsu Shigemura wrote: > nork 2003/04/05 01:56:09 PST >=20 > FreeBSD ports repository >=20 > Added files: > converters/p5-MIME-Base64/files patch-Makefile.PL=20 > Log: > Fix install directory with perl 5.8 or later. > =20 > PR: ports/50554 http://www.FreeBSD.org/cgi/query-pr.cgi?pr= =3D50554 > Submitted by: Sergey Matveychuk > Approved by: maintainer timeout (3 days) > =20 Actually, I approved this patch at Date: Thu, 3 Apr 2003 07:13:28 +0200, but somehow this never made it into gnats. Cheers, -erwin --=20 _._ _,-'""`-._ Erwin Lansing (,-.`._,'( |\`-/| http://droso.org/ erwin@lansing.dk `-.-' \ )-`( , o o) http://fnidder.dk/ -bf- `- \`_`"'- --k1lZvvs/B4yU6o8G Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jyHyqy9aWxUlaZARAtTfAJwLe2AmXISis1pU/ozefS98AA0NRQCeJ7WL PHhrS1JjKJ8tDT4tcJWW8Pw= =szc2 -----END PGP SIGNATURE----- --k1lZvvs/B4yU6o8G-- From owner-cvs-all@FreeBSD.ORG Sat Apr 5 10:37:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71D0337B401; Sat, 5 Apr 2003 10:37:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DFDC43F93; Sat, 5 Apr 2003 10:37:19 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35IbI0U000744; Sat, 5 Apr 2003 10:37:18 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35IbIlg000743; Sat, 5 Apr 2003 10:37:18 -0800 (PST) Message-Id: <200304051837.h35IbIlg000743@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sat, 5 Apr 2003 10:37:18 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc Makefile ports/misc/chmlib Makefile distinfo pkg-descr pkg-plist ports/misc/chmlib/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 18:37:19 -0000 ijliao 2003/04/05 10:37:18 PST FreeBSD ports repository Modified files: misc Makefile Added files: misc/chmlib Makefile distinfo pkg-descr pkg-plist misc/chmlib/files patch-Makefile Log: add chmlib 0.3.1 A library for dealing with Microsoft ITSS/CHM format files Revision Changes Path 1.546 +1 -0 ports/misc/Makefile 1.1 +25 -0 ports/misc/chmlib/Makefile (new) 1.1 +1 -0 ports/misc/chmlib/distinfo (new) 1.1 +19 -0 ports/misc/chmlib/files/patch-Makefile (new) 1.1 +7 -0 ports/misc/chmlib/pkg-descr (new) 1.1 +5 -0 ports/misc/chmlib/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 10:37:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58F4B37B404; Sat, 5 Apr 2003 10:37:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE98043F75; Sat, 5 Apr 2003 10:37:27 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35IbR0U000783; Sat, 5 Apr 2003 10:37:27 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35IbR2P000782; Sat, 5 Apr 2003 10:37:27 -0800 (PST) Message-Id: <200304051837.h35IbR2P000782@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sat, 5 Apr 2003 10:37:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 18:37:28 -0000 ijliao 2003/04/05 10:37:27 PST FreeBSD ports repository Modified files: . modules Log: chmlib --> ports/misc/chmlib Revision Changes Path 1.6993 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 10:46:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AE6937B401; Sat, 5 Apr 2003 10:46:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB39843FAF; Sat, 5 Apr 2003 10:46:56 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Iku0U001454; Sat, 5 Apr 2003 10:46:56 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Iku3f001453; Sat, 5 Apr 2003 10:46:56 -0800 (PST) Message-Id: <200304051846.h35Iku3f001453@repoman.freebsd.org> From: Dirk Meyer Date: Sat, 5 Apr 2003 10:46:56 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/galeon2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 18:46:57 -0000 dinoex 2003/04/05 10:46:56 PST FreeBSD ports repository Modified files: www/galeon2 Makefile Log: allow build with more warnings enabled, NO_WERROR=yes Approved by: marcus Revision Changes Path 1.101 +4 -0 ports/www/galeon2/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 11:03:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6288437B401; Sat, 5 Apr 2003 11:03:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03F8143F75; Sat, 5 Apr 2003 11:03:24 -0800 (PST) (envelope-from jdp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35J3N0U003629; Sat, 5 Apr 2003 11:03:23 -0800 (PST) (envelope-from jdp@repoman.freebsd.org) Received: (from jdp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35J3NUB003628; Sat, 5 Apr 2003 11:03:23 -0800 (PST) Message-Id: <200304051903.h35J3NUB003628@repoman.freebsd.org> From: John Polstra Date: Sat, 5 Apr 2003 11:03:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/dev/fxp if_fxp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 19:03:24 -0000 jdp 2003/04/05 11:03:23 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/fxp if_fxp.c Log: MFC 1.151: Correct names for fxp devices. Sort data by devid in fxp_ident_table. PR: kern/48699 Revision Changes Path 1.110.2.29 +20 -20 src/sys/dev/fxp/if_fxp.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 11:06:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF73237B401; Sat, 5 Apr 2003 11:06:26 -0800 (PST) Received: from cvsup.no.freebsd.org (c2h5oh.idi.ntnu.no [129.241.103.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29A0743FAF; Sat, 5 Apr 2003 11:06:25 -0800 (PST) (envelope-from Tor.Egge@cvsup.no.freebsd.org) Received: from localhost (localhost [127.0.0.1])h35J6Nai037486; Sat, 5 Apr 2003 19:06:24 GMT (envelope-from tegge@cvsup.no.freebsd.org) To: des@ofug.org From: Tor.Egge@cvsup.no.freebsd.org In-Reply-To: References: <200304042354.h34NslFp075997@repoman.freebsd.org> X-Mailer: Mew version 1.94.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20030405190623H.tegge@cvsup.no.freebsd.org> Date: Sat, 05 Apr 2003 19:06:23 GMT Sender: Tor Egge X-Dispatcher: imput version 20000228(IM140) Lines: 26 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 tsc.c src/sys/i386/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 19:06:27 -0000 > Tor Egge writes: > > Log: > > Add SMP_TSC option, which can be used on SMP systems where the TSCs > > are synchronized to reduce context switch cost. > > Out of curiosity, what kind of systems would that be? Dell PowerEdge 2450, 2 x 733 MHz PIII CPUs, 1 GB memory. Elapsed times of "dd if=/dev/da0s4g of=/dev/null bs=512 count=200000" test: 5.0-CURRENT 5.0-CURRENT 5.0-CURRENT 4.8-RELEASE 4.8-RELEASE i8254 ACPI-safe TSC i8254 TSC 48.010578 35.460545 29.709355 13.326655 12.426712 48.041532 35.153883 29.797299 13.359450 12.411480 48.039143 35.113667 29.610601 13.349306 12.804534 47.630433 35.163372 30.036985 13.258281 12.473128 47.693183 35.240809 29.728361 13.332692 12.473128 Which gives average microseconds/read of 239 176 149 67 63 - Tor Egge From owner-cvs-all@FreeBSD.ORG Sat Apr 5 11:11:41 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC93737B401; Sat, 5 Apr 2003 11:11:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69A3C43F93; Sat, 5 Apr 2003 11:11:41 -0800 (PST) (envelope-from jdp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35JBf0U004279; Sat, 5 Apr 2003 11:11:41 -0800 (PST) (envelope-from jdp@repoman.freebsd.org) Received: (from jdp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35JBfhg004278; Sat, 5 Apr 2003 11:11:41 -0800 (PST) Message-Id: <200304051911.h35JBfhg004278@repoman.freebsd.org> From: John Polstra Date: Sat, 5 Apr 2003 11:11:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/contrib/nvi/catalog ru_SU.KOI8-R ru_SU.KOI8-R.base X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 19:11:42 -0000 jdp 2003/04/05 11:11:41 PST FreeBSD src repository Modified files: (Branch: RELENG_4) contrib/nvi/catalog ru_SU.KOI8-R ru_SU.KOI8-R.base Log: MFC ru_SU.KOI8-R 1.4 and ru_SU.KOI8-R.base 1.3: Fixes for the Russian translations of the messages. PR: bin/48035, bin/48036 Revision Changes Path 1.3.6.1 +4 -4 src/contrib/nvi/catalog/ru_SU.KOI8-R 1.2.6.1 +4 -4 src/contrib/nvi/catalog/ru_SU.KOI8-R.base From owner-cvs-all@FreeBSD.ORG Sat Apr 5 11:12:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48C1737B401; Sat, 5 Apr 2003 11:12:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAA1043F85; Sat, 5 Apr 2003 11:12:51 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35JCp0U004332; Sat, 5 Apr 2003 11:12:51 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35JCpNq004331; Sat, 5 Apr 2003 11:12:51 -0800 (PST) Message-Id: <200304051912.h35JCpNq004331@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 5 Apr 2003 11:12:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4/man4.i386 Makefile smapi.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 19:12:52 -0000 trhodes 2003/04/05 11:12:51 PST FreeBSD src repository Modified files: share/man/man4/man4.i386 Makefile Added files: share/man/man4/man4.i386 smapi.4 Log: Add a manual page for the smapi module. Reviewed by: ru, mdodd Revision Changes Path 1.143 +1 -1 src/share/man/man4/man4.i386/Makefile 1.1 +154 -0 src/share/man/man4/man4.i386/smapi.4 (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 11:16:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C307837B401; Sat, 5 Apr 2003 11:16:29 -0800 (PST) Received: from shrike.submonkey.net (pc1-cdif2-5-cust38.cdif.cable.ntl.com [81.101.150.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1A9843F93; Sat, 5 Apr 2003 11:16:28 -0800 (PST) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.12) id 191t9P-000O84-00; Sat, 05 Apr 2003 20:16:27 +0100 Date: Sat, 5 Apr 2003 20:16:27 +0100 From: Ceri Davies To: Erwin Lansing Message-ID: <20030405191627.GA91947@submonkey.net> Mail-Followup-To: Ceri Davies , Erwin Lansing , Norikatsu Shigemura , cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org References: <200304050956.h359u9ei043227@repoman.freebsd.org> <20030405183531.GB76804@droso.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030405183531.GB76804@droso.net> User-Agent: Mutt/1.5.4i Sender: Ceri Davies cc: cvs-ports@FreeBSD.org cc: Norikatsu Shigemura cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/converters/p5-MIME-Base64/files patch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 19:16:30 -0000 On Sat, Apr 05, 2003 at 08:35:31PM +0200, Erwin Lansing wrote: > On Sat, Apr 05, 2003 at 01:56:09AM -0800, Norikatsu Shigemura wrote: > > nork 2003/04/05 01:56:09 PST > > > > FreeBSD ports repository > > > > Added files: > > converters/p5-MIME-Base64/files patch-Makefile.PL > > Log: > > Fix install directory with perl 5.8 or later. > > > > PR: ports/50554 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=50554 > > Submitted by: Sergey Matveychuk > > Approved by: maintainer timeout (3 days) > > > Actually, I approved this patch at Date: Thu, 3 Apr 2003 07:13:28 +0200, > but somehow this never made it into gnats. It's in the pending category as pending/50556. This is because the subject of your mail was: 'Re: [BUG] converters/p5-MIME-Base64 2.18 installs files into wrong dirrectory' which doesn't contain the original port number at the beginning, i.e.: 'Re: ports/50554 [BUG] converters/p5-MIME-Base64 ...'. It's understandable, as the original PR submission was cc'd to you, and presumably you just replied to all - unfortunately there's no way for GNATS to know which PR you're following up to when that happens, so it gets put into pending. keramida and myself (and perhaps others) periodically go through the pending PRs and move the content to the correct PRs, but in this instance you've fallen through the gaps. Ceri -- From owner-cvs-all@FreeBSD.ORG Sat Apr 5 11:25:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D67C37B401; Sat, 5 Apr 2003 11:25:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BBB443FB1; Sat, 5 Apr 2003 11:25:45 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35JPi0U005111; Sat, 5 Apr 2003 11:25:44 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35JPiYx005110; Sat, 5 Apr 2003 11:25:44 -0800 (PST) Message-Id: <200304051925.h35JPiYx005110@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 5 Apr 2003 11:25:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 Makefile wlan.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 19:25:45 -0000 trhodes 2003/04/05 11:25:44 PST FreeBSD src repository Modified files: share/man/man4 Makefile Added files: share/man/man4 wlan.4 Log: Add a basic manual page for wlan(4). Reviewed by: imp, ru Revision Changes Path 1.196 +1 -0 src/share/man/man4/Makefile 1.1 +70 -0 src/share/man/man4/wlan.4 (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 11:27:07 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 386EC37B404; Sat, 5 Apr 2003 11:27:07 -0800 (PST) Received: from mail.droso.net (koala.droso.net [193.162.142.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B96743FA3; Sat, 5 Apr 2003 11:27:06 -0800 (PST) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id 7AB6732D09; Sat, 5 Apr 2003 21:27:05 +0200 (CEST) Date: Sat, 5 Apr 2003 21:27:05 +0200 From: Erwin Lansing To: Ceri Davies , Erwin Lansing , Norikatsu Shigemura , cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Message-ID: <20030405192705.GC76804@droso.net> References: <200304050956.h359u9ei043227@repoman.freebsd.org> <20030405183531.GB76804@droso.net> <20030405191627.GA91947@submonkey.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="aVD9QWMuhilNxW9f" Content-Disposition: inline In-Reply-To: <20030405191627.GA91947@submonkey.net> X-Operating-System: FreeBSD/i386 4.8-RC User-Agent: Mutt/1.5.4i Subject: Re: cvs commit: ports/converters/p5-MIME-Base64/files patch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 19:27:07 -0000 --aVD9QWMuhilNxW9f Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 05, 2003 at 08:16:27PM +0100, Ceri Davies wrote: > On Sat, Apr 05, 2003 at 08:35:31PM +0200, Erwin Lansing wrote: > > > =20 > > Actually, I approved this patch at Date: Thu, 3 Apr 2003 07:13:28 +0200, > > but somehow this never made it into gnats. >=20 > It's in the pending category as pending/50556. > This is because the subject of your mail was: > 'Re: [BUG] converters/p5-MIME-Base64 2.18 installs files into wrong dirre= ctory' > which doesn't contain the original port number at the beginning, i.e.: > 'Re: ports/50554 [BUG] converters/p5-MIME-Base64 ...'. >=20 > It's understandable, as the original PR submission was cc'd to you, and > presumably you just replied to all - unfortunately there's no way for GNA= TS > to know which PR you're following up to when that happens, so it gets put > into pending. >=20 Aah, makes sense. I usually remember to edit the subject, but clearly forgot this time. Thanks for clearing this up! Cheers, -erwin --=20 _._ _,-'""`-._ Erwin Lansing (,-.`._,'( |\`-/| http://droso.org/ erwin@lansing.dk `-.-' \ )-`( , o o) http://fnidder.dk/ -bf- `- \`_`"'- --aVD9QWMuhilNxW9f Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jy4Jqy9aWxUlaZARAs9pAKD64+QOsxSpO9oYz62G9H7SZ0NE7ACgr+9l QmccxoIMJPaFlKhrPijPmRI= =rYpT -----END PGP SIGNATURE----- --aVD9QWMuhilNxW9f-- From owner-cvs-all@FreeBSD.ORG Sat Apr 5 11:35:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDEE337B401; Sat, 5 Apr 2003 11:35:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CDCB43F75; Sat, 5 Apr 2003 11:35:38 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35JZc0U005854; Sat, 5 Apr 2003 11:35:38 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35JZbat005849; Sat, 5 Apr 2003 11:35:37 -0800 (PST) Message-Id: <200304051935.h35JZbat005849@repoman.freebsd.org> From: Dirk Meyer Date: Sat, 5 Apr 2003 11:35:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/xanim Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 19:35:39 -0000 dinoex 2003/04/05 11:35:37 PST FreeBSD ports repository Modified files: multimedia/xanim Makefile pkg-descr Log: - rmove offline site xanim.va.pubnix.com - add new mirror Revision Changes Path 1.35 +3 -3 ports/multimedia/xanim/Makefile 1.6 +3 -1 ports/multimedia/xanim/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Apr 5 11:40:20 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CC9D37B401; Sat, 5 Apr 2003 11:40:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DB6243FAF; Sat, 5 Apr 2003 11:40:20 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35JeK0U006137; Sat, 5 Apr 2003 11:40:20 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35JeJ8P006134; Sat, 5 Apr 2003 11:40:19 -0800 (PST) Message-Id: <200304051940.h35JeJ8P006134@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 5 Apr 2003 11:40:19 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/digikam Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 19:40:21 -0000 arved 2003/04/05 11:40:19 PST FreeBSD ports repository Modified files: graphics/digikam Makefile Log: Fix build by adding dependency on kdesdk. This port uses xml2pot to build his docs Submitted by: maintainer Reported by: bento Revision Changes Path 1.3 +2 -2 ports/graphics/digikam/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 11:46:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC03237B401; Sat, 5 Apr 2003 11:46:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AA3643FDF; Sat, 5 Apr 2003 11:46:15 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35JkF0U006606; Sat, 5 Apr 2003 11:46:15 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35JkF3c006605; Sat, 5 Apr 2003 11:46:15 -0800 (PST) Message-Id: <200304051946.h35JkF3c006605@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 5 Apr 2003 11:46:15 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/tidy-devel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 19:46:16 -0000 arved 2003/04/05 11:46:15 PST FreeBSD ports repository Modified files: www/tidy-devel Makefile distinfo Log: Update to 030403 PR: 50611 Submitted by: maintainer Revision Changes Path 1.34 +2 -2 ports/www/tidy-devel/Makefile 1.25 +2 -2 ports/www/tidy-devel/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 5 11:47:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E9CE37B401; Sat, 5 Apr 2003 11:47:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2C7043F3F; Sat, 5 Apr 2003 11:47:57 -0800 (PST) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Jlv0U006664; Sat, 5 Apr 2003 11:47:57 -0800 (PST) (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Jlv1c006663; Sat, 5 Apr 2003 11:47:57 -0800 (PST) Message-Id: <200304051947.h35Jlv1c006663@repoman.freebsd.org> From: Jimmy Olgeni Date: Sat, 5 Apr 2003 11:47:57 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/webmin Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 19:47:58 -0000 olgeni 2003/04/05 11:47:57 PST FreeBSD ports repository Modified files: sysutils/webmin Makefile distinfo Log: Update modules: mount-1.070-6, net-1.070-7, sendmail-1.070-4, webmin-1.070-6. Revision Changes Path 1.157 +6 -3 ports/sysutils/webmin/Makefile 1.122 +4 -1 ports/sysutils/webmin/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 5 12:16:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36FC737B401; Sat, 5 Apr 2003 12:16:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9ADE43F75; Sat, 5 Apr 2003 12:16:44 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35KGi0U009528; Sat, 5 Apr 2003 12:16:44 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35KGiVa009527; Sat, 5 Apr 2003 12:16:44 -0800 (PST) Message-Id: <200304052016.h35KGiVa009527@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 5 Apr 2003 12:16:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/qbrew Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 20:16:45 -0000 arved 2003/04/05 12:16:44 PST FreeBSD ports repository Modified files: misc/qbrew Makefile distinfo Log: Update to 0.3.3 PR: 48992 Submitted by: maintainer Revision Changes Path 1.8 +1 -1 ports/misc/qbrew/Makefile 1.6 +1 -1 ports/misc/qbrew/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 5 12:19:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A713037B401; Sat, 5 Apr 2003 12:19:40 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A30643F75; Sat, 5 Apr 2003 12:19:39 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 621715308; Sat, 5 Apr 2003 22:19:36 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Tor.Egge@cvsup.no.freebsd.org From: des@ofug.org (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=) Date: Sat, 05 Apr 2003 22:19:36 +0200 In-Reply-To: <20030405190623H.tegge@cvsup.no.freebsd.org> (Tor.Egge@cvsup.no.freebsd.org's message of "Sat, 05 Apr 2003 19:06:23 GMT") Message-ID: User-Agent: Gnus/5.090015 (Oort Gnus v0.15) Emacs/21.2 References: <200304042354.h34NslFp075997@repoman.freebsd.org> <20030405190623H.tegge@cvsup.no.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 tsc.c src/sys/i386/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 20:19:41 -0000 Tor.Egge@cvsup.no.freebsd.org writes: > > Out of curiosity, what kind of systems would that be? > Dell PowerEdge 2450, 2 x 733 MHz PIII CPUs, 1 GB memory. What I mean is - what processors / chipsets support this? Will it work on any multi-processor P3 or P4 system, or does it require special chipset support? DES --=20 Dag-Erling Sm=F8rgrav - des@ofug.org From owner-cvs-all@FreeBSD.ORG Sat Apr 5 12:25:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0858737B405; Sat, 5 Apr 2003 12:25:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B27743F75; Sat, 5 Apr 2003 12:25:58 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35KPw0U010115; Sat, 5 Apr 2003 12:25:58 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35KPwZ0010114; Sat, 5 Apr 2003 12:25:58 -0800 (PST) Message-Id: <200304052025.h35KPwZ0010114@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 5 Apr 2003 12:25:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/slurm Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 20:25:59 -0000 arved 2003/04/05 12:25:58 PST FreeBSD ports repository Modified files: net/slurm Makefile distinfo Log: Updating to 0.2.2 PR: 50531 Submitted by: author Approved by: maintainer Revision Changes Path 1.11 +4 -4 ports/net/slurm/Makefile 1.10 +1 -1 ports/net/slurm/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 5 12:29:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B930D37B401; Sat, 5 Apr 2003 12:29:16 -0800 (PST) Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED45943FA3; Sat, 5 Apr 2003 12:29:15 -0800 (PST) (envelope-from julian@elischer.org) Received: from interjet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by rwcrmhc52.attbi.com (rwcrmhc52) with ESMTP id <20030405202914052003k0k4e>; Sat, 5 Apr 2003 20:29:15 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id MAA45806; Sat, 5 Apr 2003 12:29:11 -0800 (PST) Date: Sat, 5 Apr 2003 12:29:09 -0800 (PST) From: Julian Elischer To: "Jacques A. Vidrine" In-Reply-To: <20030405152827.GA16477@madman.celabo.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Julian Elischer cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/xdr xdr_mem.c src/sys/conf newvers.sh src UPDATING src/include/rpc xdr.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 20:29:17 -0000 On Sat, 5 Apr 2003, Jacques A. Vidrine wrote: > On Fri, Apr 04, 2003 at 11:09:45AM -0800, Julian Elischer wrote: > > julian 2003/04/04 11:09:45 PST > > > > FreeBSD src repository > > > > Modified files: (Branch: RELENG_4_4) > > lib/libc/xdr xdr_mem.c > > sys/conf newvers.sh > > . UPDATING > > include/rpc xdr.h > > Log: > > MF4.6 > > Security update FreeBSD-SA-03:05.xdr > > Thanks, Julian! The audience may notice that RELENG_4_5 has not been > patched. I hope this doesn't cause any confusion. I don't think > you've ever made a public statement that you would be extending the > life of the RELENG_4_4 branch (apparently selectively ... I think you > have skipped some fixes). I hace skipped the openssl patches as what my custommers get is 4.4 with a libcrypto checked out from 4.6. I suppose I could just MF4.6 -> 4.4 the openssl directory but it just takes a bit more time than I have right now to make sure all teh right files are removed an added. The custommers have decided to go to 4.8 thank god so hopefully I can drop 4.4 in 6 months. > > > Approved by: re@ (blanket agreement for 4.4) > > Actually, you need approval from security-officer (which you have). > Probably just a typo. What he said.. > > Cheers, > -- > Jacques A. Vidrine http://www.celabo.org/ > NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos > jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se > From owner-cvs-all@FreeBSD.ORG Sat Apr 5 12:30:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A16AA37B401; Sat, 5 Apr 2003 12:30:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C5F543FA3; Sat, 5 Apr 2003 12:30:31 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35KUU0U010687; Sat, 5 Apr 2003 12:30:30 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35KUUjp010685; Sat, 5 Apr 2003 12:30:30 -0800 (PST) Message-Id: <200304052030.h35KUUjp010685@repoman.freebsd.org> From: Warner Losh Date: Sat, 5 Apr 2003 12:30:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 src/gnu/usr.bin/binutils/ld Makefile src/kerberos5/lib/libasn1 Makefile src/kerberos5/lib/libhdb Makefile src/lib/libncurses Makefile src/share/mk bsd.sys.mk src/usr.bin/xargs xargs.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 20:30:32 -0000 imp 2003/04/05 12:30:30 PST FreeBSD src repository Modified files: . Makefile.inc1 gnu/usr.bin/binutils/ld Makefile gnu/usr.bin/binutils/libiberty Makefile kerberos5/lib/libasn1 Makefile kerberos5/lib/libhdb Makefile lib/libncurses Makefile share/mk bsd.sys.mk usr.bin/xargs xargs.c usr.bin/xinstall Makefile Added files: tools/build Makefile Makefile.boot dummy.c endian.h langinfo.h progname.c Log: Migrate to a new way of dealing with building from old revisions of FreeBSD. This method attempts to centralize all the necessary hacks or work arounds in one of two places in the tree (src/Makefile.inc1 and src/tools/build). We build a small compatibility library (libbuild.a) as well as selectively installing necessary include files. We then include this directory when building host binaries. This removes all the past release compatibilty hacks from various places in the tree. We still build on tip of stable and current. I will work with those that want to support more, although I anticipate it will just work. Many thanks to ru@, obrien@ and jhb@ for providing valuable input at various stage of implementation, as well as for working together to positively effect a change for the better. Revision Changes Path 1.332 +10 -9 src/Makefile.inc1 1.24 +1 -9 src/gnu/usr.bin/binutils/ld/Makefile 1.18 +0 -5 src/gnu/usr.bin/binutils/libiberty/Makefile 1.18 +1 -7 src/kerberos5/lib/libasn1/Makefile 1.11 +1 -7 src/kerberos5/lib/libhdb/Makefile 1.67 +0 -4 src/lib/libncurses/Makefile 1.14 +0 -7 src/share/mk/bsd.sys.mk 1.1 +58 -0 src/tools/build/Makefile (new) 1.1 +18 -0 src/tools/build/Makefile.boot (new) 1.1 +5 -0 src/tools/build/dummy.c (new) 1.1 +57 -0 src/tools/build/endian.h (new) 1.1 +17 -0 src/tools/build/langinfo.h (new) 1.1 +25 -0 src/tools/build/progname.c (new) 1.50 +1 -14 src/usr.bin/xargs/xargs.c 1.21 +0 -7 src/usr.bin/xinstall/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 12:34:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23D7337B401; Sat, 5 Apr 2003 12:34:54 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30B3943F93; Sat, 5 Apr 2003 12:34:53 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id D5A4E66D16; Sat, 5 Apr 2003 12:34:52 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id B4BD512D3; Sat, 5 Apr 2003 12:34:52 -0800 (PST) Date: Sat, 5 Apr 2003 12:34:52 -0800 From: Kris Kennaway To: Jacques Vidrine Message-ID: <20030405203452.GE42452@rot13.obsecurity.org> References: <200304051700.h35H0iUB091015@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="AsxXAMtlQ5JHofzM" Content-Disposition: inline In-Reply-To: <200304051700.h35H0iUB091015@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/krb4 pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 20:34:54 -0000 --AsxXAMtlQ5JHofzM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 05, 2003 at 09:00:44AM -0800, Jacques Vidrine wrote: > nectar 2003/04/05 09:00:44 PST >=20 > FreeBSD ports repository >=20 > Modified files: > security/krb4 pkg-plist=20 > Log: > Remove ${PREFIX}/include/ss on deinstall. > =20 > Reported by: kris Hmm..I thought I was seeing dozens of directories (basically the entire contents of the mtree files) still present after deinstall. Kris --AsxXAMtlQ5JHofzM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jz3sWry0BWjoQKURAsvVAKDN2uiKPhV11v+lRqUSkdam/VJa+gCgnzfb 3SFQoNYlBJN6GkryPqpb5jU= =d5Fh -----END PGP SIGNATURE----- --AsxXAMtlQ5JHofzM-- From owner-cvs-all@FreeBSD.ORG Sat Apr 5 12:39:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D556037B401; Sat, 5 Apr 2003 12:39:08 -0800 (PST) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDD3743F75; Sat, 5 Apr 2003 12:39:07 -0800 (PST) (envelope-from stijn@pcwin002.win.tue.nl) Received: from pcwin002.win.tue.nl (orb_rules@localhost [127.0.0.1]) by pcwin002.win.tue.nl (8.12.8/8.12.8) with ESMTP id h35KcXSZ006513; Sat, 5 Apr 2003 22:38:33 +0200 (CEST) (envelope-from stijn@pcwin002.win.tue.nl) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.12.8/8.12.8/Submit) id h35KcXUl006512; Sat, 5 Apr 2003 22:38:33 +0200 (CEST) Date: Sat, 5 Apr 2003 22:38:33 +0200 From: Stijn Hoop To: Warner Losh Message-ID: <20030405203833.GA6352@pcwin002.win.tue.nl> References: <200304052030.h35KUUjp010685@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline In-Reply-To: <200304052030.h35KUUjp010685@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Bright-Idea: Let's abolish HTML mail! cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src Makefile.inc1 src/gnu/usr.bin/binutils/ld Makefile src/kerberos5/lib/libasn1 Makefile src/kerberos5/lib/libhdb Makefile src/lib/libncurses Makefile src/share/mk bsd.sys.mk src/usr.bin/xargs xargs.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 20:39:09 -0000 --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 05, 2003 at 12:30:30PM -0800, Warner Losh wrote: > Migrate to a new way of dealing with building from old revisions of > FreeBSD. This method attempts to centralize all the necessary hacks > or work arounds in one of two places in the tree (src/Makefile.inc1 > and src/tools/build). We build a small compatibility library > (libbuild.a) as well as selectively installing necessary include > files. We then include this directory when building host binaries. Great work! --Stijn --=20 "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." -- Kristian Wilson, Nintendo, Inc., 1989 --h31gzZEtNLTqOjlF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+jz7JY3r/tLQmfWcRAgIyAJ9cNZgY7Dq4RVZ7Lz6dnWyHTqBcwwCbBeuZ uLo+sMYWYU2RBNNtfd+vmUo= =wM1+ -----END PGP SIGNATURE----- --h31gzZEtNLTqOjlF-- From owner-cvs-all@FreeBSD.ORG Sat Apr 5 12:47:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E41BF37B401; Sat, 5 Apr 2003 12:47:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 854F243FBD; Sat, 5 Apr 2003 12:47:47 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Kll0U016943; Sat, 5 Apr 2003 12:47:47 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35KllZC016942; Sat, 5 Apr 2003 12:47:47 -0800 (PST) Message-Id: <200304052047.h35KllZC016942@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 12:47:47 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 20:47:48 -0000 marcus 2003/04/05 12:47:47 PST FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Remove the old USE_GNOMECTRL macro as no more ports are using it. Revision Changes Path 1.26 +1 -4 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Sat Apr 5 12:50:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73C4937B407; Sat, 5 Apr 2003 12:50:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2F4D43FDD; Sat, 5 Apr 2003 12:50:16 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35KoG0U017104; Sat, 5 Apr 2003 12:50:16 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35KoG4F017101; Sat, 5 Apr 2003 12:50:16 -0800 (PST) Message-Id: <200304052050.h35KoG4F017101@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sat, 5 Apr 2003 12:50:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www Makefile ports/www/linux-flashplugin6 Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 20:50:19 -0000 nork 2003/04/05 12:50:16 PST FreeBSD ports repository Modified files: www Makefile Added files: www/linux-flashplugin6 Makefile distinfo pkg-descr pkg-plist Log: Add linux-flashplugin6 6.0r69, the official Macromedia Flash Player for Linux Mozilla and Netscape 6+. PR: ports/48616 Submitted by: Brandon D. Valentine Revision Changes Path 1.629 +1 -0 ports/www/Makefile 1.1 +43 -0 ports/www/linux-flashplugin6/Makefile (new) 1.1 +1 -0 ports/www/linux-flashplugin6/distinfo (new) 1.1 +11 -0 ports/www/linux-flashplugin6/pkg-descr (new) 1.1 +9 -0 ports/www/linux-flashplugin6/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 12:50:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4E9F37B413; Sat, 5 Apr 2003 12:50:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85E3743F85; Sat, 5 Apr 2003 12:50:31 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35KoV0U017226; Sat, 5 Apr 2003 12:50:31 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35KoU7s017223; Sat, 5 Apr 2003 12:50:30 -0800 (PST) Message-Id: <200304052050.h35KoU7s017223@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sat, 5 Apr 2003 12:50:30 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 20:50:32 -0000 nork 2003/04/05 12:50:30 PST FreeBSD ports repository Modified files: . modules Log: linux-flashplugin6 --> ports/www/linux-flashplugin6 Revision Changes Path 1.6994 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 12:54:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 747A637B401; Sat, 5 Apr 2003 12:54:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14E4243F3F; Sat, 5 Apr 2003 12:54:55 -0800 (PST) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Kss0U017588; Sat, 5 Apr 2003 12:54:54 -0800 (PST) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Kss28017587; Sat, 5 Apr 2003 12:54:54 -0800 (PST) Message-Id: <200304052054.h35Kss28017587@repoman.freebsd.org> From: Nate Lawson Date: Sat, 5 Apr 2003 12:54:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/rtadvd config.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 20:54:56 -0000 njl 2003/04/05 12:54:54 PST FreeBSD src repository Modified files: usr.sbin/rtadvd config.c Log: Use assignment, not equivalence test. No response from: suz Revision Changes Path 1.14 +1 -1 src/usr.sbin/rtadvd/config.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:00:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B615637B404; Sat, 5 Apr 2003 13:00:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5587243F3F; Sat, 5 Apr 2003 13:00:59 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35L0x0U018066; Sat, 5 Apr 2003 13:00:59 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35L0xKI018064; Sat, 5 Apr 2003 13:00:59 -0800 (PST) Message-Id: <200304052100.h35L0xKI018064@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 13:00:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/euchre Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:01:00 -0000 marcus 2003/04/05 13:00:59 PST FreeBSD ports repository Modified files: games/euchre Makefile Log: Convert to new GNOME infrastructure. Revision Changes Path 1.4 +1 -1 ports/games/euchre/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:01:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 627B437B401; Sat, 5 Apr 2003 13:01:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F327E43FBF; Sat, 5 Apr 2003 13:01:16 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35L1G0U018242; Sat, 5 Apr 2003 13:01:16 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35L1GIA018240; Sat, 5 Apr 2003 13:01:16 -0800 (PST) Message-Id: <200304052101.h35L1GIA018240@repoman.freebsd.org> From: Alan Cox Date: Sat, 5 Apr 2003 13:01:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_pager.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:01:18 -0000 alc 2003/04/05 13:01:16 PST FreeBSD src repository Modified files: sys/vm vm_pager.c Log: Remove GIANT_REQUIRED from getpbuf(). Reviewed by: tegge Reduce pbuf_mtx's scope in relpbuf(). Submitted by: tegge Revision Changes Path 1.85 +1 -2 src/sys/vm/vm_pager.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:01:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AFFA37B401; Sat, 5 Apr 2003 13:01:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39DBD43F93; Sat, 5 Apr 2003 13:01:54 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35L1s0U018313; Sat, 5 Apr 2003 13:01:54 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35L1rc3018312; Sat, 5 Apr 2003 13:01:53 -0800 (PST) Message-Id: <200304052101.h35L1rc3018312@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 13:01:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/sjog Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:01:55 -0000 marcus 2003/04/05 13:01:53 PST FreeBSD ports repository Modified files: sysutils/sjog Makefile Log: Convert to new GNOME infrastructure. Revision Changes Path 1.6 +1 -1 ports/sysutils/sjog/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:02:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE55A37B401; Sat, 5 Apr 2003 13:02:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EF2143F3F; Sat, 5 Apr 2003 13:02:36 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35L2a0U018356; Sat, 5 Apr 2003 13:02:36 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35L2at1018355; Sat, 5 Apr 2003 13:02:36 -0800 (PST) Message-Id: <200304052102.h35L2at1018355@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 13:02:36 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/jabber-yahoo Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:02:37 -0000 marcus 2003/04/05 13:02:36 PST FreeBSD ports repository Modified files: net/jabber-yahoo Makefile Log: Convert to new GNOME infrastructure. Revision Changes Path 1.8 +1 -1 ports/net/jabber-yahoo/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:03:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87BF437B401; Sat, 5 Apr 2003 13:03:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DFA043FAF; Sat, 5 Apr 2003 13:03:01 -0800 (PST) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35L300U018503; Sat, 5 Apr 2003 13:03:00 -0800 (PST) (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35L30sq018453; Sat, 5 Apr 2003 13:03:00 -0800 (PST) Message-Id: <200304052103.h35L30sq018453@repoman.freebsd.org> From: Jimmy Olgeni Date: Sat, 5 Apr 2003 13:03:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/usermin Makefile distinfo ports/sysutils/usermin/files patch-setup.sh usermin.sh.sample X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:03:02 -0000 olgeni 2003/04/05 13:03:00 PST FreeBSD ports repository Modified files: sysutils/usermin Makefile distinfo sysutils/usermin/files patch-setup.sh usermin.sh.sample Log: Update to version 1.010. Avoid referencing libpam.so.1 as it breaks -CURRENT: use the libpam.so symlink. Revision Changes Path 1.6 +1 -1 ports/sysutils/usermin/Makefile 1.4 +1 -1 ports/sysutils/usermin/distinfo 1.2 +14 -5 ports/sysutils/usermin/files/patch-setup.sh 1.2 +1 -3 ports/sysutils/usermin/files/usermin.sh.sample From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:04:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEC7137B401; Sat, 5 Apr 2003 13:04:13 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id E80F643F3F; Sat, 5 Apr 2003 13:04:12 -0800 (PST) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "madman.celabo.org", Issuer "celabo.org CA" (verified OK)) by gw.nectar.cc (Postfix) with ESMTP id 6F7F27; Sat, 5 Apr 2003 15:04:12 -0600 (CST) Received: by madman.celabo.org (Postfix, from userid 1001) id C870778C28; Sat, 5 Apr 2003 15:04:11 -0600 (CST) Date: Sat, 5 Apr 2003 15:04:11 -0600 From: "Jacques A. Vidrine" To: Kris Kennaway Message-ID: <20030405210411.GB96425@madman.celabo.org> References: <200304051700.h35H0iUB091015@repoman.freebsd.org> <20030405203452.GE42452@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030405203452.GE42452@rot13.obsecurity.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.3i-ja.1 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/krb4 pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:04:14 -0000 On Sat, Apr 05, 2003 at 12:34:52PM -0800, Kris Kennaway wrote: > On Sat, Apr 05, 2003 at 09:00:44AM -0800, Jacques Vidrine wrote: > > nectar 2003/04/05 09:00:44 PST > > > > FreeBSD ports repository > > > > Modified files: > > security/krb4 pkg-plist > > Log: > > Remove ${PREFIX}/include/ss on deinstall. > > > > Reported by: kris > > Hmm..I thought I was seeing dozens of directories (basically the > entire contents of the mtree files) still present after deinstall. That is the only one which `mtree -f /etc/mtree/BSD.local.dist -d' flagged. All the other directories are produced by `mtree' and should not be removed. Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:07:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96C6D37B401; Sat, 5 Apr 2003 13:07:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3867D43F3F; Sat, 5 Apr 2003 13:07:13 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35L7D0U019533; Sat, 5 Apr 2003 13:07:13 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35L7CnG019532; Sat, 5 Apr 2003 13:07:12 -0800 (PST) Message-Id: <200304052107.h35L7CnG019532@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 13:07:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/xsb pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:07:13 -0000 kris 2003/04/05 13:07:12 PST FreeBSD ports repository Modified files: lang/xsb pkg-plist Log: Add missing files Revision Changes Path 1.3 +2 -0 ports/lang/xsb/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:07:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1202F37B401; Sat, 5 Apr 2003 13:07:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A53F443FBD; Sat, 5 Apr 2003 13:07:46 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35L7k0U019575; Sat, 5 Apr 2003 13:07:46 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35L7kmQ019574; Sat, 5 Apr 2003 13:07:46 -0800 (PST) Message-Id: <200304052107.h35L7kmQ019574@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 13:07:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/agenda-snow-libs pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:07:47 -0000 kris 2003/04/05 13:07:46 PST FreeBSD ports repository Modified files: devel/agenda-snow-libs pkg-plist Log: Remove directories if empty Revision Changes Path 1.2 +2 -1 ports/devel/agenda-snow-libs/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:09:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00C1C37B401; Sat, 5 Apr 2003 13:09:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9518E43FAF; Sat, 5 Apr 2003 13:09:15 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35L9F0U019625; Sat, 5 Apr 2003 13:09:15 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35L9Fht019624; Sat, 5 Apr 2003 13:09:15 -0800 (PST) Message-Id: <200304052109.h35L9Fht019624@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 13:09:15 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/agenda-static-libs pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:09:16 -0000 kris 2003/04/05 13:09:15 PST FreeBSD ports repository Modified files: devel/agenda-static-libs pkg-plist Log: Remove directories if empty Revision Changes Path 1.2 +2 -0 ports/devel/agenda-static-libs/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:11:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8D3937B401; Sat, 5 Apr 2003 13:11:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79A7043FAF; Sat, 5 Apr 2003 13:11:28 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35LBS0U020061; Sat, 5 Apr 2003 13:11:28 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35LBRmk020060; Sat, 5 Apr 2003 13:11:27 -0800 (PST) Message-Id: <200304052111.h35LBRmk020060@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 13:11:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/news/cleanfeed pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:11:29 -0000 kris 2003/04/05 13:11:27 PST FreeBSD ports repository Modified files: news/cleanfeed pkg-plist Log: Don't remove a file we didnt install Revision Changes Path 1.3 +0 -1 ports/news/cleanfeed/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:12:58 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC8EE37B401; Sat, 5 Apr 2003 13:12:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DD1A43F3F; Sat, 5 Apr 2003 13:12:58 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35LCw0U020111; Sat, 5 Apr 2003 13:12:58 -0800 (PST) (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35LCwtT020110; Sat, 5 Apr 2003 13:12:58 -0800 (PST) Message-Id: <200304052112.h35LCwtT020110@repoman.freebsd.org> From: Darren Reed Date: Sat, 5 Apr 2003 13:12:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/ipfilter/man ipmon.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:12:59 -0000 darrenr 2003/04/05 13:12:58 PST FreeBSD src repository Modified files: contrib/ipfilter/man ipmon.8 Log: update man page to reflect change in default syslog level ipmon is now compiled with Revision Changes Path 1.13 +1 -1 src/contrib/ipfilter/man/ipmon.8 From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:13:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 991CA37B401; Sat, 5 Apr 2003 13:13:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AAD543F75; Sat, 5 Apr 2003 13:13:39 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35LDd0U020209; Sat, 5 Apr 2003 13:13:39 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35LDcUn020208; Sat, 5 Apr 2003 13:13:38 -0800 (PST) Message-Id: <200304052113.h35LDcUn020208@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 13:13:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/cdk pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:13:40 -0000 kris 2003/04/05 13:13:38 PST FreeBSD ports repository Modified files: devel/cdk pkg-plist Log: Add missing doc files Revision Changes Path 1.7 +7 -0 ports/devel/cdk/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:14:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBAF737B401; Sat, 5 Apr 2003 13:14:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C11F43FB1; Sat, 5 Apr 2003 13:14:05 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35LE50U020240; Sat, 5 Apr 2003 13:14:05 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35LE5BG020239; Sat, 5 Apr 2003 13:14:05 -0800 (PST) Message-Id: <200304052114.h35LE5BG020239@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 5 Apr 2003 13:14:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 sscdisk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:14:06 -0000 marcel 2003/04/05 13:14:05 PST FreeBSD src repository Modified files: sys/ia64/ia64 sscdisk.c Log: Include and stop including . The former gives us 'struct disk'. Revision Changes Path 1.28 +1 -1 src/sys/ia64/ia64/sscdisk.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:15:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E80E437B401; Sat, 5 Apr 2003 13:15:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8900943FA3; Sat, 5 Apr 2003 13:15:25 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35LFP0U020357; Sat, 5 Apr 2003 13:15:25 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35LFPbb020356; Sat, 5 Apr 2003 13:15:25 -0800 (PST) Message-Id: <200304052115.h35LFPbb020356@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 13:15:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:15:26 -0000 marcus 2003/04/05 13:15:25 PST FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Remove USE_GLIB as the last hold-out, jabber-yahoo, has been converted to the new infrastructure. Revision Changes Path 1.27 +1 -4 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:16:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E986337B401; Sat, 5 Apr 2003 13:16:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A34643F85; Sat, 5 Apr 2003 13:16:46 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35LGk0U020429; Sat, 5 Apr 2003 13:16:46 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35LGkgm020428; Sat, 5 Apr 2003 13:16:46 -0800 (PST) Message-Id: <200304052116.h35LGkgm020428@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 13:16:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/courier Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:16:47 -0000 kris 2003/04/05 13:16:46 PST FreeBSD ports repository Modified files: mail/courier Makefile Log: BROKEN: Changes ownership/permission of manpages, broken pkg-plist Revision Changes Path 1.14 +2 -0 ports/mail/courier/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:19:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 446D037B401; Sat, 5 Apr 2003 13:19:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7FF743FA3; Sat, 5 Apr 2003 13:19:58 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35LJw0U020560; Sat, 5 Apr 2003 13:19:58 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35LJwrH020559; Sat, 5 Apr 2003 13:19:58 -0800 (PST) Message-Id: <200304052119.h35LJwrH020559@repoman.freebsd.org> From: Alan Cox Date: Sat, 5 Apr 2003 13:19:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_physio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:19:59 -0000 alc 2003/04/05 13:19:58 PST FreeBSD src repository Modified files: sys/kern kern_physio.c Log: Sufficient access checks are performed by vmapbuf() that calling useracc() is pointless. Remove the call to useracc() from physio(). Reviewed by: tegge Revision Changes Path 1.57 +1 -15 src/sys/kern/kern_physio.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:26:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B1D037B401; Sat, 5 Apr 2003 13:26:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D89B443FDD; Sat, 5 Apr 2003 13:26:53 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35LQr0U021143; Sat, 5 Apr 2003 13:26:53 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35LQrks021142; Sat, 5 Apr 2003 13:26:53 -0800 (PST) Message-Id: <200304052126.h35LQrks021142@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 13:26:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/coda5_client pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:26:54 -0000 kris 2003/04/05 13:26:53 PST FreeBSD ports repository Modified files: net/coda5_client pkg-plist Log: Add missing file Revision Changes Path 1.10 +1 -0 ports/net/coda5_client/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:27:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E49037B401; Sat, 5 Apr 2003 13:27:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D5D843F75; Sat, 5 Apr 2003 13:27:30 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35LRT0U021182; Sat, 5 Apr 2003 13:27:29 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35LRTGa021181; Sat, 5 Apr 2003 13:27:29 -0800 (PST) Message-Id: <200304052127.h35LRTGa021181@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 13:27:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/figlet-fonts pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:27:31 -0000 kris 2003/04/05 13:27:29 PST FreeBSD ports repository Modified files: misc/figlet-fonts pkg-plist Log: Don't remove a file installed by the figlet port Revision Changes Path 1.3 +0 -1 ports/misc/figlet-fonts/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:42:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 920AA37B401; Sat, 5 Apr 2003 13:42:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 308B043FB1; Sat, 5 Apr 2003 13:42:51 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Lgp0U022371; Sat, 5 Apr 2003 13:42:51 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35LgoRZ022370; Sat, 5 Apr 2003 13:42:50 -0800 (PST) Message-Id: <200304052142.h35LgoRZ022370@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 5 Apr 2003 13:42:50 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/sgml man-refs.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:42:52 -0000 trhodes 2003/04/05 13:42:50 PST FreeBSD doc repository Modified files: share/sgml man-refs.ent Log: Add manual refs for wlan(4) and smapi(4). This looks right. Revision Changes Path 1.195 +2 -0 doc/share/sgml/man-refs.ent From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:43:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABE5737B401; Sat, 5 Apr 2003 13:43:26 -0800 (PST) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C1AC43F93; Sat, 5 Apr 2003 13:43:25 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from mobile.pittgoth.com ([192.168.0.5]) by pittgoth.com (8.12.8/8.12.8) with SMTP id h35LhOBG044442; Sat, 5 Apr 2003 16:43:24 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Sat, 5 Apr 2003 16:42:01 -0500 From: Tom Rhodes To: Tom Rhodes Message-Id: <20030405164201.18670e91.trhodes@FreeBSD.org> In-Reply-To: <200304052142.h35LgoRZ022370@repoman.freebsd.org> References: <200304052142.h35LgoRZ022370@repoman.freebsd.org> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/share/sgml man-refs.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:43:27 -0000 On Sat, 5 Apr 2003 13:42:50 -0800 (PST) Tom Rhodes wrote: > trhodes 2003/04/05 13:42:50 PST > > FreeBSD doc repository > > Modified files: > share/sgml man-refs.ent > Log: > Add manual refs for wlan(4) and smapi(4). This looks right. > > Revision Changes Path > 1.195 +2 -0 doc/share/sgml/man-refs.ent > If its not right I'm sure bmah will let me know. :) -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:46:22 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D434137B401; Sat, 5 Apr 2003 13:46:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71B0843F85; Sat, 5 Apr 2003 13:46:22 -0800 (PST) (envelope-from nsayer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35LkM0U022598; Sat, 5 Apr 2003 13:46:22 -0800 (PST) (envelope-from nsayer@repoman.freebsd.org) Received: (from nsayer@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35LkMxD022597; Sat, 5 Apr 2003 13:46:22 -0800 (PST) Message-Id: <200304052146.h35LkMxD022597@repoman.freebsd.org> From: Nick Sayer Date: Sat, 5 Apr 2003 13:46:22 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/jabber-yahoo Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:46:23 -0000 nsayer 2003/04/05 13:46:22 PST FreeBSD ports repository Modified files: net/jabber-yahoo Makefile distinfo Log: Update to 2.1.1. Revision Changes Path 1.9 +1 -1 ports/net/jabber-yahoo/Makefile 1.3 +1 -1 ports/net/jabber-yahoo/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:51:57 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6307737B404; Sat, 5 Apr 2003 13:51:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBB8543F93; Sat, 5 Apr 2003 13:51:56 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Lpu0U023924; Sat, 5 Apr 2003 13:51:56 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35LpuOG023923; Sat, 5 Apr 2003 13:51:56 -0800 (PST) Message-Id: <200304052151.h35LpuOG023923@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 13:51:56 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/idnkit pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:51:58 -0000 kris 2003/04/05 13:51:56 PST FreeBSD ports repository Modified files: net/idnkit pkg-plist Log: Add missing files/directories Revision Changes Path 1.2 +5 -0 ports/net/idnkit/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:54:04 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6823837B401; Sat, 5 Apr 2003 13:54:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07A9743FA3; Sat, 5 Apr 2003 13:54:04 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Ls30U023987; Sat, 5 Apr 2003 13:54:03 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Ls3Ox023986; Sat, 5 Apr 2003 13:54:03 -0800 (PST) Message-Id: <200304052154.h35Ls3Ox023986@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 13:54:03 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mod_php4 pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:54:04 -0000 kris 2003/04/05 13:54:03 PST FreeBSD ports repository Modified files: www/mod_php4 pkg-plist Log: Add missing file Revision Changes Path 1.42 +1 -0 ports/www/mod_php4/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:54:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFC8E37B401; Sat, 5 Apr 2003 13:54:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F5D243FA3; Sat, 5 Apr 2003 13:54:51 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Lsp0U024024; Sat, 5 Apr 2003 13:54:51 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Lsp7O024023; Sat, 5 Apr 2003 13:54:51 -0800 (PST) Message-Id: <200304052154.h35Lsp7O024023@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 13:54:51 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/moon-buggy pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:54:52 -0000 kris 2003/04/05 13:54:51 PST FreeBSD ports repository Modified files: games/moon-buggy pkg-plist Log: Don't remove the info/dir file Revision Changes Path 1.2 +0 -1 ports/games/moon-buggy/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 13:56:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97BF637B401; Sat, 5 Apr 2003 13:56:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37BD143F93; Sat, 5 Apr 2003 13:56:06 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Lu60U024129; Sat, 5 Apr 2003 13:56:06 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Lu5Sr024128; Sat, 5 Apr 2003 13:56:05 -0800 (PST) Message-Id: <200304052156.h35Lu5Sr024128@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 13:56:05 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/nessus-plugins pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 21:56:07 -0000 kris 2003/04/05 13:56:05 PST FreeBSD ports repository Modified files: security/nessus-plugins pkg-plist Log: Don't remove directories created by the nessus port Revision Changes Path 1.23 +0 -2 ports/security/nessus-plugins/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:02:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAF9637B401; Sat, 5 Apr 2003 14:02:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BD2843F85; Sat, 5 Apr 2003 14:02:59 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35M2x0U024683; Sat, 5 Apr 2003 14:02:59 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35M2xEb024682; Sat, 5 Apr 2003 14:02:59 -0800 (PST) Message-Id: <200304052202.h35M2xEb024682@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 14:02:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/perdition pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:03:00 -0000 kris 2003/04/05 14:02:58 PST FreeBSD ports repository Modified files: mail/perdition pkg-plist Log: Don't remove the etc/pam.d system directory Revision Changes Path 1.2 +0 -1 ports/mail/perdition/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:03:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82B4437B404; Sat, 5 Apr 2003 14:03:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E96143F93; Sat, 5 Apr 2003 14:03:44 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35M3h0U025667; Sat, 5 Apr 2003 14:03:43 -0800 (PST) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35M3hK0025666; Sat, 5 Apr 2003 14:03:43 -0800 (PST) Message-Id: <200304052203.h35M3hK0025666@repoman.freebsd.org> From: David Schultz Date: Sat, 5 Apr 2003 14:03:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdio floatio.h vfprintf.c vfwprintf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:03:45 -0000 das 2003/04/05 14:03:43 PST FreeBSD src repository Modified files: lib/libc/stdio floatio.h vfprintf.c vfwprintf.c Log: Correct some buffer sizes. - __vfprintf()'s 'buf' has never been used for floating point, so don't define it in terms of (incorrect) constants describing floating point numbers. The actual size needed depends on sizeof(uintmax_t) and locale details, so I slightly overestimated. - We don't need a 308-character buffer to store the string "308". With long doubles and %a we need more than three characters, though. Revision Changes Path 1.3 +11 -4 src/lib/libc/stdio/floatio.h 1.53 +16 -10 src/lib/libc/stdio/vfprintf.c 1.8 +15 -9 src/lib/libc/stdio/vfwprintf.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:05:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4371137B401; Sat, 5 Apr 2003 14:05:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D81E043F93; Sat, 5 Apr 2003 14:05:39 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35M5d0U025795; Sat, 5 Apr 2003 14:05:39 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35M5dYN025794; Sat, 5 Apr 2003 14:05:39 -0800 (PST) Message-Id: <200304052205.h35M5dYN025794@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 14:05:39 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/plwm pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:05:40 -0000 kris 2003/04/05 14:05:39 PST FreeBSD ports repository Modified files: x11-wm/plwm pkg-plist Log: Add missing info files Revision Changes Path 1.3 +2 -0 ports/x11-wm/plwm/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:08:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8429737B401; Sat, 5 Apr 2003 14:08:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2468143FBD; Sat, 5 Apr 2003 14:08:54 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35M8r0U026087; Sat, 5 Apr 2003 14:08:53 -0800 (PST) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35M8rbv026086; Sat, 5 Apr 2003 14:08:53 -0800 (PST) Message-Id: <200304052208.h35M8rbv026086@repoman.freebsd.org> From: David Schultz Date: Sat, 5 Apr 2003 14:08:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdio vfwprintf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:08:54 -0000 das 2003/04/05 14:08:53 PST FreeBSD src repository Modified files: lib/libc/stdio vfwprintf.c Log: Add missing #include to unbreak previous commit. Revision Changes Path 1.9 +1 -0 src/lib/libc/stdio/vfwprintf.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:09:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3192D37B401; Sat, 5 Apr 2003 14:09:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6B0843FBD; Sat, 5 Apr 2003 14:09:26 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35M9Q0U026121; Sat, 5 Apr 2003 14:09:26 -0800 (PST) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35M9QX6026120; Sat, 5 Apr 2003 14:09:26 -0800 (PST) Message-Id: <200304052209.h35M9QX6026120@repoman.freebsd.org> From: David Schultz Date: Sat, 5 Apr 2003 14:09:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/gdtoa gdtoaimp.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:09:27 -0000 das 2003/04/05 14:09:26 PST FreeBSD src repository Modified files: contrib/gdtoa gdtoaimp.h Log: Add missing prototype for gdtoa(). Revision Changes Path 1.4 +2 -0 src/contrib/gdtoa/gdtoaimp.h From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:10:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A62E837B401; Sat, 5 Apr 2003 14:10:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E22643FA3; Sat, 5 Apr 2003 14:10:14 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35MAE0U027018; Sat, 5 Apr 2003 14:10:14 -0800 (PST) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MADsY027017; Sat, 5 Apr 2003 14:10:13 -0800 (PST) Message-Id: <200304052210.h35MADsY027017@repoman.freebsd.org> From: David Schultz Date: Sat, 5 Apr 2003 14:10:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/gdtoa Makefile.inc _ldtoa.c src/lib/libc/alpha _fpmath.h src/lib/libc/i386 _fpmath.h src/lib/libc/ia64 _fpmath.h src/lib/libc/powerpc _fpmath.h src/lib/libc/sparc64 _fpmath.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:10:15 -0000 das 2003/04/05 14:10:13 PST FreeBSD src repository Modified files: lib/libc/gdtoa Makefile.inc lib/libc/alpha _fpmath.h lib/libc/i386 _fpmath.h lib/libc/ia64 _fpmath.h lib/libc/powerpc _fpmath.h lib/libc/sparc64 _fpmath.h Added files: lib/libc/gdtoa _ldtoa.c Log: Add __ldtoa(), a wrapper around gdtoa() to make it look like dtoa(). In support of this, add some MD macros to assist in converting long doubles to the format expected by gdtoa(). Reviewed by: silence on standards@ Revision Changes Path 1.3 +6 -0 src/lib/libc/alpha/_fpmath.h 1.3 +1 -1 src/lib/libc/gdtoa/Makefile.inc 1.1 +97 -0 src/lib/libc/gdtoa/_ldtoa.c (new) 1.2 +5 -0 src/lib/libc/i386/_fpmath.h 1.3 +5 -0 src/lib/libc/ia64/_fpmath.h 1.2 +8 -0 src/lib/libc/powerpc/_fpmath.h 1.2 +8 -0 src/lib/libc/sparc64/_fpmath.h From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:11:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64C1537B401; Sat, 5 Apr 2003 14:11:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 053BC43F75; Sat, 5 Apr 2003 14:11:38 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35MBb0U027444; Sat, 5 Apr 2003 14:11:37 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MBbFj027443; Sat, 5 Apr 2003 14:11:37 -0800 (PST) Message-Id: <200304052211.h35MBbFj027443@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 14:11:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/opensc Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:11:39 -0000 kris 2003/04/05 14:11:37 PST FreeBSD ports repository Modified files: security/opensc Makefile Log: BROKEN: Creates /usr/lib/mozilla Revision Changes Path 1.4 +2 -0 ports/security/opensc/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:11:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E63337B43B; Sat, 5 Apr 2003 14:11:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0366E43FAF; Sat, 5 Apr 2003 14:11:43 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35MBg0U027474; Sat, 5 Apr 2003 14:11:42 -0800 (PST) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MBglG027473; Sat, 5 Apr 2003 14:11:42 -0800 (PST) Message-Id: <200304052211.h35MBglG027473@repoman.freebsd.org> From: David Schultz Date: Sat, 5 Apr 2003 14:11:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdio floatio.h vfprintf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:11:45 -0000 das 2003/04/05 14:11:42 PST FreeBSD src repository Modified files: lib/libc/stdio floatio.h vfprintf.c Log: Rework the floating point code in printf(). Significant changes: - We used to round long double arguments to double. Now we print them properly. - Bugs involving '%F', corner cases of '#' and 'g' format specifiers, and the '.*' precision specifier have been fixed. - Added support for the "'" specifier to print thousands' grouping characters in a locale-dependent manner. - Implement the __vfprintf() side of hexadecimal floating point support. All that is still needed is a routine to convert the mantissa to hex digits one nibble at a time in the style of ultoa(). Reviewed by: silence on standards@ Revision Changes Path 1.4 +2 -0 src/lib/libc/stdio/floatio.h 1.54 +189 -151 src/lib/libc/stdio/vfprintf.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:13:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEBC337B401; Sat, 5 Apr 2003 14:13:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A80B43F75; Sat, 5 Apr 2003 14:13:02 -0800 (PST) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35MD20U027539; Sat, 5 Apr 2003 14:13:02 -0800 (PST) (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MD2PP027538; Sat, 5 Apr 2003 14:13:02 -0800 (PST) Message-Id: <200304052213.h35MD2PP027538@repoman.freebsd.org> From: David Schultz Date: Sat, 5 Apr 2003 14:13:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/lib/libc/stdio Makefile test-printfloat.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:13:03 -0000 das 2003/04/05 14:13:02 PST FreeBSD src repository Modified files: tools/regression/lib/libc/stdio Makefile Added files: tools/regression/lib/libc/stdio test-printfloat.c Log: Regression tests for printf()'s floating point formats. Tests for correct printing of subnormals are lacking. Revision Changes Path 1.2 +1 -1 src/tools/regression/lib/libc/stdio/Makefile 1.1 +167 -0 src/tools/regression/lib/libc/stdio/test-printfloat.c (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:14:02 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FD5937B401; Sat, 5 Apr 2003 14:14:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C348243F75; Sat, 5 Apr 2003 14:14:01 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35ME10U028396; Sat, 5 Apr 2003 14:14:01 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35ME16u028395; Sat, 5 Apr 2003 14:14:01 -0800 (PST) Message-Id: <200304052214.h35ME16u028395@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 14:14:01 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ppl pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:14:02 -0000 kris 2003/04/05 14:14:01 PST FreeBSD ports repository Modified files: devel/ppl pkg-plist Log: Add missing files Revision Changes Path 1.4 +4 -0 ports/devel/ppl/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:16:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2EAC37B401; Sat, 5 Apr 2003 14:16:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 334D643FAF; Sat, 5 Apr 2003 14:16:13 -0800 (PST) (envelope-from alane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35MGD0U029902; Sat, 5 Apr 2003 14:16:13 -0800 (PST) (envelope-from alane@repoman.freebsd.org) Received: (from alane@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MGCCl029901; Sat, 5 Apr 2003 14:16:12 -0800 (PST) Message-Id: <200304052216.h35MGCCl029901@repoman.freebsd.org> From: Alan Eldridge Date: Sat, 5 Apr 2003 14:16:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.kde.mk ports/audio/arts Makefile distinfo ports/chinese/kde3-i18n-zh_CN distinfo pkg-plist ports/chinese/kde3-i18n-zh_TW distinfo ports/deskutils/kdepim3 distinfo pkg-plist ports/devel/kdesdk3 Makefile distinfo ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:16:14 -0000 alane 2003/04/05 14:16:12 PST FreeBSD ports repository Modified files: Mk bsd.kde.mk audio/arts Makefile distinfo chinese/kde3-i18n-zh_CN distinfo pkg-plist chinese/kde3-i18n-zh_TW distinfo deskutils/kdepim3 distinfo pkg-plist devel/kdesdk3 Makefile distinfo devel/kdesdk3/files plist.base plist.base.rm french/kde3-i18n distinfo pkg-plist games/kdegames3 distinfo pkg-plist german/kde3-i18n distinfo pkg-plist graphics/kdegraphics3 distinfo graphics/kdegraphics3/files plist.base.rm plist.sane.rm japanese/kde3-i18n distinfo pkg-plist korean/kde3-i18n Makefile pkg-plist misc/kde3-i18n Makefile misc/kde3-i18n-af distinfo pkg-plist misc/kde3-i18n-ar distinfo pkg-plist misc/kde3-i18n-az Makefile pkg-plist misc/kde3-i18n-bg distinfo misc/kde3-i18n-bs distinfo misc/kde3-i18n-ca distinfo pkg-plist misc/kde3-i18n-cs distinfo pkg-plist misc/kde3-i18n-da distinfo pkg-plist misc/kde3-i18n-el distinfo pkg-plist misc/kde3-i18n-en_GB distinfo pkg-plist misc/kde3-i18n-eo distinfo misc/kde3-i18n-es distinfo pkg-plist misc/kde3-i18n-et distinfo pkg-plist misc/kde3-i18n-fi distinfo pkg-plist misc/kde3-i18n-hr Makefile distinfo pkg-plist misc/kde3-i18n-id Makefile misc/kde3-i18n-it distinfo pkg-plist misc/kde3-i18n-lt distinfo pkg-plist misc/kde3-i18n-lv Makefile pkg-plist misc/kde3-i18n-mt distinfo misc/kde3-i18n-nb distinfo misc/kde3-i18n-nl distinfo pkg-plist misc/kde3-i18n-nn distinfo pkg-plist misc/kde3-i18n-pl distinfo pkg-plist misc/kde3-i18n-ro distinfo pkg-plist misc/kde3-i18n-sk distinfo pkg-plist misc/kde3-i18n-sl distinfo pkg-plist misc/kde3-i18n-sr distinfo misc/kde3-i18n-sv distinfo pkg-plist misc/kde3-i18n-ta distinfo misc/kde3-i18n-th distinfo pkg-plist misc/kde3-i18n-tr distinfo misc/kde3-i18n-ven distinfo misc/kde3-i18n-xh distinfo pkg-plist misc/kde3-i18n-zu distinfo misc/kdeaddons3 distinfo pkg-plist misc/kdeedu3 distinfo pkg-plist misc/kdeutils3 Makefile distinfo misc/kdeutils3/files patch-ksimdisk.cpp plist.base.rm multimedia/kdemultimedia3 Makefile distinfo multimedia/kdemultimedia3/files plist.base.rm plist.midi net/kdenetwork3 Makefile distinfo net/kdenetwork3/files plist.base plist.base.rm portuguese/kde3-i18n distinfo portuguese/kde3-i18n-pt_BR distinfo pkg-plist russian/kde3-i18n distinfo pkg-plist sysutils/kdeadmin3 Makefile distinfo pkg-plist ukrainian/kde3-i18n distinfo pkg-plist www/quanta Makefile distinfo pkg-plist x11-clocks/kdetoys3 Makefile distinfo pkg-plist x11-toolkits/qt31 Makefile x11-wm/kdeartwork3 distinfo pkg-plist x11/kde3 Makefile.kde x11/kdebase3 Makefile distinfo x11/kdebase3/files plist.base plist.base.rm plist.motif x11/kdelibs3 Makefile distinfo Added files: graphics/kdegraphics3/files plist.gphoto2.rm x11/kdelibs3/files patch-kio::kio::kzip.cpp patch-kioslave::http::http.cc plist.base plist.base.rm plist.ldap Removed files: misc/kdeutils3/files patch-ksimcpu.cpp x11-clocks/kdetoys3/files patch-kweather-kweather.cpp patch-kweather-reportmain.cpp x11-toolkits/qt31/files patch-config.tests-x11-xfreetype.test x11/kdebase3/files patch-ksysguard-CPU.c patch-ksysguard-ProcessList.c plist.mkfontdir x11/kdelibs3 pkg-plist Log: Rejoice, for the long awaited upgrade to kde 3.1.1 is here! Revision Changes Path 1.25 +2 -2 ports/Mk/bsd.kde.mk 1.8 +5 -2 ports/audio/arts/Makefile 1.11 +1 -1 ports/audio/arts/distinfo 1.7 +1 -1 ports/chinese/kde3-i18n-zh_CN/distinfo 1.8 +3 -1 ports/chinese/kde3-i18n-zh_CN/pkg-plist 1.7 +1 -1 ports/chinese/kde3-i18n-zh_TW/distinfo 1.13 +1 -1 ports/deskutils/kdepim3/distinfo 1.10 +0 -1 ports/deskutils/kdepim3/pkg-plist 1.22 +0 -0 ports/devel/kdesdk3/Makefile 1.13 +1 -1 ports/devel/kdesdk3/distinfo 1.2 +1 -0 ports/devel/kdesdk3/files/plist.base 1.2 +0 -1 ports/devel/kdesdk3/files/plist.base.rm 1.7 +1 -1 ports/french/kde3-i18n/distinfo 1.6 +23 -4 ports/french/kde3-i18n/pkg-plist 1.29 +1 -1 ports/games/kdegames3/distinfo 1.24 +0 -1 ports/games/kdegames3/pkg-plist 1.7 +1 -1 ports/german/kde3-i18n/distinfo 1.6 +1 -4 ports/german/kde3-i18n/pkg-plist 1.25 +1 -1 ports/graphics/kdegraphics3/distinfo 1.2 +0 -1 ports/graphics/kdegraphics3/files/plist.base.rm 1.3 +5 -0 ports/graphics/kdegraphics3/files/plist.gphoto2.rm (new) 1.2 +0 -4 ports/graphics/kdegraphics3/files/plist.sane.rm 1.7 +1 -1 ports/japanese/kde3-i18n/distinfo 1.5 +1 -0 ports/japanese/kde3-i18n/pkg-plist 1.14 +1 -1 ports/korean/kde3-i18n/Makefile 1.3 +9 -0 ports/korean/kde3-i18n/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-af/distinfo 1.13 +0 -4 ports/misc/kde3-i18n-af/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-ar/distinfo 1.11 +37 -15 ports/misc/kde3-i18n-ar/pkg-plist 1.24 +1 -2 ports/misc/kde3-i18n-az/Makefile 1.11 +2 -0 ports/misc/kde3-i18n-az/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-bg/distinfo 1.13 +1 -1 ports/misc/kde3-i18n-bs/distinfo 1.13 +1 -1 ports/misc/kde3-i18n-ca/distinfo 1.10 +17 -5 ports/misc/kde3-i18n-ca/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-cs/distinfo 1.11 +1 -0 ports/misc/kde3-i18n-cs/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-da/distinfo 1.11 +11 -0 ports/misc/kde3-i18n-da/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-el/distinfo 1.10 +2 -0 ports/misc/kde3-i18n-el/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-en_GB/distinfo 1.12 +8 -0 ports/misc/kde3-i18n-en_GB/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-eo/distinfo 1.13 +1 -1 ports/misc/kde3-i18n-es/distinfo 1.11 +12 -0 ports/misc/kde3-i18n-es/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-et/distinfo 1.11 +527 -12 ports/misc/kde3-i18n-et/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-fi/distinfo 1.12 +8 -0 ports/misc/kde3-i18n-fi/pkg-plist 1.24 +0 -1 ports/misc/kde3-i18n-hr/Makefile 1.13 +1 -1 ports/misc/kde3-i18n-hr/distinfo 1.11 +23 -4 ports/misc/kde3-i18n-hr/pkg-plist 1.24 +1 -1 ports/misc/kde3-i18n-id/Makefile 1.13 +1 -1 ports/misc/kde3-i18n-it/distinfo 1.11 +76 -4 ports/misc/kde3-i18n-it/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-lt/distinfo 1.12 +2 -0 ports/misc/kde3-i18n-lt/pkg-plist 1.24 +1 -1 ports/misc/kde3-i18n-lv/Makefile 1.11 +2 -0 ports/misc/kde3-i18n-lv/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-mt/distinfo 1.13 +1 -1 ports/misc/kde3-i18n-nb/distinfo 1.13 +1 -1 ports/misc/kde3-i18n-nl/distinfo 1.12 +1 -3 ports/misc/kde3-i18n-nl/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-nn/distinfo 1.11 +21 -0 ports/misc/kde3-i18n-nn/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-pl/distinfo 1.11 +1 -0 ports/misc/kde3-i18n-pl/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-ro/distinfo 1.12 +33 -16 ports/misc/kde3-i18n-ro/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-sk/distinfo 1.11 +10 -7 ports/misc/kde3-i18n-sk/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-sl/distinfo 1.11 +42 -0 ports/misc/kde3-i18n-sl/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-sr/distinfo 1.13 +1 -1 ports/misc/kde3-i18n-sv/distinfo 1.12 +19 -8 ports/misc/kde3-i18n-sv/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-ta/distinfo 1.13 +1 -1 ports/misc/kde3-i18n-th/distinfo 1.12 +13 -1 ports/misc/kde3-i18n-th/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-tr/distinfo 1.13 +1 -1 ports/misc/kde3-i18n-ven/distinfo 1.13 +1 -1 ports/misc/kde3-i18n-xh/distinfo 1.12 +3 -0 ports/misc/kde3-i18n-xh/pkg-plist 1.13 +1 -1 ports/misc/kde3-i18n-zu/distinfo 1.19 +6 -3 ports/misc/kde3-i18n/Makefile 1.11 +1 -1 ports/misc/kdeaddons3/distinfo 1.10 +0 -1 ports/misc/kdeaddons3/pkg-plist 1.7 +1 -1 ports/misc/kdeedu3/distinfo 1.8 +0 -1 ports/misc/kdeedu3/pkg-plist 1.72 +0 -0 ports/misc/kdeutils3/Makefile 1.29 +1 -1 ports/misc/kdeutils3/distinfo 1.3 +0 -31 ports/misc/kdeutils3/files/patch-ksimcpu.cpp (dead) 1.2 +39 -19 ports/misc/kdeutils3/files/patch-ksimdisk.cpp 1.2 +0 -1 ports/misc/kdeutils3/files/plist.base.rm 1.83 +13 -16 ports/multimedia/kdemultimedia3/Makefile 1.26 +1 -1 ports/multimedia/kdemultimedia3/distinfo 1.2 +0 -1 ports/multimedia/kdemultimedia3/files/plist.base.rm 1.2 +0 -8 ports/multimedia/kdemultimedia3/files/plist.midi 1.90 +5 -1 ports/net/kdenetwork3/Makefile 1.30 +1 -1 ports/net/kdenetwork3/distinfo 1.2 +56 -6 ports/net/kdenetwork3/files/plist.base 1.2 +0 -1 ports/net/kdenetwork3/files/plist.base.rm 1.13 +1 -1 ports/portuguese/kde3-i18n-pt_BR/distinfo 1.11 +2 -0 ports/portuguese/kde3-i18n-pt_BR/pkg-plist 1.13 +1 -1 ports/portuguese/kde3-i18n/distinfo 1.8 +1 -1 ports/russian/kde3-i18n/distinfo 1.7 +33 -12 ports/russian/kde3-i18n/pkg-plist 1.21 +0 -0 ports/sysutils/kdeadmin3/Makefile 1.13 +1 -1 ports/sysutils/kdeadmin3/distinfo 1.10 +0 -5 ports/sysutils/kdeadmin3/pkg-plist 1.10 +1 -1 ports/ukrainian/kde3-i18n/distinfo 1.10 +7 -0 ports/ukrainian/kde3-i18n/pkg-plist 1.29 +4 -4 ports/www/quanta/Makefile 1.9 +1 -1 ports/www/quanta/distinfo 1.10 +39 -1 ports/www/quanta/pkg-plist 1.40 +1 -1 ports/x11-clocks/kdetoys3/Makefile 1.21 +1 -1 ports/x11-clocks/kdetoys3/distinfo 1.2 +0 -17 ports/x11-clocks/kdetoys3/files/patch-kweather-kweather.cpp (dead) 1.2 +0 -23 ports/x11-clocks/kdetoys3/files/patch-kweather-reportmain.cpp (dead) 1.18 +0 -1 ports/x11-clocks/kdetoys3/pkg-plist 1.135 +1 -8 ports/x11-toolkits/qt31/Makefile 1.2 +0 -11 ports/x11-toolkits/qt31/files/patch-config.tests-x11-xfreetype.test (dead) 1.11 +1 -1 ports/x11-wm/kdeartwork3/distinfo 1.12 +1 -0 ports/x11-wm/kdeartwork3/pkg-plist 1.12 +8 -2 ports/x11/kde3/Makefile.kde 1.118 +8 -25 ports/x11/kdebase3/Makefile 1.32 +1 -1 ports/x11/kdebase3/distinfo 1.2 +0 -24 ports/x11/kdebase3/files/patch-ksysguard-CPU.c (dead) 1.2 +0 -15 ports/x11/kdebase3/files/patch-ksysguard-ProcessList.c (dead) 1.2 +13 -0 ports/x11/kdebase3/files/plist.base 1.2 +0 -2 ports/x11/kdebase3/files/plist.base.rm 1.2 +0 -2 ports/x11/kdebase3/files/plist.mkfontdir (dead) 1.2 +0 -1 ports/x11/kdebase3/files/plist.motif 1.124 +14 -12 ports/x11/kdelibs3/Makefile 1.35 +1 -1 ports/x11/kdelibs3/distinfo 1.1 +59 -0 ports/x11/kdelibs3/files/patch-kio::kio::kzip.cpp (new) 1.1 +126 -0 ports/x11/kdelibs3/files/patch-kioslave::http::http.cc (new) 1.1 +3898 -0 ports/x11/kdelibs3/files/plist.base (new) 1.1 +262 -0 ports/x11/kdelibs3/files/plist.base.rm (new) 1.1 +3 -0 ports/x11/kdelibs3/files/plist.ldap (new) 1.51 +0 -4115 ports/x11/kdelibs3/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:18:15 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9C7937B401; Sat, 5 Apr 2003 14:18:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 224B243FA3; Sat, 5 Apr 2003 14:18:15 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35MIE0U029957; Sat, 5 Apr 2003 14:18:14 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MIE3A029956; Sat, 5 Apr 2003 14:18:14 -0800 (PST) Message-Id: <200304052218.h35MIE3A029956@repoman.freebsd.org> From: Peter Wemm Date: Sat, 5 Apr 2003 14:18:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 swtch.s X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:18:16 -0000 peter 2003/04/05 14:18:14 PST FreeBSD src repository Modified files: sys/i386/i386 swtch.s Log: Unbreak the !LAZY_SWITCH case. I #ifdef'ed too much when I added the ifdefs prior to commit and killed the same-address-space test. Submitted by: bde Revision Changes Path 1.137 +1 -2 src/sys/i386/i386/swtch.s From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:20:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D325737B401; Sat, 5 Apr 2003 14:20:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 751F343FA3; Sat, 5 Apr 2003 14:20:17 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35MKH0U030062; Sat, 5 Apr 2003 14:20:17 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MKHrX030061; Sat, 5 Apr 2003 14:20:17 -0800 (PST) Message-Id: <200304052220.h35MKHrX030061@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 14:20:17 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/smokeping pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:20:18 -0000 kris 2003/04/05 14:20:17 PST FreeBSD ports repository Modified files: net/smokeping pkg-plist Log: Add missing files Revision Changes Path 1.6 +2 -0 ports/net/smokeping/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:23:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF38737B404; Sat, 5 Apr 2003 14:23:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2365743FCB; Sat, 5 Apr 2003 14:23:19 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35MNI0U030603; Sat, 5 Apr 2003 14:23:18 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MNIZv030602; Sat, 5 Apr 2003 14:23:18 -0800 (PST) Message-Id: <200304052223.h35MNIZv030602@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sat, 5 Apr 2003 14:23:18 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules ports MOVED ports/net Makefile ports/net/gift Makefile distinfo pkg-descr pkg-plist ports/net/gift/files patch-lib:Makefile.in patch-src:Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:23:20 -0000 lioux 2003/04/05 14:23:18 PST FreeBSD ports repository Modified files: . modules . MOVED net Makefile Removed files: net/gift Makefile distinfo pkg-descr pkg-plist net/gift/files patch-lib:Makefile.in patch-src:Makefile.in Log: Remove ports/net/gift due to lack of releases ever since the project creation Revision Changes Path 1.6995 +0 -1 CVSROOT/modules 1.93 +2 -1 ports/MOVED 1.957 +0 -1 ports/net/Makefile 1.5 +0 -32 ports/net/gift/Makefile (dead) 1.2 +0 -1 ports/net/gift/distinfo (dead) 1.2 +0 -29 ports/net/gift/files/patch-lib:Makefile.in (dead) 1.2 +0 -47 ports/net/gift/files/patch-src:Makefile.in (dead) 1.3 +0 -21 ports/net/gift/pkg-descr (dead) 1.3 +0 -23 ports/net/gift/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:25:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 994FE37B401; Sat, 5 Apr 2003 14:25:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 412EF43FA3; Sat, 5 Apr 2003 14:25:51 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35MPp0U030831; Sat, 5 Apr 2003 14:25:51 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MPotE030830; Sat, 5 Apr 2003 14:25:50 -0800 (PST) Message-Id: <200304052225.h35MPotE030830@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sat, 5 Apr 2003 14:25:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules ports MOVED ports/net Makefile ports/net/jift Makefile distinfo pkg-descr pkg-plist ports/net/jift/files manifest wrapper.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:25:52 -0000 lioux 2003/04/05 14:25:50 PST FreeBSD ports repository Modified files: . modules . MOVED net Makefile Removed files: net/jift Makefile distinfo pkg-descr pkg-plist net/jift/files manifest wrapper.sh Log: Remove ports/net/jift due to lack of releases since 2001 Revision Changes Path 1.6996 +0 -1 CVSROOT/modules 1.94 +2 -1 ports/MOVED 1.958 +0 -1 ports/net/Makefile 1.8 +0 -69 ports/net/jift/Makefile (dead) 1.2 +0 -1 ports/net/jift/distinfo (dead) 1.2 +0 -1 ports/net/jift/files/manifest (dead) 1.3 +0 -8 ports/net/jift/files/wrapper.sh (dead) 1.2 +0 -6 ports/net/jift/pkg-descr (dead) 1.3 +0 -7 ports/net/jift/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:37:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE59737B401; Sat, 5 Apr 2003 14:37:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D52543F93; Sat, 5 Apr 2003 14:37:49 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Mbn0U031606; Sat, 5 Apr 2003 14:37:49 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MbnDJ031605; Sat, 5 Apr 2003 14:37:49 -0800 (PST) Message-Id: <200304052237.h35MbnDJ031605@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 14:37:49 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/avmailgate Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:37:50 -0000 edwin 2003/04/05 14:37:49 PST FreeBSD ports repository Modified files: security/avmailgate Makefile Log: Added COMMENT. Ran portlint on it (strangely engouh, I've done all these fixes yesterday already) Submitted by: "Dan Langille" Revision Changes Path 1.2 +8 -7 ports/security/avmailgate/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:40:19 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1EC337B401; Sat, 5 Apr 2003 14:40:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BA8343F3F; Sat, 5 Apr 2003 14:40:19 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35MeI0U031791; Sat, 5 Apr 2003 14:40:18 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MeIa0031790; Sat, 5 Apr 2003 14:40:18 -0800 (PST) Message-Id: <200304052240.h35MeIa0031790@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sat, 5 Apr 2003 14:40:18 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/vgba-bin Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:40:20 -0000 lioux 2003/04/05 14:40:18 PST FreeBSD ports repository Modified files: emulators/vgba-bin Makefile distinfo pkg-descr pkg-plist Log: o After repo copy from emulators/vgb-bin: - Update to vgba-bin version 1.7: Virtual GameBoy Advance is an emulator of Nintendo GameBoy Advance(TM) Revision Changes Path 1.11 +9 -13 ports/emulators/vgba-bin/Makefile 1.5 +1 -1 ports/emulators/vgba-bin/distinfo 1.2 +9 -12 ports/emulators/vgba-bin/pkg-descr 1.4 +3 -6 ports/emulators/vgba-bin/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:42:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D05F37B401; Sat, 5 Apr 2003 14:42:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F67743FA3; Sat, 5 Apr 2003 14:42:54 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Mgs0U032164; Sat, 5 Apr 2003 14:42:54 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MgsQC032163; Sat, 5 Apr 2003 14:42:54 -0800 (PST) Message-Id: <200304052242.h35MgsQC032163@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sat, 5 Apr 2003 14:42:54 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:42:55 -0000 lioux 2003/04/05 14:42:54 PST FreeBSD ports repository Modified files: emulators Makefile Log: After repo copy from emulators/vgb-bin, connect vgba-bin to build Revision Changes Path 1.102 +1 -0 ports/emulators/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:43:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6330337B401; Sat, 5 Apr 2003 14:43:11 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 701AA43FCB; Sat, 5 Apr 2003 14:43:10 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 40ABD66D16; Sat, 5 Apr 2003 14:43:10 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 26755107D; Sat, 5 Apr 2003 14:43:10 -0800 (PST) Date: Sat, 5 Apr 2003 14:43:10 -0800 From: Kris Kennaway To: Edwin Groothuis Message-ID: <20030405224310.GA47518@rot13.obsecurity.org> References: <200304052237.h35MbnDJ031605@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EVF5PPMfhYS0aIcm" Content-Disposition: inline In-Reply-To: <200304052237.h35MbnDJ031605@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/avmailgate Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:43:12 -0000 --EVF5PPMfhYS0aIcm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 05, 2003 at 02:37:49PM -0800, Edwin Groothuis wrote: > edwin 2003/04/05 14:37:49 PST >=20 > FreeBSD ports repository >=20 > Modified files: > security/avmailgate Makefile=20 > Log: > Added COMMENT. > Ran portlint on it (strangely engouh, I've done all these fixes yesterd= ay already) Thanks, hopefully this fixed INDEX builds. Kris --EVF5PPMfhYS0aIcm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+j1v9Wry0BWjoQKURAjMCAKDbq5E047QMitM17DG2xlh+qU4KAwCg2GKy ShFA/KnIuV6EmWaNHzlolaM= =LweN -----END PGP SIGNATURE----- --EVF5PPMfhYS0aIcm-- From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:45:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 871E637B401; Sat, 5 Apr 2003 14:45:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2720243FBD; Sat, 5 Apr 2003 14:45:53 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Mjq0U032367; Sat, 5 Apr 2003 14:45:52 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MjqNp032366; Sat, 5 Apr 2003 14:45:52 -0800 (PST) Message-Id: <200304052245.h35MjqNp032366@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sat, 5 Apr 2003 14:45:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:45:53 -0000 lioux 2003/04/05 14:45:52 PST FreeBSD ports repository Modified files: . modules Log: Add module after repo copy from ports/emulators/vgb-bin vgba-bin --> ports/emulators/vgba-bin Revision Changes Path 1.6997 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:53:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27A8E37B408; Sat, 5 Apr 2003 14:53:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA81143F75; Sat, 5 Apr 2003 14:53:51 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Mrp0U032985; Sat, 5 Apr 2003 14:53:51 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MrpmM032984; Sat, 5 Apr 2003 14:53:51 -0800 (PST) Message-Id: <200304052253.h35MrpmM032984@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 5 Apr 2003 14:53:51 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/transcode Makefile distinfo pkg-plist patch-dvdread:dvd_reader.c patch-import:clone.c patch-import:ioaux.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:53:52 -0000 arved 2003/04/05 14:53:51 PST FreeBSD ports repository Modified files: multimedia/transcode Makefile distinfo pkg-plist Added files: multimedia/transcode/files patch-contrib:subrip:Makefile patch-dvdread:dvd_reader.c patch-import:clone.c patch-import:ioaux.c Log: Update to 0.6.4 Changes: - update MASTER_SITES since the maintainer changed - add %%WITH_NASM%% knob to Makefile and pkg-plist to honor WITH_NASM option correctly. Attention: WITH_NASM gets set if bin/nasm is found but this may not be enough for transcode as nasm >= 0.98.34 is needed. Checking for bin/nasm-0.98.35 might be a way of achieving this but leads to more work when updating nasm itself. - add WITH_SUBRIP knob suggested by Michael Nottebrock in ports/47923 and implemented in ports/48649. - incorporate dvd_reader.c patch by Atte Peltomaeki which has already been added in ports/48649 - remove the transcode.c patch from ports/48649 since it made its way into the main distribution - add threading patch by Andriy Gapon in ports/48126 - pkg-plist update PR: 50377 Submitted by: maintainer Revision Changes Path 1.21 +24 -4 ports/multimedia/transcode/Makefile 1.6 +1 -1 ports/multimedia/transcode/distinfo 1.1 +13 -0 ports/multimedia/transcode/files/patch-contrib:subrip:Makefile (new) 1.1 +19 -0 ports/multimedia/transcode/files/patch-dvdread:dvd_reader.c (new) 1.1 +21 -0 ports/multimedia/transcode/files/patch-import:clone.c (new) 1.1 +35 -0 ports/multimedia/transcode/files/patch-import:ioaux.c (new) 1.10 +12 -3 ports/multimedia/transcode/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 14:59:26 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3467A37B401; Sat, 5 Apr 2003 14:59:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0B8743FB1; Sat, 5 Apr 2003 14:59:25 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35MxP0U033226; Sat, 5 Apr 2003 14:59:25 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35MxPmn033225; Sat, 5 Apr 2003 14:59:25 -0800 (PST) Message-Id: <200304052259.h35MxPmn033225@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 14:59:25 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/foomatic-db Makefileports/print/foomatic-db/files patch-configure.in preconfigure-patch X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 22:59:26 -0000 edwin 2003/04/05 14:59:25 PST FreeBSD ports repository Modified files: print/foomatic-db Makefile Added files: print/foomatic-db/files patch-configure.in Removed files: print/foomatic-db/files preconfigure-patch Log: Solved the sh/bash issue in configure.in a little bit nicer. Added dependency on autoconf. Notited by: kris/bento Revision Changes Path 1.2 +1 -1 ports/print/foomatic-db/Makefile 1.1 +11 -0 ports/print/foomatic-db/files/patch-configure.in (new) 1.2 +0 -11 ports/print/foomatic-db/files/preconfigure-patch (dead) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 15:00:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12D7037B401; Sat, 5 Apr 2003 15:00:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A785A43FAF; Sat, 5 Apr 2003 15:00:44 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35N0i0U033440; Sat, 5 Apr 2003 15:00:44 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35N0irN033438; Sat, 5 Apr 2003 15:00:44 -0800 (PST) Message-Id: <200304052300.h35N0irN033438@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 15:00:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/silkymail Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 23:00:45 -0000 edwin 2003/04/05 15:00:44 PST FreeBSD ports repository Modified files: mail/silkymail Makefile Log: Mark port NO_PACKAGE because it requires IMAP/IMAP_SSL which isn't supplied by default. Submitted by: kris@ Revision Changes Path 1.2 +1 -0 ports/mail/silkymail/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 15:01:10 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF4C037B405; Sat, 5 Apr 2003 15:01:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F12AA43FBF; Sat, 5 Apr 2003 15:01:09 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35N190U033674; Sat, 5 Apr 2003 15:01:09 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35N19aE033672; Sat, 5 Apr 2003 15:01:09 -0800 (PST) Message-Id: <200304052301.h35N19aE033672@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 15:01:09 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/pdflib-perl Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 23:01:11 -0000 marcus 2003/04/05 15:01:09 PST FreeBSD ports repository Added files: print/pdflib-perl Makefile Log: Add pdflib-perl, a slave port of pdflib that enables Perl support. Revision Changes Path 1.1 +18 -0 ports/print/pdflib-perl/Makefile (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 15:01:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C953637B405; Sat, 5 Apr 2003 15:01:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5394D43F93; Sat, 5 Apr 2003 15:01:44 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35N1i0U033743; Sat, 5 Apr 2003 15:01:44 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35N1iCk033742; Sat, 5 Apr 2003 15:01:44 -0800 (PST) Message-Id: <200304052301.h35N1iCk033742@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 15:01:44 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/pdflib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 23:01:45 -0000 marcus 2003/04/05 15:01:44 PST FreeBSD ports repository Modified files: print/pdflib Makefile Log: Allow this port to take a slave port. Revision Changes Path 1.24 +3 -1 ports/print/pdflib/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 15:02:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B0E437B401; Sat, 5 Apr 2003 15:02:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD7C243F3F; Sat, 5 Apr 2003 15:02:04 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35N240U033787; Sat, 5 Apr 2003 15:02:04 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35N24SX033786; Sat, 5 Apr 2003 15:02:04 -0800 (PST) Message-Id: <200304052302.h35N24SX033786@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 15:02:04 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/p5-PDFLib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 23:02:05 -0000 marcus 2003/04/05 15:02:04 PST FreeBSD ports repository Modified files: print/p5-PDFLib Makefile Log: Make this port depend on the slave port pdflib-perl. Revision Changes Path 1.6 +2 -1 ports/print/p5-PDFLib/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 15:02:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFB4837B401; Sat, 5 Apr 2003 15:02:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FA5B43F85; Sat, 5 Apr 2003 15:02:43 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35N2h0U033827; Sat, 5 Apr 2003 15:02:43 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35N2hJ3033826; Sat, 5 Apr 2003 15:02:43 -0800 (PST) Message-Id: <200304052302.h35N2hJ3033826@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 15:02:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 23:02:44 -0000 marcus 2003/04/05 15:02:43 PST FreeBSD ports repository Modified files: print Makefile Log: Add pdflib-perl. Revision Changes Path 1.235 +1 -0 ports/print/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 15:02:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2B9537B401; Sat, 5 Apr 2003 15:02:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6394943F75; Sat, 5 Apr 2003 15:02:59 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35N2x0U033871; Sat, 5 Apr 2003 15:02:59 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35N2xqs033870; Sat, 5 Apr 2003 15:02:59 -0800 (PST) Message-Id: <200304052302.h35N2xqs033870@repoman.freebsd.org> From: Alan Cox Date: Sat, 5 Apr 2003 15:02:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_physio.c vfs_aio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 23:03:00 -0000 alc 2003/04/05 15:02:59 PST FreeBSD src repository Modified files: sys/kern kern_physio.c vfs_aio.c Log: Don't reinitialize fields that are already initialized by getpbuf(). Revision Changes Path 1.58 +1 -1 src/sys/kern/kern_physio.c 1.159 +1 -1 src/sys/kern/vfs_aio.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 15:03:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1728737B404; Sat, 5 Apr 2003 15:03:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4A1F43F93; Sat, 5 Apr 2003 15:03:27 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35N3R0U034847; Sat, 5 Apr 2003 15:03:27 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35N3Rq2034846; Sat, 5 Apr 2003 15:03:27 -0800 (PST) Message-Id: <200304052303.h35N3Rq2034846@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 15:03:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/finance/p5-Business-WorldPay-Junior Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 23:03:29 -0000 edwin 2003/04/05 15:03:27 PST FreeBSD ports repository Modified files: finance/p5-Business-WorldPay-Junior Makefile Log: Removed double $$ in BUILD_DEPENDS Noticed by: bento/kris Revision Changes Path 1.6 +1 -1 ports/finance/p5-Business-WorldPay-Junior/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 15:03:30 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDE9737B401; Sat, 5 Apr 2003 15:03:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F4F743F93; Sat, 5 Apr 2003 15:03:30 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35N3U0U034874; Sat, 5 Apr 2003 15:03:30 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35N3Ujw034873; Sat, 5 Apr 2003 15:03:30 -0800 (PST) Message-Id: <200304052303.h35N3Ujw034873@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 15:03:30 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 23:03:31 -0000 marcus 2003/04/05 15:03:30 PST FreeBSD ports repository Modified files: . modules Log: pdflib-perl --> ports/print/pdflib-perl Revision Changes Path 1.6998 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 15:09:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA5F637B401; Sat, 5 Apr 2003 15:09:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89CCE43F93; Sat, 5 Apr 2003 15:09:29 -0800 (PST) (envelope-from alane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35N9T0U035112; Sat, 5 Apr 2003 15:09:29 -0800 (PST) (envelope-from alane@repoman.freebsd.org) Received: (from alane@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35N9TUD035111; Sat, 5 Apr 2003 15:09:29 -0800 (PST) Message-Id: <200304052309.h35N9TUD035111@repoman.freebsd.org> From: Alan Eldridge Date: Sat, 5 Apr 2003 15:09:29 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/leo Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 23:09:30 -0000 alane 2003/04/05 15:09:29 PST FreeBSD ports repository Modified files: editors/leo Makefile distinfo Log: update to 3.10 Revision Changes Path 1.6 +11 -2 ports/editors/leo/Makefile 1.5 +2 -1 ports/editors/leo/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 5 15:24:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CEBD37B401; Sat, 5 Apr 2003 15:24:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D68C43FBD; Sat, 5 Apr 2003 15:24:24 -0800 (PST) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35NON0U036322; Sat, 5 Apr 2003 15:24:23 -0800 (PST) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35NON7V036321; Sat, 5 Apr 2003 15:24:23 -0800 (PST) Message-Id: <200304052324.h35NON7V036321@repoman.freebsd.org> From: Maxime Henrion Date: Sat, 5 Apr 2003 15:24:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 23:24:24 -0000 mux 2003/04/05 15:24:23 PST FreeBSD src repository Modified files: sys/pci if_xl.c Log: Use bus_dmamap_load_mbuf() instead of bus_dmamap_load() for the RX part of this driver too. It's better since the code wasn't dealing with bus_dmamap_load() returning EINPROGRESS, and this can't happen with bus_dmamap_load_mbuf(). Submitted by: jake Revision Changes Path 1.137 +21 -2 src/sys/pci/if_xl.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 15:46:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63D6237B401; Sat, 5 Apr 2003 15:46:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 014BB43F75; Sat, 5 Apr 2003 15:46:59 -0800 (PST) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35Nkw0U037743; Sat, 5 Apr 2003 15:46:58 -0800 (PST) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35Nkwoi037742; Sat, 5 Apr 2003 15:46:58 -0800 (PST) Message-Id: <200304052346.h35Nkwoi037742@repoman.freebsd.org> From: Maxime Henrion Date: Sat, 5 Apr 2003 15:46:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fxp if_fxpreg.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 23:46:59 -0000 mux 2003/04/05 15:46:58 PST FreeBSD src repository Modified files: sys/dev/fxp if_fxpreg.h Log: - Use __FXP_BITFIELDX macros to make the configuration bitfield endian safe. - Change some u_int to u_int8_t which make more sense here since we're really defining bytes. That produces the same code due to how bitfields work. - Add the definition of the vlan_drop_en bit (not used yet). - Add some useful comments. Obtained from: NetBSD Revision Changes Path 1.31 +99 -81 src/sys/dev/fxp/if_fxpreg.h From owner-cvs-all@FreeBSD.ORG Sat Apr 5 16:05:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D059437B401; Sat, 5 Apr 2003 16:05:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7452543FA3; Sat, 5 Apr 2003 16:05:00 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h360500U039944; Sat, 5 Apr 2003 16:05:00 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h36050CH039943; Sat, 5 Apr 2003 16:05:00 -0800 (PST) Message-Id: <200304060005.h36050CH039943@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 5 Apr 2003 16:05:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/ecasound Makefile distinfo pkg-plist patch-configure.in patch-ecasound::eca-curses.cpp patch-libecasound:audioio-wave.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 00:05:01 -0000 arved 2003/04/05 16:05:00 PST FreeBSD ports repository Modified files: audio/ecasound Makefile distinfo pkg-plist audio/ecasound/files extra-patch-configure.in-optimizations Added files: audio/ecasound/files patch-ecasound::eca-curses.cpp Removed files: audio/ecasound/files patch-configure.in patch-libecasound:audioio-wave.h Log: Update to 2.2.2 PR: 50580 Submitted by: maintainer Revision Changes Path 1.12 +4 -16 ports/audio/ecasound/Makefile 1.6 +1 -1 ports/audio/ecasound/distinfo 1.2 +11 -19 ports/audio/ecasound/files/extra-patch-configure.in-optimizations 1.2 +0 -14 ports/audio/ecasound/files/patch-configure.in (dead) 1.1 +26 -0 ports/audio/ecasound/files/patch-ecasound::eca-curses.cpp (new) 1.2 +0 -11 ports/audio/ecasound/files/patch-libecasound:audioio-wave.h (dead) 1.7 +138 -139 ports/audio/ecasound/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 16:07:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D42E937B401; Sat, 5 Apr 2003 16:07:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0762143F93; Sat, 5 Apr 2003 16:07:59 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3607w0U040126; Sat, 5 Apr 2003 16:07:58 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3607wlh040125; Sat, 5 Apr 2003 16:07:58 -0800 (PST) Message-Id: <200304060007.h3607wlh040125@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 16:07:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/cyrus Makefile pkg-plist ports/mail/cyrus/files 600.cyrus X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 00:08:00 -0000 edwin 2003/04/05 16:07:58 PST FreeBSD ports repository Modified files: mail/cyrus Makefile pkg-plist Added files: mail/cyrus/files 600.cyrus Log: cyrus port should add periodic file to prune deliverdb The cyrus port takes no steps to insure the deliver databases are properly pruned. This can be quite easily accomplished on a daily basis by adding a periodic file to take care of this. This should be a model for other ports that require daily/weekly/monthly actions. Why else did we bother to break up the cron jobs into the /etc/periodic* structure? PR: ports/26801 Submitted by: Nick Sayer Revision Changes Path 1.46 +6 -1 ports/mail/cyrus/Makefile 1.1 +21 -0 ports/mail/cyrus/files/600.cyrus (new) 1.13 +1 -0 ports/mail/cyrus/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 16:18:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B55C37B401; Sat, 5 Apr 2003 16:18:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0917B43F3F; Sat, 5 Apr 2003 16:18:47 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h360Ik0U040805; Sat, 5 Apr 2003 16:18:46 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h360IkFS040804; Sat, 5 Apr 2003 16:18:46 -0800 (PST) Message-Id: <200304060018.h360IkFS040804@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sat, 5 Apr 2003 16:18:46 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/kdemultimedia3 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 00:18:47 -0000 lioux 2003/04/05 16:18:46 PST FreeBSD ports repository Modified files: multimedia/kdemultimedia3 Makefile Log: Fix dependency list: graphics/xanim -> multimedia/xanim Prompted by: kris (INDEX survey) Revision Changes Path 1.84 +1 -1 ports/multimedia/kdemultimedia3/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 16:30:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EA8437B401; Sat, 5 Apr 2003 16:30:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 171F043FBF; Sat, 5 Apr 2003 16:30:59 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h360Uw0U041903; Sat, 5 Apr 2003 16:30:58 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h360UwwG041900; Sat, 5 Apr 2003 16:30:58 -0800 (PST) Message-Id: <200304060030.h360UwwG041900@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 16:30:58 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www Makefile ports/www/cherokee Makefile distinfo pkg-descr pkg-plist ports/www/cherokee/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 00:31:00 -0000 edwin 2003/04/05 16:30:58 PST FreeBSD ports repository Modified files: www Makefile Added files: www/cherokee Makefile distinfo pkg-descr pkg-plist www/cherokee/files patch-aa Log: new port: www/cherokee Cherokee is a tiny, ultrafast, lightweight Web server. It is implemented entirely in C, and has no dependencies beyond a standard C library. It provides only the most basic HTTP functionality, but is extremely fast and small. PR: ports/38092 Submitted by: silence Revision Changes Path 1.630 +1 -0 ports/www/Makefile 1.1 +94 -0 ports/www/cherokee/Makefile (new) 1.1 +1 -0 ports/www/cherokee/distinfo (new) 1.1 +43 -0 ports/www/cherokee/files/patch-aa (new) 1.1 +6 -0 ports/www/cherokee/pkg-descr (new) 1.1 +3 -0 ports/www/cherokee/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 16:31:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AC9F37B401; Sat, 5 Apr 2003 16:31:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF57543F85; Sat, 5 Apr 2003 16:31:28 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h360VS0U041972; Sat, 5 Apr 2003 16:31:28 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h360VSoE041971; Sat, 5 Apr 2003 16:31:28 -0800 (PST) Message-Id: <200304060031.h360VSoE041971@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 16:31:28 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 00:31:29 -0000 edwin 2003/04/05 16:31:28 PST FreeBSD ports repository Modified files: . modules Log: cherokee --> ports/www/cherokee Revision Changes Path 1.6999 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 16:40:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7019A37B401; Sat, 5 Apr 2003 16:40:47 -0800 (PST) Received: from cvsup.no.freebsd.org (c2h5oh.idi.ntnu.no [129.241.103.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D40043F75; Sat, 5 Apr 2003 16:40:45 -0800 (PST) (envelope-from Tor.Egge@cvsup.no.freebsd.org) Received: from localhost (localhost [127.0.0.1])h360ehai039526; Sun, 6 Apr 2003 00:40:44 GMT (envelope-from tegge@cvsup.no.freebsd.org) To: des@ofug.org From: Tor.Egge@cvsup.no.freebsd.org In-Reply-To: References: <20030405190623H.tegge@cvsup.no.freebsd.org> X-Mailer: Mew version 1.94.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20030406004043E.tegge@cvsup.no.freebsd.org> Date: Sun, 06 Apr 2003 00:40:43 GMT Sender: Tor Egge X-Dispatcher: imput version 20000228(IM140) Lines: 8 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options.i386 src/sys/i386/i386 tsc.c src/sys/i386/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 00:40:48 -0000 > What I mean is - what processors / chipsets support this? Will it > work on any multi-processor P3 or P4 system, or does it require > special chipset support? I believe it will work on most x86 SMP systems. I've had 100% success but the number of samples is small (2). - Tor Egge From owner-cvs-all@FreeBSD.ORG Sat Apr 5 16:40:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94CD937B401; Sat, 5 Apr 2003 16:40:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0367043F75; Sat, 5 Apr 2003 16:40:55 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h360es0U042534; Sat, 5 Apr 2003 16:40:54 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h360es5P042532; Sat, 5 Apr 2003 16:40:54 -0800 (PST) Message-Id: <200304060040.h360es5P042532@repoman.freebsd.org> From: Alan Cox Date: Sat, 5 Apr 2003 16:40:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_bio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 00:41:00 -0000 alc 2003/04/05 16:40:54 PST FreeBSD src repository Modified files: sys/kern vfs_bio.c Log: Remove an unnecessary trunc_page() from vmapbuf(). Reviewed by: tegge Revision Changes Path 1.384 +1 -1 src/sys/kern/vfs_bio.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 17:04:18 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D8FC37B401; Sat, 5 Apr 2003 17:04:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D8F543FA3; Sat, 5 Apr 2003 17:04:18 -0800 (PST) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3614H0U050067; Sat, 5 Apr 2003 17:04:17 -0800 (PST) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3614HjP050066; Sat, 5 Apr 2003 17:04:17 -0800 (PST) Message-Id: <200304060104.h3614HjP050066@repoman.freebsd.org> From: Maxime Henrion Date: Sat, 5 Apr 2003 17:04:17 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fxp if_fxp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 01:04:18 -0000 mux 2003/04/05 17:04:17 PST FreeBSD src repository Modified files: sys/dev/fxp if_fxp.c Log: - Instead of rolling our own alignment-safe function, use le32enc() which deals with both endianness and alignment issues. - Collect low-hanging fruits for endianness safety. - Use 0xffffffff instead of -1 where appropriate. Revision Changes Path 1.157 +66 -78 src/sys/dev/fxp/if_fxp.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 17:10:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE7D937B401; Sat, 5 Apr 2003 17:10:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79D5A43F3F; Sat, 5 Apr 2003 17:10:48 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h361Am0U050740; Sat, 5 Apr 2003 17:10:48 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h361AllB050736; Sat, 5 Apr 2003 17:10:47 -0800 (PST) Message-Id: <200304060110.h361AllB050736@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 17:10:47 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile ports/audio/discid Makefile distinfo pkg-descr pkg-plist ports/audio/discid/files patch-aa patch-ab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 01:10:49 -0000 edwin 2003/04/05 17:10:47 PST FreeBSD ports repository Modified files: audio Makefile Added files: audio/discid Makefile distinfo pkg-descr pkg-plist audio/discid/files patch-aa patch-ab Log: port for audio/discid A C Program to Compute CDDB discids on Linux and FreeBSD PR: ports/38751 Submitted by: Oliver Breuninger Revision Changes Path 1.398 +1 -0 ports/audio/Makefile 1.1 +21 -0 ports/audio/discid/Makefile (new) 1.1 +1 -0 ports/audio/discid/distinfo (new) 1.1 +9 -0 ports/audio/discid/files/patch-aa (new) 1.1 +14 -0 ports/audio/discid/files/patch-ab (new) 1.1 +15 -0 ports/audio/discid/pkg-descr (new) 1.1 +1 -0 ports/audio/discid/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 17:11:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68EB237B401; Sat, 5 Apr 2003 17:11:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08CD643FAF; Sat, 5 Apr 2003 17:11:05 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h361B40U050851; Sat, 5 Apr 2003 17:11:04 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h361B4Mj050850; Sat, 5 Apr 2003 17:11:04 -0800 (PST) Message-Id: <200304060111.h361B4Mj050850@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 17:11:04 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 01:11:06 -0000 edwin 2003/04/05 17:11:04 PST FreeBSD ports repository Modified files: . modules Log: discid --> ports/audio/discid Revision Changes Path 1.7000 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 17:11:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F00A37B401; Sat, 5 Apr 2003 17:11:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F9D943F3F; Sat, 5 Apr 2003 17:11:39 -0800 (PST) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h361Bd0U050892; Sat, 5 Apr 2003 17:11:39 -0800 (PST) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h361BctA050891; Sat, 5 Apr 2003 17:11:38 -0800 (PST) Message-Id: <200304060111.h361BctA050891@repoman.freebsd.org> From: Maxime Henrion Date: Sat, 5 Apr 2003 17:11:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fxp if_fxpreg.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 01:11:40 -0000 mux 2003/04/05 17:11:38 PST FreeBSD src repository Modified files: sys/dev/fxp if_fxpreg.h Log: Correct the definition of the link_addr and rbd_addr fields in struct fxp_rfa. This should have been committed with my last endianness fixes. Revision Changes Path 1.32 +2 -2 src/sys/dev/fxp/if_fxpreg.h From owner-cvs-all@FreeBSD.ORG Sat Apr 5 17:13:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C70137B401; Sat, 5 Apr 2003 17:13:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE83E43F3F; Sat, 5 Apr 2003 17:13:28 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h361DS0U051016; Sat, 5 Apr 2003 17:13:28 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h361DSC6051015; Sat, 5 Apr 2003 17:13:28 -0800 (PST) Message-Id: <200304060113.h361DSC6051015@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 17:13:28 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/libicq2000 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 01:13:29 -0000 edwin 2003/04/05 17:13:28 PST FreeBSD ports repository Modified files: net/libicq2000 Makefile Log: Added INSTALLS_SHLIB to Makefile. Informed maintainer. Revision Changes Path 1.7 +2 -0 ports/net/libicq2000/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 17:22:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 565D837B401; Sat, 5 Apr 2003 17:22:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E21AB43FAF; Sat, 5 Apr 2003 17:22:08 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h361M80U051712; Sat, 5 Apr 2003 17:22:08 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h361M8uC051711; Sat, 5 Apr 2003 17:22:08 -0800 (PST) Message-Id: <200304060122.h361M8uC051711@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sat, 5 Apr 2003 17:22:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/juk Makefile distinfo patch-juk::genrelisteditorbase.ui patch-juk::juk.cpp patch-juk::juk.h patch-juk::jukui.rc patch-juk::playlistsplitter.cpp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 01:22:09 -0000 lioux 2003/04/05 17:22:08 PST FreeBSD ports repository Modified files: audio/juk Makefile distinfo Removed files: audio/juk/files patch-juk::collectionlist.cpp patch-juk::genrelisteditorbase.ui patch-juk::juk.cpp patch-juk::juk.h patch-juk::jukui.rc patch-juk::playlist.cpp patch-juk::playlistbox.cpp patch-juk::playlistsplitter.cpp patch-juk::playlistsplitter.h patch-juk::slideraction.cpp patch-juk::tageditor.cpp Log: o Update to 1.1 o Remove patches incorporated into the distribution Submitted by: Lauri Watts (FreeBSD KDE Team) Revision Changes Path 1.2 +2 -3 ports/audio/juk/Makefile 1.2 +1 -1 ports/audio/juk/distinfo 1.2 +0 -13 ports/audio/juk/files/patch-juk::collectionlist.cpp (dead) 1.2 +0 -38 ports/audio/juk/files/patch-juk::genrelisteditorbase.ui (dead) 1.2 +0 -19 ports/audio/juk/files/patch-juk::juk.cpp (dead) 1.2 +0 -11 ports/audio/juk/files/patch-juk::juk.h (dead) 1.2 +0 -11 ports/audio/juk/files/patch-juk::jukui.rc (dead) 1.2 +0 -29 ports/audio/juk/files/patch-juk::playlist.cpp (dead) 1.2 +0 -20 ports/audio/juk/files/patch-juk::playlistbox.cpp (dead) 1.2 +0 -69 ports/audio/juk/files/patch-juk::playlistsplitter.cpp (dead) 1.2 +0 -22 ports/audio/juk/files/patch-juk::playlistsplitter.h (dead) 1.2 +0 -11 ports/audio/juk/files/patch-juk::slideraction.cpp (dead) 1.2 +0 -80 ports/audio/juk/files/patch-juk::tageditor.cpp (dead) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 17:27:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8B9437B401; Sat, 5 Apr 2003 17:27:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5ADDB43F93; Sat, 5 Apr 2003 17:27:13 -0800 (PST) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h361RD0U051876; Sat, 5 Apr 2003 17:27:13 -0800 (PST) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h361RDEo051875; Sat, 5 Apr 2003 17:27:13 -0800 (PST) Message-Id: <200304060127.h361RDEo051875@repoman.freebsd.org> From: Maxime Henrion Date: Sat, 5 Apr 2003 17:27:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fxp if_fxp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 01:27:14 -0000 mux 2003/04/05 17:27:13 PST FreeBSD src repository Modified files: sys/dev/fxp if_fxp.c Log: Use __FBSDID. Revision Changes Path 1.158 +3 -1 src/sys/dev/fxp/if_fxp.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 17:29:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46B4637B401; Sat, 5 Apr 2003 17:29:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D487E43F3F; Sat, 5 Apr 2003 17:29:15 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h361TF0U052058; Sat, 5 Apr 2003 17:29:15 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h361TFlU052057; Sat, 5 Apr 2003 17:29:15 -0800 (PST) Message-Id: <200304060129.h361TFlU052057@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 17:29:15 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile ports/audio/beep Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 01:29:16 -0000 edwin 2003/04/05 17:29:15 PST FreeBSD ports repository Modified files: audio Makefile Added files: audio/beep Makefile distinfo pkg-descr pkg-plist Log: audio/beep: beep for a pitch and duration PR: ports/39062 Submitted by: Tyler Spivey Revision Changes Path 1.399 +1 -0 ports/audio/Makefile 1.1 +21 -0 ports/audio/beep/Makefile (new) 1.1 +1 -0 ports/audio/beep/distinfo (new) 1.1 +5 -0 ports/audio/beep/pkg-descr (new) 1.1 +1 -0 ports/audio/beep/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 17:29:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA67137B401; Sat, 5 Apr 2003 17:29:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8ACEC43FCB; Sat, 5 Apr 2003 17:29:31 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h361TV0U052105; Sat, 5 Apr 2003 17:29:31 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h361TVUI052104; Sat, 5 Apr 2003 17:29:31 -0800 (PST) Message-Id: <200304060129.h361TVUI052104@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 17:29:31 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 01:29:32 -0000 edwin 2003/04/05 17:29:31 PST FreeBSD ports repository Modified files: . modules Log: beep --> ports/audio/beep Revision Changes Path 1.7001 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 17:31:43 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A7EA37B401; Sat, 5 Apr 2003 17:31:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D44C43F75; Sat, 5 Apr 2003 17:31:42 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h361Vg0U052620; Sat, 5 Apr 2003 17:31:42 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h361VgUc052619; Sat, 5 Apr 2003 17:31:42 -0800 (PST) Message-Id: <200304060131.h361VgUc052619@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 17:31:42 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mod_mp3 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 01:31:43 -0000 edwin 2003/04/05 17:31:42 PST FreeBSD ports repository Modified files: www/mod_mp3 Makefile Log: [PATCH] Addition of mysql-awareness to mod_mp3 port Makefile mod_mp3 has support for storing the file lists within MySQL, but the port is not currently able to take advantage of this. PR: ports/39312 Submitted by: "Kelly Cochran" Revision Changes Path 1.25 +5 -0 ports/www/mod_mp3/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 17:34:51 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A90CE37B401; Sat, 5 Apr 2003 17:34:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4820D43FA3; Sat, 5 Apr 2003 17:34:51 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h361Yp0U052736; Sat, 5 Apr 2003 17:34:51 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h361Yonx052735; Sat, 5 Apr 2003 17:34:50 -0800 (PST) Message-Id: <200304060134.h361Yonx052735@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 5 Apr 2003 17:34:50 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/beep Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 01:34:52 -0000 edwin 2003/04/05 17:34:50 PST FreeBSD ports repository Modified files: audio/beep Makefile Log: maintainer -> ports@freebsd.org Diagnostic-Code: X-Postfix; host mx01.telus.net[199.185.220.250] said: 550 Invalid recipient: Revision Changes Path 1.2 +1 -1 ports/audio/beep/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 18:32:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4173437B401; Sat, 5 Apr 2003 18:32:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93C7043F93; Sat, 5 Apr 2003 18:32:12 -0800 (PST) (envelope-from alane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h362WC0U057440; Sat, 5 Apr 2003 18:32:12 -0800 (PST) (envelope-from alane@repoman.freebsd.org) Received: (from alane@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h362WCjZ057439; Sat, 5 Apr 2003 18:32:12 -0800 (PST) Message-Id: <200304060232.h362WCjZ057439@repoman.freebsd.org> From: Alan Eldridge Date: Sat, 5 Apr 2003 18:32:12 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/kde3-i18n Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 02:32:13 -0000 alane 2003/04/05 18:32:12 PST FreeBSD ports repository Modified files: misc/kde3-i18n Makefile Log: temporarily fix locations of soon-to-be-repocopied i18n ports Revision Changes Path 1.20 +8 -3 ports/misc/kde3-i18n/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 18:32:24 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id E029437B404; Sat, 5 Apr 2003 18:32:24 -0800 (PST) Date: Sat, 5 Apr 2003 20:32:24 -0600 From: Juli Mallett To: Maxime Henrion Message-ID: <20030405203224.A39491@FreeBSD.org> References: <200304060127.h361RDEo051875@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200304060127.h361RDEo051875@repoman.freebsd.org>; from mux@FreeBSD.org on Sat, Apr 05, 2003 at 05:27:13PM -0800 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-Negacore: Yes X-Title: Code Maven X-Authentication-Warning: localhost: juli pwned teh intarweb cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/fxp if_fxp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 02:32:25 -0000 * De: Maxime Henrion [ Data: 2003-04-05 ] [ Subjecte: cvs commit: src/sys/dev/fxp if_fxp.c ] > mux 2003/04/05 17:27:13 PST > > FreeBSD src repository > > Modified files: > sys/dev/fxp if_fxp.c > Log: > Use __FBSDID. Is this consistent with other dev/ driver files? Are we going to move to preferring __FBSDID in the kernel, over /*\n * $FreeBSD$? I know there was a decision to convert things using string $FreeBSD$ to this (since we can strip it after the kernel is linked, or at compile time), but I hadn't seen anything about using it in general? Useful for modules, I suppose? Thanx, juli. -- juli mallett. email: jmallett@freebsd.org; aim: bsdflata; efnet: juli; From owner-cvs-all@FreeBSD.ORG Sat Apr 5 19:30:46 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9610A37B401; Sat, 5 Apr 2003 19:30:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37D8A43F75; Sat, 5 Apr 2003 19:30:46 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h363Uj0U062014; Sat, 5 Apr 2003 19:30:45 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h363UjpR062008; Sat, 5 Apr 2003 19:30:45 -0800 (PST) Message-Id: <200304060330.h363UjpR062008@repoman.freebsd.org> From: Warner Losh Date: Sat, 5 Apr 2003 19:30:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/build endian.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 03:30:46 -0000 imp 2003/04/05 19:30:45 PST FreeBSD src repository Modified files: tools/build endian.h Log: Don't need the gccism include_next since we won't create this file when a real sys/endian.h exists. Submitted by: ru@ Revision Changes Path 1.2 +1 -6 src/tools/build/endian.h From owner-cvs-all@FreeBSD.ORG Sat Apr 5 19:50:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A26D137B401; Sat, 5 Apr 2003 19:50:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E07443F75; Sat, 5 Apr 2003 19:50:29 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h363oT0U063231; Sat, 5 Apr 2003 19:50:29 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h363oSee063228; Sat, 5 Apr 2003 19:50:28 -0800 (PST) Message-Id: <200304060350.h363oSee063228@repoman.freebsd.org> From: Warner Losh Date: Sat, 5 Apr 2003 19:50:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 src/tools/build Makefile.boot X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 03:50:30 -0000 imp 2003/04/05 19:50:28 PST FreeBSD src repository Modified files: . Makefile.inc1 tools/build Makefile.boot Log: We can't use ${WORLDTMP}/usr/{include,lib} for the compat layer. This is because we populate these directories later, and a subsequent -DNOCLEAN build may fail. So, we put them in ${WORLDTMP}/build/usr/{include,lib} instead and adjust Makefile.boot. Again, this works on -stable and -current, but might break older versions. Submitted by: ru@ Revision Changes Path 1.333 +24 -2 src/Makefile.inc1 1.2 +5 -3 src/tools/build/Makefile.boot From owner-cvs-all@FreeBSD.ORG Sat Apr 5 19:57:34 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF70A37B401; Sat, 5 Apr 2003 19:57:34 -0800 (PST) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF2DC43FA3; Sat, 5 Apr 2003 19:57:33 -0800 (PST) (envelope-from jake@k6.locore.ca) Received: from k6.locore.ca (localhost.locore.ca [127.0.0.1]) by k6.locore.ca (8.12.8/8.12.8) with ESMTP id h3644kxS067827; Sat, 5 Apr 2003 23:04:46 -0500 (EST) (envelope-from jake@k6.locore.ca) Received: (from jake@localhost) by k6.locore.ca (8.12.8/8.12.8/Submit) id h3644kxJ067826; Sat, 5 Apr 2003 23:04:46 -0500 (EST) Date: Sat, 5 Apr 2003 23:04:46 -0500 From: Jake Burkholder To: Olivier Houchard Message-ID: <20030406040446.GA67105@locore.ca> References: <200304051808.h35I8NuS097736@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304051808.h35I8NuS097736@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/isa vesa.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 03:57:35 -0000 Apparently, On Sat, Apr 05, 2003 at 10:08:22AM -0800, Olivier Houchard said words to the effect of; > cognet 2003/04/05 10:08:22 PST > > FreeBSD src repository > > Modified files: > sys/i386/isa vesa.c > Log: > Use vm_paddr_t instead of vm_offset_t for the paddr parameter of vesa_mmap. Thanks! > > Revision Changes Path > 1.42 +1 -1 src/sys/i386/isa/vesa.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 20:16:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 941EA37B401; Sat, 5 Apr 2003 20:16:12 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id E921E43F93; Sat, 5 Apr 2003 20:16:10 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id OAA08016; Sun, 6 Apr 2003 14:16:08 +1000 Date: Sun, 6 Apr 2003 14:16:07 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Maxime Henrion In-Reply-To: <200304052346.h35Nkwoi037742@repoman.freebsd.org> Message-ID: <20030406134416.A3578@gamplex.bde.org> References: <200304052346.h35Nkwoi037742@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/fxp if_fxpreg.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 04:16:13 -0000 On Sat, 5 Apr 2003, Maxime Henrion wrote: > mux 2003/04/05 15:46:58 PST > > FreeBSD src repository > > Modified files: > sys/dev/fxp if_fxpreg.h > Log: > ... > - Change some u_int to u_int8_t which make more sense here since > we're really defining bytes. That produces the same code due to > how bitfields work. This gives undefined behaviour and thus produces random code if it is compiled by a C compiler (unless Bool_t happens to be u_int8_t). From n869.txt: [#8] A bit-field shall have a type that is a qualified or unqualified version of _Bool, signed int, or unsigned int. I fixed this bug in many places, including in rev.1.13 of if_fxpreg.h. but it keeps getting reintroduced :-(. Bit-fields of other integer types are an unportable gcc extension. They affect the struct layout in unportable apparently-undocumented ways. IIRC, they don't affect internal padding but they do affect the size and alignment the struct -- a struct that has only uint8_t bit-fields in it has only the size and alignment requirements of uint8_t, while a struct with only u_int bit-fields in it has the size and alignment requirements of u_int. This may be controlled to some extent using other unportable gcc extensions. Bruce From owner-cvs-all@FreeBSD.ORG Sat Apr 5 20:19:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95B0937B401; Sat, 5 Apr 2003 20:19:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4195143F85; Sat, 5 Apr 2003 20:19:25 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h364JP0U066104; Sat, 5 Apr 2003 20:19:25 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h364JOSP066103; Sat, 5 Apr 2003 20:19:24 -0800 (PST) Message-Id: <200304060419.h364JOSP066103@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sat, 5 Apr 2003 20:19:24 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/libyahoo2 Makefile distinfo pkg-descr pkg-plist ports/net/libyahoo2/files patch-ltmain.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 04:19:26 -0000 ijliao 2003/04/05 20:19:24 PST FreeBSD ports repository Modified files: net Makefile Added files: net/libyahoo2 Makefile distinfo pkg-descr pkg-plist net/libyahoo2/files patch-ltmain.sh Log: add libyahoo2 0.6.3 A C library that handles the new Yahoo! Messenger protocol Revision Changes Path 1.959 +1 -0 ports/net/Makefile 1.1 +22 -0 ports/net/libyahoo2/Makefile (new) 1.1 +1 -0 ports/net/libyahoo2/distinfo (new) 1.1 +41 -0 ports/net/libyahoo2/files/patch-ltmain.sh (new) 1.1 +4 -0 ports/net/libyahoo2/pkg-descr (new) 1.1 +10 -0 ports/net/libyahoo2/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 20:19:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 771F237B42F; Sat, 5 Apr 2003 20:19:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17A3243F85; Sat, 5 Apr 2003 20:19:33 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h364JW0U066142; Sat, 5 Apr 2003 20:19:32 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h364JWDO066141; Sat, 5 Apr 2003 20:19:32 -0800 (PST) Message-Id: <200304060419.h364JWDO066141@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sat, 5 Apr 2003 20:19:32 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 04:19:34 -0000 ijliao 2003/04/05 20:19:32 PST FreeBSD ports repository Modified files: . modules Log: libyahoo2 --> ports/net/libyahoo2 Revision Changes Path 1.7002 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 20:38:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB73637B401; Sat, 5 Apr 2003 20:38:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9609B43FB1; Sat, 5 Apr 2003 20:38:52 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h364cq0U067548; Sat, 5 Apr 2003 20:38:52 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h364cqbK067547; Sat, 5 Apr 2003 20:38:52 -0800 (PST) Message-Id: <200304060438.h364cqbK067547@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sat, 5 Apr 2003 20:38:52 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11 Makefile ports/x11/wmdrawer Makefile distinfo pkg-descr pkg-plist ports/x11/wmdrawer/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 04:38:53 -0000 ijliao 2003/04/05 20:38:52 PST FreeBSD ports repository Modified files: x11 Makefile Added files: x11/wmdrawer Makefile distinfo pkg-descr pkg-plist x11/wmdrawer/files patch-Makefile Log: add wmdrawer 0.9.17.1 A dockapp which provides a drawer to launch applications Revision Changes Path 1.400 +1 -0 ports/x11/Makefile 1.1 +25 -0 ports/x11/wmdrawer/Makefile (new) 1.1 +1 -0 ports/x11/wmdrawer/distinfo (new) 1.1 +45 -0 ports/x11/wmdrawer/files/patch-Makefile (new) 1.1 +13 -0 ports/x11/wmdrawer/pkg-descr (new) 1.1 +9 -0 ports/x11/wmdrawer/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 20:39:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD3D737B415; Sat, 5 Apr 2003 20:39:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27C2C43FBF; Sat, 5 Apr 2003 20:39:00 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h364cx0U067587; Sat, 5 Apr 2003 20:39:00 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h364cxUn067586; Sat, 5 Apr 2003 20:38:59 -0800 (PST) Message-Id: <200304060438.h364cxUn067586@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sat, 5 Apr 2003 20:38:59 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 04:39:01 -0000 ijliao 2003/04/05 20:38:59 PST FreeBSD ports repository Modified files: . modules Log: wmdrawer --> ports/x11/wmdrawer Revision Changes Path 1.7003 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 20:41:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 273D837B401; Sat, 5 Apr 2003 20:41:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5D8843F75; Sat, 5 Apr 2003 20:41:37 -0800 (PST) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h364fb0U068070; Sat, 5 Apr 2003 20:41:37 -0800 (PST) (envelope-from mi@repoman.freebsd.org) Received: (from mi@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h364fbMm068069; Sat, 5 Apr 2003 20:41:37 -0800 (PST) Message-Id: <200304060441.h364fbMm068069@repoman.freebsd.org> From: Mikhail Teterin Date: Sat, 5 Apr 2003 20:41:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/libmng Makefile distinfo ports/graphics/libmng/files patch-lcms X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 04:41:38 -0000 mi 2003/04/05 20:41:37 PST FreeBSD ports repository Modified files: graphics/libmng Makefile distinfo Added files: graphics/libmng/files patch-lcms Log: Upgrade to the "final" release -- 1.0.5. Remove the conditional patching -- it was in place for a much older version of lcms. Would love to have done this prior to 4.8, but portmgr never responded with the approval. Revision Changes Path 1.16 +1 -6 ports/graphics/libmng/Makefile 1.6 +1 -1 ports/graphics/libmng/distinfo 1.1 +7 -0 ports/graphics/libmng/files/patch-lcms (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 20:54:27 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4305937B401; Sat, 5 Apr 2003 20:54:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E175443F85; Sat, 5 Apr 2003 20:54:26 -0800 (PST) (envelope-from rushani@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h364sQ0U073964; Sat, 5 Apr 2003 20:54:26 -0800 (PST) (envelope-from rushani@repoman.freebsd.org) Received: (from rushani@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h364sQek073963; Sat, 5 Apr 2003 20:54:26 -0800 (PST) Message-Id: <200304060454.h364sQek073963@repoman.freebsd.org> From: Hideyuki KURASHINA Date: Sat, 5 Apr 2003 20:54:26 -0800 (PST) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/ja includes.sgml includes.xsl www/ja/releases Makefile index.sgml www/ja/releases/4.8R Makefile announce.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 04:54:27 -0000 rushani 2003/04/05 20:54:26 PST FreeBSD doc repository Modified files: ja includes.sgml includes.xsl ja/releases Makefile index.sgml ja/releases/4.8R Makefile Added files: ja/releases/4.8R announce.sgml Log: Add Japanese 4.8-RELEASE release docs and activate them: 1.55 -> 1.56 includes.sgml 1.12 -> 1.13 includes.xsl 1.35 -> 1.37 releases/Makefile 1.85 -> 1.86 releases/index.sgml 1.2 -> 1.4 releases/4.8R/Makefile (new) -> 1.1 releases/4.8R/announce.sgml Committed at: Seiwa park, Bunkyoh, Tokyo (HANAMI 2003) Revision Changes Path 1.43 +4 -4 www/ja/includes.sgml 1.12 +3 -3 www/ja/includes.xsl 1.3 +8 -3 www/ja/releases/4.8R/Makefile 1.1 +208 -0 www/ja/releases/4.8R/announce.sgml (new) 1.32 +5 -4 www/ja/releases/Makefile 1.62 +11 -3 www/ja/releases/index.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 5 20:56:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4AA137B401; Sat, 5 Apr 2003 20:56:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C09A43FBD; Sat, 5 Apr 2003 20:56:39 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h364ud0U074113; Sat, 5 Apr 2003 20:56:39 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h364udQd074112; Sat, 5 Apr 2003 20:56:39 -0800 (PST) Message-Id: <200304060456.h364udQd074112@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sat, 5 Apr 2003 20:56:39 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/ogle Makefile distinfo pkg-plist ports/multimedia/ogle-gui Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 04:56:40 -0000 lioux 2003/04/05 20:56:39 PST FreeBSD ports repository Modified files: multimedia/ogle Makefile distinfo pkg-plist multimedia/ogle-gui Makefile distinfo Log: Update to 0.9.1 Revision Changes Path 1.20 +2 -2 ports/multimedia/ogle-gui/Makefile 1.7 +1 -1 ports/multimedia/ogle-gui/distinfo 1.21 +1 -1 ports/multimedia/ogle/Makefile 1.8 +1 -1 ports/multimedia/ogle/distinfo 1.7 +2 -2 ports/multimedia/ogle/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 20:57:17 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E40F37B401; Sat, 5 Apr 2003 20:57:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A050B43F93; Sat, 5 Apr 2003 20:57:16 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h364vG0U074151; Sat, 5 Apr 2003 20:57:16 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h364vGf9074150; Sat, 5 Apr 2003 20:57:16 -0800 (PST) Message-Id: <200304060457.h364vGf9074150@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sat, 5 Apr 2003 20:57:16 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/goggles Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 04:57:17 -0000 lioux 2003/04/05 20:57:16 PST FreeBSD ports repository Modified files: multimedia/goggles Makefile distinfo Log: Update to 0.5.1 Revision Changes Path 1.4 +10 -3 ports/multimedia/goggles/Makefile 1.3 +1 -1 ports/multimedia/goggles/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 5 20:59:00 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB1DC37B401; Sat, 5 Apr 2003 20:59:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70C9343FB1; Sat, 5 Apr 2003 20:59:00 -0800 (PST) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h364x00U074279; Sat, 5 Apr 2003 20:59:00 -0800 (PST) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h364x0k4074278; Sat, 5 Apr 2003 20:59:00 -0800 (PST) Message-Id: <200304060459.h364x0k4074278@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sat, 5 Apr 2003 20:59:00 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/okle Makefileports/multimedia/okle/files patch-src::okle_win.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 04:59:01 -0000 lioux 2003/04/05 20:59:00 PST FreeBSD ports repository Modified files: multimedia/okle Makefile Added files: multimedia/okle/files patch-src::okle_win.cpp Log: o Chase lib version bump in ogle port version 0.9.1 o Add a patch fix to correctly detect device files (e.g., /dev/acd0a) [1] Submitted by: Frerich Raabe [1] Revision Changes Path 1.8 +1 -1 ports/multimedia/okle/Makefile 1.3 +40 -0 ports/multimedia/okle/files/patch-src::okle_win.cpp (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 21:18:06 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FF6B37B401; Sat, 5 Apr 2003 21:18:06 -0800 (PST) Received: from randomservers.com (randomservers.com [198.78.65.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7335943F3F; Sat, 5 Apr 2003 21:18:05 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from randomservers.com (randomservers [198.78.65.158]) by randomservers.com (8.12.9/8.12.6) with ESMTP id h365Gm88051764 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 5 Apr 2003 21:16:48 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from localhost (joseph@localhost)h365GlVd051748; Sat, 5 Apr 2003 21:16:48 -0800 (PST) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: joseph owned process doing -bs Date: Sat, 5 Apr 2003 21:16:47 -0800 (PST) From: Joseph Scott X-X-Sender: joseph@randomservers To: Edwin Groothuis In-Reply-To: <200304050743.h357h2K9026921@repoman.freebsd.org> Message-ID: <20030405211613.R22728@randomservers> References: <200304050743.h357h2K9026921@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-27.6 required=7.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, REPLY_WITH_QUOTES,X_AUTH_WARNING version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/devel/perforce Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 05:18:06 -0000 On Fri, 4 Apr 2003, Edwin Groothuis wrote: > edwin 2003/04/04 23:43:02 PST > > FreeBSD ports repository > > Modified files: > devel/perforce Makefile distinfo > Log: > update perforce binaries > > Perforce has released new versions of the i386 binaries. Is this PR ports/50472 (devel/perforce has bad checksums)? -Joseph From owner-cvs-all@FreeBSD.ORG Sat Apr 5 21:20:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7928E37B401; Sat, 5 Apr 2003 21:20:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1937B43FAF; Sat, 5 Apr 2003 21:20:01 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h365K00U076483; Sat, 5 Apr 2003 21:20:00 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h365K00r076482; Sat, 5 Apr 2003 21:20:00 -0800 (PST) Message-Id: <200304060520.h365K00r076482@repoman.freebsd.org> From: Peter Wemm Date: Sat, 5 Apr 2003 21:20:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern link_elf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 05:20:02 -0000 peter 2003/04/05 21:20:00 PST FreeBSD src repository Modified files: sys/kern link_elf.c Log: Search for "elf32 kernel" (and elf64) and "elf32 module" (and elf64) as well as "elf kernel" and "elf module". This is a precursor to x86-64 support in the i386 loader so it can load an elf64 x86-64 kernel. Revision Changes Path 1.72 +6 -2 src/sys/kern/link_elf.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 21:25:49 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B434037B401; Sat, 5 Apr 2003 21:25:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53DBA43FBD; Sat, 5 Apr 2003 21:25:49 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h365Pn0U077038; Sat, 5 Apr 2003 21:25:49 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h365Pn2p077037; Sat, 5 Apr 2003 21:25:49 -0800 (PST) Message-Id: <200304060525.h365Pn2p077037@repoman.freebsd.org> From: Peter Wemm Date: Sat, 5 Apr 2003 21:25:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libstand printf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 05:25:50 -0000 peter 2003/04/05 21:25:49 PST FreeBSD src repository Modified files: lib/libstand printf.c Log: Sync up with kern/subr_prf.c. This adds %ll, %j, %q, %z, etc. Revision Changes Path 1.8 +115 -47 src/lib/libstand/printf.c From owner-cvs-all@FreeBSD.ORG Sat Apr 5 21:26:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BB1837B401; Sat, 5 Apr 2003 21:26:52 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-150.dsl.lsan03.pacbell.net [63.207.60.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79D0443FB1; Sat, 5 Apr 2003 21:26:51 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 3990766D16; Sat, 5 Apr 2003 21:26:51 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 17957E26; Sat, 5 Apr 2003 21:26:51 -0800 (PST) Date: Sat, 5 Apr 2003 21:26:51 -0800 From: Kris Kennaway To: Mikhail Teterin Message-ID: <20030406052650.GA49618@rot13.obsecurity.org> References: <200304060441.h364fbMm068069@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline In-Reply-To: <200304060441.h364fbMm068069@repoman.freebsd.org> User-Agent: Mutt/1.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/graphics/libmng Makefile distinfo ports/graphics/libmng/files patch-lcms X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 05:26:53 -0000 --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 05, 2003 at 08:41:37PM -0800, Mikhail Teterin wrote: > mi 2003/04/05 20:41:37 PST >=20 > FreeBSD ports repository >=20 > Modified files: > graphics/libmng Makefile distinfo=20 > Added files: > graphics/libmng/files patch-lcms=20 > Log: > Upgrade to the "final" release -- 1.0.5. Remove the conditional patching > -- it was in place for a much older version of lcms. Would love to have > done this prior to 4.8, but portmgr never responded with the approval. You submitted it too late (after the final builds started). Kris --1yeeQ81UyVL57Vl7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+j7qaWry0BWjoQKURAmFGAJ42u1aNsJ1SN/PIvqjTrnD5JBcHbACeIDEy p7fuYFPkaLhAr+aSv99g55o= =AkwR -----END PGP SIGNATURE----- --1yeeQ81UyVL57Vl7-- From owner-cvs-all@FreeBSD.ORG Sat Apr 5 21:40:28 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA49B37B401; Sat, 5 Apr 2003 21:40:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7859C43F85; Sat, 5 Apr 2003 21:40:28 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h365eS0U077968; Sat, 5 Apr 2003 21:40:28 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h365eR0B077965; Sat, 5 Apr 2003 21:40:27 -0800 (PST) Message-Id: <200304060540.h365eR0B077965@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 21:40:27 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Tools/portbuild/scripts dopackages X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 05:40:29 -0000 kris 2003/04/05 21:40:27 PST FreeBSD ports repository Modified files: Tools/portbuild/scripts dopackages Log: Zap some old/non-useful code Add some new command-line options: * -continue : restart the build without rebuilding ports that have already failed * -nofinish : don't run the post-processing steps when the build finishes * -finish : run the post-processing steps only Reorder some code sections appropriately Revision Changes Path 1.21 +106 -108 ports/Tools/portbuild/scripts/dopackages From owner-cvs-all@FreeBSD.ORG Sat Apr 5 21:42:42 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14E8237B401; Sat, 5 Apr 2003 21:42:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A818743FA3; Sat, 5 Apr 2003 21:42:41 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h365gf0U078328; Sat, 5 Apr 2003 21:42:41 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h365gfcm078327; Sat, 5 Apr 2003 21:42:41 -0800 (PST) Message-Id: <200304060542.h365gfcm078327@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 5 Apr 2003 21:42:41 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Tools/portbuild/scripts processlogs2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 05:42:42 -0000 kris 2003/04/05 21:42:41 PST FreeBSD ports repository Modified files: Tools/portbuild/scripts processlogs2 Log: Update sed pattern used to process logs Revision Changes Path 1.5 +1 -1 ports/Tools/portbuild/scripts/processlogs2 From owner-cvs-all@FreeBSD.ORG Sat Apr 5 21:45:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 054CC37B401; Sat, 5 Apr 2003 21:45:05 -0800 (PST) Received: from randomservers.com (randomservers.com [198.78.65.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0277C43FA3; Sat, 5 Apr 2003 21:45:04 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from randomservers.com (randomservers [198.78.65.158]) by randomservers.com (8.12.9/8.12.6) with ESMTP id h365hn88088320 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 5 Apr 2003 21:43:49 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from localhost (joseph@localhost)h365hnIT088316; Sat, 5 Apr 2003 21:43:49 -0800 (PST) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: joseph owned process doing -bs Date: Sat, 5 Apr 2003 21:43:49 -0800 (PST) From: Joseph Scott X-X-Sender: joseph@randomservers To: Edwin Groothuis In-Reply-To: <200304060007.h3607wlh040125@repoman.freebsd.org> Message-ID: <20030405214251.X22728@randomservers> References: <200304060007.h3607wlh040125@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-27.6 required=7.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, REPLY_WITH_QUOTES,X_AUTH_WARNING version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) cc: cvs-ports@freebsd.org cc: Nick Sayer cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/mail/cyrus Makefile pkg-plistports/mail/cyrus/files 600.cyrus X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 05:45:05 -0000 On Sat, 5 Apr 2003, Edwin Groothuis wrote: > edwin 2003/04/05 16:07:58 PST > > FreeBSD ports repository > > Modified files: > mail/cyrus Makefile pkg-plist > Added files: > mail/cyrus/files 600.cyrus > Log: > cyrus port should add periodic file to prune deliverdb > > The cyrus port takes no steps to insure the deliver databases > are properly pruned. This can be quite easily accomplished > on a daily basis by adding a periodic file to take care of > this. This should be a model for other ports that require > daily/weekly/monthly actions. Why else did we bother to > break up the cron jobs into the /etc/periodic* structure? > > PR: ports/26801 > Submitted by: Nick Sayer Should this also be applied to mail/cyrus-imapd, cyrus-imapd2 and cyrus-imapd22? -Joseph From owner-cvs-all@FreeBSD.ORG Sat Apr 5 21:50:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DF3237B404; Sat, 5 Apr 2003 21:50:12 -0800 (PST) Received: from randomservers.com (randomservers.com [198.78.65.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9481443FAF; Sat, 5 Apr 2003 21:50:11 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from randomservers.com (randomservers [198.78.65.158]) by randomservers.com (8.12.9/8.12.6) with ESMTP id h365mv88095475 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 5 Apr 2003 21:48:57 -0800 (PST) (envelope-from joseph@randomnetworks.com) Received: from localhost (joseph@localhost)h365mvjX095472; Sat, 5 Apr 2003 21:48:57 -0800 (PST) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: joseph owned process doing -bs Date: Sat, 5 Apr 2003 21:48:57 -0800 (PST) From: Joseph Scott X-X-Sender: joseph@randomservers To: Ying-Chieh Liao In-Reply-To: <200304060438.h364cqbK067547@repoman.freebsd.org> Message-ID: <20030405214828.P22728@randomservers> References: <200304060438.h364cqbK067547@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-27.6 required=7.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, REPLY_WITH_QUOTES,X_AUTH_WARNING version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/x11 Makefile ports/x11/wmdrawer Makefile distinfo pkg-descr pkg-plist ports/x11/wmdrawer/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 05:50:14 -0000 On Sat, 5 Apr 2003, Ying-Chieh Liao wrote: > ijliao 2003/04/05 20:38:52 PST > > FreeBSD ports repository > > Modified files: > x11 Makefile > Added files: > x11/wmdrawer Makefile distinfo pkg-descr pkg-plist > x11/wmdrawer/files patch-Makefile > Log: > add wmdrawer 0.9.17.1 > A dockapp which provides a drawer to launch applications This appears to take care of PR ports/47392. -Joseph From owner-cvs-all@FreeBSD.ORG Sat Apr 5 21:52:44 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B372837B401; Sat, 5 Apr 2003 21:52:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 528DA43F85; Sat, 5 Apr 2003 21:52:44 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h365qi0U078992; Sat, 5 Apr 2003 21:52:44 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h365qhGX078991; Sat, 5 Apr 2003 21:52:43 -0800 (PST) Message-Id: <200304060552.h365qhGX078991@repoman.freebsd.org> From: Yen-Ming Lee Date: Sat, 5 Apr 2003 21:52:43 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/scilab/files patch-bb X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 05:52:45 -0000 leeym 2003/04/05 21:52:43 PST FreeBSD ports repository Added files: math/scilab/files patch-bb Log: fix "The scipad editor does not work" problem PR: 50605 Submitted by: Jean-Sebastien Roy Obtained from: netbsd (dmcmahill) Revision Changes Path 1.3 +11 -0 ports/math/scilab/files/patch-bb (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 21:55:38 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37B9937B401; Sat, 5 Apr 2003 21:55:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C91C443F3F; Sat, 5 Apr 2003 21:55:37 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h365tb0U079113; Sat, 5 Apr 2003 21:55:37 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h365taY1079112; Sat, 5 Apr 2003 21:55:36 -0800 (PST) Message-Id: <200304060555.h365taY1079112@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 5 Apr 2003 21:55:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 exception.s X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 05:55:38 -0000 marcel 2003/04/05 21:55:36 PST FreeBSD src repository Modified files: sys/ia64/ia64 exception.s Log: Also set the access bit in the PTE when we get a data dirty bit fault. This avoids an immediate access bit fault when we serviced the dirty bit fault in case the access bit is unset. This typically happens for newly allocated memory that's being zeroed and thus very common. Revision Changes Path 1.40 +2 -2 src/sys/ia64/ia64/exception.s From owner-cvs-all@FreeBSD.ORG Sat Apr 5 21:57:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E485137B401; Sat, 5 Apr 2003 21:57:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 840F543F75; Sat, 5 Apr 2003 21:57:54 -0800 (PST) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h365vs0U079193; Sat, 5 Apr 2003 21:57:54 -0800 (PST) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h365vrvG079192; Sat, 5 Apr 2003 21:57:53 -0800 (PST) Message-Id: <200304060557.h365vrvG079192@repoman.freebsd.org> From: Dirk Meyer Date: Sat, 5 Apr 2003 21:57:53 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/xanim Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 05:57:55 -0000 dinoex 2003/04/05 21:57:53 PST FreeBSD ports repository Modified files: multimedia/xanim Makefile Log: - add more sites Obtained from: netbsd Revision Changes Path 1.36 +3 -1 ports/multimedia/xanim/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 5 22:08:11 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C115937B401; Sat, 5 Apr 2003 22:08:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67AFF43F3F; Sat, 5 Apr 2003 22:08:11 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3668B0U080751; Sat, 5 Apr 2003 22:08:11 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3668BWX080750; Sat, 5 Apr 2003 22:08:11 -0800 (PST) Message-Id: <200304060608.h3668BWX080750@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 22:08:11 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/gtk-cleanice-engine Makefile distinfo pkg-descr pkg-plist ports/x11-toolkits/gtk-cleanice-engine/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 06:08:12 -0000 marcus 2003/04/05 22:08:11 PST FreeBSD ports repository Modified files: x11-toolkits Makefile Added files: x11-toolkits/gtk-cleanice-engine Makefile distinfo pkg-descr pkg-plist x11-toolkits/gtk-cleanice-engine/files patch-configure Log: Add gtk-cleanice-engine, a GTK+-2 theme which incorporates the best bits from 'ThinIce' and 'Clean'. PR: 49994 Submitted by: Philip Paeps Revision Changes Path 1.230 +1 -0 ports/x11-toolkits/Makefile 1.1 +22 -0 ports/x11-toolkits/gtk-cleanice-engine/Makefile (new) 1.1 +1 -0 ports/x11-toolkits/gtk-cleanice-engine/distinfo (new) 1.1 +10 -0 ports/x11-toolkits/gtk-cleanice-engine/files/patch-configure (new) 1.1 +12 -0 ports/x11-toolkits/gtk-cleanice-engine/pkg-descr (new) 1.1 +7 -0 ports/x11-toolkits/gtk-cleanice-engine/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 22:10:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EA3337B401; Sat, 5 Apr 2003 22:10:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F248543F93; Sat, 5 Apr 2003 22:10:08 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h366A80U080808; Sat, 5 Apr 2003 22:10:08 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h366A8oI080807; Sat, 5 Apr 2003 22:10:08 -0800 (PST) Message-Id: <200304060610.h366A8oI080807@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 22:10:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 06:10:09 -0000 marcus 2003/04/05 22:10:08 PST FreeBSD ports repository Modified files: . modules Log: gtk-cleanice-engine --> ports/x11-toolkits/gtk-cleanice-engine Revision Changes Path 1.7004 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 22:23:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04C8337B401; Sat, 5 Apr 2003 22:23:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A483A43F93; Sat, 5 Apr 2003 22:23:38 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h366Nc0U081795; Sat, 5 Apr 2003 22:23:38 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h366Nc8L081794; Sat, 5 Apr 2003 22:23:38 -0800 (PST) Message-Id: <200304060623.h366Nc8L081794@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 22:23:38 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/gtk-aqualightblue-theme Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 06:23:39 -0000 marcus 2003/04/05 22:23:38 PST FreeBSD ports repository Modified files: x11-toolkits Makefile Added files: x11-toolkits/gtk-aqualightblue-theme Makefile distinfo pkg-descr pkg-plist Log: Add gtk-aqualightblue-theme, a Mac OS X like theme for GTK+-2. PR: 50004 Submitted by: Philip Paeps Revision Changes Path 1.231 +1 -0 ports/x11-toolkits/Makefile 1.1 +29 -0 ports/x11-toolkits/gtk-aqualightblue-theme/Makefile (new) 1.1 +1 -0 ports/x11-toolkits/gtk-aqualightblue-theme/distinfo (new) 1.1 +11 -0 ports/x11-toolkits/gtk-aqualightblue-theme/pkg-descr (new) 1.1 +81 -0 ports/x11-toolkits/gtk-aqualightblue-theme/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 22:23:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A00337B40A; Sat, 5 Apr 2003 22:23:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCF1E43FCB; Sat, 5 Apr 2003 22:23:47 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h366Nl0U081833; Sat, 5 Apr 2003 22:23:47 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h366NlZh081832; Sat, 5 Apr 2003 22:23:47 -0800 (PST) Message-Id: <200304060623.h366NlZh081832@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 5 Apr 2003 22:23:47 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 06:23:49 -0000 marcus 2003/04/05 22:23:47 PST FreeBSD ports repository Modified files: . modules Log: gtk-aqualightblue-theme --> ports/x11-toolkits/gtk-aqualightblue-theme Revision Changes Path 1.7005 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 22:28:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 084DE37B401; Sat, 5 Apr 2003 22:28:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C1A643F93; Sat, 5 Apr 2003 22:28:08 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h366S80U082022; Sat, 5 Apr 2003 22:28:08 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h366S8u8082021; Sat, 5 Apr 2003 22:28:08 -0800 (PST) Message-Id: <200304060628.h366S8u8082021@repoman.freebsd.org> From: Peter Wemm Date: Sat, 5 Apr 2003 22:28:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/common bootstrap.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 06:28:09 -0000 peter 2003/04/05 22:28:08 PST FreeBSD src repository Modified files: sys/boot/common bootstrap.h Log: Zap some a.out leftovers Revision Changes Path 1.37 +0 -3 src/sys/boot/common/bootstrap.h From owner-cvs-all@FreeBSD.ORG Sat Apr 5 22:30:55 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2CE737B401; Sat, 5 Apr 2003 22:30:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F51243FA3; Sat, 5 Apr 2003 22:30:55 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h366Ut0U082498; Sat, 5 Apr 2003 22:30:55 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h366Utre082497; Sat, 5 Apr 2003 22:30:55 -0800 (PST) Message-Id: <200304060630.h366Utre082497@repoman.freebsd.org> From: Yen-Ming Lee Date: Sat, 5 Apr 2003 22:30:55 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/openwebmail Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 06:30:56 -0000 leeym 2003/04/05 22:30:55 PST FreeBSD ports repository Modified files: mail/openwebmail Makefile pkg-plist Log: unbreak openwebmail when it's installed in fresh-built environment. use "tar cf" and "tar xf" instead of "cp -R". generate real PLIST in do-install phase. Noticed by: kris and bento Revision Changes Path 1.24 +9 -2 ports/mail/openwebmail/Makefile 1.14 +1 -5554 ports/mail/openwebmail/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 5 22:54:29 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFAEB37B401; Sat, 5 Apr 2003 22:54:29 -0800 (PST) Received: from mail.droso.net (koala.droso.net [193.162.142.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id E513243FBD; Sat, 5 Apr 2003 22:54:28 -0800 (PST) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id 95D8432D09; Sun, 6 Apr 2003 08:54:27 +0200 (CEST) Date: Sun, 6 Apr 2003 08:54:27 +0200 From: Erwin Lansing To: Edwin Groothuis Message-ID: <20030406065427.GA14735@droso.net> References: <200304052303.h35N3Rq2034846@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BXVAT5kNtrzKuDFl" Content-Disposition: inline In-Reply-To: <200304052303.h35N3Rq2034846@repoman.freebsd.org> X-Operating-System: FreeBSD/i386 4.8-RC User-Agent: Mutt/1.5.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/finance/p5-Business-WorldPay-Junior Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 06:54:30 -0000 --BXVAT5kNtrzKuDFl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 05, 2003 at 03:03:27PM -0800, Edwin Groothuis wrote: > edwin 2003/04/05 15:03:27 PST >=20 > FreeBSD ports repository >=20 > Modified files: > finance/p5-Business-WorldPay-Junior Makefile=20 > Log: > Removed double $$ in BUILD_DEPENDS > Noticed by: bento/kris > =20 Thanks for catching this! -erwin --=20 _._ _,-'""`-._ Erwin Lansing (,-.`._,'( |\`-/| http://droso.org/ erwin@lansing.dk `-.-' \ )-`( , o o) http://fnidder.dk/ -bf- `- \`_`"'- --BXVAT5kNtrzKuDFl Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+j88jqy9aWxUlaZARAl1/AKCdT6joZ6404dYOTxW0x3/VAaawyQCfexOQ tasFZ8lVJUp9iS1C6aDDghY= =o2U8 -----END PGP SIGNATURE----- --BXVAT5kNtrzKuDFl-- From owner-cvs-all@FreeBSD.ORG Sat Apr 5 23:16:01 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7D9F37B401; Sat, 5 Apr 2003 23:16:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 914E943FA3; Sat, 5 Apr 2003 23:16:01 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h367G10U086156; Sat, 5 Apr 2003 23:16:01 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h367G1LM086155; Sat, 5 Apr 2003 23:16:01 -0800 (PST) Message-Id: <200304060716.h367G1LM086155@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sat, 5 Apr 2003 23:16:01 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel Makefile ports/devel/libsigcx Makefile distinfo pkg-descr pkg-plist ports/devel/libsigcx/files patch-Makefile.in patch-ltmain.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 07:16:02 -0000 ijliao 2003/04/05 23:16:01 PST FreeBSD ports repository Modified files: devel Makefile Added files: devel/libsigcx Makefile distinfo pkg-descr pkg-plist devel/libsigcx/files patch-Makefile.in patch-ltmain.sh Log: add libsigcx 0.6.0 libSigC++ Extras Revision Changes Path 1.1081 +1 -0 ports/devel/Makefile 1.1 +30 -0 ports/devel/libsigcx/Makefile (new) 1.1 +1 -0 ports/devel/libsigcx/distinfo (new) 1.1 +13 -0 ports/devel/libsigcx/files/patch-Makefile.in (new) 1.1 +41 -0 ports/devel/libsigcx/files/patch-ltmain.sh (new) 1.1 +5 -0 ports/devel/libsigcx/pkg-descr (new) 1.1 +29 -0 ports/devel/libsigcx/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 23:16:09 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9BA637B410; Sat, 5 Apr 2003 23:16:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 289C943F75; Sat, 5 Apr 2003 23:16:09 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h367G80U086195; Sat, 5 Apr 2003 23:16:09 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h367G8CJ086194; Sat, 5 Apr 2003 23:16:08 -0800 (PST) Message-Id: <200304060716.h367G8CJ086194@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sat, 5 Apr 2003 23:16:08 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 07:16:10 -0000 ijliao 2003/04/05 23:16:08 PST FreeBSD ports repository Modified files: . modules Log: libsigcx --> ports/devel/libsigcx Revision Changes Path 1.7006 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 23:45:31 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 394D737B401; Sat, 5 Apr 2003 23:45:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D57D843FB1; Sat, 5 Apr 2003 23:45:30 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h367jU0U088149; Sat, 5 Apr 2003 23:45:30 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h367jUaR088148; Sat, 5 Apr 2003 23:45:30 -0800 (PST) Message-Id: <200304060745.h367jUaR088148@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sat, 5 Apr 2003 23:45:30 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics Makefile ports/graphics/swfdec Makefile distinfo pkg-descr pkg-plist ports/graphics/swfdec/files patch-clipconv_f32_s16.h patch-ltmain.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 07:45:31 -0000 ijliao 2003/04/05 23:45:30 PST FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/swfdec Makefile distinfo pkg-descr pkg-plist graphics/swfdec/files patch-clipconv_f32_s16.h patch-ltmain.sh Log: add swfdec 0.2.1 Flash Rendering Library Revision Changes Path 1.575 +1 -0 ports/graphics/Makefile 1.1 +34 -0 ports/graphics/swfdec/Makefile (new) 1.1 +1 -0 ports/graphics/swfdec/distinfo (new) 1.1 +11 -0 ports/graphics/swfdec/files/patch-clipconv_f32_s16.h (new) 1.1 +41 -0 ports/graphics/swfdec/files/patch-ltmain.sh (new) 1.1 +6 -0 ports/graphics/swfdec/pkg-descr (new) 1.1 +10 -0 ports/graphics/swfdec/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 5 23:45:39 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 202E337B413; Sat, 5 Apr 2003 23:45:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E98D43FBD; Sat, 5 Apr 2003 23:45:38 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h367jc0U088187; Sat, 5 Apr 2003 23:45:38 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h367jbbC088186; Sat, 5 Apr 2003 23:45:37 -0800 (PST) Message-Id: <200304060745.h367jbbC088186@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sat, 5 Apr 2003 23:45:37 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 07:45:39 -0000 ijliao 2003/04/05 23:45:37 PST FreeBSD ports repository Modified files: . modules Log: swfdec --> ports/graphics/swfdec Revision Changes Path 1.7007 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 5 23:48:59 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9636437B401; Sat, 5 Apr 2003 23:48:59 -0800 (PST) Received: from smtp01.syd.iprimus.net.au (smtp01.syd.iprimus.net.au [210.50.30.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03E4143F3F; Sat, 5 Apr 2003 23:48:59 -0800 (PST) (envelope-from tim@robbins.dropbear.id.au) Received: from dilbert.robbins.dropbear.id.au (210.50.88.183) by smtp01.syd.iprimus.net.au (7.0.012) id 3E8A144A000F49DC; Sun, 6 Apr 2003 17:48:57 +1000 Received: by dilbert.robbins.dropbear.id.au (Postfix, from userid 1000) id 336DDC90D; Sun, 6 Apr 2003 17:48:43 +1000 (EST) Date: Sun, 6 Apr 2003 17:48:43 +1000 From: Tim Robbins To: David Schultz Message-ID: <20030406174843.A44495@dilbert.robbins.dropbear.id.au> References: <200304052211.h35MBglG027473@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200304052211.h35MBglG027473@repoman.freebsd.org>; from das@FreeBSD.org on Sat, Apr 05, 2003 at 02:11:42PM -0800 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/stdio floatio.h vfprintf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 07:49:00 -0000 --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Apr 05, 2003 at 02:11:42PM -0800, David Schultz wrote: > das 2003/04/05 14:11:42 PST > > FreeBSD src repository > > Modified files: > lib/libc/stdio floatio.h vfprintf.c > Log: > Rework the floating point code in printf(). Significant changes: > > - We used to round long double arguments to double. Now we print > them properly. > > - Bugs involving '%F', corner cases of '#' and 'g' format > specifiers, and the '.*' precision specifier have been > fixed. > > - Added support for the "'" specifier to print thousands' grouping > characters in a locale-dependent manner. > > - Implement the __vfprintf() side of hexadecimal floating point > support. All that is still needed is a routine to convert the > mantissa to hex digits one nibble at a time in the style of ultoa(). I think there is a bug here. I've attached a small test program that mimics the behaviour of top's "CPU states" display. Here are the results on 4.x: CPU states: 0.0% user CPU states: 10.0% user CPU states: 20.0% user CPU states: 30.0% user CPU states: 40.0% user CPU states: 50.0% user CPU states: 60.0% user CPU states: 70.0% user CPU states: 80.0% user CPU states: 90.0% user CPU states: 100% CPU states: 110% CPU states: 120% CPU states: 130% CPU states: 140% Here are the results on -current now: CPU states: 0.0% user CPU states: 10.00% user CPU states: 20.00% user CPU states: 30.00% user CPU states: 40.00% user CPU states: 50.00% user CPU states: 60.00% user CPU states: 70.00% user CPU states: 80.00% user CPU states: 90.00% user CPU states: 10000% CPU states: 1100% CPU states: 1200% CPU states: 1300% CPU states: 1400% If you can't reproduce this problem yourself, it's possible that I've broken something here with all my wide char changes. Tim --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="not-top.c" #include int main(int argc, char *argv[]) { int i; for (i = 0; i < 150; i += 10) printf(i >= 100 ? "CPU states: %4.0f%%\n" : "CPU states: %4.1f%% user\n", (double)i); exit(0); } --+QahgC5+KEYLbs62-- From owner-cvs-all@FreeBSD.ORG Sat Apr 5 23:52:08 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02F3F37B401; Sat, 5 Apr 2003 23:52:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1539D43FB1; Sat, 5 Apr 2003 23:52:07 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h367q60U088754; Sat, 5 Apr 2003 23:52:06 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h367q6Sp088753; Sat, 5 Apr 2003 23:52:06 -0800 (PST) Message-Id: <200304060752.h367q6Sp088753@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sat, 5 Apr 2003 23:52:06 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro/xplanet Makefile distinfo pkg-plist ports/astro/xplanet/files patch-aa patch-xplanetbg.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 07:52:08 -0000 ijliao 2003/04/05 23:52:06 PST FreeBSD ports repository Modified files: astro/xplanet Makefile distinfo pkg-plist Removed files: astro/xplanet/files patch-aa patch-xplanetbg.cc Log: upgrade to 1.0.1 reset maintainer to ports Approved by: maintainer (will@) Revision Changes Path 1.21 +7 -25 ports/astro/xplanet/Makefile 1.11 +1 -1 ports/astro/xplanet/distinfo 1.2 +0 -11 ports/astro/xplanet/files/patch-aa (dead) 1.2 +0 -11 ports/astro/xplanet/files/patch-xplanetbg.cc (dead) 1.5 +35 -43 ports/astro/xplanet/pkg-plist