From owner-cvs-all@FreeBSD.ORG Sun Sep 24 00:26:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9178D16A403; Sun, 24 Sep 2006 00:26:34 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 528E943D45; Sun, 24 Sep 2006 00:26:34 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O0QY3r039548; Sun, 24 Sep 2006 00:26:34 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O0QYqf039547; Sun, 24 Sep 2006 00:26:34 GMT (envelope-from imp) Message-Id: <200609240026.k8O0QYqf039547@repoman.freebsd.org> From: Warner Losh Date: Sun, 24 Sep 2006 00:26:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/exca exca.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 00:26:34 -0000 imp 2006-09-24 00:26:34 UTC FreeBSD src repository Modified files: sys/dev/exca exca.c Log: Cleanup sloppy ifdef. Revision Changes Path 1.25 +1 -5 src/sys/dev/exca/exca.c From owner-cvs-all@FreeBSD.ORG Sun Sep 24 02:23:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12A4016A40F; Sun, 24 Sep 2006 02:23:30 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C476743D49; Sun, 24 Sep 2006 02:23:29 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O2NTu5054801; Sun, 24 Sep 2006 02:23:29 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O2NT5S054800; Sun, 24 Sep 2006 02:23:29 GMT (envelope-from jmg) Message-Id: <200609240223.k8O2NT5S054800@repoman.freebsd.org> From: John-Mark Gurney Date: Sun, 24 Sep 2006 02:23:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_event.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 02:23:30 -0000 jmg 2006-09-24 02:23:29 UTC FreeBSD src repository Modified files: sys/kern kern_event.c Log: add KTRACE hooks into kevent... This will help people debug their kqueue programs to find out exactly which events were registered and which were returned... This should be lower in kern_kevent, but that would require special munging due to locks and the functions used to copyin/copyout kevents... If someone wants to teach ktrace how to output pretty kevents, I have a kevent prety printer that can be used... Revision Changes Path 1.104 +38 -2 src/sys/kern/kern_event.c From owner-cvs-all@FreeBSD.ORG Sun Sep 24 02:29:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2F0516A407; Sun, 24 Sep 2006 02:29:53 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7196543D55; Sun, 24 Sep 2006 02:29:53 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O2Tr6H055063; Sun, 24 Sep 2006 02:29:53 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O2TrSg055062; Sun, 24 Sep 2006 02:29:53 GMT (envelope-from jmg) Message-Id: <200609240229.k8O2TrSg055062@repoman.freebsd.org> From: John-Mark Gurney Date: Sun, 24 Sep 2006 02:29:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_descrip.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 02:29:53 -0000 jmg 2006-09-24 02:29:53 UTC FreeBSD src repository Modified files: sys/kern kern_descrip.c Log: return EBADF instead of successfully attaching (and then panicing) when an fd is dieing.. Convinced by: jhb PR: 103127 Revision Changes Path 1.298 +1 -1 src/sys/kern/kern_descrip.c From owner-cvs-all@FreeBSD.ORG Sun Sep 24 02:35:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9287316A417; Sun, 24 Sep 2006 02:35:40 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E7EC43D46; Sun, 24 Sep 2006 02:35:40 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O2Zexf055491; Sun, 24 Sep 2006 02:35:40 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O2ZeIP055490; Sun, 24 Sep 2006 02:35:40 GMT (envelope-from clsung) Message-Id: <200609240235.k8O2ZeIP055490@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sun, 24 Sep 2006 02:35:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/p5-Image-ExifTool Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 02:35:40 -0000 clsung 2006-09-24 02:35:40 UTC FreeBSD ports repository Modified files: graphics/p5-Image-ExifTool Makefile distinfo Log: - Update to 6.42 PR: ports/103469 Submitted by: Gea-Suan Lin Approved by: maintainer (Tod McQuillin) Revision Changes Path 1.24 +1 -1 ports/graphics/p5-Image-ExifTool/Makefile 1.24 +3 -3 ports/graphics/p5-Image-ExifTool/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 02:49:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB53616A407; Sun, 24 Sep 2006 02:49:18 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89F1C43D45; Sun, 24 Sep 2006 02:49:18 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O2nIJH056052; Sun, 24 Sep 2006 02:49:18 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O2nIxB056051; Sun, 24 Sep 2006 02:49:18 GMT (envelope-from clsung) Message-Id: <200609240249.k8O2nIxB056051@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sun, 24 Sep 2006 02:49:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/mapyrus Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 02:49:18 -0000 clsung 2006-09-24 02:49:18 UTC FreeBSD ports repository Modified files: graphics/mapyrus Makefile distinfo Log: - Update to 0.610 PR: ports/103515 Submitted by: maintainer (Nicola Vitale) Revision Changes Path 1.7 +1 -2 ports/graphics/mapyrus/Makefile 1.5 +3 -3 ports/graphics/mapyrus/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 03:47:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DFCA16A417; Sun, 24 Sep 2006 03:47:45 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58A3143D58; Sun, 24 Sep 2006 03:47:45 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O3ljfx060106; Sun, 24 Sep 2006 03:47:45 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O3ljs7060105; Sun, 24 Sep 2006 03:47:45 GMT (envelope-from maho) Message-Id: <200609240347.k8O3ljs7060105@repoman.freebsd.org> From: Maho Nakata Date: Sun, 24 Sep 2006 03:47:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/ufsparse Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 03:47:45 -0000 maho 2006-09-24 03:47:45 UTC FreeBSD ports repository Modified files: math/ufsparse Makefile pkg-plist Log: Backward compatibility: math/octave-devel assumes that include files are located at ${LOCALBASE}/include/ufsparse but now installed at ${LOCALBASE}/include/suitesparse Bump portrevision. Revision Changes Path 1.8 +2 -0 ports/math/ufsparse/Makefile 1.3 +1 -0 ports/math/ufsparse/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 03:55:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 708B116A412; Sun, 24 Sep 2006 03:55:46 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B4B343D4C; Sun, 24 Sep 2006 03:55:46 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O3tkMr060501; Sun, 24 Sep 2006 03:55:46 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O3tkgc060500; Sun, 24 Sep 2006 03:55:46 GMT (envelope-from kuriyama) Message-Id: <200609240355.k8O3tkgc060500@repoman.freebsd.org> From: Jun Kuriyama Date: Sun, 24 Sep 2006 03:55:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/tramp Makefile distinfo ports/net/tramp/files patch-tramp.el X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 03:55:46 -0000 kuriyama 2006-09-24 03:55:45 UTC FreeBSD ports repository Modified files: net/tramp Makefile distinfo Added files: net/tramp/files patch-tramp.el Log: - Upgrade to 2.1.7. - Add a patch to ignore completion-mode check because in my environment, this check prevents completion in some situation. Revision Changes Path 1.34 +1 -1 ports/net/tramp/Makefile 1.22 +3 -3 ports/net/tramp/distinfo 1.3 +22 -0 ports/net/tramp/files/patch-tramp.el (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 04:05:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68C0216A407; Sun, 24 Sep 2006 04:05:47 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00DCE43D60; Sun, 24 Sep 2006 04:05:46 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O45jnw062154; Sun, 24 Sep 2006 04:05:45 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O45j2P062153; Sun, 24 Sep 2006 04:05:45 GMT (envelope-from novel) Message-Id: <200609240405.k8O45j2P062153@repoman.freebsd.org> From: Roman Bogorodskiy Date: Sun, 24 Sep 2006 04:05:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/gnutls-devel Makefile distinfo ports/security/gnutls-devel/files patch-doc-examples-ex__serv1.c patch-doc-examples-ex__serv__anon.c patch-doc-examples-ex__serv__export.c patch-doc-examples-ex__serv__pgp.c patch-doc-examples-ex__serv__srp.c patch-doc-examples-tcp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 04:05:47 -0000 novel 2006-09-24 04:05:45 UTC FreeBSD ports repository Modified files: security/gnutls-devel Makefile distinfo Removed files: security/gnutls-devel/files patch-doc-examples-ex__serv1.c patch-doc-examples-ex__serv__anon.c patch-doc-examples-ex__serv__export.c patch-doc-examples-ex__serv__pgp.c patch-doc-examples-ex__serv__srp.c patch-doc-examples-tcp.c Log: Update to 1.5.1. Revision Changes Path 1.37 +1 -2 ports/security/gnutls-devel/Makefile 1.16 +3 -3 ports/security/gnutls-devel/distinfo 1.2 +0 -10 ports/security/gnutls-devel/files/patch-doc-examples-ex__serv1.c (dead) 1.2 +0 -10 ports/security/gnutls-devel/files/patch-doc-examples-ex__serv__anon.c (dead) 1.2 +0 -10 ports/security/gnutls-devel/files/patch-doc-examples-ex__serv__export.c (dead) 1.2 +0 -10 ports/security/gnutls-devel/files/patch-doc-examples-ex__serv__pgp.c (dead) 1.2 +0 -10 ports/security/gnutls-devel/files/patch-doc-examples-ex__serv__srp.c (dead) 1.2 +0 -10 ports/security/gnutls-devel/files/patch-doc-examples-tcp.c (dead) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 04:20:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6567716A47B; Sun, 24 Sep 2006 04:20:21 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75BE743D60; Sun, 24 Sep 2006 04:20:20 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O4KKno062817; Sun, 24 Sep 2006 04:20:20 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O4KKIg062815; Sun, 24 Sep 2006 04:20:20 GMT (envelope-from kuriyama) Message-Id: <200609240420.k8O4KKIg062815@repoman.freebsd.org> From: Jun Kuriyama Date: Sun, 24 Sep 2006 04:20:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/japanese/zipcodes Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 04:20:21 -0000 kuriyama 2006-09-24 04:20:20 UTC FreeBSD ports repository Modified files: japanese/zipcodes Makefile distinfo Log: - Update to 20060831 version. Revision Changes Path 1.51 +1 -1 ports/japanese/zipcodes/Makefile 1.35 +6 -6 ports/japanese/zipcodes/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 04:47:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E426316A407; Sun, 24 Sep 2006 04:47:47 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E9A543D45; Sun, 24 Sep 2006 04:47:47 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O4llPx072060; Sun, 24 Sep 2006 04:47:47 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O4llex072059; Sun, 24 Sep 2006 04:47:47 GMT (envelope-from jmg) Message-Id: <200609240447.k8O4llex072059@repoman.freebsd.org> From: John-Mark Gurney Date: Sun, 24 Sep 2006 04:47:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_event.c vfs_aio.c src/sys/sys event.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 04:47:48 -0000 jmg 2006-09-24 04:47:47 UTC FreeBSD src repository Modified files: sys/kern kern_event.c vfs_aio.c sys/sys event.h Log: hide kqueue_register from public view, and replace it w/ kqfd_register... this eliminates a possible race in aio registering a kevent.. Revision Changes Path 1.105 +30 -2 src/sys/kern/kern_event.c 1.227 +6 -33 src/sys/kern/vfs_aio.c 1.37 +2 -2 src/sys/sys/event.h From owner-cvs-all@FreeBSD.ORG Sun Sep 24 06:41:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39C0716A500; Sun, 24 Sep 2006 06:41:34 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E573E43D4C; Sun, 24 Sep 2006 06:41:33 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O6fX6q079478; Sun, 24 Sep 2006 06:41:33 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O6fXTs079477; Sun, 24 Sep 2006 06:41:33 GMT (envelope-from sat) Message-Id: <200609240641.k8O6fXTs079477@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 24 Sep 2006 06:41:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/p7zip Makefile distinfo ports/archivers/p7zip/files patch-7zip_Crypto_RarAES_sha1.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 06:41:34 -0000 sat 2006-09-24 06:41:33 UTC FreeBSD ports repository Modified files: archivers/p7zip Makefile distinfo Removed files: archivers/p7zip/files patch-7zip_Crypto_RarAES_sha1.cpp Log: - Update to 4.43 Approved by: Juergen Lock (maintainer) Revision Changes Path 1.21 +2 -3 ports/archivers/p7zip/Makefile 1.16 +3 -3 ports/archivers/p7zip/distinfo 1.2 +0 -10 ports/archivers/p7zip/files/patch-7zip_Crypto_RarAES_sha1.cpp (dead) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 07:54:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16D8A16A40F; Sun, 24 Sep 2006 07:54:13 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8B7E43D49; Sun, 24 Sep 2006 07:54:12 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O7sCAa083714; Sun, 24 Sep 2006 07:54:12 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O7sCGp083713; Sun, 24 Sep 2006 07:54:12 GMT (envelope-from linimon) Message-Id: <200609240754.k8O7sCGp083713@repoman.freebsd.org> From: Mark Linimon Date: Sun, 24 Sep 2006 07:54:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/french/aster Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 07:54:13 -0000 linimon 2006-09-24 07:54:12 UTC FreeBSD ports repository Modified files: french/aster Makefile Log: Mark as BROKEN everywhere, and deprecate. Revision Changes Path 1.38 +6 -3 ports/french/aster/Makefile From owner-cvs-all@FreeBSD.ORG Sun Sep 24 07:55:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B3C816A412; Sun, 24 Sep 2006 07:55:19 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 066CA43D45; Sun, 24 Sep 2006 07:55:19 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O7tI2v083771; Sun, 24 Sep 2006 07:55:18 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O7tIqw083770; Sun, 24 Sep 2006 07:55:18 GMT (envelope-from rafan) Message-Id: <200609240755.k8O7tIqw083770@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 24 Sep 2006 07:55:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/twiki Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 07:55:19 -0000 rafan 2006-09-24 07:55:18 UTC FreeBSD ports repository Modified files: www/twiki Makefile distinfo pkg-plist Log: - Update to 4.0.4 PR: ports/103540 Submitted by: Nils Vogels Revision Changes Path 1.9 +1 -1 ports/www/twiki/Makefile 1.9 +3 -3 ports/www/twiki/distinfo 1.5 +15 -10 ports/www/twiki/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 08:14:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9450716A407; Sun, 24 Sep 2006 08:14:57 +0000 (UTC) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DB0F43D45; Sun, 24 Sep 2006 08:14:57 +0000 (GMT) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O8EvGs085862; Sun, 24 Sep 2006 08:14:57 GMT (envelope-from alexbl@repoman.freebsd.org) Received: (from alexbl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O8Ev2G085861; Sun, 24 Sep 2006 08:14:57 GMT (envelope-from alexbl) Message-Id: <200609240814.k8O8Ev2G085861@repoman.freebsd.org> From: Alexander Botero-Lowry Date: Sun, 24 Sep 2006 08:14:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/py-mutagen Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 08:14:57 -0000 alexbl 2006-09-24 08:14:57 UTC FreeBSD ports repository Modified files: audio/py-mutagen Makefile distinfo pkg-plist Log: - Update to 1.7 PR: 102630 Submitted by: Peter Johnson No response from: maintainer Approved by: linimon (portmgr), novel (mentor) Revision Changes Path 1.4 +2 -2 ports/audio/py-mutagen/Makefile 1.3 +3 -3 ports/audio/py-mutagen/distinfo 1.3 +18 -0 ports/audio/py-mutagen/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 08:23:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12EF216A403; Sun, 24 Sep 2006 08:23:48 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout1.pacific.net.au (mailout1.pacific.net.au [61.8.0.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FCF843D5A; Sun, 24 Sep 2006 08:23:47 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.2.163]) by mailout1.pacific.net.au (Postfix) with ESMTP id D266832867F; Sun, 24 Sep 2006 18:23:45 +1000 (EST) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy2.pacific.net.au (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k8O8Ng9I013977; Sun, 24 Sep 2006 18:23:43 +1000 Date: Sun, 24 Sep 2006 18:23:41 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Tim Kientzle In-Reply-To: <45156E4E.6040806@kientzle.com> Message-ID: <20060924165852.O74016@delplex.bde.org> References: <200609150804.k8F84O1H056038@repoman.freebsd.org> <20060915155912.GA71796@xor.obsecurity.org> <450AD508.10608@freebsd.org> <20060915180315.GB74735@xor.obsecurity.org> <450C30ED.7090901@freebsd.org> <20060916192437.GA15425@xor.obsecurity.org> <45156E4E.6040806@kientzle.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: src-committers@FreeBSD.org, Andre Oppermann , cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Tim Kientzle , Ruslan Ermilov , Kris Kennaway Subject: Re: bsdtar vs gtar performance X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 08:23:48 -0000 On Sat, 23 Sep 2006, Tim Kientzle wrote: > Kris and Ruslan were recently discussing the performance of bsdtar > relative to gtar, which prompted me to do some measurements > of my own. I used /usr/ports as my test, because it stresses > file and directory creation over extracting large files. > > Here are some initial results, based on ten runs of each test on a > quiescent system, comparing results with PHK's "ministat": > > [... ones with no difference] > > * Extracting uncompressed archives: gtar is about 13% faster > than bsdtar in my test. Interestingly (to me), this was the same > with or without -m. (I've long suspected dir timestamp restores > as a contributor; this shows otherwise.) Changes to attributes by syscalls (utimes(), chown()... are always written asynchronously, so -m should always have little effect. A quick test showed that the main difference for extraction is that bsdtar does an lchmod() for every file extracted. gtar apparently optimizes away null chmod()'s. I would expect -m to make little difference for bsdtar since the writes for the changes to the attributes from utimes() + lchmod() are coalesced, but for gtar -m would be noticeable faster since it usually eliminates these writes. Bruce From owner-cvs-all@FreeBSD.ORG Sun Sep 24 08:32:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92CFC16A40F; Sun, 24 Sep 2006 08:32:23 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5018B43D45; Sun, 24 Sep 2006 08:32:23 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O8WNi1086693; Sun, 24 Sep 2006 08:32:23 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O8WNaY086692; Sun, 24 Sep 2006 08:32:23 GMT (envelope-from kris) Message-Id: <200609240832.k8O8WNaY086692@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 24 Sep 2006 08:32:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-RDF-Notation3 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 08:32:23 -0000 kris 2006-09-24 08:32:23 UTC FreeBSD ports repository Modified files: textproc/p5-RDF-Notation3 Makefile Log: Now seems to build again Revision Changes Path 1.11 +0 -4 ports/textproc/p5-RDF-Notation3/Makefile From owner-cvs-all@FreeBSD.ORG Sun Sep 24 08:33:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D322116A403; Sun, 24 Sep 2006 08:33:15 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8882C43D49; Sun, 24 Sep 2006 08:33:15 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O8XFLK086783; Sun, 24 Sep 2006 08:33:15 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O8XFLL086782; Sun, 24 Sep 2006 08:33:15 GMT (envelope-from kris) Message-Id: <200609240833.k8O8XFLL086782@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 24 Sep 2006 08:33:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-themes/kde-icons-gartoon-blue-svg Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 08:33:15 -0000 kris 2006-09-24 08:33:15 UTC FreeBSD ports repository Modified files: x11-themes/kde-icons-gartoon-blue-svg Makefile Log: Now fetchable again Revision Changes Path 1.3 +0 -2 ports/x11-themes/kde-icons-gartoon-blue-svg/Makefile From owner-cvs-all@FreeBSD.ORG Sun Sep 24 09:04:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB59D16A412; Sun, 24 Sep 2006 09:04:26 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 806F443D5D; Sun, 24 Sep 2006 09:04:24 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O94O2e099497; Sun, 24 Sep 2006 09:04:24 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O94Oki099496; Sun, 24 Sep 2006 09:04:24 GMT (envelope-from stas) Message-Id: <200609240904.k8O94Oki099496@repoman.freebsd.org> From: Stanislav Sedov Date: Sun, 24 Sep 2006 09:04:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/comms/gsmlib/files patch-gsmlib::gsm_map_key.h ports/comms/gsmlib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 09:04:27 -0000 stas 2006-09-24 09:04:22 UTC FreeBSD ports repository Modified files: comms/gsmlib/files patch-gsmlib::gsm_map_key.h comms/gsmlib Makefile Log: - Make it happy with recent gcc update (3.4.4 -> 3.4.6) Revision Changes Path 1.24 +1 -1 ports/comms/gsmlib/Makefile 1.2 +17 -3 ports/comms/gsmlib/files/patch-gsmlib::gsm_map_key.h From owner-cvs-all@FreeBSD.ORG Sun Sep 24 09:10:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42DC216A407; Sun, 24 Sep 2006 09:10:44 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D516243D5F; Sun, 24 Sep 2006 09:10:43 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O9Ahqc099834; Sun, 24 Sep 2006 09:10:43 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O9AhUv099833; Sun, 24 Sep 2006 09:10:43 GMT (envelope-from stas) Message-Id: <200609240910.k8O9AhUv099833@repoman.freebsd.org> From: Stanislav Sedov Date: Sun, 24 Sep 2006 09:10:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/comms/gsmlib/files patch-gsmlib::gsm_map_key.h ports/comms/gsmlib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 09:10:44 -0000 stas 2006-09-24 09:10:43 UTC FreeBSD ports repository Modified files: comms/gsmlib/files patch-gsmlib::gsm_map_key.h comms/gsmlib Makefile Log: Forced commit to note the last one was approved by sem (mentor). Revision Changes Path 1.25 +0 -0 ports/comms/gsmlib/Makefile 1.3 +0 -0 ports/comms/gsmlib/files/patch-gsmlib::gsm_map_key.h From owner-cvs-all@FreeBSD.ORG Sun Sep 24 09:16:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77EDB16A407; Sun, 24 Sep 2006 09:16:29 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3372B43D6A; Sun, 24 Sep 2006 09:16:29 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O9GTpB001351; Sun, 24 Sep 2006 09:16:29 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O9GSCw001350; Sun, 24 Sep 2006 09:16:28 GMT (envelope-from bms) Message-Id: <200609240916.k8O9GSCw001350@repoman.freebsd.org> From: Bruce M Simpson Date: Sun, 24 Sep 2006 09:16:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/tcpdump Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 09:16:29 -0000 bms 2006-09-24 09:16:27 UTC FreeBSD src repository Modified files: usr.sbin/tcpdump Makefile Log: Disconnect tcpslice from build. Reviewed by: sam, bmah Revision Changes Path 1.3 +1 -1 src/usr.sbin/tcpdump/Makefile From owner-cvs-all@FreeBSD.ORG Sun Sep 24 09:18:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1436516A415; Sun, 24 Sep 2006 09:18:39 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8220C43D7F; Sun, 24 Sep 2006 09:18:37 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O9IbH1001477; Sun, 24 Sep 2006 09:18:37 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O9IbHF001476; Sun, 24 Sep 2006 09:18:37 GMT (envelope-from bms) Message-Id: <200609240918.k8O9IbHF001476@repoman.freebsd.org> From: Bruce M Simpson Date: Sun, 24 Sep 2006 09:18:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/tcpdump/tcpslice Makefile gwtm2secs.c search.c tcpslice.1 tcpslice.c tcpslice.h util.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 09:18:39 -0000 bms 2006-09-24 09:18:37 UTC FreeBSD src repository Removed files: usr.sbin/tcpdump/tcpslice Makefile gwtm2secs.c search.c tcpslice.1 tcpslice.c tcpslice.h util.c Log: De-orbit burn tcpslice. Reviewed by: sam, bmah Revision Changes Path 1.14 +0 -23 src/usr.sbin/tcpdump/tcpslice/Makefile (dead) 1.6 +0 -79 src/usr.sbin/tcpdump/tcpslice/gwtm2secs.c (dead) 1.6 +0 -566 src/usr.sbin/tcpdump/tcpslice/search.c (dead) 1.16 +0 -293 src/usr.sbin/tcpdump/tcpslice/tcpslice.1 (dead) 1.14 +0 -626 src/usr.sbin/tcpdump/tcpslice/tcpslice.c (dead) 1.2 +0 -59 src/usr.sbin/tcpdump/tcpslice/tcpslice.h (dead) 1.4 +0 -56 src/usr.sbin/tcpdump/tcpslice/util.c (dead) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 09:29:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14E5716A412; Sun, 24 Sep 2006 09:29:52 +0000 (UTC) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C470143D45; Sun, 24 Sep 2006 09:29:51 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O9TpE5002051; Sun, 24 Sep 2006 09:29:51 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O9TpsF002050; Sun, 24 Sep 2006 09:29:51 GMT (envelope-from clement) Message-Id: <200609240929.k8O9TpsF002050@repoman.freebsd.org> From: Clement Laforet Date: Sun, 24 Sep 2006 09:29:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/haproxy Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 09:29:52 -0000 clement 2006-09-24 09:29:51 UTC FreeBSD ports repository Modified files: net/haproxy Makefile distinfo Log: - Update to 1.1.34 Revision Changes Path 1.15 +2 -3 ports/net/haproxy/Makefile 1.14 +3 -3 ports/net/haproxy/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 09:39:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 927A216A412; Sun, 24 Sep 2006 09:39:18 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C651E43D64; Sun, 24 Sep 2006 09:39:17 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O9dHYO002502; Sun, 24 Sep 2006 09:39:17 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O9dHK5002501; Sun, 24 Sep 2006 09:39:17 GMT (envelope-from hrs) Message-Id: <200609240939.k8O9dHK5002501@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 24 Sep 2006 09:39:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/acpica/Osd OsdHardware.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 09:39:18 -0000 hrs 2006-09-24 09:39:17 UTC FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdHardware.c Log: Disable an overly-verbose warning message by default. Suggested by: njl MFC after: 3 days Revision Changes Path 1.21 +6 -3 src/sys/dev/acpica/Osd/OsdHardware.c From owner-cvs-all@FreeBSD.ORG Sun Sep 24 09:49:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3853816A407; Sun, 24 Sep 2006 09:49:22 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B624F43D62; Sun, 24 Sep 2006 09:49:21 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 757331A3C1F; Sun, 24 Sep 2006 02:49:21 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id A54975159A; Sun, 24 Sep 2006 05:49:20 -0400 (EDT) Date: Sun, 24 Sep 2006 05:49:20 -0400 From: Kris Kennaway To: Stanislav Sedov , sem@FreeBSD.org Message-ID: <20060924094920.GA21944@xor.obsecurity.org> References: <200609231621.k8NGLNJF090082@repoman.freebsd.org> <20060923222717.GA12790@xor.obsecurity.org> <20060924112959.0f77617a@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="SUOF0GtieIMvvwua" Content-Disposition: inline In-Reply-To: <20060924112959.0f77617a@localhost> User-Agent: Mutt/1.4.2.2i Cc: Kris Kennaway , Rainer Alves , cvs-all@FreeBSD.org, ports-committers@FreeBSD.org, sem@FreeBSD.org, cvs-ports@FreeBSD.org Subject: Re: cvs commit: ports/multimedia/avifile Makefile ports/multimedia/avifile/files patch-lib_aviread_ReadFile.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 09:49:22 -0000 --SUOF0GtieIMvvwua Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Sep 24, 2006 at 11:29:59AM +0400, Stanislav Sedov wrote: > On Sat, 23 Sep 2006 18:27:17 -0400 > Kris Kennaway mentioned: >=20 > > On Sat, Sep 23, 2006 at 04:21:23PM +0000, Stanislav Sedov wrote: > > > stas 2006-09-23 16:21:23 UTC > > >=20 > > > FreeBSD ports repository > > >=20 > > > Modified files: > > > multimedia/avifile Makefile=20 > > > Added files: > > > multimedia/avifile/files patch-lib_aviread_ReadFile.cpp=20 > > > Log: > > > - Fix building with recent version of gcc (3.4.6) [1] > > > - Test for pcvt_ioctl.h existence as it was removed recently. > > > Include iokb.h instead if its'nt exists. [1] > >=20 > > .if exists() tests to control build behaviour are usually bogus, use > > an OSVERSION test instead. > >=20 > > Kris >=20 > I was thinking about it, but unfortunately there was no revision bump > after the pcvt(4) removal. Thus I decided to explicitly check for the > existence. OK, you'll have to use the next nearest OSVERSION then. Kris --SUOF0GtieIMvvwua Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFFlSgWry0BWjoQKURAkB9AKDBxiV8KDK0UfaCkrUtTSFKDq7ZugCgpJlq hrA5nlirN5WUWaEu/5VqPHo= =5Dgh -----END PGP SIGNATURE----- --SUOF0GtieIMvvwua-- From owner-cvs-all@FreeBSD.ORG Sun Sep 24 09:50:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5140E16A412; Sun, 24 Sep 2006 09:50:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BEAB43D5F; Sun, 24 Sep 2006 09:50:33 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O9oWZR003130; Sun, 24 Sep 2006 09:50:32 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O9oWxY003129; Sun, 24 Sep 2006 09:50:32 GMT (envelope-from miwi) Message-Id: <200609240950.k8O9oWxY003129@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Sep 2006 09:50:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/sketchy Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 09:50:33 -0000 miwi 2006-09-24 09:50:32 UTC FreeBSD ports repository Modified files: lang/sketchy Makefile distinfo pkg-descr Log: - Update to 2006-09-24 - Completed API part of manual PR: ports/103551 Submitted by: Nils M Holm (maintainer) Revision Changes Path 1.12 +1 -1 ports/lang/sketchy/Makefile 1.12 +3 -3 ports/lang/sketchy/distinfo 1.7 +2 -2 ports/lang/sketchy/pkg-descr From owner-cvs-all@FreeBSD.ORG Sun Sep 24 09:52:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16F3416A40F; Sun, 24 Sep 2006 09:52:15 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DE7343D60; Sun, 24 Sep 2006 09:52:13 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O9qDA6003275; Sun, 24 Sep 2006 09:52:13 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O9qDwV003274; Sun, 24 Sep 2006 09:52:13 GMT (envelope-from pav) Message-Id: <200609240952.k8O9qDwV003274@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 24 Sep 2006 09:52:13 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/platforms/amd64 motherboards.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 09:52:15 -0000 pav 2006-09-24 09:52:13 UTC FreeBSD doc repository Modified files: en/platforms/amd64 motherboards.sgml Log: - Add entry for Asus M2NPV-VM PR: www/102548 Submitted by: Bernd Selig Revision Changes Path 1.95 +10 -1 www/en/platforms/amd64/motherboards.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 09:55:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B786A16A403; Sun, 24 Sep 2006 09:55:40 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 744B443D68; Sun, 24 Sep 2006 09:55:40 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O9te66003455; Sun, 24 Sep 2006 09:55:40 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O9teiM003454; Sun, 24 Sep 2006 09:55:40 GMT (envelope-from pav) Message-Id: <200609240955.k8O9teiM003454@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 24 Sep 2006 09:55:40 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/platforms/amd64 motherboards.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 09:55:40 -0000 pav 2006-09-24 09:55:40 UTC FreeBSD doc repository Modified files: en/platforms/amd64 motherboards.sgml Log: - Update Asus A8V-MX entry PR: www/103132 Submitted by: Andrew "squirL" Tovstik Revision Changes Path 1.96 +5 -8 www/en/platforms/amd64/motherboards.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 09:59:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD9D116A412; Sun, 24 Sep 2006 09:59:03 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7698343D53; Sun, 24 Sep 2006 09:59:03 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8O9x31Q003612; Sun, 24 Sep 2006 09:59:03 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8O9x3at003611; Sun, 24 Sep 2006 09:59:03 GMT (envelope-from netchild) Message-Id: <200609240959.k8O9x3at003611@repoman.freebsd.org> From: Alexander Leidinger Date: Sun, 24 Sep 2006 09:59:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 09:59:03 -0000 netchild 2006-09-24 09:59:03 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws Makefile Log: Fix pilot-link lib dependency (so-version bump). The fix is different from the one in the PR and I also don't bump the portrevision, it's an optional dependency and the package on the cluster will not change. PR: 103547 Noticed by: "Alex Samorukov" Revision Changes Path 1.105 +1 -1 ports/mail/sylpheed-claws/Makefile From owner-cvs-all@FreeBSD.ORG Sun Sep 24 10:54:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF65116A407; Sun, 24 Sep 2006 10:54:04 +0000 (UTC) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87F0C43D78; Sun, 24 Sep 2006 10:54:04 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OAs4Ig007268; Sun, 24 Sep 2006 10:54:04 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OAs4as007267; Sun, 24 Sep 2006 10:54:04 GMT (envelope-from clement) Message-Id: <200609241054.k8OAs4as007267@repoman.freebsd.org> From: Clement Laforet Date: Sun, 24 Sep 2006 10:54:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/haproxy Makefile distinfo ports/net/haproxy/files patch-Makefile.bsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 10:54:04 -0000 clement 2006-09-24 10:54:04 UTC FreeBSD ports repository Modified files: net/haproxy Makefile distinfo Added files: net/haproxy/files patch-Makefile.bsd Log: - Update to new stable branch 1.2.x (1.2.15) Revision Changes Path 1.16 +10 -6 ports/net/haproxy/Makefile 1.15 +3 -3 ports/net/haproxy/distinfo 1.1 +74 -0 ports/net/haproxy/files/patch-Makefile.bsd (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 10:56:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4417016A40F; Sun, 24 Sep 2006 10:56:31 +0000 (UTC) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01DE143D67; Sun, 24 Sep 2006 10:56:31 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OAuU5v007410; Sun, 24 Sep 2006 10:56:30 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OAuURK007409; Sun, 24 Sep 2006 10:56:30 GMT (envelope-from clement) Message-Id: <200609241056.k8OAuURK007409@repoman.freebsd.org> From: Clement Laforet Date: Sun, 24 Sep 2006 10:56:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/haproxy pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 10:56:31 -0000 clement 2006-09-24 10:56:30 UTC FreeBSD ports repository Modified files: net/haproxy pkg-descr Log: - Update description and WWW Revision Changes Path 1.2 +2 -3 ports/net/haproxy/pkg-descr From owner-cvs-all@FreeBSD.ORG Sun Sep 24 10:57:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9240516A40F; Sun, 24 Sep 2006 10:57:35 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48F8743D68; Sun, 24 Sep 2006 10:57:35 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OAvZ9v007480; Sun, 24 Sep 2006 10:57:35 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OAvZYD007479; Sun, 24 Sep 2006 10:57:35 GMT (envelope-from simon) Message-Id: <200609241057.k8OAvZYD007479@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 24 Sep 2006 10:57:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 10:57:35 -0000 simon 2006-09-24 10:57:35 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Log: Remove tcpslice files. Revision Changes Path 1.51 +3 -0 src/ObsoleteFiles.inc From owner-cvs-all@FreeBSD.ORG Sun Sep 24 07:30:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25E7816A40F; Sun, 24 Sep 2006 07:30:24 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from com1.ht-systems.ru (com1.ht-systems.ru [83.97.104.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95B0F43D46; Sun, 24 Sep 2006 07:30:23 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from [213.87.86.25] (helo=fonon.realnet) by com1.ht-systems.ru with esmtpa (Exim 4.62) (envelope-from ) id 1GROQw-0007xC-4K; Sun, 24 Sep 2006 11:29:52 +0400 Received: from localhost (localhost [127.0.0.1]) by fonon.realnet (Postfix) with ESMTP id 3C2D0114D1; Sun, 24 Sep 2006 11:30:05 +0400 (MSD) Date: Sun, 24 Sep 2006 11:29:59 +0400 From: Stanislav Sedov To: Kris Kennaway Message-ID: <20060924112959.0f77617a@localhost> In-Reply-To: <20060923222717.GA12790@xor.obsecurity.org> References: <200609231621.k8NGLNJF090082@repoman.freebsd.org> <20060923222717.GA12790@xor.obsecurity.org> Organization: The FreeBSD Project X-Operating-System: FreeBSD X-Mailer: carrier-pigeon Mime-Version: 1.0 Content-Type: multipart/signed; boundary=Sig_QoiCdtYHjotweHc5ilkyHg8; protocol="application/pgp-signature"; micalg=PGP-SHA1 X-Spam-Flag: SKIP X-Spam-Yversion: Spamooborona 1.6.0 X-Mailman-Approved-At: Sun, 24 Sep 2006 11:27:31 +0000 Cc: cvs-ports@FreeBSD.org, sem@FreeBSD.org, Rainer Alves , cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/multimedia/avifile Makefile ports/multimedia/avifile/files patch-lib_aviread_ReadFile.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 07:30:24 -0000 --Sig_QoiCdtYHjotweHc5ilkyHg8 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable On Sat, 23 Sep 2006 18:27:17 -0400 Kris Kennaway mentioned: > On Sat, Sep 23, 2006 at 04:21:23PM +0000, Stanislav Sedov wrote: > > stas 2006-09-23 16:21:23 UTC > >=20 > > FreeBSD ports repository > >=20 > > Modified files: > > multimedia/avifile Makefile=20 > > Added files: > > multimedia/avifile/files patch-lib_aviread_ReadFile.cpp=20 > > Log: > > - Fix building with recent version of gcc (3.4.6) [1] > > - Test for pcvt_ioctl.h existence as it was removed recently. > > Include iokb.h instead if its'nt exists. [1] >=20 > .if exists() tests to control build behaviour are usually bogus, use > an OSVERSION test instead. >=20 > Kris I was thinking about it, but unfortunately there was no revision bump after the pcvt(4) removal. Thus I decided to explicitly check for the existence. --=20 Stanislav Sedov [[=F2=CF=D3=D3=C9= =D1, =ED=CF=D3=CB=D7=C1]] PGP id: 0xEB269581 http://people.freebsd.org/~stas/stas.key.asc --Sig_QoiCdtYHjotweHc5ilkyHg8 Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFFjP8K/VZk+smlYERAl4PAJ0dtE/+YoPxpjjkVN+hgiwr9+dUKwCfWDgP h6VgssLf5Mj8EM8oZHNovOE= =7KRt -----END PGP SIGNATURE----- --Sig_QoiCdtYHjotweHc5ilkyHg8-- From owner-cvs-all@FreeBSD.ORG Sun Sep 24 11:46:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63F2C16A40F; Sun, 24 Sep 2006 11:46:11 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD6BB43D5F; Sun, 24 Sep 2006 11:46:10 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OBkAfx011635; Sun, 24 Sep 2006 11:46:10 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OBkAfY011634; Sun, 24 Sep 2006 11:46:10 GMT (envelope-from bsam) Message-Id: <200609241146.k8OBkAfY011634@repoman.freebsd.org> From: Boris Samorodov Date: Sun, 24 Sep 2006 11:46:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/socat Makefile distinfo ports/net/socat/files patch-xio-listen.c patch-xio-udp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 11:46:11 -0000 bsam 2006-09-24 11:46:10 UTC FreeBSD ports repository Modified files: net/socat Makefile distinfo Removed files: net/socat/files patch-xio-listen.c patch-xio-udp.c Log: - Update to 1.5.0.0 - Transfer maintainership to submitter PR: 103556 Submitted by: Nils Vogels Revision Changes Path 1.22 +3 -4 ports/net/socat/Makefile 1.16 +3 -3 ports/net/socat/distinfo 1.2 +0 -10 ports/net/socat/files/patch-xio-listen.c (dead) 1.2 +0 -10 ports/net/socat/files/patch-xio-udp.c (dead) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 11:48:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26E3F16A4CA; Sun, 24 Sep 2006 11:48:13 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0858243D7F; Sun, 24 Sep 2006 11:48:05 +0000 (GMT) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OBm33W011741; Sun, 24 Sep 2006 11:48:03 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OBm3nO011740; Sun, 24 Sep 2006 11:48:03 GMT (envelope-from gerald) Message-Id: <200609241148.k8OBm3nO011740@repoman.freebsd.org> From: Gerald Pfeifer Date: Sun, 24 Sep 2006 11:48:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/gcc42 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 11:48:13 -0000 gerald 2006-09-24 11:48:03 UTC FreeBSD ports repository Modified files: lang/gcc42 Makefile distinfo Log: Update to the 20060923 snapshot of GCC 4.2.0. Revision Changes Path 1.286 +1 -1 ports/lang/gcc42/Makefile 1.175 +18 -18 ports/lang/gcc42/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 11:51:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 394BB16A640; Sun, 24 Sep 2006 11:51:08 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4A3243D60; Sun, 24 Sep 2006 11:51:02 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OBp2Un011941; Sun, 24 Sep 2006 11:51:02 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OBp2Im011937; Sun, 24 Sep 2006 11:51:02 GMT (envelope-from rwatson) Message-Id: <200609241151.k8OBp2Im011937@repoman.freebsd.org> From: Robert Watson Date: Sun, 24 Sep 2006 11:50:57 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/audit chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 11:51:08 -0000 rwatson 2006-09-24 11:50:57 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/audit chapter.sgml Log: Update the audit handbook chapter in a number of ways to reflect recent changes and improvements: - Rephrase synposis now that we've merged audit support to 6.x. Resort to push all warnings to the end so that it reads more clearly. Add reviewing and reducing the audit trail to list of things learned, since it is covered. - Simplify class definition, as some of this content can appear in new definitions for selection expression, preselection, and reduction. The selection expression definition replaces the existing prefix definition, and "selection expression" is now used consistently throughout the document to refer to the previously unnamed matching strings. - Since audit support is part of the base system, remove comments about checking for configuration files, they will be present. Add note about starting auditd with the rc.d script once the new kernel is loaded. - When describing audit_event file, mention that that is where the class mappings live. - Since audit_warn will shortly learn to notify of rotation events, mention that. - Rename "Audit File Syntax" section to "Event Selection Expressions", since that's what the section talks about, and these expressions are used in more than one file. Correct an error in the prefix list, which was also present in the man page (and will be fixed in the next OpenBSM import). Include an example in this section. - Don't go into selection expression details in the audit_control section, as that's now earlier int he document. - Talk in more detail about audit_user fields. I had to check the source to make sure I understood this first! - Don't mention a special audit user, it's not a configuration we currently want to encourage. The audit group now fills this role. - Create a new sect2 section on viewing and reducing trails from the existing sect1 introduction for administering the audit subsystem, as it's a sufficiently detailed and independent set of text that it makes sense. Clarify some points regarding what you might use auditreduce for. Use -u instead of -e to match the user in the example. - Consistently say "audit trail file" instead of "audit log file", except when introducing the trail concept in the glossary. - Clarify notion of the audit group some more. - A number of rephrasings and simplifications. - Add myself as an author. Some new features from OpenBSM 1.0a12 are not yet described here, such as the filesz and policy entries in audit_control, and once that is merged, I will further update the document, which should clean up the trail rotation section. Obtained from: TrustedBSD Project Revision Changes Path 1.15 +236 -226 doc/en_US.ISO8859-1/books/handbook/audit/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 12:16:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88E5A16A407; Sun, 24 Sep 2006 12:16:38 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1980C43D49; Sun, 24 Sep 2006 12:16:38 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OCGbkU014332; Sun, 24 Sep 2006 12:16:37 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OCGbq4014331; Sun, 24 Sep 2006 12:16:37 GMT (envelope-from arved) Message-Id: <200609241216.k8OCGbq4014331@repoman.freebsd.org> From: Tilman Linneweh Date: Sun, 24 Sep 2006 12:16:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/zmailer/files patch-smtpserver-smtpetrn.c patch-transports-smtp-smtp.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 12:16:38 -0000 arved 2006-09-24 12:16:37 UTC FreeBSD ports repository Added files: mail/zmailer/files patch-smtpserver-smtpetrn.c patch-transports-smtp-smtp.h Log: Fix build with recent headers Revision Changes Path 1.1 +11 -0 ports/mail/zmailer/files/patch-smtpserver-smtpetrn.c (new) 1.1 +12 -0 ports/mail/zmailer/files/patch-transports-smtp-smtp.h (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 12:26:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7157A16A40F; Sun, 24 Sep 2006 12:26:00 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE0B443D5C; Sun, 24 Sep 2006 12:25:58 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OCPw3M015044; Sun, 24 Sep 2006 12:25:58 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OCPwef015043; Sun, 24 Sep 2006 12:25:58 GMT (envelope-from pav) Message-Id: <200609241225.k8OCPwef015043@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 24 Sep 2006 12:25:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/dvdrip Makefile distinfo pkg-message pkg-plist ports/multimedia/dvdrip/files patch-Makefile.PL patch-lib::Video::DVDRip::Cluster::Title.pm patch-lib::Video::DVDRip::Config.pm patch-lib::Video::DVDRip::GUI::Project::BurnTab.pm patch-lib::Video::DVDRip::GUI::Project::TitleTab.pm patch-lib::Video::DVDRip::GUI::Project::TranscodeTab.pm patch-lib__Video__DVDRip__Cluster__Title.pm ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 12:26:00 -0000 pav 2006-09-24 12:25:57 UTC FreeBSD ports repository Modified files: multimedia/dvdrip Makefile distinfo pkg-plist multimedia/dvdrip/files patch-lib__Video__DVDRip__FilterList.pm Added files: multimedia/dvdrip/files patch-Makefile.PL patch-lib__Video__DVDRip__Cluster__Title.pm patch-lib__Video__DVDRip__Config.pm patch-lib__Video__DVDRip__GUI__Project__Storage.pm patch-lib__Video__DVDRip__GUI__Project__Title.pm patch-lib__Video__DVDRip__Project.pm Removed files: multimedia/dvdrip pkg-message multimedia/dvdrip/files patch-lib::Video::DVDRip::Cluster::Title.pm patch-lib::Video::DVDRip::Config.pm patch-lib::Video::DVDRip::GUI::Project::BurnTab.pm patch-lib::Video::DVDRip::GUI::Project::TitleTab.pm patch-lib::Video::DVDRip::GUI::Project::TranscodeTab.pm Log: - Update to 0.98.1 PR: ports/103528 Submitted by: Rainer Alves (maintainer) Revision Changes Path 1.30 +18 -31 ports/multimedia/dvdrip/Makefile 1.11 +3 -3 ports/multimedia/dvdrip/distinfo 1.1 +55 -0 ports/multimedia/dvdrip/files/patch-Makefile.PL (new) 1.4 +0 -15 ports/multimedia/dvdrip/files/patch-lib::Video::DVDRip::Cluster::Title.pm (dead) 1.8 +0 -53 ports/multimedia/dvdrip/files/patch-lib::Video::DVDRip::Config.pm (dead) 1.4 +0 -20 ports/multimedia/dvdrip/files/patch-lib::Video::DVDRip::GUI::Project::BurnTab.pm (dead) 1.3 +0 -20 ports/multimedia/dvdrip/files/patch-lib::Video::DVDRip::GUI::Project::TitleTab.pm (dead) 1.6 +0 -21 ports/multimedia/dvdrip/files/patch-lib::Video::DVDRip::GUI::Project::TranscodeTab.pm (dead) 1.1 +15 -0 ports/multimedia/dvdrip/files/patch-lib__Video__DVDRip__Cluster__Title.pm (new) 1.1 +40 -0 ports/multimedia/dvdrip/files/patch-lib__Video__DVDRip__Config.pm (new) 1.2 +10 -10 ports/multimedia/dvdrip/files/patch-lib__Video__DVDRip__FilterList.pm 1.1 +15 -0 ports/multimedia/dvdrip/files/patch-lib__Video__DVDRip__GUI__Project__Storage.pm (new) 1.1 +27 -0 ports/multimedia/dvdrip/files/patch-lib__Video__DVDRip__GUI__Project__Title.pm (new) 1.1 +51 -0 ports/multimedia/dvdrip/files/patch-lib__Video__DVDRip__Project.pm (new) 1.4 +0 -9 ports/multimedia/dvdrip/pkg-message (dead) 1.9 +124 -75 ports/multimedia/dvdrip/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 12:27:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAB4116A407; Sun, 24 Sep 2006 12:27:11 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85CAD43D45; Sun, 24 Sep 2006 12:27:11 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OCRBd8015139; Sun, 24 Sep 2006 12:27:11 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OCRBBB015138; Sun, 24 Sep 2006 12:27:11 GMT (envelope-from simon) Message-Id: <200609241227.k8OCRBBB015138@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 24 Sep 2006 12:27:11 +0000 (UTC) To: projects-committers@FreeBSD.org, cvs-projects@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: projects/embeddedfreebsd Makefile projects/embeddedfreebsd/Documents Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 12:27:11 -0000 simon 2006-09-24 12:27:11 UTC FreeBSD projects repository Added files: embeddedfreebsd Makefile embeddedfreebsd/Documents Makefile Log: Add a very simple "build system" for installing the embeddedfreebsd website. Revision Changes Path 1.1 +14 -0 projects/embeddedfreebsd/Documents/Makefile (new) 1.1 +19 -0 projects/embeddedfreebsd/Makefile (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 12:31:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D5B016A417; Sun, 24 Sep 2006 12:31:35 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8443D43D76; Sun, 24 Sep 2006 12:31:30 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OCVUjt015412; Sun, 24 Sep 2006 12:31:30 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OCVUWx015411; Sun, 24 Sep 2006 12:31:30 GMT (envelope-from pav) Message-Id: <200609241231.k8OCVUWx015411@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 24 Sep 2006 12:31:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/dovecot Makefile ports/mail/dovecot/files patch-src_lib_ioloop-notify-kqueue.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 12:31:35 -0000 pav 2006-09-24 12:31:29 UTC FreeBSD ports repository Modified files: mail/dovecot Makefile Added files: mail/dovecot/files patch-src_lib_ioloop-notify-kqueue.c Log: - Fix 100% CPU usage looping when a vnode change event came but it was never untriggered. Patch by Rui Lopes PR: ports/103525 Submitted by: Robin Breathe (maintainer) Revision Changes Path 1.52 +1 -0 ports/mail/dovecot/Makefile 1.1 +14 -0 ports/mail/dovecot/files/patch-src_lib_ioloop-notify-kqueue.c (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 12:31:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4289416A492; Sun, 24 Sep 2006 12:31:44 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E775B43D6A; Sun, 24 Sep 2006 12:31:43 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OCVh6G015462; Sun, 24 Sep 2006 12:31:43 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OCVhgJ015461; Sun, 24 Sep 2006 12:31:43 GMT (envelope-from stas) Message-Id: <200609241231.k8OCVhgJ015461@repoman.freebsd.org> From: Stanislav Sedov Date: Sun, 24 Sep 2006 12:31:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/cube Makefile pkg-plist ports/games/cube/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 12:31:44 -0000 stas 2006-09-24 12:31:43 UTC FreeBSD ports repository Modified files: games/cube Makefile pkg-plist games/cube/files patch-Makefile Log: - Unbroke - Use enet from ports collection rather than from cube distribution to benefit from local patches [1] - Fix OPTIONS checking to allow BATCH building - Fix PLIST_SUB to generate correct pkg-plist when SERVER or CLIENT not selected - Add KNOB to build with optimized CFLAGS, also guarantee CFLAGS safety - CXX safety - Guarantee permissions safety by using INSTALL instead of CP [2] - Bump up PORTREVISION because of [1] and [2] Approved by: sem (mentor) Revision Changes Path 1.17 +27 -19 ports/games/cube/Makefile 1.4 +16 -6 ports/games/cube/files/patch-Makefile 1.6 +10 -11 ports/games/cube/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 12:36:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD49D16A403; Sun, 24 Sep 2006 12:36:11 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98D6F43D49; Sun, 24 Sep 2006 12:36:11 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OCaBxc015704; Sun, 24 Sep 2006 12:36:11 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OCaBHw015703; Sun, 24 Sep 2006 12:36:11 GMT (envelope-from thierry) Message-Id: <200609241236.k8OCaBHw015703@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 24 Sep 2006 12:36:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/french/aster Makefile ports/french/aster/files patch-as_setup.py X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 12:36:12 -0000 thierry 2006-09-24 12:36:11 UTC FreeBSD ports repository Modified files: french/aster Makefile Added files: french/aster/files patch-as_setup.py Log: - Catch the exception risen by gethostbyaddr and set a "to be configured" hostname to fix the build on pointyhat and unbreak; - Take maintainership. Revision Changes Path 1.39 +2 -7 ports/french/aster/Makefile 1.1 +14 -0 ports/french/aster/files/patch-as_setup.py (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 12:38:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6751F16A403; Sun, 24 Sep 2006 12:38:41 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2652E43D45; Sun, 24 Sep 2006 12:38:41 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OCcfjq015838; Sun, 24 Sep 2006 12:38:41 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OCcfkf015837; Sun, 24 Sep 2006 12:38:41 GMT (envelope-from lth) Message-Id: <200609241238.k8OCcfkf015837@repoman.freebsd.org> From: Lars Thegler Date: Sun, 24 Sep 2006 12:38:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-PPI Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 12:38:41 -0000 lth 2006-09-24 12:38:40 UTC FreeBSD ports repository Modified files: textproc/p5-PPI Makefile distinfo Log: Update to 1.118 Revision Changes Path 1.15 +2 -1 ports/textproc/p5-PPI/Makefile 1.15 +3 -3 ports/textproc/p5-PPI/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 13:04:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1809516A412; Sun, 24 Sep 2006 13:04:42 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5BF243D45; Sun, 24 Sep 2006 13:04:41 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OD4fY2026163; Sun, 24 Sep 2006 13:04:41 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OD4fEr026162; Sun, 24 Sep 2006 13:04:41 GMT (envelope-from arved) Message-Id: <200609241304.k8OD4fEr026162@repoman.freebsd.org> From: Tilman Linneweh Date: Sun, 24 Sep 2006 13:04:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/kslide Makefile distinfo pkg-plist ports/games/kslide/files patch-puz_app.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 13:04:42 -0000 arved 2006-09-24 13:04:41 UTC FreeBSD ports repository Modified files: games/kslide Makefile distinfo pkg-plist Removed files: games/kslide/files patch-puz_app.cpp Log: Update to 1.0.1 Revision Changes Path 1.10 +3 -3 ports/games/kslide/Makefile 1.4 +3 -3 ports/games/kslide/distinfo 1.2 +0 -29 ports/games/kslide/files/patch-puz_app.cpp (dead) 1.2 +1 -0 ports/games/kslide/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 13:11:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B43E316A407; Sun, 24 Sep 2006 13:11:57 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73B9E43D45; Sun, 24 Sep 2006 13:11:57 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ODBvLe026588; Sun, 24 Sep 2006 13:11:57 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ODBvWO026587; Sun, 24 Sep 2006 13:11:57 GMT (envelope-from lth) Message-Id: <200609241311.k8ODBvWO026587@repoman.freebsd.org> From: Lars Thegler Date: Sun, 24 Sep 2006 13:11:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Carp-Clan Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 13:11:57 -0000 lth 2006-09-24 13:11:57 UTC FreeBSD ports repository Modified files: devel/p5-Carp-Clan Makefile distinfo Log: Update to 5.4 Revision Changes Path 1.2 +1 -1 ports/devel/p5-Carp-Clan/Makefile 1.3 +3 -3 ports/devel/p5-Carp-Clan/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 13:34:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C65C016A415; Sun, 24 Sep 2006 13:34:56 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41D7F43D55; Sun, 24 Sep 2006 13:34:56 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ODYujQ027552; Sun, 24 Sep 2006 13:34:56 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ODYtHG027551; Sun, 24 Sep 2006 13:34:55 GMT (envelope-from danger) Message-Id: <200609241334.k8ODYtHG027551@repoman.freebsd.org> From: Daniel Gerzo Date: Sun, 24 Sep 2006 13:34:55 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/cgi query-pr-summary.cgi X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 13:34:56 -0000 danger 2006-09-24 13:34:55 UTC FreeBSD doc repository Modified files: en/cgi query-pr-summary.cgi Log: Change the default behavior of this script to display query form instead of generating full list of all open PRs in GNATS. I hope this change will at least a bit decrease the load of GNATS. Reviewed by: www@ Approved by: keramida (mentor) Revision Changes Path 1.56 +5 -3 www/en/cgi/query-pr-summary.cgi From owner-cvs-all@FreeBSD.ORG Sun Sep 24 13:35:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C283116A403; Sun, 24 Sep 2006 13:35:59 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB45043D46; Sun, 24 Sep 2006 13:35:58 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ODZwU0027660; Sun, 24 Sep 2006 13:35:58 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ODZwSP027659; Sun, 24 Sep 2006 13:35:58 GMT (envelope-from rwatson) Message-Id: <200609241335.k8ODZwSP027659@repoman.freebsd.org> From: Robert Watson Date: Sun, 24 Sep 2006 13:35:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/security/audit audit_worker.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 13:35:59 -0000 rwatson 2006-09-24 13:35:58 UTC FreeBSD src repository Modified files: sys/security/audit audit_worker.c Log: Rework the way errors are handled with respect to how audit records are written to the audit trail file: - audit_record_write() now returns void, and all file system specific error handling occurs inside this function. This pushes error handling complexity out of the record demux routine that hands off to both the trail and audit pipes, and makes trail behavior more consistent with pipes as a record destination. - Rate limit kernel printfs associated with running low on space. Rate limit audit triggers for low space. Rate limit printfs for fail stop events. Rate limit audit worker write error printfs. - Document in detail the types of limits and space checks we perform, and combine common cases. This improves the audit subsystems tolerance to low space conditions by avoiding toasting the console with printfs are waking up the audit daemon continuously. MFC after: 3 days Obtained from: TrustedBSD Project Revision Changes Path 1.12 +146 -101 src/sys/security/audit/audit_worker.c From owner-cvs-all@FreeBSD.ORG Sun Sep 24 13:36:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C193916A40F; Sun, 24 Sep 2006 13:36:30 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AED743D46; Sun, 24 Sep 2006 13:36:30 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ODaURk027709; Sun, 24 Sep 2006 13:36:30 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ODaUVv027708; Sun, 24 Sep 2006 13:36:30 GMT (envelope-from rafan) Message-Id: <200609241336.k8ODaUVv027708@repoman.freebsd.org> From: Rong-En Fan Date: Sun, 24 Sep 2006 13:36:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/nctop Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 13:36:30 -0000 rafan 2006-09-24 13:36:30 UTC FreeBSD ports repository Modified files: sysutils/nctop Makefile distinfo pkg-descr Log: - Update to 0.23.2 PR: ports/103561 Submitted by: Stefan Pauly Revision Changes Path 1.3 +4 -10 ports/sysutils/nctop/Makefile 1.2 +3 -3 ports/sysutils/nctop/distinfo 1.2 +1 -0 ports/sysutils/nctop/pkg-descr From owner-cvs-all@FreeBSD.ORG Sun Sep 24 13:36:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A878816A492; Sun, 24 Sep 2006 13:36:59 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F54743D4C; Sun, 24 Sep 2006 13:36:59 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ODaxkq027750; Sun, 24 Sep 2006 13:36:59 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ODaxiH027749; Sun, 24 Sep 2006 13:36:59 GMT (envelope-from danger) Message-Id: <200609241336.k8ODaxiH027749@repoman.freebsd.org> From: Daniel Gerzo Date: Sun, 24 Sep 2006 13:36:59 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/vm-design article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 13:36:59 -0000 danger 2006-09-24 13:36:59 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/vm-design article.sgml Log: Fix typos. PR: docs/103327 Approved by: trhodes (mentor), keramida (mentor) Revision Changes Path 1.16 +2 -2 doc/en_US.ISO8859-1/articles/vm-design/article.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 13:39:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F419A16A415; Sun, 24 Sep 2006 13:39:06 +0000 (UTC) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DE1043D66; Sun, 24 Sep 2006 13:39:05 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ODd5nE027876; Sun, 24 Sep 2006 13:39:05 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ODd5Ex027875; Sun, 24 Sep 2006 13:39:05 GMT (envelope-from iedowse) Message-Id: <200609241339.k8ODd5Ex027875@repoman.freebsd.org> From: Ian Dowse Date: Sun, 24 Sep 2006 13:39:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/usb ehci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 13:39:07 -0000 iedowse 2006-09-24 13:39:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/usb ehci.c Log: MFC 1.42, 1.43: Let the EHCI hardware track the toggle state for bulk and interrupt transfers. This fixes some cases where the software toggle tracking was not doing the right thing. For example, a short transfer that transferred 0 bytes of the requested qTD transfer size does cause a toggle change, but the existing code was assuming it didn't. Approved by: re (mux) Revision Changes Path 1.36.2.3 +29 -50 src/sys/dev/usb/ehci.c From owner-cvs-all@FreeBSD.ORG Sun Sep 24 13:58:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 066EF16A40F; Sun, 24 Sep 2006 13:58:45 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8F9B43D49; Sun, 24 Sep 2006 13:58:44 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ODwiN6028766; Sun, 24 Sep 2006 13:58:44 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ODwidf028765; Sun, 24 Sep 2006 13:58:44 GMT (envelope-from danger) Message-Id: <200609241358.k8ODwidf028765@repoman.freebsd.org> From: Daniel Gerzo Date: Sun, 24 Sep 2006 13:58:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 divert.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 13:58:45 -0000 danger 2006-09-24 13:58:44 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 divert.4 Log: - move steps describing how to gain ipdivert support to SYNOPSIS and follow the style of other section 4 manual pages - add ipfw(4) to SEE ALSO section Reviewed by: ru Approved by: trhodes (mentor), keramida (mentor) Revision Changes Path 1.38 +18 -8 src/share/man/man4/divert.4 From owner-cvs-all@FreeBSD.ORG Sun Sep 24 14:07:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 404AB16A407; Sun, 24 Sep 2006 14:07:14 +0000 (UTC) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1E9B43D46; Sun, 24 Sep 2006 14:07:13 +0000 (GMT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OE7DtC030374; Sun, 24 Sep 2006 14:07:13 GMT (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OE7DO5030373; Sun, 24 Sep 2006 14:07:13 GMT (envelope-from deischen) Message-Id: <200609241407.k8OE7DO5030373@repoman.freebsd.org> From: Daniel Eischen Date: Sun, 24 Sep 2006 14:07:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/xmcd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 14:07:14 -0000 deischen 2006-09-24 14:07:13 UTC FreeBSD ports repository Modified files: audio/xmcd Makefile Log: Add the man pages. Revision Changes Path 1.54 +2 -0 ports/audio/xmcd/Makefile From owner-cvs-all@FreeBSD.ORG Sun Sep 24 14:17:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D2B516A403; Sun, 24 Sep 2006 14:17:16 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38C2243D5F; Sun, 24 Sep 2006 14:17:16 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OEHGs9030963; Sun, 24 Sep 2006 14:17:16 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OEHGuN030962; Sun, 24 Sep 2006 14:17:16 GMT (envelope-from danger) Message-Id: <200609241417.k8OEHGuN030962@repoman.freebsd.org> From: Daniel Gerzo Date: Sun, 24 Sep 2006 14:17:15 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/network-servers chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 14:17:16 -0000 danger 2006-09-24 14:17:15 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/network-servers chapter.sgml Log: Add some notes about rc.d/samba script. Approved by: keramida (mentor), trhodes (mentor) PR: docs/102460 Revision Changes Path 1.89 +17 -6 doc/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 14:28:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 919C116A403; Sun, 24 Sep 2006 14:28:20 +0000 (UTC) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5028E43D45; Sun, 24 Sep 2006 14:28:20 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OESKcE031559; Sun, 24 Sep 2006 14:28:20 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OESKU1031558; Sun, 24 Sep 2006 14:28:20 GMT (envelope-from joerg) Message-Id: <200609241428.k8OESKU1031558@repoman.freebsd.org> From: Joerg Wunsch Date: Sun, 24 Sep 2006 14:28:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/simulavr Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 14:28:20 -0000 joerg 2006-09-24 14:28:19 UTC FreeBSD ports repository Modified files: devel/simulavr Makefile Log: Fix broken pkg-plist: when changing the pkg-plist into a dynamically created one to catch up with whatever files doxygen might install today in rev 1.18, I didn't notice the MAN1-defined man pages were no longer included into the pkg-plist now. This has now been repaired. Revision Changes Path 1.21 +3 -4 ports/devel/simulavr/Makefile From owner-cvs-all@FreeBSD.ORG Sun Sep 24 14:29:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 227B216A412; Sun, 24 Sep 2006 14:29:50 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D39A843D45; Sun, 24 Sep 2006 14:29:49 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OETnM0031613; Sun, 24 Sep 2006 14:29:49 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OETnRM031612; Sun, 24 Sep 2006 14:29:49 GMT (envelope-from clsung) Message-Id: <200609241429.k8OETnRM031612@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sun, 24 Sep 2006 14:29:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-threads Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 14:29:50 -0000 clsung 2006-09-24 14:29:49 UTC FreeBSD ports repository Modified files: devel/p5-threads Makefile distinfo Log: - Update to 1.42 - I'll maintain this port PR: ports/103544 Submitted by: clsung Approved by: maintainer (Gea-Suan Lin) Revision Changes Path 1.3 +2 -2 ports/devel/p5-threads/Makefile 1.3 +3 -3 ports/devel/p5-threads/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 14:34:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D49916A407; Sun, 24 Sep 2006 14:34:37 +0000 (UTC) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09D8F43D58; Sun, 24 Sep 2006 14:34:37 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OEYaB1031946; Sun, 24 Sep 2006 14:34:36 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OEYaQ9031945; Sun, 24 Sep 2006 14:34:36 GMT (envelope-from clement) Message-Id: <200609241434.k8OEYaQ9031945@repoman.freebsd.org> From: Clement Laforet Date: Sun, 24 Sep 2006 14:34:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/pen Makefile distinfo ports/net/pen/files pen.sh.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 14:34:37 -0000 clement 2006-09-24 14:34:36 UTC FreeBSD ports repository Modified files: net/pen Makefile distinfo Added files: net/pen/files pen.sh.in Log: - Update to 0.17.1 - Add rcNG script [1] PR: ports/94976 [1] Submitted by: Dominic Marks [1] Revision Changes Path 1.24 +2 -2 ports/net/pen/Makefile 1.20 +3 -3 ports/net/pen/distinfo 1.1 +28 -0 ports/net/pen/files/pen.sh.in (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 14:35:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E7D616A403; Sun, 24 Sep 2006 14:35:29 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 667D543D88; Sun, 24 Sep 2006 14:35:27 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OEZR88032045; Sun, 24 Sep 2006 14:35:27 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OEZRDT032044; Sun, 24 Sep 2006 14:35:27 GMT (envelope-from delphij) Message-Id: <200609241435.k8OEZRDT032044@repoman.freebsd.org> From: Xin LI Date: Sun, 24 Sep 2006 14:35:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/fs/msdosfs msdosfs_vfsops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 14:35:29 -0000 delphij 2006-09-24 14:35:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/fs/msdosfs msdosfs_vfsops.c Log: MFC 1.152: When the volume is being downgraded from a read-write mode, mark it as clean. PR: kern/85366 Submitted by: Dan Lukes Approved by: re (hrs) Revision Changes Path 1.144.2.5 +4 -0 src/sys/fs/msdosfs/msdosfs_vfsops.c From owner-cvs-all@FreeBSD.ORG Sun Sep 24 14:39:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99F6F16A407; Sun, 24 Sep 2006 14:39:27 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0C0F43D76; Sun, 24 Sep 2006 14:39:24 +0000 (GMT) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OEdOqn032185; Sun, 24 Sep 2006 14:39:24 GMT (envelope-from mi@repoman.freebsd.org) Received: (from mi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OEdOPs032184; Sun, 24 Sep 2006 14:39:24 GMT (envelope-from mi) Message-Id: <200609241439.k8OEdOPs032184@repoman.freebsd.org> From: Mikhail Teterin Date: Sun, 24 Sep 2006 14:39:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/icu Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 14:39:27 -0000 mi 2006-09-24 14:39:24 UTC FreeBSD ports repository Modified files: devel/icu Makefile pkg-plist Log: Fix the PLIST post-upgrade :-( Notified by: kris Revision Changes Path 1.21 +2 -0 ports/devel/icu/Makefile 1.8 +1 -0 ports/devel/icu/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 14:55:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66E8016A416; Sun, 24 Sep 2006 14:55:49 +0000 (UTC) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1093843D53; Sun, 24 Sep 2006 14:55:49 +0000 (GMT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OEtmrV032948; Sun, 24 Sep 2006 14:55:48 GMT (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OEtmhf032947; Sun, 24 Sep 2006 14:55:48 GMT (envelope-from iedowse) Message-Id: <200609241455.k8OEtmhf032947@repoman.freebsd.org> From: Ian Dowse Date: Sun, 24 Sep 2006 14:55:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/usb ugen.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 14:55:49 -0000 iedowse 2006-09-24 14:55:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/usb ugen.c Log: MFC 1.106: Fix a number of cases where ugen would panic, especially when the device went away while open or if you tried to change the config number while devices were open. Approved by: re (hrs) Revision Changes Path 1.103.2.1 +85 -32 src/sys/dev/usb/ugen.c From owner-cvs-all@FreeBSD.ORG Sun Sep 24 14:56:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E365816A415; Sun, 24 Sep 2006 14:56:46 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21B1143D62; Sun, 24 Sep 2006 14:56:46 +0000 (GMT) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OEuk8Y032993; Sun, 24 Sep 2006 14:56:46 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OEujAr032992; Sun, 24 Sep 2006 14:56:45 GMT (envelope-from chinsan) Message-Id: <200609241456.k8OEujAr032992@repoman.freebsd.org> From: Chin-San Huang Date: Sun, 24 Sep 2006 14:56:45 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/community mailinglists.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 14:56:47 -0000 chinsan 2006-09-24 14:56:45 UTC FreeBSD doc repository Modified files: en/community mailinglists.sgml Log: Remove Traditional Chinese from mailinglists. Because it's deprecated. Approved by: delphij (mentor) Revision Changes Path 1.11 +1 -4 www/en/community/mailinglists.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 14:59:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C592516A40F; Sun, 24 Sep 2006 14:59:18 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D7DC43D64; Sun, 24 Sep 2006 14:59:10 +0000 (GMT) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id CBA84EB3E45; Sun, 24 Sep 2006 22:59:08 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id fI0sKl2wQKOK; Sun, 24 Sep 2006 22:59:07 +0800 (CST) Received: from [192.168.1.32] (unknown [221.219.156.20]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id C8281EB2CC9; Sun, 24 Sep 2006 22:59:06 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:organization:user-agent:mime-version:to:cc: subject:references:in-reply-to:x-enigmail-version:content-type; b=jYpNR45cuKdKEgEIpTbznIU5ff3mOxLPrMgz7WO8TYKyCdhU+m2pYOVJDXvfrbwRi S3sflMNM3OHZZEsupemDw== Message-ID: <45169D29.7040504@delphij.net> Date: Sun, 24 Sep 2006 22:58:49 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: Ian Dowse References: <200609241455.k8OEtmhf032947@repoman.freebsd.org> In-Reply-To: <200609241455.k8OEtmhf032947@repoman.freebsd.org> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="------------enig896B0D2394CCA99BBF512E64" Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/usb ugen.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 14:59:18 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig896B0D2394CCA99BBF512E64 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Ian Dowse wrote: > iedowse 2006-09-24 14:55:48 UTC >=20 > FreeBSD src repository >=20 > Modified files: (Branch: RELENG_6) > sys/dev/usb ugen.c=20 > Log: > MFC 1.106: Fix a number of cases where ugen would panic, especially > when the device went away while open or if you tried to change the > config number while devices were open. > =20 > Approved by: re (hrs) > =20 > Revision Changes Path > 1.103.2.1 +85 -32 src/sys/dev/usb/ugen.c Thanks! Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enig896B0D2394CCA99BBF512E64 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFFp0pOfuToMruuMARA3SfAJwOPm3yT0Fp6Jltq29YlKcyLV0HXACfQL2Q k+kyL5vIz6W2zBRvvOkMOq8= =2fW8 -----END PGP SIGNATURE----- --------------enig896B0D2394CCA99BBF512E64-- From owner-cvs-all@FreeBSD.ORG Sun Sep 24 15:01:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E304B16A416; Sun, 24 Sep 2006 15:01:36 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D401143D69; Sun, 24 Sep 2006 15:01:31 +0000 (GMT) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OF1VLP033284; Sun, 24 Sep 2006 15:01:31 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OF1VIj033283; Sun, 24 Sep 2006 15:01:31 GMT (envelope-from chinsan) Message-Id: <200609241501.k8OF1VIj033283@repoman.freebsd.org> From: Chin-San Huang Date: Sun, 24 Sep 2006 15:01:31 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/sgml mirrors.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 15:01:37 -0000 chinsan 2006-09-24 15:01:31 UTC FreeBSD doc repository Modified files: share/sgml mirrors.xml Log: Update mirrors site(www.tw site += 2) Approved by: delphij (mentor) Revision Changes Path 1.53 +10 -0 doc/share/sgml/mirrors.xml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 15:06:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0B3716A40F; Sun, 24 Sep 2006 15:06:34 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DEF843D45; Sun, 24 Sep 2006 15:06:34 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OF6YXZ034663; Sun, 24 Sep 2006 15:06:34 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OF6YDe034662; Sun, 24 Sep 2006 15:06:34 GMT (envelope-from arved) Message-Id: <200609241506.k8OF6YDe034662@repoman.freebsd.org> From: Tilman Linneweh Date: Sun, 24 Sep 2006 15:06:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/kbilliards Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 15:06:34 -0000 arved 2006-09-24 15:06:34 UTC FreeBSD ports repository Modified files: games/kbilliards Makefile distinfo Log: Upgrade to 0.8.7b Revision Changes Path 1.18 +1 -2 ports/games/kbilliards/Makefile 1.10 +3 -3 ports/games/kbilliards/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 15:10:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E07C616A494; Sun, 24 Sep 2006 15:10:27 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E33343D45; Sun, 24 Sep 2006 15:10:27 +0000 (GMT) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OFARYs034904; Sun, 24 Sep 2006 15:10:27 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OFAR75034903; Sun, 24 Sep 2006 15:10:27 GMT (envelope-from chinsan) Message-Id: <200609241510.k8OFAR75034903@repoman.freebsd.org> From: Chin-San Huang Date: Sun, 24 Sep 2006 15:10:27 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en publish.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 15:10:28 -0000 chinsan 2006-09-24 15:10:27 UTC FreeBSD doc repository Modified files: en publish.sgml Log: Correct some descriptions about "FreeBSD: introduction and applications". Approved by: delphij (mentor) Revision Changes Path 1.70 +3 -3 www/en/publish.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 15:15:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89ADD16A403; Sun, 24 Sep 2006 15:15:11 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from virtual.micronet.sk (smtp.micronet.sk [84.16.32.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id A43B843D73; Sun, 24 Sep 2006 15:14:41 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by virtual.micronet.sk (Postfix) with ESMTP id F3DF810E528; Sun, 24 Sep 2006 17:14:13 +0200 (CEST) X-Virus-Scanned: by amavisd-new at virtual.micronet.sk Received: from virtual.micronet.sk ([127.0.0.1]) by localhost (virtual.micronet.sk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cCOBvEwVsCqP; Sun, 24 Sep 2006 17:14:12 +0200 (CEST) Received: from danger.mcrn.sk (danger.mcrn.sk [84.16.37.254]) by virtual.micronet.sk (Postfix) with ESMTP id B268A10E523; Sun, 24 Sep 2006 17:14:12 +0200 (CEST) Date: Sun, 24 Sep 2006 17:14:36 +0200 From: Daniel Gerzo Organization: The FreeBSD Project X-Priority: 3 (Normal) Message-ID: <1858205362.20060924171436@rulez.sk> To: Chin-San Huang In-Reply-To: <20060924151030.BF21116A59A@hub.freebsd.org> References: <200609241510.k8OFAR75034903@repoman.freebsd.org> <20060924151030.BF21116A59A@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: [doc] cvs commit: www/en publish.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Gerzo List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Sep 2006 15:15:11 -0000 Hello Chin-San, Sunday, September 24, 2006, 5:10:30 PM, you wrote: > chinsan 2006-09-24 15:10:27 UTC > FreeBSD doc repository > Modified files: > en publish.sgml > Log: > Correct some descriptions about "FreeBSD: introduction and applications". > > Approved by: delphij (mentor) > > - This book was recently published (early 1997) in Taiwan. Its title > + This book was published (early 1997) in Taiwan. Its title > is "FreeBSD: introduction and applications" and the author is > - Jian-Da Li. > + Jian-Da Li(aka. jdli). ^^^^ I think here should be a space :) > > > -- Best regards, Daniel mailto:danger@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Sun Sep 24 15:15:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 167F516A417; Sun, 24 Sep 2006 15:15:53 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AE2743D46; Sun, 24 Sep 2006 15:15:41 +0000 (GMT) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OFFfXD035204; Sun, 24 Sep 2006 15:15:41 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OFFfDo035203; Sun, 24 Sep 2006 15:15:41 GMT (envelope-from chinsan) Message-Id: <200609241515.k8OFFfDo035203@repoman.freebsd.org> From: Chin-San Huang Date: Sun, 24 Sep 2006 15:15:40 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en publish.sgml www/en/gifs twbsd6cover.jpg unleashed6.jpg X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 15:15:53 -0000 chinsan 2006-09-24 15:15:40 UTC FreeBSD doc repository Modified files: en publish.sgml Added files: en/gifs twbsd6cover.jpg unleashed6.jpg Log: Update FreeBSD related publications. Approved by: delphij (mentor) Revision Changes Path 1.1 +56 -0 www/en/gifs/twbsd6cover.jpg (new) 1.1 +29 -0 www/en/gifs/unleashed6.jpg (new) 1.71 +27 -1 www/en/publish.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 15:19:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5AF116A415; Sun, 24 Sep 2006 15:19:56 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B3D443D55; Sun, 24 Sep 2006 15:19:56 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OFJuOv035403; Sun, 24 Sep 2006 15:19:56 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OFJuF0035402; Sun, 24 Sep 2006 15:19:56 GMT (envelope-from arved) Message-Id: <200609241519.k8OFJuF0035402@repoman.freebsd.org> From: Tilman Linneweh Date: Sun, 24 Sep 2006 15:19:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/qcomicbook Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 15:19:56 -0000 arved 2006-09-24 15:19:56 UTC FreeBSD ports repository Modified files: graphics/qcomicbook Makefile distinfo Log: Upgrade to 3.3 Revision Changes Path 1.14 +1 -1 ports/graphics/qcomicbook/Makefile 1.12 +3 -3 ports/graphics/qcomicbook/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 15:23:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75EA716A403; Sun, 24 Sep 2006 15:23:44 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from virtual.micronet.sk (smtp.micronet.sk [84.16.32.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01D0543D45; Sun, 24 Sep 2006 15:23:43 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by virtual.micronet.sk (Postfix) with ESMTP id BE16710E701; Sun, 24 Sep 2006 17:23:16 +0200 (CEST) X-Virus-Scanned: by amavisd-new at virtual.micronet.sk Received: from virtual.micronet.sk ([127.0.0.1]) by localhost (virtual.micronet.sk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yGsnfL3QqspI; Sun, 24 Sep 2006 17:23:15 +0200 (CEST) Received: from danger.mcrn.sk (danger.mcrn.sk [84.16.37.254]) by virtual.micronet.sk (Postfix) with ESMTP id 80F5810E6B4; Sun, 24 Sep 2006 17:23:14 +0200 (CEST) Date: Sun, 24 Sep 2006 17:23:38 +0200 From: Daniel Gerzo Organization: The FreeBSD Project X-Priority: 3 (Normal) Message-ID: <1877817589.20060924172338@rulez.sk> To: Chin-San Huang In-Reply-To: <20060924151555.8423A16A576@hub.freebsd.org> References: <200609241515.k8OFFfDo035203@repoman.freebsd.org> <20060924151555.8423A16A576@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: [doc] cvs commit: www/en publish.sgml www/en/gifs twbsd6cover.jpg unleashed6.jpg X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Gerzo List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Sep 2006 15:23:44 -0000 Hello Chin-San, Sunday, September 24, 2006, 5:15:55 PM, you wrote: > chinsan 2006-09-24 15:15:40 UTC > FreeBSD doc repository > Modified files: > en publish.sgml > Added files: > en/gifs twbsd6cover.jpg unleashed6.jpg > Log: > Update FreeBSD related publications. > > + + src="gifs/unleashed6.jpg" > + alt="FreeBSD 6 Unleashed" width="150" height="150"> > + > + > + FreeBSD 6 Unleashed covers the everything you need to know to use ^^^ I think this one is wrong as well :) Sorry if I act like a nitpicker or something...I hope you understand me :) > + FreeBSD to its fullest potential. > + Jun 7, 2006, + > href="http://www.samspublishing.com/bookstore/product.asp?isbn=0768666341&rl=1"> > + Sams. > + > + -- Best regards, Daniel mailto:danger@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Sun Sep 24 15:29:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2E9516A40F; Sun, 24 Sep 2006 15:29:17 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C17C443D62; Sun, 24 Sep 2006 15:29:13 +0000 (GMT) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OFTDr7035957; Sun, 24 Sep 2006 15:29:13 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OFTDeG035956; Sun, 24 Sep 2006 15:29:13 GMT (envelope-from chinsan) Message-Id: <200609241529.k8OFTDeG035956@repoman.freebsd.org> From: Chin-San Huang Date: Sun, 24 Sep 2006 15:29:13 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en publish.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 15:29:18 -0000 chinsan 2006-09-24 15:29:13 UTC FreeBSD doc repository Modified files: en publish.sgml Log: Fix a typo. :p Noticed by: danger Approved by: delphij (mentor) Revision Changes Path 1.72 +2 -2 www/en/publish.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 15:30:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E83B16A47B; Sun, 24 Sep 2006 15:30:59 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7F8243D82; Sun, 24 Sep 2006 15:30:37 +0000 (GMT) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OFUbkb036060; Sun, 24 Sep 2006 15:30:37 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OFUbkV036059; Sun, 24 Sep 2006 15:30:37 GMT (envelope-from gerald) Message-Id: <200609241530.k8OFUbkV036059@repoman.freebsd.org> From: Gerald Pfeifer Date: Sun, 24 Sep 2006 15:30:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/bibtex2html distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 15:30:59 -0000 gerald 2006-09-24 15:30:37 UTC FreeBSD ports repository Modified files: textproc/bibtex2html distinfo Log: Update to new upstream tarball. The only change is an adjustment of the version reported by the tools to match the official version number (based on a bug report of mine). Revision Changes Path 1.19 +3 -3 ports/textproc/bibtex2html/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 15:50:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D1D116A412; Sun, 24 Sep 2006 15:50:03 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBD2043D46; Sun, 24 Sep 2006 15:50:02 +0000 (GMT) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OFo2ZL037540; Sun, 24 Sep 2006 15:50:02 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OFo2o2037539; Sun, 24 Sep 2006 15:50:02 GMT (envelope-from chinsan) Message-Id: <200609241550.k8OFo2o2037539@repoman.freebsd.org> From: Chin-San Huang Date: Sun, 24 Sep 2006 15:50:02 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en publish.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 15:50:03 -0000 chinsan 2006-09-24 15:50:02 UTC FreeBSD doc repository Modified files: en publish.sgml Log: Apply ISBN and fix typo. Thanks for danger@ again. :) Noticed by: danger Approved by: delphij (mentor) Revision Changes Path 1.73 +4 -4 www/en/publish.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 16:02:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8B4A16A407; Sun, 24 Sep 2006 16:02:32 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7546043D55; Sun, 24 Sep 2006 16:02:32 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OG2WQ9038229; Sun, 24 Sep 2006 16:02:32 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OG2WAn038228; Sun, 24 Sep 2006 16:02:32 GMT (envelope-from emax) Message-Id: <200609241602.k8OG2WAn038228@repoman.freebsd.org> From: Maksim Yevmenkin Date: Sun, 24 Sep 2006 16:02:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/kbdcontrol kbdcontrol.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 16:02:32 -0000 emax 2006-09-24 16:02:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/kbdcontrol kbdcontrol.c Log: MFC: Make op parameter to mux_keyboard() u_int instead of int. This should fix sparc64 messages like Sep 15 11:17:39 peahi kernel: WARNING pid 5477 (kbdcontrol): ioctl sign-extension ioctl ffffffff80244b45 PR: sparc64/96798 Approved by: re (hrs) Revision Changes Path 1.48.8.2 +2 -2 src/usr.sbin/kbdcontrol/kbdcontrol.c From owner-cvs-all@FreeBSD.ORG Sun Sep 24 16:11:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E20A16A407; Sun, 24 Sep 2006 16:11:03 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D218B43D49; Sun, 24 Sep 2006 16:11:02 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OGB2GP039851; Sun, 24 Sep 2006 16:11:02 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OGB2TA039850; Sun, 24 Sep 2006 16:11:02 GMT (envelope-from arved) Message-Id: <200609241611.k8OGB2TA039850@repoman.freebsd.org> From: Tilman Linneweh Date: Sun, 24 Sep 2006 16:11:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/steghide Makefile ports/security/steghide/files patch-src-MHashKeyGen.h patch-src-MHashPP.cc patch-src-MHashPP.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 16:11:03 -0000 arved 2006-09-24 16:11:02 UTC FreeBSD ports repository Modified files: security/steghide Makefile Added files: security/steghide/files patch-src-MHashKeyGen.h patch-src-MHashPP.cc patch-src-MHashPP.h Log: Fix build with gcc 3.4.6 Reported by: pointyhat Revision Changes Path 1.27 +1 -1 ports/security/steghide/Makefile 1.1 +10 -0 ports/security/steghide/files/patch-src-MHashKeyGen.h (new) 1.1 +10 -0 ports/security/steghide/files/patch-src-MHashPP.cc (new) 1.1 +10 -0 ports/security/steghide/files/patch-src-MHashPP.h (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 16:16:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23A0316A40F; Sun, 24 Sep 2006 16:16:41 +0000 (UTC) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1D5143D46; Sun, 24 Sep 2006 16:16:40 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OGGej5040116; Sun, 24 Sep 2006 16:16:40 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OGGeNJ040115; Sun, 24 Sep 2006 16:16:40 GMT (envelope-from clement) Message-Id: <200609241616.k8OGGeNJ040115@repoman.freebsd.org> From: Clement Laforet Date: Sun, 24 Sep 2006 16:16:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/apache22 Makefile pkg-plist ports/www/apache22/files apache.sh apache22.sh.in patch-srclib-apr-buildconf patch-srclib-apr-utils-buildconf patch-srclib:apr:build:buildcheck.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 16:16:41 -0000 clement 2006-09-24 16:16:40 UTC FreeBSD ports repository Modified files: www/apache22 Makefile pkg-plist www/apache22/files patch-srclib:apr:build:buildcheck.sh Added files: www/apache22/files apache22.sh.in patch-srclib-apr-buildconf patch-srclib-apr-utils-buildconf Removed files: www/apache22/files apache.sh Log: - House keeping (update to current standards: USE_RC_SUBR, USE_LDCONFIG,etc.) - Remove python dependency unless apr_dbd_mysql is built [1] Required by: many [1] Revision Changes Path 1.198 +8 -15 ports/www/apache22/Makefile 1.15 +0 -161 ports/www/apache22/files/apache.sh (dead) 1.1 +161 -0 ports/www/apache22/files/apache22.sh.in (new) 1.1 +41 -0 ports/www/apache22/files/patch-srclib-apr-buildconf (new) 1.1 +13 -0 ports/www/apache22/files/patch-srclib-apr-utils-buildconf (new) 1.3 +19 -3 ports/www/apache22/files/patch-srclib:apr:build:buildcheck.sh 1.78 +1 -2 ports/www/apache22/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 16:22:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9728C16A403; Sun, 24 Sep 2006 16:22:38 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5670143D5D; Sun, 24 Sep 2006 16:22:38 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OGMcNt040484; Sun, 24 Sep 2006 16:22:38 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OGMcsi040483; Sun, 24 Sep 2006 16:22:38 GMT (envelope-from acm) Message-Id: <200609241622.k8OGMcsi040483@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sun, 24 Sep 2006 16:22:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/foo2zjs Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 16:22:38 -0000 acm 2006-09-24 16:22:38 UTC FreeBSD ports repository Modified files: print/foo2zjs Makefile distinfo Log: - Update to 20060919 Revision Changes Path 1.11 +1 -1 ports/print/foo2zjs/Makefile 1.10 +3 -3 ports/print/foo2zjs/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 16:23:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54DD616A412; Sun, 24 Sep 2006 16:23:18 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F71143D45; Sun, 24 Sep 2006 16:23:18 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OGNHNJ040577; Sun, 24 Sep 2006 16:23:17 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OGNHgW040576; Sun, 24 Sep 2006 16:23:17 GMT (envelope-from ahze) Message-Id: <200609241623.k8OGNHgW040576@repoman.freebsd.org> From: Michael Johnson Date: Sun, 24 Sep 2006 16:23:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia Makefile ports/multimedia/dirac-reference Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 16:23:18 -0000 ahze 2006-09-24 16:23:17 UTC FreeBSD ports repository Modified files: multimedia Makefile Added files: multimedia/dirac-reference Makefile pkg-plist Log: - Add dirac-reference Programming reference for dirac Revision Changes Path 1.180 +1 -0 ports/multimedia/Makefile 1.1 +23 -0 ports/multimedia/dirac-reference/Makefile (new) 1.1 +1612 -0 ports/multimedia/dirac-reference/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 16:24:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BD7116A403; Sun, 24 Sep 2006 16:24:02 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BFFE43D45; Sun, 24 Sep 2006 16:24:02 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OGO1UM040662; Sun, 24 Sep 2006 16:24:01 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OGO1gB040661; Sun, 24 Sep 2006 16:24:01 GMT (envelope-from ahze) Message-Id: <200609241624.k8OGO1gB040661@repoman.freebsd.org> From: Michael Johnson Date: Sun, 24 Sep 2006 16:24:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 16:24:02 -0000 ahze 2006-09-24 16:24:01 UTC FreeBSD ports repository Modified files: . modules Log: dirac-reference --> ports/multimedia/dirac-reference Revision Changes Path 1.16256 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Sep 24 16:24:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C71616A40F; Sun, 24 Sep 2006 16:24:23 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A45DE43D5F; Sun, 24 Sep 2006 16:24:22 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OGOMKm040701; Sun, 24 Sep 2006 16:24:22 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OGOMtE040700; Sun, 24 Sep 2006 16:24:22 GMT (envelope-from ahze) Message-Id: <200609241624.k8OGOMtE040700@repoman.freebsd.org> From: Michael Johnson Date: Sun, 24 Sep 2006 16:24:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/dirac Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 16:24:23 -0000 ahze 2006-09-24 16:24:22 UTC FreeBSD ports repository Modified files: multimedia/dirac Makefile pkg-plist Log: - Don't install programming reference PORTDOCS since we now have dirac-reference Revision Changes Path 1.11 +5 -14 ports/multimedia/dirac/Makefile 1.6 +28 -1641 ports/multimedia/dirac/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 16:25:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E1AE16A407; Sun, 24 Sep 2006 16:25:19 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFA5043D45; Sun, 24 Sep 2006 16:25:18 +0000 (GMT) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OGPIHK040803; Sun, 24 Sep 2006 16:25:18 GMT (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OGPIKx040802; Sun, 24 Sep 2006 16:25:18 GMT (envelope-from nobutaka) Message-Id: <200609241625.k8OGPIKx040802@repoman.freebsd.org> From: MANTANI Nobutaka Date: Sun, 24 Sep 2006 16:25:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/ufs_copy Makefile distinfo ports/sysutils/ufs_copy/files patch-Makefile patch-ufs_copy.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 16:25:19 -0000 nobutaka 2006-09-24 16:25:18 UTC FreeBSD ports repository Modified files: sysutils/ufs_copy Makefile distinfo Removed files: sysutils/ufs_copy/files patch-Makefile patch-ufs_copy.c Log: Update to 20060921. Submitted by: simokawa Revision Changes Path 1.2 +1 -1 ports/sysutils/ufs_copy/Makefile 1.3 +3 -3 ports/sysutils/ufs_copy/distinfo 1.2 +0 -11 ports/sysutils/ufs_copy/files/patch-Makefile (dead) 1.2 +0 -14 ports/sysutils/ufs_copy/files/patch-ufs_copy.c (dead) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 16:35:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88BE416A412; Sun, 24 Sep 2006 16:35:15 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E087543D53; Sun, 24 Sep 2006 16:35:14 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OGZEgq041248; Sun, 24 Sep 2006 16:35:14 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OGZEOJ041247; Sun, 24 Sep 2006 16:35:14 GMT (envelope-from pav) Message-Id: <200609241635.k8OGZEOJ041247@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 24 Sep 2006 16:35:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/mod_geoip2 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 16:35:15 -0000 pav 2006-09-24 16:35:14 UTC FreeBSD ports repository Modified files: www/mod_geoip2 Makefile distinfo Log: - Update to 1.1.8 PR: ports/103541 Submitted by: Jukka A. Ukkonen (maintainer) Revision Changes Path 1.3 +1 -2 ports/www/mod_geoip2/Makefile 1.3 +3 -3 ports/www/mod_geoip2/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 16:47:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFD6516A403; Sun, 24 Sep 2006 16:47:01 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A8DA43D55; Sun, 24 Sep 2006 16:47:01 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OGl1i1042025; Sun, 24 Sep 2006 16:47:01 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OGl1An041786; Sun, 24 Sep 2006 16:47:01 GMT (envelope-from netchild) Message-Id: <200609241647.k8OGl1An041786@repoman.freebsd.org> From: Alexander Leidinger Date: Sun, 24 Sep 2006 16:47:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/lame Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 16:47:02 -0000 netchild 2006-09-24 16:47:00 UTC FreeBSD ports repository Modified files: audio/lame Makefile distinfo Log: Update to 3.97. Revision Changes Path 1.43 +1 -1 ports/audio/lame/Makefile 1.18 +3 -3 ports/audio/lame/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 16:47:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69D7F16A412; Sun, 24 Sep 2006 16:47:39 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFB2B43D58; Sun, 24 Sep 2006 16:47:38 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OGlcmR049785; Sun, 24 Sep 2006 16:47:38 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OGlc43049784; Sun, 24 Sep 2006 16:47:38 GMT (envelope-from novel) Message-Id: <200609241647.k8OGlc43049784@repoman.freebsd.org> From: Roman Bogorodskiy Date: Sun, 24 Sep 2006 16:47:38 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/projects/c99 index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 16:47:39 -0000 novel 2006-09-24 16:47:38 UTC FreeBSD doc repository (ports committer) Modified files: en/projects/c99 index.sgml Log: - Mark mailx(1) item as 'done' - Mention PR with a patch adding '-p' arg for 'jobs' builtin - Add yet another fuser(1) PR Approved by: pav Revision Changes Path 1.107 +7 -5 www/en/projects/c99/index.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 17:01:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 022EB16A47C; Sun, 24 Sep 2006 17:01:16 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7D4F43D45; Sun, 24 Sep 2006 17:01:15 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OH1FpR050458; Sun, 24 Sep 2006 17:01:15 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OH1Ft8050457; Sun, 24 Sep 2006 17:01:15 GMT (envelope-from pav) Message-Id: <200609241701.k8OH1Ft8050457@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 24 Sep 2006 17:01:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/dkim-milter Makefile distinfo pkg-install pkg-message pkg-message.postfix ports/mail/dkim-milter/files milter-dkim.sh.in patch-libar-Makefile.m4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 17:01:16 -0000 pav 2006-09-24 17:01:15 UTC FreeBSD ports repository Modified files: mail/dkim-milter Makefile distinfo pkg-message mail/dkim-milter/files milter-dkim.sh.in Added files: mail/dkim-milter pkg-install pkg-message.postfix Removed files: mail/dkim-milter/files patch-libar-Makefile.m4 Log: - Update to 0.5.2 - Add an option for Postfix milter - Run under unpriviledged user PR: ports/103404, ports/103417 Submitted by: Hirohisa Yamaguchi (maintainer) Revision Changes Path 1.8 +16 -2 ports/mail/dkim-milter/Makefile 1.6 +3 -3 ports/mail/dkim-milter/distinfo 1.4 +29 -9 ports/mail/dkim-milter/files/milter-dkim.sh.in 1.2 +0 -10 ports/mail/dkim-milter/files/patch-libar-Makefile.m4 (dead) 1.1 +18 -0 ports/mail/dkim-milter/pkg-install (new) 1.3 +1 -1 ports/mail/dkim-milter/pkg-message 1.1 +16 -0 ports/mail/dkim-milter/pkg-message.postfix (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 17:07:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF4EB16A403; Sun, 24 Sep 2006 17:07:27 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A8B843D45; Sun, 24 Sep 2006 17:07:27 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OH7RH5051984; Sun, 24 Sep 2006 17:07:27 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OH7R3v051983; Sun, 24 Sep 2006 17:07:27 GMT (envelope-from pav) Message-Id: <200609241707.k8OH7R3v051983@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 24 Sep 2006 17:07:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/comms/thebridge Makefile distinfo pkg-plist ports/comms/thebridge/files tbd.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 17:07:27 -0000 pav 2006-09-24 17:07:27 UTC FreeBSD ports repository Modified files: comms/thebridge Makefile distinfo pkg-plist Added files: comms/thebridge/files tbd.in Log: - Update to 0.8.3 PR: ports/103480 Submitted by: Takefu Kenji (maintainer) Revision Changes Path 1.5 +2 -2 ports/comms/thebridge/Makefile 1.4 +3 -3 ports/comms/thebridge/distinfo 1.1 +18 -0 ports/comms/thebridge/files/tbd.in (new) 1.2 +0 -1 ports/comms/thebridge/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 17:31:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 932AF16A525; Sun, 24 Sep 2006 17:31:05 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C80543D53; Sun, 24 Sep 2006 17:31:05 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OHV5iU053133; Sun, 24 Sep 2006 17:31:05 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OHV5mZ053132; Sun, 24 Sep 2006 17:31:05 GMT (envelope-from rwatson) Message-Id: <200609241731.k8OHV5mZ053132@repoman.freebsd.org> From: Robert Watson Date: Sun, 24 Sep 2006 17:31:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc/rc.d auditd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 17:31:05 -0000 rwatson 2006-09-24 17:31:04 UTC FreeBSD src repository Modified files: etc/rc.d auditd Log: Sleep for one second after calling audit -t to give the audit daemon a chance to actually terminate the audit service and exit. Otherwise, on an rc.d/auditd restart, the new audit daemon instance may try to start auditing while the previous session is still running. Likewise, this ensures a chance for auditd to terminate the audit trail at system shutdown. Perhaps more ideally, the script would wait synchronously for auditd to exit rather than for an arbitrary but short period of time. MFC after: 3 days Obtained from: TrustedBSD Project Revision Changes Path 1.3 +1 -0 src/etc/rc.d/auditd From owner-cvs-all@FreeBSD.ORG Sun Sep 24 17:31:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1AA216A4A7; Sun, 24 Sep 2006 17:31:35 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BAAB43D53; Sun, 24 Sep 2006 17:31:35 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OHVZpx053234; Sun, 24 Sep 2006 17:31:35 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OHVZwr053233; Sun, 24 Sep 2006 17:31:35 GMT (envelope-from acm) Message-Id: <200609241731.k8OHVZwr053233@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sun, 24 Sep 2006 17:31:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/opera Makefile distinfo ports/www/opera/files patch-ini_pluginpath.ini X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 17:31:35 -0000 acm 2006-09-24 17:31:35 UTC FreeBSD ports repository Modified files: www/opera Makefile distinfo www/opera/files patch-ini_pluginpath.ini Log: - Update to 9.02.20060919 PR: ports/103559 Submitted by: Arjan van Leeuwen (maintainer) Revision Changes Path 1.52 +3 -3 ports/www/opera/Makefile 1.38 +9 -9 ports/www/opera/distinfo 1.2 +10 -14 ports/www/opera/files/patch-ini_pluginpath.ini From owner-cvs-all@FreeBSD.ORG Sun Sep 24 17:31:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33B4416A4CE; Sun, 24 Sep 2006 17:31:50 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEE6743D53; Sun, 24 Sep 2006 17:31:49 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OHVni7053284; Sun, 24 Sep 2006 17:31:49 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OHVn8U053283; Sun, 24 Sep 2006 17:31:49 GMT (envelope-from pav) Message-Id: <200609241731.k8OHVn8U053283@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 24 Sep 2006 17:31:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/xalan-c Makefile distinfo pkg-plist ports/textproc/xalan-c/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 17:31:50 -0000 pav 2006-09-24 17:31:49 UTC FreeBSD ports repository Modified files: textproc/xalan-c Makefile distinfo pkg-plist Removed files: textproc/xalan-c/files patch-aa Log: - Update to 1.10.0 PR: ports/103512 Submitted by: KIMURA Yasuhiro Revision Changes Path 1.16 +2 -3 ports/textproc/xalan-c/Makefile 1.6 +6 -6 ports/textproc/xalan-c/distinfo 1.4 +0 -112 ports/textproc/xalan-c/files/patch-aa (dead) 1.6 +13 -19 ports/textproc/xalan-c/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 17:37:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BFFD16A403; Sun, 24 Sep 2006 17:37:08 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBB3F43D6D; Sun, 24 Sep 2006 17:37:03 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OHb3tJ053586; Sun, 24 Sep 2006 17:37:03 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OHb3AY053585; Sun, 24 Sep 2006 17:37:03 GMT (envelope-from netchild) Message-Id: <200609241737.k8OHb3AY053585@repoman.freebsd.org> From: Alexander Leidinger Date: Sun, 24 Sep 2006 17:37:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pcm mixer.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 17:37:08 -0000 netchild 2006-09-24 17:37:03 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm mixer.c Log: Fix uninitialized variable warning. Submitted by: dhw Reviewed by: ryanb Revision Changes Path 1.51 +1 -0 src/sys/dev/sound/pcm/mixer.c From owner-cvs-all@FreeBSD.ORG Sun Sep 24 17:46:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC2B716A417; Sun, 24 Sep 2006 17:46:55 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1048B43D78; Sun, 24 Sep 2006 17:46:54 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OHkrbE054121; Sun, 24 Sep 2006 17:46:53 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OHkrV7054120; Sun, 24 Sep 2006 17:46:53 GMT (envelope-from miwi) Message-Id: <200609241746.k8OHkrV7054120@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Sep 2006 17:46:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/py-graphviz Makefile ports/graphics/py-graphviz/files patch-setup.py X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 17:46:55 -0000 miwi 2006-09-24 17:46:53 UTC FreeBSD ports repository Modified files: graphics/py-graphviz Makefile graphics/py-graphviz/files patch-setup.py Log: - Fix place of install when devel/py-setuptools is installed - Pass maintainership to submitter PR: ports/103564 Submitted by: Soeren Straarup Revision Changes Path 1.13 +1 -3 ports/graphics/py-graphviz/Makefile 1.2 +18 -6 ports/graphics/py-graphviz/files/patch-setup.py From owner-cvs-all@FreeBSD.ORG Sun Sep 24 18:24:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52B1616A403; Sun, 24 Sep 2006 18:24:10 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F4B443D4C; Sun, 24 Sep 2006 18:24:10 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OIOAkD057021; Sun, 24 Sep 2006 18:24:10 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OIO9SJ057016; Sun, 24 Sep 2006 18:24:09 GMT (envelope-from pav) Message-Id: <200609241824.k8OIO9SJ057016@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 24 Sep 2006 18:24:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/science/afni Makefile distinfo pkg-descr pkg-message pkg-plist ports/science/afni/files Makefile.FreeBSD_PORT pkg-message.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 18:24:10 -0000 pav 2006-09-24 18:24:09 UTC FreeBSD ports repository Modified files: science/afni Makefile distinfo pkg-descr pkg-plist Added files: science/afni pkg-message science/afni/files Makefile.FreeBSD_PORT Removed files: science/afni/files pkg-message.in Log: - Fix plugins - Update to 2006.06.30.1332 PR: ports/103318 Submitted by: Jason Bacon (maintainer) Revision Changes Path 1.8 +20 -16 ports/science/afni/Makefile 1.6 +18 -21 ports/science/afni/distinfo 1.1 +108 -0 ports/science/afni/files/Makefile.FreeBSD_PORT (new) 1.2 +0 -7 ports/science/afni/files/pkg-message.in (dead) 1.2 +1 -1 ports/science/afni/pkg-descr 1.1 +12 -0 ports/science/afni/pkg-message (new) 1.4 +104 -95 ports/science/afni/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 18:37:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A08716A403; Sun, 24 Sep 2006 18:37:30 +0000 (UTC) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (nagual.pp.ru [194.87.13.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CD7D43D46; Sun, 24 Sep 2006 18:37:29 +0000 (GMT) (envelope-from ache@nagual.pp.ru) Received: from nagual.pp.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.13.8/8.13.8) with ESMTP id k8OIbSPV007909; Sun, 24 Sep 2006 22:37:28 +0400 (MSD) (envelope-from ache@nagual.pp.ru) Received: (from ache@localhost) by nagual.pp.ru (8.13.8/8.13.8/Submit) id k8OIbRVx007908; Sun, 24 Sep 2006 22:37:27 +0400 (MSD) (envelope-from ache) Date: Sun, 24 Sep 2006 22:37:27 +0400 From: Andrey Chernov To: Robert Watson Message-ID: <20060924183727.GA7823@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Robert Watson , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200609241731.k8OHV5mZ053132@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609241731.k8OHV5mZ053132@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/rc.d auditd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 18:37:30 -0000 On Sun, Sep 24, 2006 at 05:31:04PM +0000, Robert Watson wrote: > rwatson 2006-09-24 17:31:04 UTC > > FreeBSD src repository > > Modified files: > etc/rc.d auditd > Log: > Sleep for one second after calling audit -t to give the audit daemon a > chance to actually terminate the audit service and exit. Otherwise, on > an rc.d/auditd restart, the new audit daemon instance may try to start > auditing while the previous session is still running. Likewise, this > ensures a chance for auditd to terminate the audit trail at system > shutdown. You can't be sure about 1 second (or any N seconds) and should choouse another method like pid file or pipe file or some sysctl value presence checking loop. -- http://ache.pp.ru/ From owner-cvs-all@FreeBSD.ORG Sun Sep 24 18:59:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 572B716A403; Sun, 24 Sep 2006 18:59:06 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A204D43D5E; Sun, 24 Sep 2006 18:59:05 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OIx5fv060246; Sun, 24 Sep 2006 18:59:05 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OIx5fm060245; Sun, 24 Sep 2006 18:59:05 GMT (envelope-from hrs) Message-Id: <200609241859.k8OIx5fm060245@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 24 Sep 2006 18:59:05 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/pl_PL.ISO8859-2/books Makefile Makefile.inc doc/pl_PL.ISO8859-2/books/handbook Makefile appendix.decl book.sgml chapter.decl chapters.ent colophon.sgml txtfiles.ent doc/pl_PL.ISO8859-2/books/handbook/advanced-networking Makefile chapter.sgml ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 18:59:06 -0000 hrs 2006-09-24 18:59:05 UTC FreeBSD doc repository Added files: pl_PL.ISO8859-2/books Makefile Makefile.inc pl_PL.ISO8859-2/books/handbook Makefile appendix.decl book.sgml chapter.decl chapters.ent colophon.sgml txtfiles.ent pl_PL.ISO8859-2/books/handbook/advanced-networking Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/audit Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/basics Makefile chapter.sgml example-dir1.dot example-dir2.dot example-dir3.dot example-dir4.dot example-dir5.dot pl_PL.ISO8859-2/books/handbook/bibliography Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/boot Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/config Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/cutting-edge Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/desktop Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/disks Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/eresources Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/firewalls Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/geom Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/install Makefile chapter.sgml example-dir1.dot example-dir2.dot example-dir3.dot example-dir4.dot example-dir5.dot pl_PL.ISO8859-2/books/handbook/introduction Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/kernelconfig Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/l10n Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/linuxemu Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/mac Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/mail Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/mirrors Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/multimedia Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/network-servers Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/pgpkeys Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/ports Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/ppp-and-slip Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/preface preface.sgml pl_PL.ISO8859-2/books/handbook/printing Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/security Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/serialcomms Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/users Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/vinum Makefile chapter.sgml pl_PL.ISO8859-2/books/handbook/x11 Makefile chapter.sgml Log: Import Polish translation of the FreeBSD Handbook. While some chapters are not translated now, they will be updated soon. Submitted by: Cezary Morga Revision Changes Path 1.1 +18 -0 doc/pl_PL.ISO8859-2/books/Makefile (new) 1.1 +6 -0 doc/pl_PL.ISO8859-2/books/Makefile.inc (new) 1.1 +256 -0 doc/pl_PL.ISO8859-2/books/handbook/Makefile (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/advanced-networking/Makefile (new) 1.1 +4707 -0 doc/pl_PL.ISO8859-2/books/handbook/advanced-networking/chapter.sgml (new) 1.1 +2 -0 doc/pl_PL.ISO8859-2/books/handbook/appendix.decl (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/audit/Makefile (new) 1.1 +570 -0 doc/pl_PL.ISO8859-2/books/handbook/audit/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/basics/Makefile (new) 1.1 +2585 -0 doc/pl_PL.ISO8859-2/books/handbook/basics/chapter.sgml (new) 1.1 +7 -0 doc/pl_PL.ISO8859-2/books/handbook/basics/example-dir1.dot (new) 1.1 +8 -0 doc/pl_PL.ISO8859-2/books/handbook/basics/example-dir2.dot (new) 1.1 +8 -0 doc/pl_PL.ISO8859-2/books/handbook/basics/example-dir3.dot (new) 1.1 +9 -0 doc/pl_PL.ISO8859-2/books/handbook/basics/example-dir4.dot (new) 1.1 +9 -0 doc/pl_PL.ISO8859-2/books/handbook/basics/example-dir5.dot (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/bibliography/Makefile (new) 1.1 +655 -0 doc/pl_PL.ISO8859-2/books/handbook/bibliography/chapter.sgml (new) 1.1 +343 -0 doc/pl_PL.ISO8859-2/books/handbook/book.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/boot/Makefile (new) 1.1 +820 -0 doc/pl_PL.ISO8859-2/books/handbook/boot/chapter.sgml (new) 1.1 +2 -0 doc/pl_PL.ISO8859-2/books/handbook/chapter.decl (new) 1.1 +60 -0 doc/pl_PL.ISO8859-2/books/handbook/chapters.ent (new) 1.1 +30 -0 doc/pl_PL.ISO8859-2/books/handbook/colophon.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/config/Makefile (new) 1.1 +3223 -0 doc/pl_PL.ISO8859-2/books/handbook/config/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/cutting-edge/Makefile (new) 1.1 +1732 -0 doc/pl_PL.ISO8859-2/books/handbook/cutting-edge/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/desktop/Makefile (new) 1.1 +1117 -0 doc/pl_PL.ISO8859-2/books/handbook/desktop/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/disks/Makefile (new) 1.1 +4061 -0 doc/pl_PL.ISO8859-2/books/handbook/disks/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/eresources/Makefile (new) 1.1 +1781 -0 doc/pl_PL.ISO8859-2/books/handbook/eresources/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/firewalls/Makefile (new) 1.1 +3339 -0 doc/pl_PL.ISO8859-2/books/handbook/firewalls/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/geom/Makefile (new) 1.1 +466 -0 doc/pl_PL.ISO8859-2/books/handbook/geom/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/install/Makefile (new) 1.1 +5393 -0 doc/pl_PL.ISO8859-2/books/handbook/install/chapter.sgml (new) 1.1 +7 -0 doc/pl_PL.ISO8859-2/books/handbook/install/example-dir1.dot (new) 1.1 +8 -0 doc/pl_PL.ISO8859-2/books/handbook/install/example-dir2.dot (new) 1.1 +8 -0 doc/pl_PL.ISO8859-2/books/handbook/install/example-dir3.dot (new) 1.1 +9 -0 doc/pl_PL.ISO8859-2/books/handbook/install/example-dir4.dot (new) 1.1 +9 -0 doc/pl_PL.ISO8859-2/books/handbook/install/example-dir5.dot (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/introduction/Makefile (new) 1.1 +971 -0 doc/pl_PL.ISO8859-2/books/handbook/introduction/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/kernelconfig/Makefile (new) 1.1 +1432 -0 doc/pl_PL.ISO8859-2/books/handbook/kernelconfig/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/l10n/Makefile (new) 1.1 +940 -0 doc/pl_PL.ISO8859-2/books/handbook/l10n/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/linuxemu/Makefile (new) 1.1 +3357 -0 doc/pl_PL.ISO8859-2/books/handbook/linuxemu/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/mac/Makefile (new) 1.1 +2182 -0 doc/pl_PL.ISO8859-2/books/handbook/mac/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/mail/Makefile (new) 1.1 +2323 -0 doc/pl_PL.ISO8859-2/books/handbook/mail/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/mirrors/Makefile (new) 1.1 +3207 -0 doc/pl_PL.ISO8859-2/books/handbook/mirrors/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/multimedia/Makefile (new) 1.1 +1798 -0 doc/pl_PL.ISO8859-2/books/handbook/multimedia/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/network-servers/Makefile (new) 1.1 +4764 -0 doc/pl_PL.ISO8859-2/books/handbook/network-servers/chapter.sgml (new) 1.1 +19 -0 doc/pl_PL.ISO8859-2/books/handbook/pgpkeys/Makefile (new) 1.1 +50 -0 doc/pl_PL.ISO8859-2/books/handbook/pgpkeys/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/ports/Makefile (new) 1.1 +1489 -0 doc/pl_PL.ISO8859-2/books/handbook/ports/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/ppp-and-slip/Makefile (new) 1.1 +3173 -0 doc/pl_PL.ISO8859-2/books/handbook/ppp-and-slip/chapter.sgml (new) 1.1 +612 -0 doc/pl_PL.ISO8859-2/books/handbook/preface/preface.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/printing/Makefile (new) 1.1 +4876 -0 doc/pl_PL.ISO8859-2/books/handbook/printing/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/security/Makefile (new) 1.1 +4987 -0 doc/pl_PL.ISO8859-2/books/handbook/security/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/serialcomms/Makefile (new) 1.1 +2857 -0 doc/pl_PL.ISO8859-2/books/handbook/serialcomms/chapter.sgml (new) 1.1 +72 -0 doc/pl_PL.ISO8859-2/books/handbook/txtfiles.ent (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/users/Makefile (new) 1.1 +1040 -0 doc/pl_PL.ISO8859-2/books/handbook/users/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/vinum/Makefile (new) 1.1 +1449 -0 doc/pl_PL.ISO8859-2/books/handbook/vinum/chapter.sgml (new) 1.1 +15 -0 doc/pl_PL.ISO8859-2/books/handbook/x11/Makefile (new) 1.1 +1680 -0 doc/pl_PL.ISO8859-2/books/handbook/x11/chapter.sgml (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 18:59:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0EFF16A523; Sun, 24 Sep 2006 18:59:24 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6274243D5A; Sun, 24 Sep 2006 18:59:24 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OIxOtV060286; Sun, 24 Sep 2006 18:59:24 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OIxOSU060285; Sun, 24 Sep 2006 18:59:24 GMT (envelope-from hrs) Message-Id: <200609241859.k8OIxOSU060285@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 24 Sep 2006 18:59:24 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/pl_PL.ISO8859-2/articles/new-users article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 18:59:25 -0000 hrs 2006-09-24 18:59:24 UTC FreeBSD doc repository Modified files: pl_PL.ISO8859-2/articles/new-users article.sgml Log: Put a band-aid to unbreak the build. Revision Changes Path 1.2 +2 -2 doc/pl_PL.ISO8859-2/articles/new-users/article.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 19:21:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF7B116A40F; Sun, 24 Sep 2006 19:21:41 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7430D43D53; Sun, 24 Sep 2006 19:21:41 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OJLf5g062820; Sun, 24 Sep 2006 19:21:41 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OJLfDB062819; Sun, 24 Sep 2006 19:21:41 GMT (envelope-from bms) Message-Id: <200609241921.k8OJLfDB062819@repoman.freebsd.org> From: Bruce M Simpson Date: Sun, 24 Sep 2006 19:21:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/xorp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 19:21:41 -0000 bms 2006-09-24 19:21:41 UTC FreeBSD ports repository (src committer) Modified files: net/xorp Makefile Log: Fix build; including --without-snmp confuses the top-level configure script. Revision Changes Path 1.2 +0 -2 ports/net/xorp/Makefile From owner-cvs-all@FreeBSD.ORG Sun Sep 24 19:24:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED6CD16A492; Sun, 24 Sep 2006 19:24:26 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB17B43D45; Sun, 24 Sep 2006 19:24:26 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OJOQ3v063005; Sun, 24 Sep 2006 19:24:26 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OJOQOr063004; Sun, 24 Sep 2006 19:24:26 GMT (envelope-from imp) Message-Id: <200609241924.k8OJOQOr063004@repoman.freebsd.org> From: Warner Losh Date: Sun, 24 Sep 2006 19:24:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/i386 busdma_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 19:24:27 -0000 imp 2006-09-24 19:24:26 UTC FreeBSD src repository Modified files: sys/i386/i386 busdma_machdep.c Log: Add a newline to the printf. Revision Changes Path 1.83 +1 -1 src/sys/i386/i386/busdma_machdep.c From owner-cvs-all@FreeBSD.ORG Sun Sep 24 19:30:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 832BF16A415; Sun, 24 Sep 2006 19:30:52 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 102C043D70; Sun, 24 Sep 2006 19:30:47 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OJUkKB063400; Sun, 24 Sep 2006 19:30:46 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OJUkqE063398; Sun, 24 Sep 2006 19:30:46 GMT (envelope-from miwi) Message-Id: <200609241930.k8OJUkqE063398@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Sep 2006 19:30:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/pwcbsd Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 19:30:52 -0000 miwi 2006-09-24 19:30:46 UTC FreeBSD ports repository Modified files: multimedia/pwcbsd Makefile distinfo Log: - Update to pwcbsd-1.3.1 - Fixes build with new SDL port - Minor bugfixes PR: ports/103562 Submitted by: Raaf (maintainer) Revision Changes Path 1.7 +6 -3 ports/multimedia/pwcbsd/Makefile 1.4 +3 -3 ports/multimedia/pwcbsd/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 19:31:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60B8F16A494; Sun, 24 Sep 2006 19:31:54 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E607343D5D; Sun, 24 Sep 2006 19:31:47 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OJVUoQ063484; Sun, 24 Sep 2006 19:31:30 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OJVU4b063483; Sun, 24 Sep 2006 19:31:30 GMT (envelope-from simon) Message-Id: <200609241931.k8OJVU4b063483@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 24 Sep 2006 19:31:30 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en publish.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 19:31:54 -0000 simon 2006-09-24 19:31:30 UTC FreeBSD doc repository Modified files: en publish.sgml Log: Unbreak build: & should be written as &. Pointy hat to: delphij Revision Changes Path 1.74 +2 -2 www/en/publish.sgml From owner-cvs-all@FreeBSD.ORG Sun Sep 24 19:48:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F9D916A407; Sun, 24 Sep 2006 19:48:39 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAD5343D4C; Sun, 24 Sep 2006 19:48:38 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 81C0A46B0A; Sun, 24 Sep 2006 15:48:38 -0400 (EDT) Date: Sun, 24 Sep 2006 20:48:38 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Andrey Chernov In-Reply-To: <20060924183727.GA7823@nagual.pp.ru> Message-ID: <20060924204729.V42437@fledge.watson.org> References: <200609241731.k8OHV5mZ053132@repoman.freebsd.org> <20060924183727.GA7823@nagual.pp.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/rc.d auditd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 19:48:39 -0000 On Sun, 24 Sep 2006, Andrey Chernov wrote: > On Sun, Sep 24, 2006 at 05:31:04PM +0000, Robert Watson wrote: >> rwatson 2006-09-24 17:31:04 UTC >> >> FreeBSD src repository >> >> Modified files: >> etc/rc.d auditd >> Log: >> Sleep for one second after calling audit -t to give the audit daemon a >> chance to actually terminate the audit service and exit. Otherwise, on >> an rc.d/auditd restart, the new audit daemon instance may try to start >> auditing while the previous session is still running. Likewise, this >> ensures a chance for auditd to terminate the audit trail at system >> shutdown. > > You can't be sure about 1 second (or any N seconds) and should choouse > another method like pid file or pipe file or some sysctl value presence > checking loop. Yes, the comment you helpfully cut from my commit message in your reply said pretty much exactly that. However, fixing this is non-trivial, and not something that will happen by 6.2, hence the workaround. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Sun Sep 24 19:48:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E301B16A535; Sun, 24 Sep 2006 19:48:48 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DF5443D4C; Sun, 24 Sep 2006 19:48:48 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OJmm5Z064228; Sun, 24 Sep 2006 19:48:48 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OJmm7F064227; Sun, 24 Sep 2006 19:48:48 GMT (envelope-from miwi) Message-Id: <200609241948.k8OJmm7F064227@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Sep 2006 19:48:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc Makefile ports/textproc/p5-XML-FOAF Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 19:48:49 -0000 miwi 2006-09-24 19:48:48 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-XML-FOAF Makefile distinfo pkg-descr pkg-plist Log: Parse FOAF (Friend of a Friend) data Author: Benjamin Trott WWW: http://search.cpan.org/~btrott/XML-FOAF-0.03/ PR: ports/103579 Submitted by: markun@onohara.to Revision Changes Path 1.1061 +1 -0 ports/textproc/Makefile 1.1 +35 -0 ports/textproc/p5-XML-FOAF/Makefile (new) 1.1 +3 -0 ports/textproc/p5-XML-FOAF/distinfo (new) 1.1 +4 -0 ports/textproc/p5-XML-FOAF/pkg-descr (new) 1.1 +9 -0 ports/textproc/p5-XML-FOAF/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 19:49:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC54E16A4A7; Sun, 24 Sep 2006 19:49:19 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A77443D70; Sun, 24 Sep 2006 19:49:19 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OJnJTF064270; Sun, 24 Sep 2006 19:49:19 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OJnJcd064269; Sun, 24 Sep 2006 19:49:19 GMT (envelope-from miwi) Message-Id: <200609241949.k8OJnJcd064269@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Sep 2006 19:49:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 19:49:19 -0000 miwi 2006-09-24 19:49:19 UTC FreeBSD ports repository Modified files: . modules Log: p5-XML-FOAF --> ports/textproc/p5-XML-FOAF Revision Changes Path 1.16257 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Sep 24 19:52:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3595C16A40F; Sun, 24 Sep 2006 19:52:00 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0283143D53; Sun, 24 Sep 2006 19:52:00 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OJpxZS064535; Sun, 24 Sep 2006 19:51:59 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OJpxM0064534; Sun, 24 Sep 2006 19:51:59 GMT (envelope-from miwi) Message-Id: <200609241951.k8OJpxM0064534@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Sep 2006 19:51:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc Makefile ports/textproc/p5-Text-Language-Guess Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 19:52:00 -0000 miwi 2006-09-24 19:51:59 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Text-Language-Guess Makefile distinfo pkg-descr pkg-plist Log: Text::Language::Guess guesses a document's language. Its implementation is simple: Using "Text::ExtractWords" and "Lingua::StopWords" from CPAN, it determines how many of the known stopwords the document contains for each language supported by "Lingua::StopWords". Each word in the document recognized as stopword of a particular language scores one point for this language. The "language_guess()" function takes a document as a parameter and returns the abbreviation of the language that it is most likely written in. Author: Mike Schilli WWW: http://search.cpan.org/~mschilli/Text-Language-Guess-0.02/ PR: ports/103571 Submitted by: Masahiro Teramoto Revision Changes Path 1.1062 +1 -0 ports/textproc/Makefile 1.1 +34 -0 ports/textproc/p5-Text-Language-Guess/Makefile (new) 1.1 +3 -0 ports/textproc/p5-Text-Language-Guess/distinfo (new) 1.1 +14 -0 ports/textproc/p5-Text-Language-Guess/pkg-descr (new) 1.1 +9 -0 ports/textproc/p5-Text-Language-Guess/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 19:52:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3CDE16A412; Sun, 24 Sep 2006 19:52:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A383343D53; Sun, 24 Sep 2006 19:52:31 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OJqV3Y064583; Sun, 24 Sep 2006 19:52:31 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OJqVS6064582; Sun, 24 Sep 2006 19:52:31 GMT (envelope-from miwi) Message-Id: <200609241952.k8OJqVS6064582@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Sep 2006 19:52:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 19:52:32 -0000 miwi 2006-09-24 19:52:31 UTC FreeBSD ports repository Modified files: . modules Log: p5-Text-Language-Guess --> ports/textproc/p5-Text-Language-Guess Revision Changes Path 1.16258 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Sep 24 20:13:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C127D16A403; Sun, 24 Sep 2006 20:13:29 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 909F543D53; Sun, 24 Sep 2006 20:13:29 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OKDT6V066779; Sun, 24 Sep 2006 20:13:29 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OKDTPd066778; Sun, 24 Sep 2006 20:13:29 GMT (envelope-from miwi) Message-Id: <200609242013.k8OKDTPd066778@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Sep 2006 20:13:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www Makefile ports/www/netoffice Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 20:13:29 -0000 miwi 2006-09-24 20:13:29 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/netoffice Makefile distinfo pkg-descr pkg-plist Log: netOffice is a free web based project-management environment written in php/mySQL. netOffice allows managing and sharing information about teams. WWW: http://netoffice.sourceforge.net/modules/news/ PR: ports/103475 Submitted by: Marcelo Araujo" Revision Changes Path 1.1571 +1 -0 ports/www/Makefile 1.1 +31 -0 ports/www/netoffice/Makefile (new) 1.1 +3 -0 ports/www/netoffice/distinfo (new) 1.1 +8 -0 ports/www/netoffice/pkg-descr (new) 1.1 +893 -0 ports/www/netoffice/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 20:13:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DE4D16A519; Sun, 24 Sep 2006 20:13:55 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC27D43D5A; Sun, 24 Sep 2006 20:13:54 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OKDsLV066830; Sun, 24 Sep 2006 20:13:54 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OKDscM066829; Sun, 24 Sep 2006 20:13:54 GMT (envelope-from miwi) Message-Id: <200609242013.k8OKDscM066829@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Sep 2006 20:13:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 20:13:55 -0000 miwi 2006-09-24 20:13:54 UTC FreeBSD ports repository Modified files: . modules Log: netoffice --> ports/www/netoffice Revision Changes Path 1.16259 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Sep 24 20:18:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B39FF16A403; Sun, 24 Sep 2006 20:18:15 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5ED3643D49; Sun, 24 Sep 2006 20:18:15 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OKIFwU067060; Sun, 24 Sep 2006 20:18:15 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OKIFWK067059; Sun, 24 Sep 2006 20:18:15 GMT (envelope-from sat) Message-Id: <200609242018.k8OKIFWK067059@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 24 Sep 2006 20:18:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security Makefile ports/security/shttpscanner Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 20:18:15 -0000 sat 2006-09-24 20:18:15 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/shttpscanner Makefile distinfo pkg-descr Log: Add port security/shttpscanner: Simple HTTP Scanner is a creation made for web site pen testing. You can check for directories and files on the remote web server and get some server information like the webserver running. WWW: http://sourceforge.net/projects/shttpscanner/ Author: Paisterist Revision Changes Path 1.817 +1 -0 ports/security/Makefile 1.1 +34 -0 ports/security/shttpscanner/Makefile (new) 1.1 +3 -0 ports/security/shttpscanner/distinfo (new) 1.1 +6 -0 ports/security/shttpscanner/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 20:19:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80D8616A415; Sun, 24 Sep 2006 20:19:01 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CC4843D5C; Sun, 24 Sep 2006 20:19:00 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OKJ0pU067105; Sun, 24 Sep 2006 20:19:00 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OKJ0Y5067104; Sun, 24 Sep 2006 20:19:00 GMT (envelope-from sat) Message-Id: <200609242019.k8OKJ0Y5067104@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sun, 24 Sep 2006 20:19:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 20:19:01 -0000 sat 2006-09-24 20:19:00 UTC FreeBSD ports repository Modified files: . modules Log: shttpscanner --> ports/security/shttpscanner Revision Changes Path 1.16260 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Sep 24 21:12:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E59AE16A415; Sun, 24 Sep 2006 21:12:48 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A922D43D49; Sun, 24 Sep 2006 21:12:47 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OLClNT083096; Sun, 24 Sep 2006 21:12:47 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OLClbE083095; Sun, 24 Sep 2006 21:12:47 GMT (envelope-from kris) Message-Id: <200609242112.k8OLClbE083095@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 24 Sep 2006 21:12:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-toolkits/gtkada-devel Makefile distinfo pkg-descr pkg-plist ports/x11-toolkits/gtkada-devel/files patch-docs::gtkada_rm::Makefile.in patch-docs::gtkada_ug::Makefile.in patch-src::Makefile.in patch-src::glade::Makefile.in patch-src::gnome::Makefile.in patch-src::gtkextra::Makefile.in ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 21:12:49 -0000 kris 2006-09-24 21:12:47 UTC FreeBSD ports repository Removed files: x11-toolkits/gtkada-devel Makefile distinfo pkg-descr pkg-plist x11-toolkits/gtkada-devel/files patch-docs::gtkada_rm::Makefile.in patch-docs::gtkada_ug::Makefile.in patch-src::Makefile.in patch-src::glade::Makefile.in patch-src::gnome::Makefile.in patch-src::gtkextra::Makefile.in patch-src::opengl::Makefile.in patch-src::pixbuf::Makefile.in patch-testgtk::Makefile.in Log: Remove repo-copy in progress that remains uncompleted by the requesting committer after more than 3 months. Pointy hat to: itetcu Revision Changes Path 1.16 +0 -45 ports/x11-toolkits/gtkada-devel/Makefile (dead) 1.5 +0 -3 ports/x11-toolkits/gtkada-devel/distinfo (dead) 1.2 +0 -12 ports/x11-toolkits/gtkada-devel/files/patch-docs::gtkada_rm::Makefile.in (dead) 1.2 +0 -12 ports/x11-toolkits/gtkada-devel/files/patch-docs::gtkada_ug::Makefile.in (dead) 1.2 +0 -14 ports/x11-toolkits/gtkada-devel/files/patch-src::Makefile.in (dead) 1.2 +0 -14 ports/x11-toolkits/gtkada-devel/files/patch-src::glade::Makefile.in (dead) 1.2 +0 -14 ports/x11-toolkits/gtkada-devel/files/patch-src::gnome::Makefile.in (dead) 1.2 +0 -14 ports/x11-toolkits/gtkada-devel/files/patch-src::gtkextra::Makefile.in (dead) 1.2 +0 -14 ports/x11-toolkits/gtkada-devel/files/patch-src::opengl::Makefile.in (dead) 1.2 +0 -14 ports/x11-toolkits/gtkada-devel/files/patch-src::pixbuf::Makefile.in (dead) 1.3 +0 -15 ports/x11-toolkits/gtkada-devel/files/patch-testgtk::Makefile.in (dead) 1.4 +0 -3 ports/x11-toolkits/gtkada-devel/pkg-descr (dead) 1.4 +0 -816 ports/x11-toolkits/gtkada-devel/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 21:14:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B72F416A415; Sun, 24 Sep 2006 21:14:45 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39C9843D76; Sun, 24 Sep 2006 21:14:40 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OLEdLt083223; Sun, 24 Sep 2006 21:14:39 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OLEdnu083222; Sun, 24 Sep 2006 21:14:39 GMT (envelope-from kris) Message-Id: <200609242114.k8OLEdnu083222@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 24 Sep 2006 21:14:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/finance/gnucash-devel Makefile distinfo pkg-descr pkg-plist ports/finance/gnucash-devel/files patch-Makefile.in patch-PostgresBackend patch-configure patch-lib::srfi::srfi-8.scm patch-ltmain.sh patch-po::ru.po ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 21:14:45 -0000 kris 2006-09-24 21:14:39 UTC FreeBSD ports repository Removed files: finance/gnucash-devel Makefile distinfo pkg-descr pkg-plist finance/gnucash-devel/files patch-Makefile.in patch-PostgresBackend patch-configure patch-lib::srfi::srfi-8.scm patch-ltmain.sh patch-po::ru.po patch-src::gnome::Makefile.in patch-src_app-utils_i18n.h patch-src_doc_Makefile.in Log: Remove repo-copy in progress that remains uncompleted by the requesting committer after more than 7 months. Pointy hat to: lawrance Revision Changes Path 1.89 +0 -74 ports/finance/gnucash-devel/Makefile (dead) 1.34 +0 -3 ports/finance/gnucash-devel/distinfo (dead) 1.4 +0 -11 ports/finance/gnucash-devel/files/patch-Makefile.in (dead) 1.2 +0 -16 ports/finance/gnucash-devel/files/patch-PostgresBackend (dead) 1.13 +0 -44 ports/finance/gnucash-devel/files/patch-configure (dead) 1.3 +0 -15 ports/finance/gnucash-devel/files/patch-lib::srfi::srfi-8.scm (dead) 1.5 +0 -29 ports/finance/gnucash-devel/files/patch-ltmain.sh (dead) 1.5 +0 -26 ports/finance/gnucash-devel/files/patch-po::ru.po (dead) 1.3 +0 -11 ports/finance/gnucash-devel/files/patch-src::gnome::Makefile.in (dead) 1.2 +0 -8 ports/finance/gnucash-devel/files/patch-src_app-utils_i18n.h (dead) 1.3 +0 -11 ports/finance/gnucash-devel/files/patch-src_doc_Makefile.in (dead) 1.3 +0 -12 ports/finance/gnucash-devel/pkg-descr (dead) 1.35 +0 -726 ports/finance/gnucash-devel/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 21:20:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD49016A415; Sun, 24 Sep 2006 21:20:25 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77FD843D8F; Sun, 24 Sep 2006 21:19:53 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OLJmbn083484; Sun, 24 Sep 2006 21:19:48 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OLJmmH083483; Sun, 24 Sep 2006 21:19:48 GMT (envelope-from miwi) Message-Id: <200609242119.k8OLJmmH083483@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Sep 2006 21:19:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security Makefile ports/security/fwipe Makefile distinfo pkg-descr ports/security/fwipe/files patch-hier.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 21:20:25 -0000 miwi 2006-09-24 21:19:48 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/fwipe Makefile distinfo pkg-descr security/fwipe/files patch-hier.c Log: Fwipe is a secure file erasing program. fwipe0, which actually erases your files, is immune to filenames containing spaces, carriage returns, dashes, or any other special characters. You can use it in place of rm in cron jobs, together with "find ... -print0". The output of fwipe0 is specially designed to be parsed easily by machine, so it can be embedded in other applications which need secure file erasure. WWW: http://jeenyus.net/~budney/linux/software/fwipe.html PR: ports/103488 Submitted by: David Thiel Revision Changes Path 1.818 +1 -0 ports/security/Makefile 1.1 +29 -0 ports/security/fwipe/Makefile (new) 1.1 +3 -0 ports/security/fwipe/distinfo (new) 1.1 +14 -0 ports/security/fwipe/files/patch-hier.c (new) 1.1 +8 -0 ports/security/fwipe/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 21:21:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE06616A47E; Sun, 24 Sep 2006 21:21:03 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AA6743D76; Sun, 24 Sep 2006 21:20:25 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OLKOF4083609; Sun, 24 Sep 2006 21:20:24 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OLKO6l083608; Sun, 24 Sep 2006 21:20:24 GMT (envelope-from thierry) Message-Id: <200609242120.k8OLKO6l083608@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 24 Sep 2006 21:20:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-fonts/code2000 Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 21:21:03 -0000 thierry 2006-09-24 21:20:24 UTC FreeBSD ports repository Modified files: x11-fonts/code2000 Makefile distinfo pkg-descr Log: Chase the new site. Note: this is the same font, only code2000.html has been updated. Revision Changes Path 1.8 +3 -4 ports/x11-fonts/code2000/Makefile 1.7 +3 -3 ports/x11-fonts/code2000/distinfo 1.2 +3 -3 ports/x11-fonts/code2000/pkg-descr From owner-cvs-all@FreeBSD.ORG Sun Sep 24 21:21:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A92BD16A583; Sun, 24 Sep 2006 21:21:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78F6A43DC3; Sun, 24 Sep 2006 21:20:33 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OLKX0x083660; Sun, 24 Sep 2006 21:20:33 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OLKXjo083659; Sun, 24 Sep 2006 21:20:33 GMT (envelope-from miwi) Message-Id: <200609242120.k8OLKXjo083659@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Sep 2006 21:20:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 21:21:05 -0000 miwi 2006-09-24 21:20:33 UTC FreeBSD ports repository Modified files: . modules Log: fwipe --> ports/security/fwipe Revision Changes Path 1.16261 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Sep 24 21:36:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D9B016A40F; Sun, 24 Sep 2006 21:36:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF65E43D5C; Sun, 24 Sep 2006 21:36:03 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OLa3if084463; Sun, 24 Sep 2006 21:36:03 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OLa3rF084462; Sun, 24 Sep 2006 21:36:03 GMT (envelope-from miwi) Message-Id: <200609242136.k8OLa3rF084462@repoman.freebsd.org> From: Martin Wilke Date: Sun, 24 Sep 2006 21:36:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/monotone Makefile distinfo ports/devel/monotone/files patch-Makefile.in patch-configure patch-monotone.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 21:36:04 -0000 miwi 2006-09-24 21:36:03 UTC FreeBSD ports repository Modified files: devel/monotone Makefile distinfo devel/monotone/files patch-Makefile.in patch-configure patch-monotone.cc Log: - Update to 0.30 PR: ports/103524 Submitted by: Lapo Luchini (maintainer) Revision Changes Path 1.24 +1 -1 ports/devel/monotone/Makefile 1.13 +3 -3 ports/devel/monotone/distinfo 1.5 +5 -5 ports/devel/monotone/files/patch-Makefile.in 1.3 +3 -3 ports/devel/monotone/files/patch-configure 1.4 +11 -11 ports/devel/monotone/files/patch-monotone.cc From owner-cvs-all@FreeBSD.ORG Sun Sep 24 22:44:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF6B916A40F; Sun, 24 Sep 2006 22:44:23 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B74743D4C; Sun, 24 Sep 2006 22:44:23 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8OMiN1w093110; Sun, 24 Sep 2006 22:44:23 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8OMiNVK093109; Sun, 24 Sep 2006 22:44:23 GMT (envelope-from lioux) Message-Id: <200609242244.k8OMiNVK093109@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 24 Sep 2006 22:44:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/mldonkey-devel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 22:44:23 -0000 lioux 2006-09-24 22:44:23 UTC FreeBSD ports repository Modified files: net-p2p/mldonkey-devel Makefile distinfo Log: o Update to 2.8.1 o Fix BUILD_DEPENDS when building GUI [1] PR: 101348 Submitted by: Stanislav Sedov [1] Revision Changes Path 1.80 +2 -3 ports/net-p2p/mldonkey-devel/Makefile 1.43 +3 -3 ports/net-p2p/mldonkey-devel/distinfo From owner-cvs-all@FreeBSD.ORG Sun Sep 24 23:09:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B66BD16A416; Sun, 24 Sep 2006 23:09:26 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8178943D45; Sun, 24 Sep 2006 23:09:26 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ON9Qso095453; Sun, 24 Sep 2006 23:09:26 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ON9QgF095452; Sun, 24 Sep 2006 23:09:26 GMT (envelope-from thierry) Message-Id: <200609242309.k8ON9QgF095452@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 24 Sep 2006 23:09:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/science Makefile ports/science/medit Makefile distinfo distinfo.src pkg-descr ports/science/medit/files patch-makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 23:09:26 -0000 thierry 2006-09-24 23:09:26 UTC FreeBSD ports repository Modified files: science Makefile Added files: science/medit Makefile distinfo distinfo.src pkg-descr science/medit/files patch-makefile Log: Medit is an interactive mesh visualization software, developed by the Gamma project at INRIA-Rocquencourt. It is intended to display computation results (in mechanics of the solids or fluids, thermics, electromagnetism, etc.) on grids 2d (triangles and quadrangles), 3d (tetrahedrons or hexahedrons) or surfaces (triangles and quandrangles). Revision Changes Path 1.103 +1 -0 ports/science/Makefile 1.1 +93 -0 ports/science/medit/Makefile (new) 1.1 +9 -0 ports/science/medit/distinfo (new) 1.1 +6 -0 ports/science/medit/distinfo.src (new) 1.1 +27 -0 ports/science/medit/files/patch-makefile (new) 1.1 +9 -0 ports/science/medit/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Sep 24 23:09:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F358C16A407; Sun, 24 Sep 2006 23:09:36 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B171B43D49; Sun, 24 Sep 2006 23:09:36 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ON9aH5095497; Sun, 24 Sep 2006 23:09:36 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ON9aqa095496; Sun, 24 Sep 2006 23:09:36 GMT (envelope-from thierry) Message-Id: <200609242309.k8ON9aqa095496@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 24 Sep 2006 23:09:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 23:09:37 -0000 thierry 2006-09-24 23:09:36 UTC FreeBSD ports repository Modified files: . modules Log: medit --> ports/science/medit Revision Changes Path 1.16262 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Sep 24 23:12:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F77116A40F; Sun, 24 Sep 2006 23:12:03 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BE0F43D45; Sun, 24 Sep 2006 23:12:03 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ONC2UI095752; Sun, 24 Sep 2006 23:12:03 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ONC2qB095751; Sun, 24 Sep 2006 23:12:02 GMT (envelope-from thierry) Message-Id: <200609242312.k8ONC2qB095751@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 24 Sep 2006 23:12:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/freefem++ Makefile distinfo pkg-descr pkg-plist ports/math/freefem++/files patch-configure patch-examples++-load_Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 23:12:03 -0000 thierry 2006-09-24 23:12:02 UTC FreeBSD ports repository Modified files: math/freefem++ Makefile distinfo pkg-descr pkg-plist Added files: math/freefem++/files patch-configure patch-examples++-load_Makefile.in Log: - Upgrade to 2.9; - Don't depend on ATLAS, unless already installed; - Enable MPICH2. Revision Changes Path 1.45 +35 -24 ports/math/freefem++/Makefile 1.27 +3 -3 ports/math/freefem++/distinfo 1.6 +20 -0 ports/math/freefem++/files/patch-configure (new) 1.1 +11 -0 ports/math/freefem++/files/patch-examples++-load_Makefile.in (new) 1.3 +2 -1 ports/math/freefem++/pkg-descr 1.19 +22 -1 ports/math/freefem++/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Sep 24 23:28:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3032116A407; Sun, 24 Sep 2006 23:28:00 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F8B543D55; Sun, 24 Sep 2006 23:27:59 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ONRxgv096544; Sun, 24 Sep 2006 23:27:59 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ONRxAb096543; Sun, 24 Sep 2006 23:27:59 GMT (envelope-from lioux) Message-Id: <200609242327.k8ONRxAb096543@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 24 Sep 2006 23:27:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/azureus Makefile distinfo ports/net-p2p/azureus/files patch-org__gudy__azureus2__platform__macosx__access__jnilib__OSXAccess.java patch-swt31 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 23:28:00 -0000 lioux 2006-09-24 23:27:59 UTC FreeBSD ports repository Modified files: net-p2p/azureus Makefile distinfo net-p2p/azureus/files patch-swt31 Added files: net-p2p/azureus/files patch-org__gudy__azureus2__platform__macosx__access__jnilib__OSXAccess.java Log: Update to 2.5.0.0 PR: 103590 Submitted by: Rainer Alves Revision Changes Path 1.33 +4 -2 ports/net-p2p/azureus/Makefile 1.10 +3 -3 ports/net-p2p/azureus/distinfo 1.1 +20 -0 ports/net-p2p/azureus/files/patch-org__gudy__azureus2__platform__macosx__access__jnilib__OSXAccess.java (new) 1.2 +133 -23 ports/net-p2p/azureus/files/patch-swt31 From owner-cvs-all@FreeBSD.ORG Sun Sep 24 23:59:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09C4816A412; Sun, 24 Sep 2006 23:59:34 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA7BD43D46; Sun, 24 Sep 2006 23:59:33 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ONxXBW098098; Sun, 24 Sep 2006 23:59:33 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ONxXV2098097; Sun, 24 Sep 2006 23:59:33 GMT (envelope-from kris) Message-Id: <200609242359.k8ONxXV2098097@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 24 Sep 2006 23:59:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/deskutils/yank Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 24 Sep 2006 23:59:34 -0000 kris 2006-09-24 23:59:33 UTC FreeBSD ports repository Modified files: deskutils/yank Makefile Log: Now builds again Revision Changes Path 1.27 +0 -4 ports/deskutils/yank/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 00:01:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A924E16A403; Mon, 25 Sep 2006 00:01:44 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5501443D46; Mon, 25 Sep 2006 00:01:44 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P01i3n098298; Mon, 25 Sep 2006 00:01:44 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P01irW098297; Mon, 25 Sep 2006 00:01:44 GMT (envelope-from lioux) Message-Id: <200609250001.k8P01irW098297@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 25 Sep 2006 00:01:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/mldonkey-serverspy Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 00:01:44 -0000 lioux 2006-09-25 00:01:43 UTC FreeBSD ports repository Modified files: net-p2p/mldonkey-serverspy Makefile Log: Update MASTER_SITES PR: 97746 Submitted by: Martin Wilke Revision Changes Path 1.8 +1 -1 ports/net-p2p/mldonkey-serverspy/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 00:08:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BF8B16A407; Mon, 25 Sep 2006 00:08:47 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E841E43D46; Mon, 25 Sep 2006 00:08:46 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P08kIb099767; Mon, 25 Sep 2006 00:08:46 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P08klM099766; Mon, 25 Sep 2006 00:08:46 GMT (envelope-from lioux) Message-Id: <200609250008.k8P08klM099766@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 25 Sep 2006 00:08:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/kmplayer Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 00:08:47 -0000 lioux 2006-09-25 00:08:46 UTC FreeBSD ports repository Modified files: multimedia/kmplayer Makefile distinfo pkg-plist Log: Update to 0.9.3 PR: 103452 Submitted by: ale Revision Changes Path 1.33 +1 -2 ports/multimedia/kmplayer/Makefile 1.22 +3 -3 ports/multimedia/kmplayer/distinfo 1.17 +12 -0 ports/multimedia/kmplayer/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 00:17:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFB8416A40F; Mon, 25 Sep 2006 00:17:37 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A27643D46; Mon, 25 Sep 2006 00:17:37 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P0HbIQ000286; Mon, 25 Sep 2006 00:17:37 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P0Hbj0000285; Mon, 25 Sep 2006 00:17:37 GMT (envelope-from lioux) Message-Id: <200609250017.k8P0Hbj0000285@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 25 Sep 2006 00:17:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/jsch Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 00:17:37 -0000 lioux 2006-09-25 00:17:37 UTC FreeBSD ports repository Modified files: net/jsch Makefile distinfo Log: Update to 0.1.28 PR: 99655 Submitted by: chinsan Revision Changes Path 1.8 +1 -1 ports/net/jsch/Makefile 1.8 +3 -3 ports/net/jsch/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 00:31:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C61016A40F; Mon, 25 Sep 2006 00:31:55 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02AB343D45; Mon, 25 Sep 2006 00:31:55 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P0VsOZ001046; Mon, 25 Sep 2006 00:31:54 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P0VsD5001045; Mon, 25 Sep 2006 00:31:54 GMT (envelope-from clsung) Message-Id: <200609250031.k8P0VsD5001045@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 25 Sep 2006 00:31:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/rubygem-daemons Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 00:31:55 -0000 clsung 2006-09-25 00:31:54 UTC FreeBSD ports repository Modified files: devel/rubygem-daemons Makefile distinfo pkg-plist Log: - Update to 1.0.1 PR: ports/103595 Submitted by: maintainer (Rui Lopes) Revision Changes Path 1.3 +3 -3 ports/devel/rubygem-daemons/Makefile 1.2 +3 -3 ports/devel/rubygem-daemons/distinfo 1.2 +10 -10 ports/devel/rubygem-daemons/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 00:32:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3B4716A412; Mon, 25 Sep 2006 00:32:37 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F8E143D49; Mon, 25 Sep 2006 00:32:37 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P0Wb4b001096; Mon, 25 Sep 2006 00:32:37 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P0WbKD001095; Mon, 25 Sep 2006 00:32:37 GMT (envelope-from clsung) Message-Id: <200609250032.k8P0WbKD001095@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 25 Sep 2006 00:32:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/rubygem-mongrel Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 00:32:38 -0000 clsung 2006-09-25 00:32:37 UTC FreeBSD ports repository Modified files: www/rubygem-mongrel Makefile distinfo pkg-plist Log: - Update to 0.3.13.4 PR: ports/103596 Submitted by: maintainer (Rui Lopes) Revision Changes Path 1.6 +1 -1 ports/www/rubygem-mongrel/Makefile 1.5 +3 -3 ports/www/rubygem-mongrel/distinfo 1.5 +270 -263 ports/www/rubygem-mongrel/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 00:33:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2AB216A412; Mon, 25 Sep 2006 00:33:51 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0425143D67; Mon, 25 Sep 2006 00:33:51 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P0Xo57001194; Mon, 25 Sep 2006 00:33:50 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P0XoDW001193; Mon, 25 Sep 2006 00:33:50 GMT (envelope-from lioux) Message-Id: <200609250033.k8P0XoDW001193@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 25 Sep 2006 00:33:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/ldvd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 00:33:52 -0000 lioux 2006-09-25 00:33:50 UTC FreeBSD ports repository Modified files: multimedia/ldvd Makefile Log: Update MASTER_SITES PR: 97729 Submitted by: Martin Wilke Revision Changes Path 1.16 +1 -1 ports/multimedia/ldvd/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 00:47:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C53B916A412; Mon, 25 Sep 2006 00:47:40 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FED043D4C; Mon, 25 Sep 2006 00:47:40 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P0leie009809; Mon, 25 Sep 2006 00:47:40 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P0leLL009808; Mon, 25 Sep 2006 00:47:40 GMT (envelope-from lioux) Message-Id: <200609250047.k8P0leLL009808@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 25 Sep 2006 00:47:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/ffmpeg-devel Makefile ports/multimedia/ffmpeg-devel/files patch-libavcodec_x264.c patch-libavformat_movenc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 00:47:40 -0000 lioux 2006-09-25 00:47:40 UTC FreeBSD ports repository Modified files: multimedia/ffmpeg-devel Makefile multimedia/ffmpeg-devel/files patch-libavcodec_x264.c Added files: multimedia/ffmpeg-devel/files patch-libavformat_movenc.c Log: Fix build on 4.x: fix devel/sdl header include PR: 102431 Submitted by: Shaun Amott Revision Changes Path 1.95 +4 -1 ports/multimedia/ffmpeg-devel/Makefile 1.2 +0 -11 ports/multimedia/ffmpeg-devel/files/patch-libavcodec_x264.c 1.1 +13 -0 ports/multimedia/ffmpeg-devel/files/patch-libavformat_movenc.c (new) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 00:52:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEB3716A403; Mon, 25 Sep 2006 00:52:56 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11FC343D62; Mon, 25 Sep 2006 00:52:54 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id BCE251A4D8B; Sun, 24 Sep 2006 17:52:53 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D1F28515F7; Sun, 24 Sep 2006 20:52:52 -0400 (EDT) Date: Sun, 24 Sep 2006 20:52:52 -0400 From: Kris Kennaway To: Mario Sergio Fujikawa Ferreira Message-ID: <20060925005252.GA50714@xor.obsecurity.org> References: <200609250047.k8P0leLL009808@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0F1p//8PRICkK4MW" Content-Disposition: inline In-Reply-To: <200609250047.k8P0leLL009808@repoman.freebsd.org> User-Agent: Mutt/1.4.2.2i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/multimedia/ffmpeg-devel Makefile ports/multimedia/ffmpeg-devel/files patch-libavcodec_x264.c patch-libavformat_movenc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 00:52:56 -0000 --0F1p//8PRICkK4MW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Sep 25, 2006 at 12:47:40AM +0000, Mario Sergio Fujikawa Ferreira wr= ote: > lioux 2006-09-25 00:47:40 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > multimedia/ffmpeg-devel Makefile=20 > multimedia/ffmpeg-devel/files patch-libavcodec_x264.c=20 > Added files: > multimedia/ffmpeg-devel/files patch-libavformat_movenc.c=20 > Log: > Fix build on 4.x: fix devel/sdl header include > =20 > PR: 102431 > Submitted by: Shaun Amott Are you sure this is still correct after the recent SDL changes? Kris --0F1p//8PRICkK4MW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFFyhkWry0BWjoQKURAp6jAJ4kNSu5OlulbkmIzFUF43NjMa/7dQCg2vHF jhYBjdGaXUxsctjerLcdedk= =WH99 -----END PGP SIGNATURE----- --0F1p//8PRICkK4MW-- From owner-cvs-all@FreeBSD.ORG Mon Sep 25 00:54:34 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56D1616A403 for ; Mon, 25 Sep 2006 00:54:34 +0000 (UTC) (envelope-from buhnux@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1863343D62 for ; Mon, 25 Sep 2006 00:54:29 +0000 (GMT) (envelope-from buhnux@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so2243056pye for ; Sun, 24 Sep 2006 17:54:29 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=QdFG8WN1W51bVHx6BMQFShQLLrvYMwqU5qrsW+w6t4YinjPv7zh9+6QdEUI4BbsoWCE3taOTDG0n+s7WqVCNvGPOLrKJyAC1fBnTouR23JY+deuBWJ6AYGg8y/kPZuzJeaLzRSUNtgxKGEVdWr1wQlLPFryiDbvAukELV/hFTEA= Received: by 10.35.123.10 with SMTP id a10mr6569507pyn; Sun, 24 Sep 2006 17:54:29 -0700 (PDT) Received: by 10.35.91.17 with HTTP; Sun, 24 Sep 2006 17:54:29 -0700 (PDT) Message-ID: Date: Sun, 24 Sep 2006 20:54:29 -0400 From: "michael johnson" Sender: buhnux@gmail.com To: "Mario Sergio Fujikawa Ferreira" In-Reply-To: <200609250047.k8P0leLL009808@repoman.freebsd.org> MIME-Version: 1.0 References: <200609250047.k8P0leLL009808@repoman.freebsd.org> X-Google-Sender-Auth: 68ca8b821b99a3e5 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/multimedia/ffmpeg-devel Makefile ports/multimedia/ffmpeg-devel/files patch-libavcodec_x264.c patch-libavformat_movenc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 00:54:34 -0000 On 9/24/06, Mario Sergio Fujikawa Ferreira wrote: > > lioux 2006-09-25 00:47:40 UTC > > FreeBSD ports repository > > Modified files: > multimedia/ffmpeg-devel Makefile > multimedia/ffmpeg-devel/files patch-libavcodec_x264.c ^^ libavcodec_x264 patch is needed for latest x264 in ports. Added files: > multimedia/ffmpeg-devel/files patch-libavformat_movenc.c > Log: > Fix build on 4.x: fix devel/sdl header include > > PR: 102431 > Submitted by: Shaun Amott > > Revision Changes Path > 1.95 +4 -1 ports/multimedia/ffmpeg-devel/Makefile > 1.2 +0 -11 > ports/multimedia/ffmpeg-devel/files/patch-libavcodec_x264.c > 1.1 +13 -0 > ports/multimedia/ffmpeg-devel/files/patch-libavformat_movenc.c (new) > From owner-cvs-all@FreeBSD.ORG Mon Sep 25 00:55:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D31D16A412; Mon, 25 Sep 2006 00:55:53 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8B2943D55; Mon, 25 Sep 2006 00:55:52 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P0tqIP010215; Mon, 25 Sep 2006 00:55:52 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P0tq3G010214; Mon, 25 Sep 2006 00:55:52 GMT (envelope-from clsung) Message-Id: <200609250055.k8P0tq3G010214@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 25 Sep 2006 00:55:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Module-Build-Convert Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 00:55:53 -0000 clsung 2006-09-25 00:55:52 UTC FreeBSD ports repository Modified files: devel/p5-Module-Build-Convert Makefile distinfo Log: - Update to 0.34 PR: ports/103576 Submitted by: Gea-Suan Lin Revision Changes Path 1.8 +1 -1 ports/devel/p5-Module-Build-Convert/Makefile 1.6 +3 -3 ports/devel/p5-Module-Build-Convert/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 01:02:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C23A916A407; Mon, 25 Sep 2006 01:02:00 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A33A43D4C; Mon, 25 Sep 2006 01:02:00 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P120lK010565; Mon, 25 Sep 2006 01:02:00 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P120au010564; Mon, 25 Sep 2006 01:02:00 GMT (envelope-from clsung) Message-Id: <200609250102.k8P120au010564@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 25 Sep 2006 01:02:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-HTML-WikiConverter-MediaWiki Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 01:02:00 -0000 clsung 2006-09-25 01:02:00 UTC FreeBSD ports repository Modified files: www/p5-HTML-WikiConverter-MediaWiki Makefile distinfo Log: - Update to 0.55 PR: ports/103506 Submitted by: clsung Approved by: maintainer (chinsan) Revision Changes Path 1.4 +1 -1 ports/www/p5-HTML-WikiConverter-MediaWiki/Makefile 1.4 +3 -3 ports/www/p5-HTML-WikiConverter-MediaWiki/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 01:04:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1851916A412; Mon, 25 Sep 2006 01:04:33 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C541143D45; Mon, 25 Sep 2006 01:04:32 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P14WeK011864; Mon, 25 Sep 2006 01:04:32 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P14WWJ011863; Mon, 25 Sep 2006 01:04:32 GMT (envelope-from clsung) Message-Id: <200609250104.k8P14WWJ011863@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 25 Sep 2006 01:04:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Net-Address-Ethernet Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 01:04:33 -0000 clsung 2006-09-25 01:04:32 UTC FreeBSD ports repository Modified files: net/p5-Net-Address-Ethernet Makefile distinfo Log: - Update to 1.081 - I'll maintain it PR: ports/103543 Submitted by: clsung Approved by: maintainer (Gea-Suan Lin ) Revision Changes Path 1.2 +2 -2 ports/net/p5-Net-Address-Ethernet/Makefile 1.2 +3 -3 ports/net/p5-Net-Address-Ethernet/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 01:11:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EA9716A40F; Mon, 25 Sep 2006 01:11:14 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC29643D45; Mon, 25 Sep 2006 01:11:13 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P1BDP9012236; Mon, 25 Sep 2006 01:11:13 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P1BD1f012235; Mon, 25 Sep 2006 01:11:13 GMT (envelope-from lioux) Message-Id: <200609250111.k8P1BD1f012235@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 25 Sep 2006 01:11:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/i2p Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 01:11:14 -0000 lioux 2006-09-25 01:11:13 UTC FreeBSD ports repository Modified files: net-p2p/i2p Makefile distinfo Log: Update to 0.6.1.25 Revision Changes Path 1.36 +1 -1 ports/net-p2p/i2p/Makefile 1.33 +3 -3 ports/net-p2p/i2p/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 01:11:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B82A16A403; Mon, 25 Sep 2006 01:11:50 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9193443D49; Mon, 25 Sep 2006 01:11:49 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P1Bn95012334; Mon, 25 Sep 2006 01:11:49 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P1Bn7l012333; Mon, 25 Sep 2006 01:11:49 GMT (envelope-from alepulver) Message-Id: <200609250111.k8P1Bn7l012333@repoman.freebsd.org> From: Alejandro Pulver Date: Mon, 25 Sep 2006 01:11:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/tyrquake Makefile distinfo pkg-message ports/games/tyrquake/files patch-Makefile patch-NQ__common.c patch-QW__client__cl_main.c patch-QW__client__sys_linux.c patch-QW__common__common.c patch-QW__server__sys_unix.c patch-common__cd_linux.c patch-common__gl_vidlinuxglx.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 01:11:50 -0000 alepulver 2006-09-25 01:11:49 UTC FreeBSD ports repository Modified files: games/tyrquake Makefile distinfo pkg-message Removed files: games/tyrquake/files patch-Makefile patch-NQ__common.c patch-QW__client__cl_main.c patch-QW__client__sys_linux.c patch-QW__common__common.c patch-QW__server__sys_unix.c patch-common__cd_linux.c patch-common__gl_vidlinuxglx.c patch-common__model.c patch-include__bspfile.h Log: - Update to version 0.55. - Fix typing error in pkg-message. - Remove patches because they were integrated in the new version. Revision Changes Path 1.4 +11 -6 ports/games/tyrquake/Makefile 1.3 +3 -3 ports/games/tyrquake/distinfo 1.2 +0 -37 ports/games/tyrquake/files/patch-Makefile (dead) 1.2 +0 -50 ports/games/tyrquake/files/patch-NQ__common.c (dead) 1.2 +0 -18 ports/games/tyrquake/files/patch-QW__client__cl_main.c (dead) 1.2 +0 -10 ports/games/tyrquake/files/patch-QW__client__sys_linux.c (dead) 1.2 +0 -39 ports/games/tyrquake/files/patch-QW__common__common.c (dead) 1.2 +0 -11 ports/games/tyrquake/files/patch-QW__server__sys_unix.c (dead) 1.2 +0 -331 ports/games/tyrquake/files/patch-common__cd_linux.c (dead) 1.2 +0 -12 ports/games/tyrquake/files/patch-common__gl_vidlinuxglx.c (dead) 1.2 +0 -11 ports/games/tyrquake/files/patch-common__model.c (dead) 1.2 +0 -11 ports/games/tyrquake/files/patch-include__bspfile.h (dead) 1.2 +1 -1 ports/games/tyrquake/pkg-message From owner-cvs-all@FreeBSD.ORG Mon Sep 25 01:23:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40E9A16A403; Mon, 25 Sep 2006 01:23:42 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC93A43D6B; Mon, 25 Sep 2006 01:23:41 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P1Nfdd012956; Mon, 25 Sep 2006 01:23:41 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P1Nfba012955; Mon, 25 Sep 2006 01:23:41 GMT (envelope-from alepulver) Message-Id: <200609250123.k8P1Nfba012955@repoman.freebsd.org> From: Alejandro Pulver Date: Mon, 25 Sep 2006 01:23:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/bsfilter Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 01:23:42 -0000 alepulver 2006-09-25 01:23:41 UTC FreeBSD ports repository Modified files: mail/bsfilter Makefile distinfo pkg-plist Log: - Update to 1.0.15. PR: ports/103565 Submitted by: Masafumi Otsune (maintainer) Revision Changes Path 1.16 +4 -4 ports/mail/bsfilter/Makefile 1.15 +3 -3 ports/mail/bsfilter/distinfo 1.4 +2 -0 ports/mail/bsfilter/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 01:29:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 840A016A417; Mon, 25 Sep 2006 01:29:49 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 404CB43D45; Mon, 25 Sep 2006 01:29:49 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P1Tnsk013229; Mon, 25 Sep 2006 01:29:49 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P1Tn0m013228; Mon, 25 Sep 2006 01:29:49 GMT (envelope-from jmg) Message-Id: <200609250129.k8P1Tn0m013228@repoman.freebsd.org> From: John-Mark Gurney Date: Mon, 25 Sep 2006 01:29:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_event.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 01:29:49 -0000 jmg 2006-09-25 01:29:49 UTC FreeBSD src repository Modified files: sys/kern kern_event.c Log: remove unnecessary NULL check... Coverity ID: 1545 Revision Changes Path 1.106 +1 -2 src/sys/kern/kern_event.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 01:35:24 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4871D16A51E for ; Mon, 25 Sep 2006 01:35:24 +0000 (UTC) (envelope-from maho.nakata@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CF0943D5E for ; Mon, 25 Sep 2006 01:35:08 +0000 (GMT) (envelope-from maho.nakata@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so640438nzn for ; Sun, 24 Sep 2006 18:35:07 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:message-id:to:cc:subject:from:in-reply-to:references:x-mailer:mime-version:content-type:content-transfer-encoding:sender; b=cf5EYyzrEpvMC27p3qzT4EQHc2nQw3kXbfmsAxd121YhB+zsJ0L7Nb19cx8lAtBcHFsBDAiK1gh8vG+eBTGijUKfSfYxtHceOI1WUlUVlWANxxEuuMAlOSHHs3NUow8A641E3nCrCqP8/qDMQiRMF35oUz4Gr9R/9FzTt9tsKSs= Received: by 10.65.219.18 with SMTP id w18mr3517945qbq; Sun, 24 Sep 2006 18:35:07 -0700 (PDT) Received: from localhost ( [133.11.172.102]) by mx.gmail.com with ESMTP id c1sm926921nzd.2006.09.24.18.35.04; Sun, 24 Sep 2006 18:35:06 -0700 (PDT) Date: Mon, 25 Sep 2006 10:35:02 +0900 (JST) Message-Id: <20060925.103502.99206515.chat95@mac.com> To: thierry@FreeBSD.org From: NAKATA Maho In-Reply-To: <200609242312.k8ONC2qB095751@repoman.freebsd.org> References: <200609242312.k8ONC2qB095751@repoman.freebsd.org> X-Mailer: Mew version 5.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: Maho NAKATA Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/math/freefem++ Makefile distinfo pkg-descr pkg-plist ports/math/freefem++/files patch-configure patch-examples++-load_Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 01:35:24 -0000 From: Thierry Thomas Subject: cvs commit: ports/math/freefem++ Makefile distinfo pkg-descr pkg-plist ports/math/freefem++/files patch-configure patch-examples++-load_Makefile.in Date: Sun, 24 Sep 2006 23:12:02 +0000 (UTC) > - Don't depend on ATLAS, unless already installed; for me it is pity, though but it is a good idea. I'll copy'n'paste your ATLAS detection part. thanks! -- NAKATA, Maho (maho@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 02:09:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0E4916A412; Mon, 25 Sep 2006 02:09:12 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 131C143D45; Mon, 25 Sep 2006 02:09:11 +0000 (GMT) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id 745FEEB415B; Mon, 25 Sep 2006 10:09:09 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id 8H1yRw-sHAzv; Mon, 25 Sep 2006 10:09:03 +0800 (CST) Received: from [10.217.12.201] (sina152-194.staff.sina.com.cn [61.135.152.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id 292AAEB1A21; Mon, 25 Sep 2006 10:09:03 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:organization:user-agent:mime-version:to:cc: subject:references:in-reply-to:x-enigmail-version:content-type; b=A0CYon9qLYz4M6iET4nGAkY9d9iCRCjAKlQ65MgcjT0eLVX59QMvIUKQI9XQtFSmQ KLb7iL3POjCwqg70NdQ+w== Message-ID: <45173A2D.7030800@delphij.net> Date: Mon, 25 Sep 2006 10:08:45 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: "Simon L. Nielsen" References: <200609241931.k8OJVU4b063483@repoman.freebsd.org> In-Reply-To: <200609241931.k8OJVU4b063483@repoman.freebsd.org> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="------------enigAEF386288CCDBD3631CDC229" Cc: doc-committers@FreeBSD.ORG, cvs-doc@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: www/en publish.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 02:09:13 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigAEF386288CCDBD3631CDC229 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Simon L. Nielsen wrote: > simon 2006-09-24 19:31:30 UTC >=20 > FreeBSD doc repository >=20 > Modified files: > en publish.sgml=20 > Log: > Unbreak build: & should be written as &. > =20 > Pointy hat to: delphij Sorry for the breakage, and thanks for the fix! Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enigAEF386288CCDBD3631CDC229 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD4DBQFFFzouOfuToMruuMARA9opAKCCfSMz11M/lxeKkR/4Vgum69apDgCXaRyj 918OsUMjrMDPR3jH1uKafg== =SNfN -----END PGP SIGNATURE----- --------------enigAEF386288CCDBD3631CDC229-- From owner-cvs-all@FreeBSD.ORG Mon Sep 25 02:12:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09A7B16A40F; Mon, 25 Sep 2006 02:12:50 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E8A043D4C; Mon, 25 Sep 2006 02:12:49 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P2Cnsu016594; Mon, 25 Sep 2006 02:12:49 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P2Cn3p016593; Mon, 25 Sep 2006 02:12:49 GMT (envelope-from dinoex) Message-Id: <200609250212.k8P2Cn3p016593@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 25 Sep 2006 02:12:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/deskutils Makefile ports/deskutils/charmap Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 02:12:50 -0000 dinoex 2006-09-25 02:12:49 UTC FreeBSD ports repository Modified files: deskutils Makefile Added files: deskutils/charmap Makefile distinfo pkg-descr pkg-plist Log: This is a character map. It is developed using the GNUstep development environment (www.gnustep.org) and is meant to contribute to GNUstep's promise towards a desktop environment. Charmap offers font selection, allowing one to easily see all the glyphs which a particular font offers. PR: 103434 Submitted by: Gürkan Sengün Revision Changes Path 1.237 +1 -0 ports/deskutils/Makefile 1.1 +27 -0 ports/deskutils/charmap/Makefile (new) 1.1 +3 -0 ports/deskutils/charmap/distinfo (new) 1.1 +8 -0 ports/deskutils/charmap/pkg-descr (new) 1.1 +13 -0 ports/deskutils/charmap/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 02:13:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9B6616A40F; Mon, 25 Sep 2006 02:13:31 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9528F43D45; Mon, 25 Sep 2006 02:13:31 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P2DVRQ016662; Mon, 25 Sep 2006 02:13:31 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P2DVCb016658; Mon, 25 Sep 2006 02:13:31 GMT (envelope-from dinoex) Message-Id: <200609250213.k8P2DVCb016658@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 25 Sep 2006 02:13:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 02:13:32 -0000 dinoex 2006-09-25 02:13:31 UTC FreeBSD ports repository Modified files: . modules Log: charmap --> ports/deskutils/charmap Revision Changes Path 1.16263 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Sep 25 02:17:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C014916A403; Mon, 25 Sep 2006 02:17:32 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 785E743D45; Mon, 25 Sep 2006 02:17:32 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P2HWji016893; Mon, 25 Sep 2006 02:17:32 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P2HWOM016892; Mon, 25 Sep 2006 02:17:32 GMT (envelope-from mezz) Message-Id: <200609250217.k8P2HWOM016892@repoman.freebsd.org> From: Jeremy Messenger Date: Mon, 25 Sep 2006 02:17:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/linuxdcpp Makefile distinfo ports/net-p2p/linuxdcpp/files patch-client_HashManager.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 02:17:32 -0000 mezz 2006-09-25 02:17:32 UTC FreeBSD ports repository Modified files: net-p2p/linuxdcpp Makefile distinfo Removed files: net-p2p/linuxdcpp/files patch-client_HashManager.cpp Log: Update it to the lastest version of CVS, at 2006-09-23 in changelog. See in the changelog for details: http://tinyurl.com/b3myl Revision Changes Path 1.9 +1 -1 ports/net-p2p/linuxdcpp/Makefile 1.8 +3 -3 ports/net-p2p/linuxdcpp/distinfo 1.2 +0 -13 ports/net-p2p/linuxdcpp/files/patch-client_HashManager.cpp (dead) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 02:53:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C8AC16A403; Mon, 25 Sep 2006 02:53:33 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15B8943D45; Mon, 25 Sep 2006 02:53:33 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P2rWuF019933; Mon, 25 Sep 2006 02:53:32 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P2rWCB019932; Mon, 25 Sep 2006 02:53:32 GMT (envelope-from emax) Message-Id: <200609250253.k8P2rWCB019932@repoman.freebsd.org> From: Maksim Yevmenkin Date: Mon, 25 Sep 2006 02:53:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/uart uart_kbd_sun.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 02:53:33 -0000 emax 2006-09-25 02:53:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/uart uart_kbd_sun.c Log: MFC: Do not try to call keyboard callback unless keyboard is active and busy. This should fix 'kbdcontrol -K < /dev/console' panic on sparc64 with sunkbd(4). PR: sparc64/96798 Approved by: re (hrs) Revision Changes Path 1.5.2.2 +6 -4 src/sys/dev/uart/uart_kbd_sun.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 03:03:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EF5E16A403; Mon, 25 Sep 2006 03:03:07 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D130F43D55; Mon, 25 Sep 2006 03:03:06 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P336ht021870; Mon, 25 Sep 2006 03:03:06 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P336NA021869; Mon, 25 Sep 2006 03:03:06 GMT (envelope-from mezz) Message-Id: <200609250303.k8P336NA021869@repoman.freebsd.org> From: Jeremy Messenger Date: Mon, 25 Sep 2006 03:03:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed Makefile ports/mail/sylpheed2 Makefile ports/mail/sylpheed2-devel Makefile ports/palm/gnome-pilot Makefile ports/palm/libmal Makefile ports/palm/malsync Makefile ports/palm/syncal Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 03:03:07 -0000 mezz 2006-09-25 03:03:06 UTC FreeBSD ports repository Modified files: mail/sylpheed Makefile mail/sylpheed2 Makefile mail/sylpheed2-devel Makefile palm/gnome-pilot Makefile palm/libmal Makefile palm/malsync Makefile palm/syncal Makefile Log: Chase pilot-link's shared library version bump. Bump the PORTREVISION. As for the PRs, I shall chase and close a few of them. Pointyhat: ijliao Revision Changes Path 1.110 +2 -2 ports/mail/sylpheed/Makefile 1.147 +2 -2 ports/mail/sylpheed2-devel/Makefile 1.143 +2 -2 ports/mail/sylpheed2/Makefile 1.71 +2 -1 ports/palm/gnome-pilot/Makefile 1.10 +2 -1 ports/palm/libmal/Makefile 1.21 +2 -1 ports/palm/malsync/Makefile 1.20 +2 -1 ports/palm/syncal/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 03:27:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32BAC16A47C; Mon, 25 Sep 2006 03:27:45 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C918A43D46; Mon, 25 Sep 2006 03:27:44 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P3RiaL023187; Mon, 25 Sep 2006 03:27:44 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P3Riv0023186; Mon, 25 Sep 2006 03:27:44 GMT (envelope-from rafan) Message-Id: <200609250327.k8P3Riv0023186@repoman.freebsd.org> From: Rong-En Fan Date: Mon, 25 Sep 2006 03:27:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/squirrelmail-vlogin-plugin Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 03:27:45 -0000 rafan 2006-09-25 03:27:44 UTC FreeBSD ports repository Modified files: mail/squirrelmail-vlogin-plugin Makefile Log: - Only to activate the plugin when squirrel mail is installed, i.e., config.php exists. This fixes package building. Reported by: pointyhat via kris Submitted by: Neil Darlow Approved by: Matt Emmerton (maintainer) Revision Changes Path 1.6 +3 -0 ports/mail/squirrelmail-vlogin-plugin/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 03:29:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B410E16A417; Mon, 25 Sep 2006 03:29:47 +0000 (UTC) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44EA443D46; Mon, 25 Sep 2006 03:29:47 +0000 (GMT) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P3TlSm023280; Mon, 25 Sep 2006 03:29:47 GMT (envelope-from alexbl@repoman.freebsd.org) Received: (from alexbl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P3Tlh3023279; Mon, 25 Sep 2006 03:29:47 GMT (envelope-from alexbl) Message-Id: <200609250329.k8P3Tlh3023279@repoman.freebsd.org> From: Alexander Botero-Lowry Date: Mon, 25 Sep 2006 03:29:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/bittwist Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 03:29:47 -0000 alexbl 2006-09-25 03:29:46 UTC FreeBSD ports repository Modified files: net/bittwist Makefile distinfo Log: - Update to 0.74 PR: 103363 Submitted by: Wesley Shields (maintainer) Approved by: novel (mentor) Revision Changes Path 1.6 +1 -1 ports/net/bittwist/Makefile 1.4 +3 -3 ports/net/bittwist/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 03:32:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 400AE16A403; Mon, 25 Sep 2006 03:32:26 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89F1B43D55; Mon, 25 Sep 2006 03:32:25 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P3WPXH023667; Mon, 25 Sep 2006 03:32:25 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P3WPwZ023666; Mon, 25 Sep 2006 03:32:25 GMT (envelope-from mezz) Message-Id: <200609250332.k8P3WPwZ023666@repoman.freebsd.org> From: Jeremy Messenger Date: Mon, 25 Sep 2006 03:32:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/palm/malsync Makefile ports/palm/syncal Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 03:32:26 -0000 mezz 2006-09-25 03:32:25 UTC FreeBSD ports repository Modified files: palm/malsync Makefile palm/syncal Makefile Log: Mark both of ports as BROKEN, doesn't build with new pilot-link. As for palm/syncal, mark it as deprecated and expiration date at Dec 1, 2006. PR: ports/103552 and ports/103553 Submitted by: Alex Samorukov Revision Changes Path 1.22 +2 -0 ports/palm/malsync/Makefile 1.21 +4 -0 ports/palm/syncal/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 03:41:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 523B916A403; Mon, 25 Sep 2006 03:41:19 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0B1443D46; Mon, 25 Sep 2006 03:41:18 +0000 (GMT) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P3fIbs024109; Mon, 25 Sep 2006 03:41:18 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P3fIva024108; Mon, 25 Sep 2006 03:41:18 GMT (envelope-from chinsan) Message-Id: <200609250341.k8P3fIva024108@repoman.freebsd.org> From: Chin-San Huang Date: Mon, 25 Sep 2006 03:41:18 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/x11 chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 03:41:19 -0000 chinsan 2006-09-25 03:41:18 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/x11 chapter.sgml Log: Add some guidelines for configure X11 for flatpanel widescreens. PR: 103530 Submitted by: Shaun Jurrens Approved by: delphij (mentor) Revision Changes Path 1.174 +77 -0 doc/en_US.ISO8859-1/books/handbook/x11/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Sep 25 04:01:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E7A916A403; Mon, 25 Sep 2006 04:01:21 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4818E43D45; Mon, 25 Sep 2006 04:01:21 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P41LNk025051; Mon, 25 Sep 2006 04:01:21 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P41Lpb025050; Mon, 25 Sep 2006 04:01:21 GMT (envelope-from thompsa) Message-Id: <200609250401.k8P41Lpb025050@repoman.freebsd.org> From: Andrew Thompson Date: Mon, 25 Sep 2006 04:01:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net if_bridge.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 04:01:21 -0000 thompsa 2006-09-25 04:01:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_bridge.c Log: MFC r1.81 Revert r1.11.2.38 as the ethernet header was inadvertently stripped from ARP packets. Reimplement this correctly and use a sysctl that defaults to off so the user doesnt get any suprises if ipfw blocks the ARP packet. Approved by: re (hrs) Revision Changes Path 1.11.2.39 +36 -14 src/sys/net/if_bridge.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 04:20:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 236EA16A40F; Mon, 25 Sep 2006 04:20:41 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 807FD43D5C; Mon, 25 Sep 2006 04:20:40 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P4KegC028074; Mon, 25 Sep 2006 04:20:40 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P4Ke1l028073; Mon, 25 Sep 2006 04:20:40 GMT (envelope-from rafan) Message-Id: <200609250420.k8P4Ke1l028073@repoman.freebsd.org> From: Rong-En Fan Date: Mon, 25 Sep 2006 04:20:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/linux-ut Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 04:20:41 -0000 rafan 2006-09-25 04:20:40 UTC FreeBSD ports repository Modified files: games/linux-ut Makefile Log: - Fix build on 4.x PR: ports/103413 Submitted by: Alexander Logvinov Approved by: Sean C. Farley (maintainer) Revision Changes Path 1.4 +1 -1 ports/games/linux-ut/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 05:19:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B16316A40F; Mon, 25 Sep 2006 05:19:47 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB2D643D45; Mon, 25 Sep 2006 05:19:46 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P5JkRG039811; Mon, 25 Sep 2006 05:19:46 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P5JkXx039810; Mon, 25 Sep 2006 05:19:46 GMT (envelope-from rafan) Message-Id: <200609250519.k8P5JkXx039810@repoman.freebsd.org> From: Rong-En Fan Date: Mon, 25 Sep 2006 05:19:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Module-ScanDeps Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 05:19:47 -0000 rafan 2006-09-25 05:19:46 UTC FreeBSD ports repository Modified files: devel/p5-Module-ScanDeps Makefile distinfo Log: - Update to 0.66 PR: ports/103577 Submitted by: Gea-Suan Lin Revision Changes Path 1.21 +1 -1 ports/devel/p5-Module-ScanDeps/Makefile 1.20 +3 -3 ports/devel/p5-Module-ScanDeps/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 05:41:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D9F316A407; Mon, 25 Sep 2006 05:41:51 +0000 (UTC) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDA5943D53; Mon, 25 Sep 2006 05:41:50 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P5foni041041; Mon, 25 Sep 2006 05:41:50 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P5fok6041040; Mon, 25 Sep 2006 05:41:50 GMT (envelope-from clement) Message-Id: <200609250541.k8P5fok6041040@repoman.freebsd.org> From: Clement Laforet Date: Mon, 25 Sep 2006 05:41:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/apache22/files patch-srclib:apr-util:xml:expat:buildconf.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 05:41:51 -0000 clement 2006-09-25 05:41:50 UTC FreeBSD ports repository Removed files: www/apache22/files patch-srclib:apr-util:xml:expat:buildconf.sh Log: - Remove obsolete patch Reported by: Rui Lopes Revision Changes Path 1.3 +0 -29 ports/www/apache22/files/patch-srclib:apr-util:xml:expat:buildconf.sh (dead) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 06:18:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C927616A407; Mon, 25 Sep 2006 06:18:03 +0000 (UTC) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84FC643D49; Mon, 25 Sep 2006 06:18:03 +0000 (GMT) (envelope-from chinsan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P6I3oH043928; Mon, 25 Sep 2006 06:18:03 GMT (envelope-from chinsan@repoman.freebsd.org) Received: (from chinsan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P6I3s6043927; Mon, 25 Sep 2006 06:18:03 GMT (envelope-from chinsan) Message-Id: <200609250618.k8P6I3s6043927@repoman.freebsd.org> From: Chin-San Huang Date: Mon, 25 Sep 2006 06:18:03 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/gifs Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 06:18:03 -0000 chinsan 2006-09-25 06:18:03 UTC FreeBSD doc repository Modified files: en/gifs Makefile Log: Make unleashed6.jpg and twbsd6cover.jpg buildable. Approved by: delphij (mentor) Revision Changes Path 1.56 +2 -1 www/en/gifs/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 06:19:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A963B16A407; Mon, 25 Sep 2006 06:19:41 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 745AF43D55; Mon, 25 Sep 2006 06:19:41 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P6Jf6A044049; Mon, 25 Sep 2006 06:19:41 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P6JfRq044048; Mon, 25 Sep 2006 06:19:41 GMT (envelope-from ru) Message-Id: <200609250619.k8P6JfRq044048@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 25 Sep 2006 06:19:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/contrib/gcc cccp.1 cpp.1 gcc.1 src/contrib/gcc/doc cpp.1 gcc.1 gcov.1 src/gnu/usr.bin/cc/cc Makefile src/gnu/usr.bin/cc/cpp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 06:19:41 -0000 ru 2006-09-25 06:19:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) contrib/gcc/doc cpp.1 gcc.1 gcov.1 gnu/usr.bin/cc/cc Makefile gnu/usr.bin/cc/cpp Makefile Removed files: (Branch: RELENG_6) contrib/gcc cccp.1 cpp.1 gcc.1 Log: MFC: Bring GCC manpages back to reality. Approved by: re (kensmith) Revision Changes Path 1.3.36.1 +0 -668 src/contrib/gcc/cccp.1 (dead) 1.1.1.2.14.1 +0 -1 src/contrib/gcc/cpp.1 (dead) 1.1.1.2.12.1 +296 -195 src/contrib/gcc/doc/cpp.1 1.1.1.2.12.1 +4930 -3668 src/contrib/gcc/doc/gcc.1 1.1.1.2.12.1 +290 -136 src/contrib/gcc/doc/gcov.1 1.21.2.1 +0 -4272 src/contrib/gcc/gcc.1 (dead) 1.31.2.1 +1 -1 src/gnu/usr.bin/cc/cc/Makefile 1.24.8.1 +1 -6 src/gnu/usr.bin/cc/cpp/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 07:19:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97DFA16A403; Mon, 25 Sep 2006 07:19:58 +0000 (UTC) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7271943D53; Mon, 25 Sep 2006 07:19:57 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P7Jv3K048837; Mon, 25 Sep 2006 07:19:57 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P7JvbC048836; Mon, 25 Sep 2006 07:19:57 GMT (envelope-from lofi) Message-Id: <200609250719.k8P7JvbC048836@repoman.freebsd.org> From: Michael Nottebrock Date: Mon, 25 Sep 2006 07:19:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/kde3 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 07:19:58 -0000 lofi 2006-09-25 07:19:57 UTC FreeBSD ports repository Modified files: x11/kde3 Makefile Log: Don't use the port.mk definition of TR any longer, the enviroment breaks us. Noticed by: Scot Hetzel Revision Changes Path 1.92 +1 -1 ports/x11/kde3/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 07:22:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE95D16A412; Mon, 25 Sep 2006 07:22:39 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A920843D5D; Mon, 25 Sep 2006 07:22:39 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P7MdR0049096; Mon, 25 Sep 2006 07:22:39 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P7Md1i049095; Mon, 25 Sep 2006 07:22:39 GMT (envelope-from jmg) Message-Id: <200609250722.k8P7Md1i049095@repoman.freebsd.org> From: John-Mark Gurney Date: Mon, 25 Sep 2006 07:22:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet tcp_timer.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 07:22:40 -0000 jmg 2006-09-25 07:22:39 UTC FreeBSD src repository Modified files: sys/netinet tcp_timer.h Log: if min is greater than max, prefer max over min... I managed to get a retransmit timer that was going to take 19 days to trigger... Reviewed by: silby Revision Changes Path 1.31 +1 -1 src/sys/netinet/tcp_timer.h From owner-cvs-all@FreeBSD.ORG Mon Sep 25 07:26:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F296016A417; Mon, 25 Sep 2006 07:26:06 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FBBB43D5E; Mon, 25 Sep 2006 07:25:49 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5D62E.dip.t-dialin.net [84.165.214.46]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k8P71OHD051113; Mon, 25 Sep 2006 09:01:25 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from localhost (webmail.Leidinger.net [192.168.1.102]) by Andro-Beta.Leidinger.net (8.13.4/8.13.3) with ESMTP id k8P7PhHf087178; Mon, 25 Sep 2006 09:25:43 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from psbru.cec.eu.int (psbru.cec.eu.int [158.169.131.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Mon, 25 Sep 2006 09:25:11 +0200 Message-ID: <20060925092511.tufo9uura8ocowk8@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Mon, 25 Sep 2006 09:25:11 +0200 From: Alexander Leidinger To: Robert Watson , joel@FreeBSD.org References: <200609241731.k8OHV5mZ053132@repoman.freebsd.org> In-Reply-To: <200609241731.k8OHV5mZ053132@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.1.3) / FreeBSD-7.0 X-Virus-Scanned: by amavisd-new Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d auditd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 07:26:07 -0000 Quoting Robert Watson (from Sun, 24 Sep 2006 17:31:04 +0000 (UTC)): > Perhaps more ideally, the script would wait synchronously for auditd to > exit rather than for an arbitrary but short period of time. Yes, pwait(1) would be handy... maybe we should add an entry in the ideas list for this tool. Bye, Alexander. -- QOTD: "My shampoo lasts longer than my relationships." http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-cvs-all@FreeBSD.ORG Mon Sep 25 07:56:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E0FC16A40F; Mon, 25 Sep 2006 07:56:45 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BB5E43D62; Mon, 25 Sep 2006 07:56:36 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P7uZnD050857; Mon, 25 Sep 2006 07:56:35 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P7uZ4I050856; Mon, 25 Sep 2006 07:56:35 GMT (envelope-from erwin) Message-Id: <200609250756.k8P7uZ4I050856@repoman.freebsd.org> From: Erwin Lansing Date: Mon, 25 Sep 2006 07:56:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 07:56:45 -0000 erwin 2006-09-25 07:56:35 UTC FreeBSD ports repository Modified files: . access Log: Take adamw bit in for safekeeping. Let's hope to see him back soon. Submitted by: adamw With hat: portmgr secretary Revision Changes Path 1.732 +0 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Mon Sep 25 07:59:21 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EA5216A416; Mon, 25 Sep 2006 07:59:21 +0000 (UTC) (envelope-from vd@datamax.bg) Received: from jengal.datamax.bg (jengal.datamax.bg [82.103.104.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C684043D72; Mon, 25 Sep 2006 07:59:17 +0000 (GMT) (envelope-from vd@datamax.bg) Received: from qlovarnika.bg.datamax (qlovarnika.bg.datamax [192.168.10.2]) by jengal.datamax.bg (Postfix) with SMTP id C569FB844; Mon, 25 Sep 2006 10:59:16 +0300 (EEST) Received: (nullmailer pid 92582 invoked by uid 1002); Mon, 25 Sep 2006 07:59:16 -0000 Date: Mon, 25 Sep 2006 10:59:16 +0300 From: Vasil Dimov To: Jeremy Messenger Message-ID: <20060925075916.GA92480@qlovarnika.bg.datamax> References: <200609220657.k8M6v7aC053378@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZPt4rx8FFjLCG7dd" Content-Disposition: inline In-Reply-To: Cc: cvs-ports@freebsd.org, Sergei Kolobov , cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/security/libgpg-error Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vd@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, 25 Sep 2006 07:59:21 -0000 --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Sep 23, 2006 at 12:59:19PM -0500, Jeremy Messenger wrote: > On Fri, 22 Sep 2006 01:57:06 -0500, Sergei Kolobov = =20 > wrote: >=20 > >sergei 2006-09-22 06:57:06 UTC > > > > FreeBSD ports repository > > > > Modified files: > > security/libgpg-error Makefile distinfo pkg-plist > > Log: > > - Update to 1.4 (shared library version bumped to 3) >=20 > Can you add about it in the UPDATING (portupgrade -rf libgpg-error-\*)? = =20 > The bump don't work if you missed some of ports. >=20 > /libexec/ld-elf.so.1: Shared object "libgpg-error.so.2" not found, =20 > required by "buoh" > /libexec/ld-elf.so.1: Shared object "libgpg-error.so.2" not found, =20 > required by "libsoup-2.2.so.8" > /usr/local/lib/evolution/2.8/components/libevolution-calendar.so' failed = =20 > with `Shared object "libgpg-error.so.2" not found, required by =20 > "libevolution-calendar.so"' > [...goes on...] >=20 Are you sure `portupgrade -rf' is absolutely necessary? After upgrading I can see this libgpg-error.so.2 =3D> /usr/local/lib/compat/pkg/libgpg-error.so.2 = (0x801780000) which is quite fine. How does it happen that /usr/local/lib/compat/pkg/libgpg-error.so.2 is not present on your system? # pkg_info -qR /var/db/pkg/libgpg-error-1.3/ |wc -l 127 # pkg_info -qR /var/db/pkg/libgpg-error-1.3/ arts-1.5.4,1 bug-buddy-2.14.0 cups-base-1.2.2 cups-pstoraster-8.15 dasher-4.0.4,1 dctc-gui-qt-0.1.2_1 deskbar-applet-2.14.2 dia-gnome-0.95,1 dirmngr-0.9.6_1 eel-2.14.3 ekiga-2.0.2_2 eog-2.14.3 epiphany-2.14.3 evince-0.5.3_1 evolution-2.6.3 evolution-data-server-1.6.3 evolution-exchange-2.6.3 evolution-webcal-2.6.0 fast-user-switch-applet-2.14.2 file-roller-2.14.4,1 freealut-1.1.0_1 gcalctool-5.7.32,2 gconf-editor-2.14.0_1,1 gdm-2.14.10 gedit-2.14.4 gimp-gnome-2.2.13,1 gnome-applets-2.14.2_1 gnome-control-center-2.14.2 gnome-desktop-2.14.3 gnome-doc-utils-0.6.1 gnome-games-2.14.3 gnome-keyring-manager-2.14.0 gnome-libs-1.4.2_5 gnome-media-2.14.2 gnome-netstatus-2.12.0_2 gnome-panel-2.14.3 gnome-screensaver-2.14.3 gnome-session-2.14.3 gnome-spell-1.0.7_1 gnome-system-monitor-2.14.5 gnome-system-tools-2.14.0 gnome-terminal-2.14.2 gnome-themes-2.14.3 gnome-utils-2.14.0_4,1 gnome2-2.14.3 gnomecanvas-0.22.0_4 gnomeuserdocs2-2.14.2 gnopernicus-1.0.6 gnupg-devel-1.9.22 gnutls-1.4.4_1 gok-1.0.10,1 gpdf-2.10.0_5 gpgme-1.1.2 gtkhtml3-3.10.3 gtksourceview-1.6.2 gucharmap-gnome-1.6.0 icewm-gnome-1.2.28 kde-3.5.4 kdeaccessibility-3.5.4 kdeadmin-3.5.4 kdeartwork-3.5.4 kdebase-3.5.4_3 kdebase-kompmgr-3.5.4 kdeedu-3.5.4 kdegames-3.5.4 kdegraphics-3.5.4 kdegraphics-kamera-3.5.4 kdegraphics-kuickshow-3.5.4 kdelibs-3.5.4_1 kdemultimedia-3.5.4_1 kdemultimedia-xine_artsplugin-3.5.4_1 kdenetwork-3.5.4 kdepim-3.5.4_1 kdesdk-3.5.4 kdetoys-3.5.4 kdeutils-3.5.4 kdevelop-3.3.4 kdewebdev-3.5.4,2 koffice-1.5.2,2 libbonoboui-2.14.0_1 libgail-gnome-1.1.3_1 libgcrypt-1.2.3 libgnome-2.14.1_1 libgnomecups-0.2.2_1,1 libgnomeprint-2.12.1_2 libgnomeprintui-2.12.1_1 libgnomeui-2.14.1_1 libgtkhtml-2.11.0_1 libksba-1.0.0 libsoup-2.2.96 libxine-1.1.2_2 libxslt-1.1.17 mp3blaster-3.2.3_1 mplayer-0.99.8_3 mplayerplug-in-3.31 nautilus-2.14.3 nautilus-cd-burner-2.14.3 opal-2.2.2 openal-20060211_4 openoffice.org-2.0.4.rc2 poppler-qt-0.5.3 portaudit-db-0.2.3 pwlib-1.10.1_2,1 py24-gnome-2.12.4_1 py24-gnome-desktop-2.14.0 qca-tls-1.0_1 qemu-0.8.2_2 qt-3.3.6_2 scrollkeeper-0.3.14_4,1 sdl-1.2.11,2 sdl_image-1.2.5 sdl_mixer-1.2.7 sdl_net-1.2.6 smpeg-0.4.4_6 sound-juicer-2.14.4 torcs-1.2.4_2 totem-gstreamer-1.4.5_1 valknut-0.3.7 vino-2.13.5 wireshark-0.99.3a xfce-4.2.3.2 xfce4-print-4.2.3_1 xmlto-0.0.18 yelp-2.14.3 zenity-2.14.3 --=20 Vasil Dimov gro.DSBeerF@dv % Everyone who has lived has died, but not everyone who has died has lived. --ZPt4rx8FFjLCG7dd Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQFFF4xUFw6SP/bBpCARAlV3AKCHNEzpLaSkf/T3d9bkoMIOPwFwjACghRGq a4TpWZyZpR2kSlVcNUZhPAg= =G+2Z -----END PGP SIGNATURE----- --ZPt4rx8FFjLCG7dd-- From owner-cvs-all@FreeBSD.ORG Mon Sep 25 08:29:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A42416A415; Mon, 25 Sep 2006 08:29:19 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47D3643D49; Mon, 25 Sep 2006 08:29:19 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P8TJTr053588; Mon, 25 Sep 2006 08:29:19 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P8TJiY053587; Mon, 25 Sep 2006 08:29:19 GMT (envelope-from vanilla) Message-Id: <200609250829.k8P8TJiY053587@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Mon, 25 Sep 2006 08:29:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/irc/irssi Makefile ports/irc/irssi/files patch-topic_length X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 08:29:19 -0000 vanilla 2006-09-25 08:29:19 UTC FreeBSD ports repository Modified files: irc/irssi Makefile Added files: irc/irssi/files patch-topic_length Log: When irssi displays a overlong topic with wide (width > 1) character on the display margin, it will truncate AFTER that character. That is, the whole wide character is outputted and mess up the screen. This patch fixes the problem by truncating BEFORE wide characters that fall on the display margin. PR: ports/103597 Submitted by: Yi-Hsuan Hsin Revision Changes Path 1.93 +1 -1 ports/irc/irssi/Makefile 1.1 +41 -0 ports/irc/irssi/files/patch-topic_length (new) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 08:53:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 964DD16A59C; Mon, 25 Sep 2006 08:53:16 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C4A343D45; Mon, 25 Sep 2006 08:53:16 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P8rFwk062687; Mon, 25 Sep 2006 08:53:15 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P8rFwl062686; Mon, 25 Sep 2006 08:53:15 GMT (envelope-from miwi) Message-Id: <200609250853.k8P8rFwl062686@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Sep 2006 08:53:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/pear-Net_UserAgent_Mobile Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 08:53:16 -0000 miwi 2006-09-25 08:53:15 UTC FreeBSD ports repository Modified files: net/pear-Net_UserAgent_Mobile Makefile distinfo Log: - Update to 0.28.0 PR: ports/103608 Submitted by: Shinsuke Matsui (maintainer) Revision Changes Path 1.7 +1 -1 ports/net/pear-Net_UserAgent_Mobile/Makefile 1.7 +3 -3 ports/net/pear-Net_UserAgent_Mobile/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 08:57:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6581716A407; Mon, 25 Sep 2006 08:57:16 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0E9D43D5F; Mon, 25 Sep 2006 08:56:12 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P8u16r062875; Mon, 25 Sep 2006 08:56:01 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P8u1LR062874; Mon, 25 Sep 2006 08:56:01 GMT (envelope-from maho) Message-Id: <200609250856.k8P8u1LR062874@repoman.freebsd.org> From: Maho Nakata Date: Mon, 25 Sep 2006 08:56:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/openoffice.org-2.0-devel Makefile distinfo ports/editors/openoffice.org-2.0-devel/files patch-i69469 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 08:57:16 -0000 maho 2006-09-25 08:56:01 UTC FreeBSD ports repository Modified files: editors/openoffice.org-2.0-devel Makefile distinfo editors/openoffice.org-2.0-devel/files patch-i69469 Log: Update to SRC680_m185, better patch to #i69469#[1] Submitted by: jkim[1] Revision Changes Path 1.276 +2 -2 ports/editors/openoffice.org-2.0-devel/Makefile 1.115 +3 -3 ports/editors/openoffice.org-2.0-devel/distinfo 1.2 +37 -12 ports/editors/openoffice.org-2.0-devel/files/patch-i69469 From owner-cvs-all@FreeBSD.ORG Mon Sep 25 08:57:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 430C316A52D; Mon, 25 Sep 2006 08:57:26 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6854843D9A; Mon, 25 Sep 2006 08:56:36 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P8uWVd062932; Mon, 25 Sep 2006 08:56:32 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P8uWjP062931; Mon, 25 Sep 2006 08:56:32 GMT (envelope-from maho) Message-Id: <200609250856.k8P8uWjP062931@repoman.freebsd.org> From: Maho Nakata Date: Mon, 25 Sep 2006 08:56:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/ooo-build Makefile distinfo ports/editors/ooo-build/files ooo-build-patch X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 08:57:26 -0000 maho 2006-09-25 08:56:31 UTC FreeBSD ports repository Modified files: editors/ooo-build Makefile distinfo editors/ooo-build/files ooo-build-patch Log: Update to ood680-m4 (actually 2.0.4rc2). Revision Changes Path 1.17 +2 -2 ports/editors/ooo-build/Makefile 1.12 +6 -6 ports/editors/ooo-build/distinfo 1.10 +0 -11 ports/editors/ooo-build/files/ooo-build-patch From owner-cvs-all@FreeBSD.ORG Mon Sep 25 09:10:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51BAE16A407; Mon, 25 Sep 2006 09:10:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06AD243D49; Mon, 25 Sep 2006 09:10:43 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P9AgSW070600; Mon, 25 Sep 2006 09:10:42 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P9AgSf070598; Mon, 25 Sep 2006 09:10:42 GMT (envelope-from miwi) Message-Id: <200609250910.k8P9AgSf070598@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Sep 2006 09:10:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/rubygem-mongrel_cluster Makefile distinfo ports/www/rubygem-mongrel_cluster/files mongrel_cluster.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 09:10:43 -0000 miwi 2006-09-25 09:10:42 UTC FreeBSD ports repository Modified files: www/rubygem-mongrel_cluster Makefile distinfo Added files: www/rubygem-mongrel_cluster/files mongrel_cluster.in Log: - Update to 0.2.1 - Add rc.d script PR: ports/103599 Submitted by: Rui Lopes (maintainer) Revision Changes Path 1.4 +6 -3 ports/www/rubygem-mongrel_cluster/Makefile 1.3 +3 -3 ports/www/rubygem-mongrel_cluster/distinfo 1.1 +35 -0 ports/www/rubygem-mongrel_cluster/files/mongrel_cluster.in (new) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 09:29:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2CAE16A407; Mon, 25 Sep 2006 09:29:18 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40EF443D6D; Mon, 25 Sep 2006 09:29:18 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P9TIxh071428; Mon, 25 Sep 2006 09:29:18 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P9TI4O071427; Mon, 25 Sep 2006 09:29:18 GMT (envelope-from ijliao) Message-Id: <200609250929.k8P9TI4O071427@repoman.freebsd.org> From: Ying-Chieh Liao Date: Mon, 25 Sep 2006 09:29:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/hsqldb Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 09:29:19 -0000 ijliao 2006-09-25 09:29:18 UTC FreeBSD ports repository Modified files: databases/hsqldb Makefile distinfo Log: upgrade to 1.8.0.7 Revision Changes Path 1.3 +2 -3 ports/databases/hsqldb/Makefile 1.2 +3 -3 ports/databases/hsqldb/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 09:37:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F038416A415; Mon, 25 Sep 2006 09:37:01 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D54B43D7B; Mon, 25 Sep 2006 09:36:57 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P9auht071823; Mon, 25 Sep 2006 09:36:56 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P9auuZ071822; Mon, 25 Sep 2006 09:36:56 GMT (envelope-from joel) Message-Id: <200609250936.k8P9auuZ071822@repoman.freebsd.org> From: Joel Dahl Date: Mon, 25 Sep 2006 09:36:56 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/projects/c99 index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 09:37:02 -0000 joel 2006-09-25 09:36:56 UTC FreeBSD doc repository Modified files: en/projects/c99 index.sgml Log: Fix "Last Updated" date for the mailx entry. Revision Changes Path 1.108 +2 -2 www/en/projects/c99/index.sgml From owner-cvs-all@FreeBSD.ORG Mon Sep 25 09:37:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29A2716A40F; Mon, 25 Sep 2006 09:37:38 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 537C043D67; Mon, 25 Sep 2006 09:37:36 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P9baiD071864; Mon, 25 Sep 2006 09:37:36 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P9baJ6071863; Mon, 25 Sep 2006 09:37:36 GMT (envelope-from des) Message-Id: <200609250937.k8P9baJ6071863@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 25 Sep 2006 09:37:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/crypto/openssh monitor.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 09:37:38 -0000 des 2006-09-25 09:37:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) crypto/openssh monitor.c Log: MFC: vendor patch for BSM problem in protocol version 1. Approved by: re (mux) Revision Changes Path 1.17.2.2 +2 -5 src/crypto/openssh/monitor.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 09:56:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B11E16A40F; Mon, 25 Sep 2006 09:56:23 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E33943D55; Mon, 25 Sep 2006 09:56:23 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8P9uNBB079106; Mon, 25 Sep 2006 09:56:23 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8P9uNk8079105; Mon, 25 Sep 2006 09:56:23 GMT (envelope-from miwi) Message-Id: <200609250956.k8P9uNk8079105@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Sep 2006 09:56:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/orpie Makefile distinfo ports/math/orpie/files patch-Makefile patch-gsl::mlgsl_error.c patch-gsl::wrappers.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 09:56:23 -0000 miwi 2006-09-25 09:56:23 UTC FreeBSD ports repository Modified files: math/orpie Makefile distinfo Added files: math/orpie/files patch-gsl::mlgsl_error.c Removed files: math/orpie/files patch-Makefile patch-gsl::wrappers.h Log: - Update to 1.4.3 PR: ports/103582 Submitted by: Dylan Simon (maintainer) Revision Changes Path 1.8 +1 -2 ports/math/orpie/Makefile 1.4 +3 -3 ports/math/orpie/distinfo 1.2 +0 -53 ports/math/orpie/files/patch-Makefile (dead) 1.1 +12 -0 ports/math/orpie/files/patch-gsl::mlgsl_error.c (new) 1.2 +0 -11 ports/math/orpie/files/patch-gsl::wrappers.h (dead) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 10:05:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF92C16A492; Mon, 25 Sep 2006 10:05:38 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69FDF43D45; Mon, 25 Sep 2006 10:05:38 +0000 (GMT) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PA5cBx080738; Mon, 25 Sep 2006 10:05:38 GMT (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PA5cbT080737; Mon, 25 Sep 2006 10:05:38 GMT (envelope-from thomas) Message-Id: <200609251005.k8PA5cbT080737@repoman.freebsd.org> From: Thomas Quinot Date: Mon, 25 Sep 2006 10:05:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libutil pw_util.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 10:05:38 -0000 thomas 2006-09-25 10:05:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libutil pw_util.c Log: MFC rev 1.36 to RELENG_6: (pw_copy): Handle the case of a malformed line in master.passwd (copy it silently, do not dereference NULL pointer). MFC rev. 1.37 to RELENG_6: Minor comment fix to the change above. PR: bin/102848 Approved by: re (hrs) Revision Changes Path 1.35.8.1 +11 -2 src/lib/libutil/pw_util.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 10:11:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51DD916A412; Mon, 25 Sep 2006 10:11:18 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24FD743D79; Mon, 25 Sep 2006 10:11:17 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PABGH7081088; Mon, 25 Sep 2006 10:11:16 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PABGaL081087; Mon, 25 Sep 2006 10:11:16 GMT (envelope-from bms) Message-Id: <200609251011.k8PABGaL081087@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 10:11:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet in_var.h ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 10:11:18 -0000 bms 2006-09-25 10:11:16 UTC FreeBSD src repository Modified files: sys/netinet in_var.h ip_output.c Log: Account for output IP datagrams on the ifaddr where they originated from, *not* the first ifaddr on the ifp. This is similar to what NetBSD does. PR: kern/72936 Submitted by: alfred Reviewed by: andre Revision Changes Path 1.57 +14 -3 src/sys/netinet/in_var.h 1.264 +12 -5 src/sys/netinet/ip_output.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 10:12:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F31116A412; Mon, 25 Sep 2006 10:12:21 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7272243D66; Mon, 25 Sep 2006 10:12:07 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PAC7Gr081150; Mon, 25 Sep 2006 10:12:07 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PAC7HD081149; Mon, 25 Sep 2006 10:12:07 GMT (envelope-from bms) Message-Id: <200609251012.k8PAC7HD081149@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 10:12:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet ip_output.c ip_var.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 10:12:21 -0000 bms 2006-09-25 10:12:07 UTC FreeBSD src repository Modified files: sys/netinet ip_output.c ip_var.h Log: Forced commit to note this change should be MFCed. MFC after: 1 week Revision Changes Path 1.265 +0 -0 src/sys/netinet/ip_output.c 1.99 +0 -0 src/sys/netinet/ip_var.h From owner-cvs-all@FreeBSD.ORG Mon Sep 25 10:26:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4948F16A412; Mon, 25 Sep 2006 10:26:45 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 056FF43D45; Mon, 25 Sep 2006 10:26:45 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PAQiBI081935; Mon, 25 Sep 2006 10:26:44 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PAQij3081934; Mon, 25 Sep 2006 10:26:44 GMT (envelope-from miwi) Message-Id: <200609251026.k8PAQij3081934@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Sep 2006 10:26:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/mod_perl2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 10:26:45 -0000 miwi 2006-09-25 10:26:44 UTC FreeBSD ports repository Modified files: www/mod_perl2 Makefile Log: - Fix dependencies PR: ports/103612 Submitted by: Lars Eggert (maintainer) Revision Changes Path 1.53 +4 -0 ports/www/mod_perl2/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 10:29:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0742F16A412; Mon, 25 Sep 2006 10:29:01 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from unixfreunde.net (unixfreunde.de [85.214.35.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id 906A543D46; Mon, 25 Sep 2006 10:29:00 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: by unixfreunde.net (Postfix, from userid 65534) id 5EA7E50A0C; Mon, 25 Sep 2006 12:28:59 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.1.3-gr1 (2006-06-01) on unixfreunde.de X-Spam-Level: * X-Spam-Status: No, score=1.5 required=5.0 tests=AWL, BAYES_00, FORGED_RCVD_HELO, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.1.3-gr1 Received: from mwilke.ath.cx (dslb-082-083-131-212.pools.arcor-ip.net [82.83.131.212]) by unixfreunde.net (Postfix) with ESMTP id CEA51509B5; Mon, 25 Sep 2006 12:28:58 +0200 (CEST) Date: Mon, 25 Sep 2006 12:28:57 +0200 From: Martin Wilke To: Martin Wilke Message-ID: <20060925122857.632f4439@mwilke.ath.cx> In-Reply-To: <200609251026.k8PAQij3081934@repoman.freebsd.org> References: <200609251026.k8PAQij3081934@repoman.freebsd.org> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.10.3; i386-portbld-freebsd7.0) User-Agent: miwi@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/www/mod_perl2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 10:29:01 -0000 On Mon, 25 Sep 2006 10:26:44 +0000 (UTC) Martin Wilke wrote: ups I forgot the Notes: - Bump PORTREVISION > miwi 2006-09-25 10:26:44 UTC > > FreeBSD ports repository > > Modified files: > www/mod_perl2 Makefile > Log: > - Fix dependencies > > PR: ports/103612 > Submitted by: Lars Eggert (maintainer) > > Revision Changes Path > 1.53 +4 -0 ports/www/mod_perl2/Makefile > _______________________________________________ > cvs-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-ports > To unsubscribe, send any mail to "cvs-ports-unsubscribe@freebsd.org" -- Martin Wilke | irc.unixfreunde.de #bsd miwi@FreeBSD.org | miwi@unixfreunde.de FreeBSD Commiter | Power to Serve From owner-cvs-all@FreeBSD.ORG Mon Sep 25 10:39:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1705C16A403; Mon, 25 Sep 2006 10:39:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DA2843D4C; Mon, 25 Sep 2006 10:39:16 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PAdGc4082937; Mon, 25 Sep 2006 10:39:16 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PAdGNN082936; Mon, 25 Sep 2006 10:39:16 GMT (envelope-from miwi) Message-Id: <200609251039.k8PAdGNN082936@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Sep 2006 10:39:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/munin-main Makefile pkg-install ports/sysutils/munin-main/files patch-Makefile.config X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 10:39:17 -0000 miwi 2006-09-25 10:39:15 UTC FreeBSD ports repository Modified files: sysutils/munin-main Makefile pkg-install sysutils/munin-main/files patch-Makefile.config Log: - Fix premissions with pre-existing user's - Bump PORTREVISION PR: ports/103450 Submitted by: Lupe Christoph (maintainer) Revision Changes Path 1.11 +1 -0 ports/sysutils/munin-main/Makefile 1.3 +2 -2 ports/sysutils/munin-main/files/patch-Makefile.config 1.4 +1 -1 ports/sysutils/munin-main/pkg-install From owner-cvs-all@FreeBSD.ORG Mon Sep 25 10:47:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE32316A4DD; Mon, 25 Sep 2006 10:47:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AEF443D60; Mon, 25 Sep 2006 10:47:02 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PAl2Ec083383; Mon, 25 Sep 2006 10:47:02 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PAl2G5083382; Mon, 25 Sep 2006 10:47:02 GMT (envelope-from miwi) Message-Id: <200609251047.k8PAl2G5083382@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Sep 2006 10:47:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/munin-node Makefile pkg-install ports/sysutils/munin-node/files patch-Makefile.config plugins.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 10:47:04 -0000 miwi 2006-09-25 10:47:02 UTC FreeBSD ports repository Modified files: sysutils/munin-node Makefile pkg-install sysutils/munin-node/files patch-Makefile.config plugins.conf Log: - Fix premissions with pre-existing user's - Bump PORTREVISION PR: ports/103451 Submitted by: Lupe Christoph (maintainer) Revision Changes Path 1.17 +1 -1 ports/sysutils/munin-node/Makefile 1.3 +2 -2 ports/sysutils/munin-node/files/patch-Makefile.config 1.2 +30 -17 ports/sysutils/munin-node/files/plugins.conf 1.3 +1 -1 ports/sysutils/munin-node/pkg-install From owner-cvs-all@FreeBSD.ORG Mon Sep 25 10:49:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06F4D16A4D0; Mon, 25 Sep 2006 10:49:14 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8FA543D45; Mon, 25 Sep 2006 10:49:13 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PAnDAW083505; Mon, 25 Sep 2006 10:49:13 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PAnDHB083504; Mon, 25 Sep 2006 10:49:13 GMT (envelope-from miwi) Message-Id: <200609251049.k8PAnDHB083504@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Sep 2006 10:49:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/uncrustify Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 10:49:14 -0000 miwi 2006-09-25 10:49:13 UTC FreeBSD ports repository Modified files: textproc/uncrustify Makefile distinfo Log: - Update to 0.27 PR: ports/103613 Submitted by: Dmitry Marakasov (maintainer) Revision Changes Path 1.5 +1 -1 ports/textproc/uncrustify/Makefile 1.5 +3 -3 ports/textproc/uncrustify/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 10:54:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1A0E16A407; Mon, 25 Sep 2006 10:54:55 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 979F643D79; Mon, 25 Sep 2006 10:54:51 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PAsolk083783; Mon, 25 Sep 2006 10:54:50 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PAso31083782; Mon, 25 Sep 2006 10:54:50 GMT (envelope-from garga) Message-Id: <200609251054.k8PAso31083782@repoman.freebsd.org> From: Renato Botelho Date: Mon, 25 Sep 2006 10:54:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/http_load Makefile distinfo ports/www/http_load/files Makefile.bsd patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 10:54:55 -0000 garga 2006-09-25 10:54:49 UTC FreeBSD ports repository Modified files: www/http_load Makefile distinfo www/http_load/files Makefile.bsd Removed files: www/http_load/files patch-aa Log: - Update to 12mar2006 version - Respect PREFIX - Cleanup PR: ports/102819 (based-on) Submitted by: Hung-Je Lou Revision Changes Path 1.11 +3 -7 ports/www/http_load/Makefile 1.7 +3 -3 ports/www/http_load/distinfo 1.2 +2 -2 ports/www/http_load/files/Makefile.bsd 1.5 +0 -61 ports/www/http_load/files/patch-aa (dead) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:16:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B415A16A40F; Mon, 25 Sep 2006 11:16:59 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78A5243D45; Mon, 25 Sep 2006 11:16:59 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBGxj7090148; Mon, 25 Sep 2006 11:16:59 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBGx5f090147; Mon, 25 Sep 2006 11:16:59 GMT (envelope-from des) Message-Id: <200609251116.k8PBGx5f090147@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 25 Sep 2006 11:16:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libz ChangeLog FAQ README adler32.c compress.c crc32.c deflate.c deflate.h example.c gzio.c infback.c inffast.c inflate.c inflate.h inftrees.c minigzip.c trees.c zconf.h zlib.3 zlib.h zutil.c zutil.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:16:59 -0000 des 2006-09-25 11:16:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libz ChangeLog FAQ README adler32.c compress.c crc32.c deflate.c deflate.h example.c gzio.c infback.c inffast.c inflate.c inflate.h inftrees.c minigzip.c trees.c zconf.h zlib.3 zlib.h zutil.c zutil.h Log: MFC: upgrade to 1.2.3. Approved by: re (hrs) Revision Changes Path 1.1.1.6.2.1 +92 -1 src/lib/libz/ChangeLog 1.1.1.4.2.1 +14 -12 src/lib/libz/FAQ 1.1.1.6.2.1 +4 -5 src/lib/libz/README 1.9.2.1 +95 -20 src/lib/libz/adler32.c 1.9.2.1 +1 -1 src/lib/libz/compress.c 1.9.2.1 +96 -6 src/lib/libz/crc32.c 1.9.2.1 +258 -24 src/lib/libz/deflate.c 1.8.2.1 +8 -2 src/lib/libz/deflate.h 1.9.2.1 +1 -3 src/lib/libz/example.c 1.11.2.1 +35 -18 src/lib/libz/gzio.c 1.3.2.1 +6 -5 src/lib/libz/infback.c 1.5.2.1 +13 -0 src/lib/libz/inffast.c 1.6.2.1 +110 -16 src/lib/libz/inflate.c 1.1.1.1.8.1 +3 -5 src/lib/libz/inflate.h 1.6.2.1 +5 -4 src/lib/libz/inftrees.c 1.14.8.1 +4 -4 src/lib/libz/minigzip.c 1.9.2.1 +20 -16 src/lib/libz/trees.c 1.9.2.1 +10 -4 src/lib/libz/zconf.h 1.8.2.1 +3 -3 src/lib/libz/zlib.3 1.1.1.6.2.1 +193 -36 src/lib/libz/zlib.h 1.9.2.1 +16 -17 src/lib/libz/zutil.c 1.8.2.1 +18 -12 src/lib/libz/zutil.h From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:26:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F34DC16A403; Mon, 25 Sep 2006 11:26:31 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 294F943D7C; Mon, 25 Sep 2006 11:26:30 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBQU8c090693; Mon, 25 Sep 2006 11:26:30 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBQTad090692; Mon, 25 Sep 2006 11:26:30 GMT (envelope-from sos) Message-Id: <200609251126.k8PBQTad090692@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 25 Sep 2006 11:26:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ata ata-chipset.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:26:32 -0000 sos 2006-09-25 11:26:29 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c Log: add support for the ALI/ULI M5288 AHCI part. patch by: Sven Petai Revision Changes Path 1.176 +7 -0 src/sys/dev/ata/ata-chipset.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:29:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66E1D16A403; Mon, 25 Sep 2006 11:29:19 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21DB943D46; Mon, 25 Sep 2006 11:29:19 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBTItt090802; Mon, 25 Sep 2006 11:29:18 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBTIcX090801; Mon, 25 Sep 2006 11:29:18 GMT (envelope-from miwi) Message-Id: <200609251129.k8PBTIcX090801@repoman.freebsd.org> From: Martin Wilke Date: Mon, 25 Sep 2006 11:29:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/emulators/hatari Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:29:19 -0000 miwi 2006-09-25 11:29:18 UTC FreeBSD ports repository Modified files: emulators/hatari Makefile distinfo Log: - Update to 0.90 - BROKEN Does not build on 4.X PR: ports/103607 Submitted by: Alex Kozlov Revision Changes Path 1.10 +8 -3 ports/emulators/hatari/Makefile 1.6 +3 -3 ports/emulators/hatari/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:35:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1182216A403; Mon, 25 Sep 2006 11:35:35 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B077F43D7C; Mon, 25 Sep 2006 11:35:34 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBZY2m091224; Mon, 25 Sep 2006 11:35:34 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBZYqt091223; Mon, 25 Sep 2006 11:35:34 GMT (envelope-from scottl) Message-Id: <200609251135.k8PBZYqt091223@repoman.freebsd.org> From: Scott Long Date: Mon, 25 Sep 2006 11:35:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/mfi mfi.c mfi_debug.c mfivar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:35:35 -0000 scottl 2006-09-25 11:35:34 UTC FreeBSD src repository Modified files: sys/dev/mfi mfi.c mfivar.h Added files: sys/dev/mfi mfi_debug.c Log: Add a command debugging module and a periodic watchdog timer. Sponsored by: IronPort Revision Changes Path 1.18 +44 -0 src/sys/dev/mfi/mfi.c 1.1 +228 -0 src/sys/dev/mfi/mfi_debug.c (new) 1.5 +15 -0 src/sys/dev/mfi/mfivar.h From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:37:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3B7D16A412; Mon, 25 Sep 2006 11:37:24 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D1A843D6B; Mon, 25 Sep 2006 11:37:22 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBbMAU091342; Mon, 25 Sep 2006 11:37:22 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBbMh6091341; Mon, 25 Sep 2006 11:37:22 GMT (envelope-from garga) Message-Id: <200609251137.k8PBbMh6091341@repoman.freebsd.org> From: Renato Botelho Date: Mon, 25 Sep 2006 11:37:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/delegate Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:37:25 -0000 garga 2006-09-25 11:37:22 UTC FreeBSD ports repository Modified files: net/delegate Makefile distinfo Log: - UNBREAK: Update to 9.2.4 - Pass maintainership to submitter PR: ports/99091 Submitted by: Nils Vogels Approved by: maintainer timeout (3 months) Revision Changes Path 1.52 +2 -32 ports/net/delegate/Makefile 1.37 +3 -2 ports/net/delegate/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:40:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6365F16A403; Mon, 25 Sep 2006 11:40:23 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A132543DA7; Mon, 25 Sep 2006 11:40:15 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBeFVK091489; Mon, 25 Sep 2006 11:40:15 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBeFaR091488; Mon, 25 Sep 2006 11:40:15 GMT (envelope-from scottl) Message-Id: <200609251140.k8PBeFaR091488@repoman.freebsd.org> From: Scott Long Date: Mon, 25 Sep 2006 11:40:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf NOTES files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:40:23 -0000 scottl 2006-09-25 11:40:15 UTC FreeBSD src repository Modified files: sys/conf NOTES files Log: Add the mfi_debug.c file and MFI_DEBUG option. Revision Changes Path 1.1382 +1 -0 src/sys/conf/NOTES 1.1143 +1 -0 src/sys/conf/files From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:40:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F2D616A4A7; Mon, 25 Sep 2006 11:40:53 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7A4143D69; Mon, 25 Sep 2006 11:40:34 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBeYAD091560; Mon, 25 Sep 2006 11:40:34 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBeYsb091559; Mon, 25 Sep 2006 11:40:34 GMT (envelope-from rwatson) Message-Id: <200609251140.k8PBeYsb091559@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 11:40:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: TrustedBSD Cc: Subject: cvs commit: src/contrib/openbsm - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:40:53 -0000 rwatson 2006-09-25 11:40:34 UTC FreeBSD src repository src/contrib/openbsm - Imported sources Update of /home/ncvs/src/contrib/openbsm In directory repoman.freebsd.org:/tmp/cvs-serv91410 Log Message: Vendor import TrustedBSD OpenBSM 1.0 alpha 12, with the following change history notes since the last import: OpenBSM 1.0 alpha 12 - Correct bug in auditreduce which prevented the -c option from working correctly when the user specifies to process successful or failed events. The problem stemmed from not having access to the return token at the time the initial preselection occurred, but now a second preselection process occurs while processing the return token. - getacfilesz(3) API added to read new audit_control(5) filesz setting, which auditd(8) now sets the kernel audit trail rotation size to. - auditreduce(1) now uses stdin if no file names are specified on the command line; this was the documented behavior previously, but it was not implemented. Be more specific in auditreduce(1)'s examples section about what might be done with the output of auditreduce. - Add audit_warn(5) closefile event so that administrators can hook termination of an audit trail file. For example, this might be used to compress the trail file after it is closed. - auditreduce(1) now uses regular expressions for pathname matching. Users can now supply one or more (comma delimited) regular expressions for searching the pathnames. If one of the regular expressions is prefixed with a tilde (~), and a path matches, it will be excluded from the search results. MFC after: 3 days Obtained from: TrustedBSD Project Status: Vendor Tag: TrustedBSD Release Tags: OPENBSM_1_0_ALPHA_12 U src/contrib/openbsm/HISTORY U src/contrib/openbsm/LICENSE U src/contrib/openbsm/Makefile.am U src/contrib/openbsm/Makefile.in U src/contrib/openbsm/README U src/contrib/openbsm/TODO U src/contrib/openbsm/VERSION U src/contrib/openbsm/aclocal.m4 U src/contrib/openbsm/autogen.sh U src/contrib/openbsm/configure U src/contrib/openbsm/configure.ac U src/contrib/openbsm/bin/Makefile.am U src/contrib/openbsm/bin/Makefile.in U src/contrib/openbsm/bin/audit/Makefile.am U src/contrib/openbsm/bin/audit/Makefile.in U src/contrib/openbsm/bin/audit/audit.8 U src/contrib/openbsm/bin/audit/audit.c U src/contrib/openbsm/bin/auditd/Makefile.am U src/contrib/openbsm/bin/auditd/Makefile.in U src/contrib/openbsm/bin/auditd/audit_warn.c U src/contrib/openbsm/bin/auditd/auditd.8 U src/contrib/openbsm/bin/auditd/auditd.c U src/contrib/openbsm/bin/auditd/auditd.h U src/contrib/openbsm/bin/auditfilterd/Makefile.am U src/contrib/openbsm/bin/auditfilterd/Makefile.in U src/contrib/openbsm/bin/auditfilterd/auditfilterd.8 U src/contrib/openbsm/bin/auditfilterd/auditfilterd.c U src/contrib/openbsm/bin/auditfilterd/auditfilterd.h U src/contrib/openbsm/bin/auditfilterd/auditfilterd_conf.c U src/contrib/openbsm/bin/auditreduce/Makefile.am U src/contrib/openbsm/bin/auditreduce/Makefile.in U src/contrib/openbsm/bin/auditreduce/auditreduce.1 U src/contrib/openbsm/bin/auditreduce/auditreduce.c U src/contrib/openbsm/bin/auditreduce/auditreduce.h U src/contrib/openbsm/bin/praudit/Makefile.am U src/contrib/openbsm/bin/praudit/Makefile.in U src/contrib/openbsm/bin/praudit/praudit.1 U src/contrib/openbsm/bin/praudit/praudit.c U src/contrib/openbsm/bsm/Makefile.am U src/contrib/openbsm/bsm/Makefile.in U src/contrib/openbsm/bsm/audit.h U src/contrib/openbsm/bsm/audit_filter.h U src/contrib/openbsm/bsm/audit_internal.h C src/contrib/openbsm/bsm/audit_kevents.h U src/contrib/openbsm/bsm/audit_record.h U src/contrib/openbsm/bsm/audit_uevents.h U src/contrib/openbsm/bsm/libbsm.h U src/contrib/openbsm/compat/endian.h U src/contrib/openbsm/compat/queue.h U src/contrib/openbsm/compat/strlcat.h U src/contrib/openbsm/config/config.guess U src/contrib/openbsm/config/config.h.in U src/contrib/openbsm/config/config.sub U src/contrib/openbsm/config/depcomp U src/contrib/openbsm/config/install-sh U src/contrib/openbsm/config/ltmain.sh U src/contrib/openbsm/config/missing U src/contrib/openbsm/etc/audit_class C src/contrib/openbsm/etc/audit_control C src/contrib/openbsm/etc/audit_event U src/contrib/openbsm/etc/audit_filter U src/contrib/openbsm/etc/audit_user U src/contrib/openbsm/etc/audit_warn U src/contrib/openbsm/libbsm/Makefile.am U src/contrib/openbsm/libbsm/Makefile.in U src/contrib/openbsm/libbsm/au_class.3 U src/contrib/openbsm/libbsm/au_control.3 U src/contrib/openbsm/libbsm/au_event.3 U src/contrib/openbsm/libbsm/au_free_token.3 U src/contrib/openbsm/libbsm/au_io.3 U src/contrib/openbsm/libbsm/au_mask.3 U src/contrib/openbsm/libbsm/au_open.3 U src/contrib/openbsm/libbsm/au_token.3 U src/contrib/openbsm/libbsm/au_user.3 U src/contrib/openbsm/libbsm/audit_submit.3 U src/contrib/openbsm/libbsm/bsm_audit.c U src/contrib/openbsm/libbsm/bsm_class.c U src/contrib/openbsm/libbsm/bsm_control.c U src/contrib/openbsm/libbsm/bsm_event.c U src/contrib/openbsm/libbsm/bsm_flags.c U src/contrib/openbsm/libbsm/bsm_io.c U src/contrib/openbsm/libbsm/bsm_mask.c U src/contrib/openbsm/libbsm/bsm_notify.c U src/contrib/openbsm/libbsm/bsm_token.c U src/contrib/openbsm/libbsm/bsm_user.c U src/contrib/openbsm/libbsm/libbsm.3 U src/contrib/openbsm/libbsm/bsm_wrappers.c U src/contrib/openbsm/man/Makefile.am U src/contrib/openbsm/man/Makefile.in U src/contrib/openbsm/man/audit.2 U src/contrib/openbsm/man/audit.log.5 U src/contrib/openbsm/man/audit_class.5 U src/contrib/openbsm/man/audit_control.5 U src/contrib/openbsm/man/audit_event.5 U src/contrib/openbsm/man/audit_user.5 U src/contrib/openbsm/man/audit_warn.5 U src/contrib/openbsm/man/auditctl.2 U src/contrib/openbsm/man/auditon.2 U src/contrib/openbsm/man/getaudit.2 U src/contrib/openbsm/man/getauid.2 U src/contrib/openbsm/man/setaudit.2 U src/contrib/openbsm/man/setauid.2 U src/contrib/openbsm/modules/Makefile.am U src/contrib/openbsm/modules/Makefile.in U src/contrib/openbsm/modules/auditfilter_noop/Makefile.am U src/contrib/openbsm/modules/auditfilter_noop/Makefile.in U src/contrib/openbsm/modules/auditfilter_noop/auditfilter_noop.c U src/contrib/openbsm/test/Makefile.am U src/contrib/openbsm/test/Makefile.in U src/contrib/openbsm/test/bsm/Makefile.am U src/contrib/openbsm/test/bsm/Makefile.in U src/contrib/openbsm/test/bsm/generate.c U src/contrib/openbsm/test/reference/arg32_record U src/contrib/openbsm/test/reference/arg32_token U src/contrib/openbsm/test/reference/data_record U src/contrib/openbsm/test/reference/data_token U src/contrib/openbsm/test/reference/file_record U src/contrib/openbsm/test/reference/file_token U src/contrib/openbsm/test/reference/header32_token U src/contrib/openbsm/test/reference/in_addr_record U src/contrib/openbsm/test/reference/in_addr_token U src/contrib/openbsm/test/reference/ip_record U src/contrib/openbsm/test/reference/ip_token U src/contrib/openbsm/test/reference/ipc_record U src/contrib/openbsm/test/reference/ipc_token U src/contrib/openbsm/test/reference/iport_record U src/contrib/openbsm/test/reference/iport_token U src/contrib/openbsm/test/reference/opaque_record U src/contrib/openbsm/test/reference/opaque_token U src/contrib/openbsm/test/reference/path_record U src/contrib/openbsm/test/reference/path_token U src/contrib/openbsm/test/reference/process32_record U src/contrib/openbsm/test/reference/process32_token U src/contrib/openbsm/test/reference/process32ex_record U src/contrib/openbsm/test/reference/process32ex_token U src/contrib/openbsm/test/reference/return32_record U src/contrib/openbsm/test/reference/return32_token U src/contrib/openbsm/test/reference/seq_record U src/contrib/openbsm/test/reference/seq_token U src/contrib/openbsm/test/reference/subject32_record U src/contrib/openbsm/test/reference/subject32_token U src/contrib/openbsm/test/reference/subject32ex_record U src/contrib/openbsm/test/reference/subject32ex_token-IPv4 U src/contrib/openbsm/test/reference/subject32ex_token-IPv6 U src/contrib/openbsm/test/reference/text_record U src/contrib/openbsm/test/reference/text_token U src/contrib/openbsm/test/reference/trailer_token U src/contrib/openbsm/test/samples/execve-long-args.trail U src/contrib/openbsm/tools/Makefile.am U src/contrib/openbsm/tools/Makefile.in U src/contrib/openbsm/tools/audump.c 3 conflicts created by this import. Use the following command to help the merge: cvs checkout -jTrustedBSD:yesterday -jTrustedBSD src/contrib/openbsm From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:42:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBC6516A492; Mon, 25 Sep 2006 11:42:18 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6318B43D94; Mon, 25 Sep 2006 11:42:13 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBgDoi091698; Mon, 25 Sep 2006 11:42:13 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBgDna091697; Mon, 25 Sep 2006 11:42:13 GMT (envelope-from scottl) Message-Id: <200609251142.k8PBgDna091697@repoman.freebsd.org> From: Scott Long Date: Mon, 25 Sep 2006 11:42:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/mfi Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:42:18 -0000 scottl 2006-09-25 11:42:13 UTC FreeBSD src repository Modified files: sys/modules/mfi Makefile Log: Update the mfi module build with the mfi_debug.c file. Revision Changes Path 1.4 +3 -1 src/sys/modules/mfi/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:44:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7D6C16A47B; Mon, 25 Sep 2006 11:44:39 +0000 (UTC) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B89D43D64; Mon, 25 Sep 2006 11:44:39 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBidIL091856; Mon, 25 Sep 2006 11:44:39 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBidEH091855; Mon, 25 Sep 2006 11:44:39 GMT (envelope-from roam) Message-Id: <200609251144.k8PBidEH091855@repoman.freebsd.org> From: Peter Pentchev Date: Mon, 25 Sep 2006 11:44:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/daemontools Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:44:40 -0000 roam 2006-09-25 11:44:39 UTC FreeBSD ports repository Modified files: sysutils/daemontools Makefile distinfo Log: Add the sigq12 patch, which allows the svc utility to tell supervise to send SIGQUIT, SIGUSR1, or SIGUSR2 to the daemon process. OPTIONS'ify - all but the STARTUP_SCRIPT variable, which is a string, not a flag. Appease portlint partially - unquote the RESTRICTED message. Bump PORTREVISION. Requested by: "Brent B. Powers" (the sigq12 patch) Revision Changes Path 1.24 +13 -4 ports/sysutils/daemontools/Makefile 1.6 +3 -0 ports/sysutils/daemontools/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:48:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6631116A4F3; Mon, 25 Sep 2006 11:48:08 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDEDF43E28; Mon, 25 Sep 2006 11:47:28 +0000 (GMT) (envelope-from girgen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBlQll092000; Mon, 25 Sep 2006 11:47:26 GMT (envelope-from girgen@repoman.freebsd.org) Received: (from girgen@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBlQGs091999; Mon, 25 Sep 2006 11:47:26 GMT (envelope-from girgen) Message-Id: <200609251147.k8PBlQGs091999@repoman.freebsd.org> From: Palle Girgensohn Date: Mon, 25 Sep 2006 11:47:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Cache-Simple-TimedExpiry Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:48:08 -0000 girgen 2006-09-25 11:47:26 UTC FreeBSD ports repository Modified files: devel/p5-Cache-Simple-TimedExpiry Makefile distinfo pkg-plist Log: Update to version 0.24 PR: 102270 (Jin-Shan Tseng) Revision Changes Path 1.5 +1 -1 ports/devel/p5-Cache-Simple-TimedExpiry/Makefile 1.5 +3 -3 ports/devel/p5-Cache-Simple-TimedExpiry/distinfo 1.3 +2 -1 ports/devel/p5-Cache-Simple-TimedExpiry/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:49:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02A5C16A49E; Mon, 25 Sep 2006 11:49:32 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36DDE43D66; Mon, 25 Sep 2006 11:48:08 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBm8GC092167; Mon, 25 Sep 2006 11:48:08 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBm8NT092166; Mon, 25 Sep 2006 11:48:08 GMT (envelope-from bms) Message-Id: <200609251148.k8PBm8NT092166@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 11:48:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet in_var.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:49:32 -0000 bms 2006-09-25 11:48:08 UTC FreeBSD src repository Modified files: sys/netinet in_var.h Log: Spleling Submitted by: pjd Revision Changes Path 1.58 +1 -1 src/sys/netinet/in_var.h From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:54:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1924116A4C8; Mon, 25 Sep 2006 11:54:41 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F30B443D60; Mon, 25 Sep 2006 11:52:31 +0000 (GMT) (envelope-from girgen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBqMYM092520; Mon, 25 Sep 2006 11:52:22 GMT (envelope-from girgen@repoman.freebsd.org) Received: (from girgen@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBqMoc092519; Mon, 25 Sep 2006 11:52:22 GMT (envelope-from girgen) Message-Id: <200609251152.k8PBqMoc092519@repoman.freebsd.org> From: Palle Girgensohn Date: Mon, 25 Sep 2006 11:52:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Cache-Simple-TimedExpiry Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:54:41 -0000 girgen 2006-09-25 11:52:22 UTC FreeBSD ports repository Modified files: devel/p5-Cache-Simple-TimedExpiry Makefile distinfo Log: Distfile disappeared. Update to 0.26. Revision Changes Path 1.6 +1 -1 ports/devel/p5-Cache-Simple-TimedExpiry/Makefile 1.6 +3 -3 ports/devel/p5-Cache-Simple-TimedExpiry/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:55:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0874B16A40F; Mon, 25 Sep 2006 11:55:30 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52AD143E82; Mon, 25 Sep 2006 11:53:23 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBr68Z092560; Mon, 25 Sep 2006 11:53:06 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBr61C092559; Mon, 25 Sep 2006 11:53:06 GMT (envelope-from rwatson) Message-Id: <200609251153.k8PBr61C092559@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 11:53:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/contrib/openbsm/etc audit_control audit_event X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:55:30 -0000 rwatson 2006-09-25 11:53:06 UTC FreeBSD src repository Modified files: contrib/openbsm/etc audit_control audit_event Log: Resolve conflicts from OpenBSM 1.0 alpha 12 import. Obtained from: TrustedBSD Project Revision Changes Path 1.4 +2 -1 src/contrib/openbsm/etc/audit_control 1.6 +5 -1 src/contrib/openbsm/etc/audit_event From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:55:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55C4C16A4B3; Mon, 25 Sep 2006 11:55:55 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CD1C43D46; Mon, 25 Sep 2006 11:54:05 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBrtOT092625; Mon, 25 Sep 2006 11:53:55 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBrtlK092624; Mon, 25 Sep 2006 11:53:55 GMT (envelope-from bms) Message-Id: <200609251153.k8PBrtlK092624@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 11:53:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet ip_carp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:55:55 -0000 bms 2006-09-25 11:53:55 UTC FreeBSD src repository Modified files: sys/netinet ip_carp.c Log: Fix an incompatibility between CARP and IPv4 multicast routing, whereby the VRRPv2 advertisements will originate from the wrong source address. This only affects kernels compiled with MROUTING and after the MRT_INIT ioctl() has been issued. Set imo_multicast_vif in carp's softc to the invalid value -1 after it is zeroed by softc allocation, to stop the ip_output() path looking up the incorrect source address thinking a vif is set. PR: kern/100532 Submitted by: Bohus Plucinsky MFC after: 1 week Revision Changes Path 1.43 +1 -0 src/sys/netinet/ip_carp.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:55:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60C4E16A4C8; Mon, 25 Sep 2006 11:55:55 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 899F943D62; Mon, 25 Sep 2006 11:54:06 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBrxff092652; Mon, 25 Sep 2006 11:53:59 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBrxl3092651; Mon, 25 Sep 2006 11:53:59 GMT (envelope-from rwatson) Message-Id: <200609251153.k8PBrxl3092651@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 11:53:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libbsm Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:55:55 -0000 rwatson 2006-09-25 11:53:58 UTC FreeBSD src repository Modified files: lib/libbsm Makefile Log: Hook up additional OpenBSM man page aliases following OpenBSM 1.0 alpha 12 import. Most of these should have existed previously, but didn't. MFC after: 3 days Obtained from: TrustedBSD Project Revision Changes Path 1.5 +20 -11 src/lib/libbsm/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 11:59:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E95816A403; Mon, 25 Sep 2006 11:59:40 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91A4743ED9; Mon, 25 Sep 2006 11:56:25 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PBuKuX092796; Mon, 25 Sep 2006 11:56:20 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PBuKgo092795; Mon, 25 Sep 2006 11:56:20 GMT (envelope-from rwatson) Message-Id: <200609251156.k8PBuKgo092795@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 11:56:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/auditreduce Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 11:59:40 -0000 rwatson 2006-09-25 11:56:20 UTC FreeBSD src repository Modified files: usr.sbin/auditreduce Makefile Log: auditreduce now requires OpenBSM's config/config.h, so add that to the build include path. MFC after: 3 days Obtained from: TrustedBSD Project Revision Changes Path 1.2 +2 -0 src/usr.sbin/auditreduce/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 12:11:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4114616A403; Mon, 25 Sep 2006 12:11:54 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from mail2.itxmarket.com (fw.itxmarket.com [84.14.136.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44A5A43D6B; Mon, 25 Sep 2006 12:11:53 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from icommerce.fr (mich2.itxmarket.com [192.168.2.26]) by mail2.itxmarket.com (Postfix) with ESMTP id A07C761C41; Mon, 25 Sep 2006 14:11:05 +0200 (CEST) Received: by icommerce.fr (Postfix, from userid 1001) id 4D47C22826; Mon, 25 Sep 2006 14:11:51 +0200 (CEST) Date: Mon, 25 Sep 2006 14:11:51 +0200 From: Michael Landin Hostbaek To: Norikatsu Shigemura Message-ID: <20060925121151.GA96661@mich2.itxmarket.com> Mail-Followup-To: Michael Landin Hostbaek , Norikatsu Shigemura , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200609231503.k8NF3aON079995@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609231503.k8NF3aON079995@repoman.freebsd.org> X-Operating-System: FreeBSD 6.1-STABLE i386 X-PGP-Key: http://www.freebsdcluster.org/~mich/ User-Agent: Mutt/1.5.13 (2006-08-11) Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/net-mgmt/net-snmp Makefile ports/net-mgmt/net-snmp/files snmpd.sh.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 12:11:54 -0000 Norikatsu Shigemura (nork) writes: > nork 2006-09-23 15:03:36 UTC > > FreeBSD ports repository > > Modified files: > net-mgmt/net-snmp Makefile > net-mgmt/net-snmp/files snmpd.sh.in > Log: > Fix -z bug. The build is broken on my -CURRENT box: /bin/sh /usr/local/bin/libtool --mode=compile cc -I../include -I. -I../agent -I../agent/mibgroup -I../snmplib -DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -I/usr/local/lib/perl5/5.8.8/mach/CORE -DINET6 -O2 -fno-strict-aliasing -pipe -Dfreebsd7 -c -o snmp_perl.lo snmp_perl.c cc -I../include -I. -I../agent -I../agent/mibgroup -I../snmplib -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.8/BSDPAN -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -I/usr/local/lib/perl5/5.8.8/mach/CORE -DINET6 -O2 -fno-strict-aliasing -pipe -Dfreebsd7 -c snmp_perl.c -fPIC -DPIC -o .libs/snmp_perl.o snmp_perl.c:88:2: #error embedded perl broken *** Error code 1 /mich From owner-cvs-all@FreeBSD.ORG Mon Sep 25 12:12:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFB0916A407; Mon, 25 Sep 2006 12:12:44 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from mail2.itxmarket.com (fw.itxmarket.com [84.14.136.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFE6A43D7F; Mon, 25 Sep 2006 12:12:32 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from icommerce.fr (mich2.itxmarket.com [192.168.2.26]) by mail2.itxmarket.com (Postfix) with ESMTP id 55CCD61CA9; Mon, 25 Sep 2006 14:11:42 +0200 (CEST) Received: by icommerce.fr (Postfix, from userid 1001) id 07AC322826; Mon, 25 Sep 2006 14:12:28 +0200 (CEST) Date: Mon, 25 Sep 2006 14:12:28 +0200 From: Michael Landin Hostbaek To: Jeremy Messenger Message-ID: <20060925121227.GB96661@mich2.itxmarket.com> Mail-Followup-To: Michael Landin Hostbaek , Jeremy Messenger , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200609250303.k8P336NA021869@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609250303.k8P336NA021869@repoman.freebsd.org> X-Operating-System: FreeBSD 6.1-STABLE i386 X-PGP-Key: http://www.freebsdcluster.org/~mich/ User-Agent: Mutt/1.5.13 (2006-08-11) Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/mail/sylpheed Makefile ports/mail/sylpheed2 Makefile ports/mail/sylpheed2-devel Makefile ports/palm/gnome-pilot Makefile ports/palm/libmal Makefile ports/palm/malsync Makefile ports/palm/syncal Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 12:12:45 -0000 Jeremy Messenger (mezz) writes: > mezz 2006-09-25 03:03:06 UTC > > FreeBSD ports repository > > Modified files: > mail/sylpheed Makefile > mail/sylpheed2 Makefile > mail/sylpheed2-devel Makefile > palm/gnome-pilot Makefile > palm/libmal Makefile > palm/malsync Makefile > palm/syncal Makefile > Log: > Chase pilot-link's shared library version bump. Bump the PORTREVISION. As for > the PRs, I shall chase and close a few of them. libmal build is broken: cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -g -DMALSYNC -O2 -fno-strict-aliasing -pipe -I../malsync/mal/common -I../malsync/mal/client/common -I../malsync/mal/client/unix -I/usr/local/include -c libmal.c -MT libmal.lo -MD -MP -MF .deps/libmal.TPlo -fPIC -DPIC -o .libs/libmal.lo libmal.c: In function `readAndUseDeviceInfoDatabase': libmal.c:295: error: too many arguments to function `dlp_ReadRecordByIndex' libmal.c: In function `readDeviceUserConfig32': libmal.c:617: error: too many arguments to function `dlp_ReadRecordByIndex' libmal.c: In function `readDeviceUserConfig31': libmal.c:655: error: too many arguments to function `dlp_ReadRecordByIndex' libmal.c: In function `writeDeviceUserConfig': libmal.c:715: error: too many arguments to function `dlp_ReadRecordByIndex' libmal.c: In function `getRecordBase': libmal.c:1030: warning: passing arg 3 of `dlp_ReadNextModifiedRec' from incompatible pointer type libmal.c:1030: error: too many arguments to function `dlp_ReadNextModifiedRec' libmal.c:1034: warning: passing arg 4 of `dlp_ReadRecordByIndex' from incompatible pointer type libmal.c:1034: error: too many arguments to function `dlp_ReadRecordByIndex' libmal.c: In function `Connect': libmal.c:1305: warning: `pilot_connect' is deprecated (declared at /usr/local/include/pi-header.h:28) libmal.c: In function `fill_in_versioninfo': libmal.c:1393: error: too many arguments to function `dlp_ReadRecordByIndex' gmake[2]: *** [libmal.lo] Error 1 gmake[2]: Leaving directory `/usr/ports/palm/libmal/work/libmal-0.40/src' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/palm/libmal/work/libmal-0.40' gmake: *** [all] Error 2 *** Error code 2 /mich From owner-cvs-all@FreeBSD.ORG Mon Sep 25 12:13:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26F1C16A4AB; Mon, 25 Sep 2006 12:13:20 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D2A243D72; Mon, 25 Sep 2006 12:13:14 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PCDElA095182; Mon, 25 Sep 2006 12:13:14 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PCDEHj095181; Mon, 25 Sep 2006 12:13:14 GMT (envelope-from joel) Message-Id: <200609251213.k8PCDEHj095181@repoman.freebsd.org> From: Joel Dahl Date: Mon, 25 Sep 2006 12:13:14 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/projects/ideas index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 12:13:20 -0000 joel 2006-09-25 12:13:14 UTC FreeBSD doc repository Modified files: en/projects/ideas index.sgml Log: Remove the 4Front sync entry (the results of the Google SoC have been committed) and add a link to the sound subsystem page on the FreeBSD wiki. Requested by: netchild Revision Changes Path 1.71 +4 -35 www/en/projects/ideas/index.sgml From owner-cvs-all@FreeBSD.ORG Mon Sep 25 12:22:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7660616A407; Mon, 25 Sep 2006 12:22:08 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30FCA43D69; Mon, 25 Sep 2006 12:22:08 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PCM8oP095611; Mon, 25 Sep 2006 12:22:08 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PCM8G2095610; Mon, 25 Sep 2006 12:22:08 GMT (envelope-from rwatson) Message-Id: <200609251222.k8PCM8G2095610@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 12:22:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/bsm audit_kevents.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 12:22:08 -0000 rwatson 2006-09-25 12:22:07 UTC FreeBSD src repository Modified files: sys/bsm audit_kevents.h Log: Merge OpenBSM 1.0 alpha 12 import changes into src/sys/bsm. New events for the Linuxulator. MFC after: 3 days Obtained from: TrustedBSD Project Revision Changes Path 1.9 +5 -1 src/sys/bsm/audit_kevents.h From owner-cvs-all@FreeBSD.ORG Mon Sep 25 12:33:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3550216A415; Mon, 25 Sep 2006 12:33:58 +0000 (UTC) (envelope-from sergei@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B487443D76; Mon, 25 Sep 2006 12:33:57 +0000 (GMT) (envelope-from sergei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PCXvO3096270; Mon, 25 Sep 2006 12:33:57 GMT (envelope-from sergei@repoman.freebsd.org) Received: (from sergei@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PCXvt3096269; Mon, 25 Sep 2006 12:33:57 GMT (envelope-from sergei) Message-Id: <200609251233.k8PCXvt3096269@repoman.freebsd.org> From: Sergei Kolobov Date: Mon, 25 Sep 2006 12:33:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/tmda Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 12:33:58 -0000 sergei 2006-09-25 12:33:57 UTC FreeBSD ports repository Modified files: mail/tmda Makefile Log: - Fix typos in MASTER_SITES URLs Spotted by: Jason R. Mastaler Revision Changes Path 1.54 +2 -2 ports/mail/tmda/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 12:37:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79D2216A412; Mon, 25 Sep 2006 12:37:52 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34C2143D69; Mon, 25 Sep 2006 12:37:52 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PCbqSf096483; Mon, 25 Sep 2006 12:37:52 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PCbqGC096482; Mon, 25 Sep 2006 12:37:52 GMT (envelope-from clsung) Message-Id: <200609251237.k8PCbqGC096482@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 25 Sep 2006 12:37:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-OurNet-BBS Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 12:37:52 -0000 clsung 2006-09-25 12:37:51 UTC FreeBSD ports repository Modified files: net/p5-OurNet-BBS Makefile Log: - fix dependency Revision Changes Path 1.3 +2 -2 ports/net/p5-OurNet-BBS/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 13:02:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCD9016A403; Mon, 25 Sep 2006 13:02:00 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9913A43D53; Mon, 25 Sep 2006 13:02:00 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PD203t028433; Mon, 25 Sep 2006 13:02:00 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PD20LN028429; Mon, 25 Sep 2006 13:02:00 GMT (envelope-from bms) Message-Id: <200609251302.k8PD20LN028429@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 13:02:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet ip_carp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 13:02:01 -0000 bms 2006-09-25 13:02:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet ip_carp.c Log: MFC: Fix an incompatibility between CARP and IPv4 multicast routing, whereby advertisements originate from the wrong source address. This only affects MROUTING kernels. PR: kern/100532 Submitted by: Bohus Plucinsky Approved by: re@ Revision Changes Path 1.27.2.8 +1 -0 src/sys/netinet/ip_carp.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 13:02:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 652FA16A415; Mon, 25 Sep 2006 13:02:59 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1ED0843D45; Mon, 25 Sep 2006 13:02:59 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PD2wId029664; Mon, 25 Sep 2006 13:02:58 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PD2wcG029663; Mon, 25 Sep 2006 13:02:58 GMT (envelope-from bms) Message-Id: <200609251302.k8PD2wcG029663@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 13:02:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet in_var.h ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 13:02:59 -0000 bms 2006-09-25 13:02:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet in_var.h ip_output.c Log: MFC: Account for output IP datagrams on the ifaddr where they will be sent from, not the first ifaddr on the ifp. PR: kern/72936 Submitted by: alfred Reviewed by: andre Approved by: re@ Revision Changes Path 1.53.2.3 +14 -3 src/sys/netinet/in_var.h 1.242.2.13 +11 -4 src/sys/netinet/ip_output.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 13:12:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAC4A16A415; Mon, 25 Sep 2006 13:12:43 +0000 (UTC) (envelope-from maxim@macomnet.ru) Received: from mp2.macomnet.net (mp2.macomnet.net [195.128.64.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DA7643D49; Mon, 25 Sep 2006 13:12:40 +0000 (GMT) (envelope-from maxim@macomnet.ru) Received: from localhost (localhost.int.ru [127.0.0.1] (may be forged)) by mp2.macomnet.net (8.13.7/8.13.3) with ESMTP id k8PDCZqX038940; Mon, 25 Sep 2006 17:12:39 +0400 (MSD) (envelope-from maxim@macomnet.ru) Date: Mon, 25 Sep 2006 17:12:35 +0400 (MSD) From: Maxim Konovalov To: Bruce M Simpson In-Reply-To: <200609251153.k8PBrtlK092624@repoman.freebsd.org> Message-ID: <20060925170809.Y38706@mp2.macomnet.net> References: <200609251153.k8PBrtlK092624@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/netinet ip_carp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 13:12:44 -0000 On Mon, 25 Sep 2006, 11:53-0000, Bruce M Simpson wrote: > bms 2006-09-25 11:53:55 UTC > > FreeBSD src repository > > Modified files: > sys/netinet ip_carp.c > Log: > Fix an incompatibility between CARP and IPv4 multicast routing, whereby > the VRRPv2 advertisements will originate from the wrong source address. > This only affects kernels compiled with MROUTING and after the MRT_INIT > ioctl() has been issued. > Set imo_multicast_vif in carp's softc to the invalid value -1 after it is > zeroed by softc allocation, to stop the ip_output() path looking up the > incorrect source address thinking a vif is set. > > PR: kern/100532 > Submitted by: Bohus Plucinsky > MFC after: 1 week [...] > bms 2006-09-25 13:02:00 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/netinet ip_carp.c > Log: > MFC: Fix an incompatibility between CARP and IPv4 multicast routing, > whereby advertisements originate from the wrong source address. > This only affects MROUTING kernels. > > PR: kern/100532 > Submitted by: Bohus Plucinsky > Approved by: re@ That was a really short week. -- Maxim Konovalov From owner-cvs-all@FreeBSD.ORG Mon Sep 25 13:12:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DE7F16A586; Mon, 25 Sep 2006 13:12:59 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CDA043D77; Mon, 25 Sep 2006 13:12:59 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PDCxtF047558; Mon, 25 Sep 2006 13:12:59 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PDCx5P047557; Mon, 25 Sep 2006 13:12:59 GMT (envelope-from lth) Message-Id: <200609251312.k8PDCx5P047557@repoman.freebsd.org> From: Lars Thegler Date: Mon, 25 Sep 2006 13:12:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Carp-Clan/files patch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 13:12:59 -0000 lth 2006-09-25 13:12:59 UTC FreeBSD ports repository Added files: devel/p5-Carp-Clan/files patch-Makefile.PL Log: Silence question about testing dependency Revision Changes Path 1.1 +13 -0 ports/devel/p5-Carp-Clan/files/patch-Makefile.PL (new) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 13:20:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DC5916A492; Mon, 25 Sep 2006 13:20:34 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C82A243D45; Mon, 25 Sep 2006 13:20:33 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PDKXdu055221; Mon, 25 Sep 2006 13:20:33 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PDKXsq055220; Mon, 25 Sep 2006 13:20:33 GMT (envelope-from rwatson) Message-Id: <200609251320.k8PDKXsq055220@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 13:20:33 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/audit chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 13:20:34 -0000 rwatson 2006-09-25 13:20:33 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/audit chapter.sgml Log: Document that praudit(1) can be run on auditpipe(4) devices, allowing the administrator to track the live event stream without worrying about trail files being rotated, etc. Obtained from: TrustedBSD Project Revision Changes Path 1.16 +36 -0 doc/en_US.ISO8859-1/books/handbook/audit/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Sep 25 13:51:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11DB316A53E; Mon, 25 Sep 2006 13:51:47 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89AC143EBF; Mon, 25 Sep 2006 13:50:56 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PDou4D066187; Mon, 25 Sep 2006 13:50:56 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PDou6x066186; Mon, 25 Sep 2006 13:50:56 GMT (envelope-from clsung) Message-Id: <200609251350.k8PDou6x066186@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 25 Sep 2006 13:50:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/p5-FLV-Info Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 13:51:47 -0000 clsung 2006-09-25 13:50:56 UTC FreeBSD ports repository Modified files: multimedia/p5-FLV-Info Makefile distinfo Log: - Update to 0.13 - Transfer to perl@ for maintaining this port PR: ports/103545 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.7 +2 -2 ports/multimedia/p5-FLV-Info/Makefile 1.6 +3 -3 ports/multimedia/p5-FLV-Info/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 14:12:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE67516A47C; Mon, 25 Sep 2006 14:12:46 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D570543D7D; Mon, 25 Sep 2006 14:12:41 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PECfKQ068390; Mon, 25 Sep 2006 14:12:41 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PECfVq068389; Mon, 25 Sep 2006 14:12:41 GMT (envelope-from clsung) Message-Id: <200609251412.k8PECfVq068389@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 25 Sep 2006 14:12:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/p5-Geo-Postcodes Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 14:12:46 -0000 clsung 2006-09-25 14:12:41 UTC FreeBSD ports repository Modified files: misc/p5-Geo-Postcodes Makefile distinfo pkg-plist Log: - Update to 0.31 - Transfer maintainership to perl@ PR: ports/103573 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.5 +5 -3 ports/misc/p5-Geo-Postcodes/Makefile 1.4 +3 -3 ports/misc/p5-Geo-Postcodes/distinfo 1.2 +6 -3 ports/misc/p5-Geo-Postcodes/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 14:13:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3828616A47E; Mon, 25 Sep 2006 14:13:49 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 376EE43D8F; Mon, 25 Sep 2006 14:13:37 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PEDaXm068462; Mon, 25 Sep 2006 14:13:36 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PEDasQ068461; Mon, 25 Sep 2006 14:13:36 GMT (envelope-from clsung) Message-Id: <200609251413.k8PEDasQ068461@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 25 Sep 2006 14:13:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/p5-Geo-Postcodes-DK Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 14:13:49 -0000 clsung 2006-09-25 14:13:36 UTC FreeBSD ports repository Modified files: misc/p5-Geo-Postcodes-DK Makefile distinfo Log: - Update to 0.31 - Transfer maintainership to perl@ PR: ports/103574 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.5 +3 -3 ports/misc/p5-Geo-Postcodes-DK/Makefile 1.4 +3 -3 ports/misc/p5-Geo-Postcodes-DK/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 14:14:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0610F16A47E; Mon, 25 Sep 2006 14:14:05 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19CB143D5F; Mon, 25 Sep 2006 14:13:57 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PEDvqs068503; Mon, 25 Sep 2006 14:13:57 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PEDvKj068502; Mon, 25 Sep 2006 14:13:57 GMT (envelope-from pav) Message-Id: <200609251413.k8PEDvKj068502@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 25 Sep 2006 14:13:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/twiki Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 14:14:05 -0000 pav 2006-09-25 14:13:57 UTC FreeBSD ports repository Modified files: www/twiki Makefile Log: - Fix post-install instructions Revision Changes Path 1.10 +1 -1 ports/www/twiki/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 14:16:31 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A8DD16A403; Mon, 25 Sep 2006 14:16:31 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12CC343D5F; Mon, 25 Sep 2006 14:16:20 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id CCA365E2D; Mon, 25 Sep 2006 18:16:18 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id C276C5E2C; Mon, 25 Sep 2006 18:16:18 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8PEGOFY018560; Mon, 25 Sep 2006 18:16:24 +0400 (MSD) (envelope-from ru) Date: Mon, 25 Sep 2006 18:16:24 +0400 From: Ruslan Ermilov To: Bruce M Simpson Message-ID: <20060925141624.GA99043@rambler-co.ru> References: <200609251302.k8PD2wcG029663@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tThc/1wpZn/ma/RB" Content-Disposition: inline In-Reply-To: <200609251302.k8PD2wcG029663@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 14:16:31 -0000 --tThc/1wpZn/ma/RB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Sep 25, 2006 at 01:02:58PM +0000, Bruce M Simpson wrote: > bms 2006-09-25 13:02:58 UTC >=20 > FreeBSD src repository >=20 > Modified files: (Branch: RELENG_6) > sys/netinet in_var.h ip_output.c=20 > Log: > MFC: Account for output IP datagrams on the ifaddr where they will > be sent from, not the first ifaddr on the ifp. > =20 > PR: kern/72936 > Submitted by: alfred > Reviewed by: andre > Approved by: re@ > =20 > Revision Changes Path > 1.53.2.3 +14 -3 src/sys/netinet/in_var.h > 1.242.2.13 +11 -4 src/sys/netinet/ip_output.c >=20 Why are these insta MFCs? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --tThc/1wpZn/ma/RB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFF+S4qRfpzJluFF4RApgvAJ9hpn+pLn/3USLo5fvqrSNhcUURewCfWjAP oWCqcqxhA1DVj9SRGvaFisE= =fuGw -----END PGP SIGNATURE----- --tThc/1wpZn/ma/RB-- From owner-cvs-all@FreeBSD.ORG Mon Sep 25 14:17:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9FF316A407; Mon, 25 Sep 2006 14:17:30 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE0AA43D81; Mon, 25 Sep 2006 14:17:26 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PEHQsm068671; Mon, 25 Sep 2006 14:17:26 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PEHQYq068670; Mon, 25 Sep 2006 14:17:26 GMT (envelope-from clsung) Message-Id: <200609251417.k8PEHQYq068670@repoman.freebsd.org> From: Cheng-Lung Sung Date: Mon, 25 Sep 2006 14:17:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/p5-Geo-Postcodes-NO Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 14:17:30 -0000 clsung 2006-09-25 14:17:26 UTC FreeBSD ports repository Modified files: misc/p5-Geo-Postcodes-NO Makefile distinfo Log: - Update to 0.31 - Transfer maintainership to perl@ PR: ports/103575 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.5 +3 -3 ports/misc/p5-Geo-Postcodes-NO/Makefile 1.4 +3 -3 ports/misc/p5-Geo-Postcodes-NO/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 14:20:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CA2416A412; Mon, 25 Sep 2006 14:20:51 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCD8C43D7C; Mon, 25 Sep 2006 14:20:22 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PEKMSF068965; Mon, 25 Sep 2006 14:20:22 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PEKMQ2068961; Mon, 25 Sep 2006 14:20:22 GMT (envelope-from vanilla) Message-Id: <200609251420.k8PEKMQ2068961@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Mon, 25 Sep 2006 14:20:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/pecl-ctemplate Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 14:20:51 -0000 vanilla 2006-09-25 14:20:22 UTC FreeBSD ports repository Modified files: textproc/pecl-ctemplate Makefile distinfo Log: Upgrade to 0.8. Revision Changes Path 1.8 +1 -1 ports/textproc/pecl-ctemplate/Makefile 1.8 +3 -3 ports/textproc/pecl-ctemplate/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 14:22:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8082916A4DE; Mon, 25 Sep 2006 14:22:12 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ACF543DF9; Mon, 25 Sep 2006 14:21:52 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PELpHN069326; Mon, 25 Sep 2006 14:21:51 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PELpEZ069325; Mon, 25 Sep 2006 14:21:51 GMT (envelope-from sat) Message-Id: <200609251421.k8PELpEZ069325@repoman.freebsd.org> From: Andrew Pantyukhin Date: Mon, 25 Sep 2006 14:21:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/jp2a Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 14:22:12 -0000 sat 2006-09-25 14:21:51 UTC FreeBSD ports repository Modified files: graphics/jp2a Makefile distinfo Log: - Update to 1.0.6 Revision Changes Path 1.7 +1 -1 ports/graphics/jp2a/Makefile 1.6 +3 -3 ports/graphics/jp2a/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 14:31:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A219016A407; Mon, 25 Sep 2006 14:31:12 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id A283443D58; Mon, 25 Sep 2006 14:31:10 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.4/8.13.3) with ESMTP id k8PEV9FU052090 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 25 Sep 2006 18:31:09 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k8PEV8pp052089; Mon, 25 Sep 2006 18:31:08 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Mon, 25 Sep 2006 18:31:08 +0400 From: Gleb Smirnoff To: Bruce M Simpson Message-ID: <20060925143108.GW27667@FreeBSD.org> References: <200609251011.k8PABGaL081087@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200609251011.k8PABGaL081087@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 14:31:12 -0000 On Mon, Sep 25, 2006 at 10:11:16AM +0000, Bruce M Simpson wrote: B> bms 2006-09-25 10:11:16 UTC B> B> FreeBSD src repository B> B> Modified files: B> sys/netinet in_var.h ip_output.c B> Log: B> Account for output IP datagrams on the ifaddr where they originated from, B> *not* the first ifaddr on the ifp. This is similar to what NetBSD does. B> B> PR: kern/72936 B> Submitted by: alfred B> Reviewed by: andre This adds an additional hash lookup per packet, doesn't it? Have you measured performance impact of this change? -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Mon Sep 25 14:50:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3A9F16A494; Mon, 25 Sep 2006 14:50:55 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ECF243D53; Mon, 25 Sep 2006 14:50:55 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PEotML070629; Mon, 25 Sep 2006 14:50:55 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PEotgd070625; Mon, 25 Sep 2006 14:50:55 GMT (envelope-from rwatson) Message-Id: <200609251450.k8PEotgd070625@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 14:50:54 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/audit chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 14:50:56 -0000 rwatson 2006-09-25 14:50:54 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/audit chapter.sgml Log: Add a subsection to the Audit handbook chapter on compressing audit trails following audit trail termination. Obtained from: TrustedBSD Project Revision Changes Path 1.17 +26 -0 doc/en_US.ISO8859-1/books/handbook/audit/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Sep 25 15:06:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE18C16A403; Mon, 25 Sep 2006 15:06:25 +0000 (UTC) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99F0643D46; Mon, 25 Sep 2006 15:06:25 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PF6Pg7072550; Mon, 25 Sep 2006 15:06:25 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PF6PqI072549; Mon, 25 Sep 2006 15:06:25 GMT (envelope-from marck) Message-Id: <200609251506.k8PF6PqI072549@repoman.freebsd.org> From: Dmitry Morozovsky Date: Mon, 25 Sep 2006 15:06:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/chpass chpass.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 15:06:26 -0000 marck 2006-09-25 15:06:24 UTC FreeBSD src repository (doc committer) Modified files: usr.bin/chpass chpass.c Log: Fix bug introduced in rev 1.23: pw_equal does not check crypted password field, so one cannot change crypted password keeping other fields intact. Approved by: des MCF after: 3 days Revision Changes Path 1.28 +6 -1 src/usr.bin/chpass/chpass.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 15:15:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6A7A16A403; Mon, 25 Sep 2006 15:15:58 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from opus.cse.buffalo.edu (opus.cse.Buffalo.EDU [128.205.32.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56FDD43D4C; Mon, 25 Sep 2006 15:15:58 +0000 (GMT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from localhost.cse.buffalo.edu (localhost.cse.buffalo.edu [127.0.0.1]) by opus.cse.buffalo.edu (8.13.8/8.12.4) with ESMTP id k8PFFv5W067920; Mon, 25 Sep 2006 11:15:57 -0400 (EDT) From: Ken Smith To: Ruslan Ermilov In-Reply-To: <20060925141624.GA99043@rambler-co.ru> References: <200609251302.k8PD2wcG029663@repoman.freebsd.org> <20060925141624.GA99043@rambler-co.ru> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-FsK7a9qUasHKE2WsJW4f" Organization: U. Buffalo CSE Department Date: Mon, 25 Sep 2006 11:15:57 -0400 Message-Id: <1159197357.67224.16.camel@opus.cse.buffalo.edu> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Bruce M Simpson , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 15:15:58 -0000 --=-FsK7a9qUasHKE2WsJW4f Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2006-09-25 at 18:16 +0400, Ruslan Ermilov wrote: > On Mon, Sep 25, 2006 at 01:02:58PM +0000, Bruce M Simpson wrote: > > bms 2006-09-25 13:02:58 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: (Branch: RELENG_6) > > sys/netinet in_var.h ip_output.c=20 > > Log: > > MFC: Account for output IP datagrams on the ifaddr where they will > > be sent from, not the first ifaddr on the ifp. > > =20 > > PR: kern/72936 > > Submitted by: alfred > > Reviewed by: andre > > Approved by: re@ > > =20 > > Revision Changes Path > > 1.53.2.3 +14 -3 src/sys/netinet/in_var.h > > 1.242.2.13 +11 -4 src/sys/netinet/ip_output.c > >=20 > Why are these insta MFCs? >=20 >=20 Sorry, I'm usually much better at making sure things have been in HEAD for long enough before approving them. But morning coffee hadn't kicked in before I started processing email today. :-( It helps a *little* bit if you folks only send in MFC requests after the minimal 3-day wait period. Some people do that, which is great. But others are in the habit of asking for the MFC approval immediately after the initial commit expecting us to hold on to it and reply later. Usually we manage to sort them out and do the right thing but that second approach has a higher risk factor and not just the risk of a premature approval (i.e. if you expect us to hold on to it we *might* forget about it by the time it's appropriate for approval and it'll be lost in the shuffle...). --=20 Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | --=-FsK7a9qUasHKE2WsJW4f Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQBFF/Kt/G14VSmup/YRAomTAKCLsx1e/m2wurAnwPlrT4nZJ5lshgCgk4I3 GepAkKXqQShERnCyYXQUHhs= =lSkK -----END PGP SIGNATURE----- --=-FsK7a9qUasHKE2WsJW4f-- From owner-cvs-all@FreeBSD.ORG Mon Sep 25 15:33:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D759B16A407; Mon, 25 Sep 2006 15:33:18 +0000 (UTC) (envelope-from bvs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 908CA43D69; Mon, 25 Sep 2006 15:33:14 +0000 (GMT) (envelope-from bvs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PFXEce075620; Mon, 25 Sep 2006 15:33:14 GMT (envelope-from bvs@repoman.freebsd.org) Received: (from bvs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PFXESA075613; Mon, 25 Sep 2006 15:33:14 GMT (envelope-from bvs) Message-Id: <200609251533.k8PFXESA075613@repoman.freebsd.org> From: Vitaly Bogdanov Date: Mon, 25 Sep 2006 15:33:14 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 15:33:18 -0000 bvs 2006-09-25 15:33:13 UTC FreeBSD doc repository Modified files: . access Log: I've finished my trip, so I want to get mail Revision Changes Path 1.571 +1 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Mon Sep 25 15:34:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE12816A531; Mon, 25 Sep 2006 15:34:00 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AE0643DAA; Mon, 25 Sep 2006 15:33:58 +0000 (GMT) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 817032094; Mon, 25 Sep 2006 17:33:52 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by tim.des.no (Postfix) with ESMTP id 64B03208D; Mon, 25 Sep 2006 17:33:52 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id E9187B80E; Mon, 25 Sep 2006 17:33:51 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Ken Smith References: <200609251302.k8PD2wcG029663@repoman.freebsd.org> <20060925141624.GA99043@rambler-co.ru> <1159197357.67224.16.camel@opus.cse.buffalo.edu> Date: Mon, 25 Sep 2006 17:33:51 +0200 In-Reply-To: <1159197357.67224.16.camel@opus.cse.buffalo.edu> (Ken Smith's message of "Mon, 25 Sep 2006 11:15:57 -0400") Message-ID: <86psdkq7ts.fsf@dwp.des.no> User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Bruce M Simpson , src-committers@FreeBSD.org, Ruslan Ermilov , cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 15:34:01 -0000 Ken Smith writes: > It helps a *little* bit if you folks only send in MFC requests after the > minimal 3-day wait period. Some people do that, which is great. But > others are in the habit of asking for the MFC approval immediately after > the initial commit expecting us to hold on to it and reply later. > Usually we manage to sort them out and do the right thing but that > second approach has a higher risk factor and not just the risk of a > premature approval (i.e. if you expect us to hold on to it we *might* > forget about it by the time it's appropriate for approval and it'll be > lost in the shuffle...). Don't take the blame for this! The fact that you responded quickly does not give the committer license to break the three-day rule. Common sense still applies... You re@ guys have work to do, you can't be expected to examine every MFC request in excruciating detail. You should be able to trust the requesting committer to do the right thing. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Mon Sep 25 15:45:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4973F16A412; Mon, 25 Sep 2006 15:45:11 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23D4743D6B; Mon, 25 Sep 2006 15:45:10 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PFjAFN076355; Mon, 25 Sep 2006 15:45:10 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PFj9Ig076354; Mon, 25 Sep 2006 15:45:09 GMT (envelope-from acm) Message-Id: <200609251545.k8PFj9Ig076354@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Mon, 25 Sep 2006 15:45:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/foomatic-db Makefile distinfo pkg-plist ports/print/foomatic-db-engine Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 15:45:11 -0000 acm 2006-09-25 15:45:09 UTC FreeBSD ports repository Modified files: print/foomatic-db Makefile distinfo pkg-plist print/foomatic-db-engine Makefile distinfo Log: - Update to 20060922 Revision Changes Path 1.23 +1 -1 ports/print/foomatic-db-engine/Makefile 1.8 +3 -3 ports/print/foomatic-db-engine/distinfo 1.20 +1 -1 ports/print/foomatic-db/Makefile 1.7 +3 -3 ports/print/foomatic-db/distinfo 1.11 +46 -0 ports/print/foomatic-db/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 15:49:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1451A16A415; Mon, 25 Sep 2006 15:49:52 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C458243D73; Mon, 25 Sep 2006 15:49:51 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PFnptv076508; Mon, 25 Sep 2006 15:49:51 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PFnpx8076507; Mon, 25 Sep 2006 15:49:51 GMT (envelope-from marcel) Message-Id: <200609251549.k8PFnpx8076507@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 25 Sep 2006 15:49:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/pci pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 15:49:52 -0000 marcel 2006-09-25 15:49:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/pci pci.c Log: MFC rev 1.311: Allow 16 byte memory mapped I/O ranges. Approved by: re (hrs) Revision Changes Path 1.292.2.9 +2 -2 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 16:04:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A006016A47B; Mon, 25 Sep 2006 16:04:17 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AC7E43D46; Mon, 25 Sep 2006 16:04:17 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PG4H29078399; Mon, 25 Sep 2006 16:04:17 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PG4HQr078398; Mon, 25 Sep 2006 16:04:17 GMT (envelope-from erwin) Message-Id: <200609251604.k8PG4HQr078398@repoman.freebsd.org> From: Erwin Lansing Date: Mon, 25 Sep 2006 16:04:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/p5-Crypt-Lite Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 16:04:17 -0000 erwin 2006-09-25 16:04:17 UTC FreeBSD ports repository Modified files: security/p5-Crypt-Lite Makefile distinfo pkg-plist Log: Update to 0.82.11 PR: 103513 Submitted by: gabor (maintainer) Based on: 103360 submitted by Gea-Suan Lin Revision Changes Path 1.3 +2 -3 ports/security/p5-Crypt-Lite/Makefile 1.2 +3 -3 ports/security/p5-Crypt-Lite/distinfo 1.3 +3 -5 ports/security/p5-Crypt-Lite/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 16:04:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6995C16A585; Mon, 25 Sep 2006 16:04:26 +0000 (UTC) (envelope-from kensmith@cse.Buffalo.EDU) Received: from opus.cse.buffalo.edu (opus.cse.Buffalo.EDU [128.205.32.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95E3843D53; Mon, 25 Sep 2006 16:04:25 +0000 (GMT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from localhost.cse.buffalo.edu (localhost.cse.buffalo.edu [127.0.0.1]) by opus.cse.buffalo.edu (8.13.8/8.12.4) with ESMTP id k8PG4MwI068065; Mon, 25 Sep 2006 12:04:22 -0400 (EDT) From: Ken Smith To: Dag-Erling =?ISO-8859-1?Q?Sm=F8rgrav?= In-Reply-To: <86psdkq7ts.fsf@dwp.des.no> References: <200609251302.k8PD2wcG029663@repoman.freebsd.org> <20060925141624.GA99043@rambler-co.ru> <1159197357.67224.16.camel@opus.cse.buffalo.edu> <86psdkq7ts.fsf@dwp.des.no> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-756ZAomIX8Rnw+kOoeZp" Organization: U. Buffalo CSE Department Date: Mon, 25 Sep 2006 12:04:22 -0400 Message-Id: <1159200262.67224.29.camel@opus.cse.buffalo.edu> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port Cc: Bruce M Simpson , src-committers@FreeBSD.org, Ruslan Ermilov , cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 16:04:26 -0000 --=-756ZAomIX8Rnw+kOoeZp Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Mon, 2006-09-25 at 17:33 +0200, Dag-Erling Sm=F8rgrav wrote: > Don't take the blame for this! Thanks for the thought, but given the current hat that's not an option... ;-) People can do things to make life wearing the hat a bit easier and we appreciate it when they do. But bottom line is the approval for this one should have been held for a bit and I didn't notice that as part of reviewing it. I might not be *fully* to blame but I did screw up. --=20 Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | --=-756ZAomIX8Rnw+kOoeZp Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQBFF/4G/G14VSmup/YRAsvMAJ9wtNOw0vZDalVayeg/Tv9sf+5RZwCfb/E1 rC0Sw8jEZaM80UNQiEGb+/o= =VB8+ -----END PGP SIGNATURE----- --=-756ZAomIX8Rnw+kOoeZp-- From owner-cvs-all@FreeBSD.ORG Mon Sep 25 16:22:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29F1316A415; Mon, 25 Sep 2006 16:22:40 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BAD343D69; Mon, 25 Sep 2006 16:22:33 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PGMX3T079293; Mon, 25 Sep 2006 16:22:33 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PGMXgj079292; Mon, 25 Sep 2006 16:22:33 GMT (envelope-from erwin) Message-Id: <200609251622.k8PGMXgj079292@repoman.freebsd.org> From: Erwin Lansing Date: Mon, 25 Sep 2006 16:22:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/amavisd-new Makefile ports/security/amavisd-new/files amavis-p0fanalyzer.sh.in pkg-message.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 16:22:40 -0000 erwin 2006-09-25 16:22:33 UTC FreeBSD ports repository Modified files: security/amavisd-new Makefile security/amavisd-new/files amavis-p0fanalyzer.sh.in pkg-message.in Log: - Use the same naming scheme for p0fanalyzer rc.d script as used by milter script - Fix pkg-message to reflect the p0fanalyzer rc.d script behavior - Don't hardcode the interface into p0fanalyzer rc.d script - Respect amavis_p0fanalyzer_flags - Bump PORTREVISION PR: 103560 Submitted by: gabor (maintainer) Requested by: Attila Nagy , Reto Burkhalter Revision Changes Path 1.43 +1 -1 ports/security/amavisd-new/Makefile 1.2 +15 -11 ports/security/amavisd-new/files/amavis-p0fanalyzer.sh.in 1.3 +5 -3 ports/security/amavisd-new/files/pkg-message.in From owner-cvs-all@FreeBSD.ORG Mon Sep 25 16:30:34 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73F7216A47B; Mon, 25 Sep 2006 16:30:34 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao02.cox.net (eastrmmtao02.cox.net [68.230.240.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD1FC43D4C; Mon, 25 Sep 2006 16:30:27 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by eastrmmtao02.cox.net (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with ESMTP id <20060925163026.XFFI10599.eastrmmtao02.cox.net@eastrmimpo02.cox.net>; Mon, 25 Sep 2006 12:30:26 -0400 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo02.cox.net with bizsmtp id SgW41V00A4iy4EG0000000 Mon, 25 Sep 2006 12:30:04 -0400 Date: Mon, 25 Sep 2006 11:31:23 -0500 To: vd@freebsd.org From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <200609220657.k8M6v7aC053378@repoman.freebsd.org> <20060925075916.GA92480@qlovarnika.bg.datamax> Content-Transfer-Encoding: Quoted-Printable Message-ID: In-Reply-To: <20060925075916.GA92480@qlovarnika.bg.datamax> User-Agent: Opera Mail/9.02 (Linux) Cc: cvs-ports@freebsd.org, Sergei Kolobov , cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/security/libgpg-error Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 16:30:34 -0000 On Mon, 25 Sep 2006 02:59:16 -0500, Vasil Dimov wrote: > On Sat, Sep 23, 2006 at 12:59:19PM -0500, Jeremy Messenger wrote: >> On Fri, 22 Sep 2006 01:57:06 -0500, Sergei Kolobov >> wrote: >> >> >sergei 2006-09-22 06:57:06 UTC >> > >> > FreeBSD ports repository >> > >> > Modified files: >> > security/libgpg-error Makefile distinfo pkg-plist >> > Log: >> > - Update to 1.4 (shared library version bumped to 3) >> >> Can you add about it in the UPDATING (portupgrade -rf libgpg-error-\*= )? >> The bump don't work if you missed some of ports. >> >> /libexec/ld-elf.so.1: Shared object "libgpg-error.so.2" not found, >> required by "buoh" >> /libexec/ld-elf.so.1: Shared object "libgpg-error.so.2" not found, >> required by "libsoup-2.2.so.8" >> /usr/local/lib/evolution/2.8/components/libevolution-calendar.so' fai= led >> with `Shared object "libgpg-error.so.2" not found, required by >> "libevolution-calendar.so"' >> [...goes on...] >> > > Are you sure `portupgrade -rf' is absolutely necessary? Yes, if one of you can't figure what to bump ports. :-) Cheers, Mezz > After upgrading I can see this > libgpg-error.so.2 =3D> /usr/local/lib/compat/pkg/libgpg-error.= so.2 = > (0x801780000) > which is quite fine. How does it happen that > /usr/local/lib/compat/pkg/libgpg-error.so.2 is not present on your > system? > > # pkg_info -qR /var/db/pkg/libgpg-error-1.3/ |wc -l > 127 > # pkg_info -qR /var/db/pkg/libgpg-error-1.3/ > arts-1.5.4,1 > bug-buddy-2.14.0 > cups-base-1.2.2 > cups-pstoraster-8.15 > dasher-4.0.4,1 > dctc-gui-qt-0.1.2_1 > deskbar-applet-2.14.2 > dia-gnome-0.95,1 > dirmngr-0.9.6_1 > eel-2.14.3 > ekiga-2.0.2_2 > eog-2.14.3 > epiphany-2.14.3 > evince-0.5.3_1 > evolution-2.6.3 > evolution-data-server-1.6.3 > evolution-exchange-2.6.3 > evolution-webcal-2.6.0 > fast-user-switch-applet-2.14.2 > file-roller-2.14.4,1 > freealut-1.1.0_1 > gcalctool-5.7.32,2 > gconf-editor-2.14.0_1,1 > gdm-2.14.10 > gedit-2.14.4 > gimp-gnome-2.2.13,1 > gnome-applets-2.14.2_1 > gnome-control-center-2.14.2 > gnome-desktop-2.14.3 > gnome-doc-utils-0.6.1 > gnome-games-2.14.3 > gnome-keyring-manager-2.14.0 > gnome-libs-1.4.2_5 > gnome-media-2.14.2 > gnome-netstatus-2.12.0_2 > gnome-panel-2.14.3 > gnome-screensaver-2.14.3 > gnome-session-2.14.3 > gnome-spell-1.0.7_1 > gnome-system-monitor-2.14.5 > gnome-system-tools-2.14.0 > gnome-terminal-2.14.2 > gnome-themes-2.14.3 > gnome-utils-2.14.0_4,1 > gnome2-2.14.3 > gnomecanvas-0.22.0_4 > gnomeuserdocs2-2.14.2 > gnopernicus-1.0.6 > gnupg-devel-1.9.22 > gnutls-1.4.4_1 > gok-1.0.10,1 > gpdf-2.10.0_5 > gpgme-1.1.2 > gtkhtml3-3.10.3 > gtksourceview-1.6.2 > gucharmap-gnome-1.6.0 > icewm-gnome-1.2.28 > kde-3.5.4 > kdeaccessibility-3.5.4 > kdeadmin-3.5.4 > kdeartwork-3.5.4 > kdebase-3.5.4_3 > kdebase-kompmgr-3.5.4 > kdeedu-3.5.4 > kdegames-3.5.4 > kdegraphics-3.5.4 > kdegraphics-kamera-3.5.4 > kdegraphics-kuickshow-3.5.4 > kdelibs-3.5.4_1 > kdemultimedia-3.5.4_1 > kdemultimedia-xine_artsplugin-3.5.4_1 > kdenetwork-3.5.4 > kdepim-3.5.4_1 > kdesdk-3.5.4 > kdetoys-3.5.4 > kdeutils-3.5.4 > kdevelop-3.3.4 > kdewebdev-3.5.4,2 > koffice-1.5.2,2 > libbonoboui-2.14.0_1 > libgail-gnome-1.1.3_1 > libgcrypt-1.2.3 > libgnome-2.14.1_1 > libgnomecups-0.2.2_1,1 > libgnomeprint-2.12.1_2 > libgnomeprintui-2.12.1_1 > libgnomeui-2.14.1_1 > libgtkhtml-2.11.0_1 > libksba-1.0.0 > libsoup-2.2.96 > libxine-1.1.2_2 > libxslt-1.1.17 > mp3blaster-3.2.3_1 > mplayer-0.99.8_3 > mplayerplug-in-3.31 > nautilus-2.14.3 > nautilus-cd-burner-2.14.3 > opal-2.2.2 > openal-20060211_4 > openoffice.org-2.0.4.rc2 > poppler-qt-0.5.3 > portaudit-db-0.2.3 > pwlib-1.10.1_2,1 > py24-gnome-2.12.4_1 > py24-gnome-desktop-2.14.0 > qca-tls-1.0_1 > qemu-0.8.2_2 > qt-3.3.6_2 > scrollkeeper-0.3.14_4,1 > sdl-1.2.11,2 > sdl_image-1.2.5 > sdl_mixer-1.2.7 > sdl_net-1.2.6 > smpeg-0.4.4_6 > sound-juicer-2.14.4 > torcs-1.2.4_2 > totem-gstreamer-1.4.5_1 > valknut-0.3.7 > vino-2.13.5 > wireshark-0.99.3a > xfce-4.2.3.2 > xfce4-print-4.2.3_1 > xmlto-0.0.18 > yelp-2.14.3 > zenity-2.14.3 -- = mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team - FreeBSD Multimedia Hat (ports, not src) http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org http://wiki.freebsd.org/multimedia - multimedia@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Sep 25 16:34:30 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00CB716A407; Mon, 25 Sep 2006 16:34:30 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from centrmmtao03.cox.net (centrmmtao03.cox.net [70.168.83.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 582B243D82; Mon, 25 Sep 2006 16:34:23 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by centrmmtao03.cox.net (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with ESMTP id <20060925163422.VBME27431.centrmmtao03.cox.net@eastrmimpo02.cox.net>; Mon, 25 Sep 2006 12:34:22 -0400 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo02.cox.net with bizsmtp id SgZz1V00o4iy4EG0000000 Mon, 25 Sep 2006 12:34:00 -0400 Date: Mon, 25 Sep 2006 11:35:19 -0500 To: "Michael Landin Hostbaek" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <200609250303.k8P336NA021869@repoman.freebsd.org> <20060925121227.GB96661@mich2.itxmarket.com> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <20060925121227.GB96661@mich2.itxmarket.com> User-Agent: Opera Mail/9.02 (Linux) Cc: cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/mail/sylpheed Makefile ports/mail/sylpheed2 Makefile ports/mail/sylpheed2-devel Makefile ports/palm/gnome-pilot Makefile ports/palm/libmal Makefile ports/palm/malsync Makefile ports/palm/syncal Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 16:34:30 -0000 On Mon, 25 Sep 2006 07:12:28 -0500, Michael Landin Hostbaek wrote: > Jeremy Messenger (mezz) writes: >> mezz 2006-09-25 03:03:06 UTC >> >> FreeBSD ports repository >> >> Modified files: >> mail/sylpheed Makefile >> mail/sylpheed2 Makefile >> mail/sylpheed2-devel Makefile >> palm/gnome-pilot Makefile >> palm/libmal Makefile >> palm/malsync Makefile >> palm/syncal Makefile >> Log: >> Chase pilot-link's shared library version bump. Bump the >> PORTREVISION. As for >> the PRs, I shall chase and close a few of them. > > libmal build is broken: Please bug to the orignal submitter of PR and committer (ijliao) that took care of PR to update pilot-link. The update of pilot-link has broke more than two ports' build. Cheers, Mezz > cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -g -DMALSYNC -O2 > -fno-strict-aliasing -pipe -I../malsync/mal/common > -I../malsync/mal/client/common -I../malsync/mal/client/unix > -I/usr/local/include -c libmal.c -MT libmal.lo -MD -MP -MF > .deps/libmal.TPlo -fPIC -DPIC -o .libs/libmal.lo > libmal.c: In function `readAndUseDeviceInfoDatabase': > libmal.c:295: error: too many arguments to function > `dlp_ReadRecordByIndex' > libmal.c: In function `readDeviceUserConfig32': > libmal.c:617: error: too many arguments to function > `dlp_ReadRecordByIndex' > libmal.c: In function `readDeviceUserConfig31': > libmal.c:655: error: too many arguments to function > `dlp_ReadRecordByIndex' > libmal.c: In function `writeDeviceUserConfig': > libmal.c:715: error: too many arguments to function > `dlp_ReadRecordByIndex' > libmal.c: In function `getRecordBase': > libmal.c:1030: warning: passing arg 3 of `dlp_ReadNextModifiedRec' from > incompatible pointer type > libmal.c:1030: error: too many arguments to function > `dlp_ReadNextModifiedRec' > libmal.c:1034: warning: passing arg 4 of `dlp_ReadRecordByIndex' from > incompatible pointer type > libmal.c:1034: error: too many arguments to function > `dlp_ReadRecordByIndex' > libmal.c: In function `Connect': > libmal.c:1305: warning: `pilot_connect' is deprecated (declared at > /usr/local/include/pi-header.h:28) > libmal.c: In function `fill_in_versioninfo': > libmal.c:1393: error: too many arguments to function > `dlp_ReadRecordByIndex' > gmake[2]: *** [libmal.lo] Error 1 > gmake[2]: Leaving directory > `/usr/ports/palm/libmal/work/libmal-0.40/src' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory `/usr/ports/palm/libmal/work/libmal-0.40' > gmake: *** [all] Error 2 > *** Error code 2 > > > /mich -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team - FreeBSD Multimedia Hat (ports, not src) http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org http://wiki.freebsd.org/multimedia - multimedia@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Sep 25 17:05:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D184C16A407; Mon, 25 Sep 2006 17:05:10 +0000 (UTC) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (blackend.org [212.11.35.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 134A443D45; Mon, 25 Sep 2006 17:05:09 +0000 (GMT) (envelope-from marc@blackend.org) Received: from gothic.blackend.org (gothic.blackend.org [192.168.1.203]) by abigail.blackend.org (8.13.4/8.13.3) with ESMTP id k8PH580L077225; Mon, 25 Sep 2006 19:05:08 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: from gothic.blackend.org (localhost.blackend.org [127.0.0.1]) by gothic.blackend.org (8.13.8/8.13.3) with ESMTP id k8PH57Gl001053; Mon, 25 Sep 2006 19:05:07 +0200 (CEST) (envelope-from marc@gothic.blackend.org) Received: (from marc@localhost) by gothic.blackend.org (8.13.8/8.13.3/Submit) id k8PH575l001052; Mon, 25 Sep 2006 19:05:07 +0200 (CEST) (envelope-from marc) Date: Mon, 25 Sep 2006 19:05:07 +0200 From: Marc Fonvieille To: Chin-San Huang Message-ID: <20060925170507.GA953@gothic.blackend.org> References: <200609250341.k8P3fIva024108@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609250341.k8P3fIva024108@repoman.freebsd.org> X-Useless-Header: blackend.org X-Operating-System: FreeBSD 6.2-PRERELEASE User-Agent: Mutt/1.5.11 Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/x11 chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 17:05:11 -0000 On Mon, Sep 25, 2006 at 03:41:18AM +0000, Chin-San Huang wrote: > chinsan 2006-09-25 03:41:18 UTC > > FreeBSD doc repository > > Modified files: > en_US.ISO8859-1/books/handbook/x11 chapter.sgml > Log: > Add some guidelines for configure X11 for flatpanel widescreens. > > PR: 103530 > Submitted by: Shaun Jurrens > Approved by: delphij (mentor) > Hello, I see in this commit many little things that need to be corrected in future similar commits. Most of them depend of a well configured editor: trailing whitespaces, line length, 2 spaces between a period and the beginning of the next sentence, non-tagged things. We must take care of these things especially when the addition comes from a PR diff. Marc From owner-cvs-all@FreeBSD.ORG Mon Sep 25 17:12:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2971C16A412; Mon, 25 Sep 2006 17:12:21 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC0B743D53; Mon, 25 Sep 2006 17:12:20 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PHCKEH090669; Mon, 25 Sep 2006 17:12:20 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PHCKfu090668; Mon, 25 Sep 2006 17:12:20 GMT (envelope-from ache) Message-Id: <200609251712.k8PHCKfu090668@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 25 Sep 2006 17:12:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/share/timedef sv_SE.UTF-8.src X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 17:12:21 -0000 ache 2006-09-25 17:12:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/timedef sv_SE.UTF-8.src Log: MFC v1.2 PR: 88222 Approved by: re (bmah) Revision Changes Path 1.1.8.1 +1 -1 src/share/timedef/sv_SE.UTF-8.src From owner-cvs-all@FreeBSD.ORG Mon Sep 25 17:19:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F020416A415; Mon, 25 Sep 2006 17:19:28 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92BF043D5C; Mon, 25 Sep 2006 17:19:28 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PHJSG6090940; Mon, 25 Sep 2006 17:19:28 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PHJS1o090939; Mon, 25 Sep 2006 17:19:28 GMT (envelope-from ache) Message-Id: <200609251719.k8PHJS1o090939@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 25 Sep 2006 17:19:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libc/stdlib getopt_long.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 17:19:29 -0000 ache 2006-09-25 17:19:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/stdlib getopt_long.c Log: MFC 1.13-1.15 Approved by: re (hrs) Revision Changes Path 1.12.8.1 +7 -24 src/lib/libc/stdlib/getopt_long.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 17:33:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16D4516A403; Mon, 25 Sep 2006 17:33:54 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B53F143D49; Mon, 25 Sep 2006 17:33:53 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PHXrd9091635; Mon, 25 Sep 2006 17:33:53 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PHXrmL091634; Mon, 25 Sep 2006 17:33:53 GMT (envelope-from rwatson) Message-Id: <200609251733.k8PHXrmL091634@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 17:33:53 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/audit chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 17:33:54 -0000 rwatson 2006-09-25 17:33:53 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/audit chapter.sgml Log: Break out Viewing vs. Reduction of audit trail sections. Expand the viewing section to include a sample audit record from a trail, along with a description of what the record says. Obtained from: TrustedBSD Project Revision Changes Path 1.18 +42 -2 doc/en_US.ISO8859-1/books/handbook/audit/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Sep 25 17:37:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C030816A40F; Mon, 25 Sep 2006 17:37:36 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25A5E43DB0; Mon, 25 Sep 2006 17:37:25 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PHbP9W091810; Mon, 25 Sep 2006 17:37:25 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PHbPdL091809; Mon, 25 Sep 2006 17:37:25 GMT (envelope-from pav) Message-Id: <200609251737.k8PHbPdL091809@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 25 Sep 2006 17:37:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/palm/jpilot Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 17:37:36 -0000 pav 2006-09-25 17:37:25 UTC FreeBSD ports repository Modified files: palm/jpilot Makefile Log: - Download from jpilot.org fails (403 forbidden), add mirrorservice.org as primary source PR: ports/103605 Submitted by: Alex Samorukov (maintainer) Revision Changes Path 1.56 +2 -1 ports/palm/jpilot/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 17:44:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BEC116A412; Mon, 25 Sep 2006 17:44:58 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09B9143D46; Mon, 25 Sep 2006 17:44:41 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PHieu2092179; Mon, 25 Sep 2006 17:44:40 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PHieI6092178; Mon, 25 Sep 2006 17:44:40 GMT (envelope-from pav) Message-Id: <200609251744.k8PHieI6092178@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 25 Sep 2006 17:44:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/dk-milter Makefile pkg-install pkg-message pkg-message.postfix ports/mail/dk-milter/files milter-dk.sh.in patch-vendor-postfix X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 17:44:58 -0000 pav 2006-09-25 17:44:40 UTC FreeBSD ports repository Modified files: mail/dk-milter Makefile pkg-message mail/dk-milter/files milter-dk.sh.in patch-vendor-postfix Added files: mail/dk-milter pkg-install pkg-message.postfix Log: - a patch to fix `delayed queue ID' problem - new switch WITH_POSTFIX_MILTER - assign a new user `dkfilter' to run the milter as a non-priviledged process PR: ports/103490 Submitted by: Hirohisa Yamaguchi (maintainer) Revision Changes Path 1.12 +8 -1 ports/mail/dk-milter/Makefile 1.5 +29 -9 ports/mail/dk-milter/files/milter-dk.sh.in 1.2 +47 -10 ports/mail/dk-milter/files/patch-vendor-postfix 1.1 +18 -0 ports/mail/dk-milter/pkg-install (new) 1.3 +1 -1 ports/mail/dk-milter/pkg-message 1.1 +12 -0 ports/mail/dk-milter/pkg-message.postfix (new) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 17:51:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C14BA16A47B; Mon, 25 Sep 2006 17:51:58 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 153B143D55; Mon, 25 Sep 2006 17:51:55 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PHpsnr092634; Mon, 25 Sep 2006 17:51:54 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PHpsTs092633; Mon, 25 Sep 2006 17:51:54 GMT (envelope-from netchild) Message-Id: <200609251751.k8PHpsTs092633@repoman.freebsd.org> From: Alexander Leidinger Date: Mon, 25 Sep 2006 17:51:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/lame Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 17:51:58 -0000 netchild 2006-09-25 17:51:54 UTC FreeBSD ports repository Modified files: audio/lame Makefile pkg-plist Log: - portlint - fix plist [1] Noticed by: krismail [1] Revision Changes Path 1.44 +3 -2 ports/audio/lame/Makefile 1.16 +1 -0 ports/audio/lame/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 18:04:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E14E916A415; Mon, 25 Sep 2006 18:04:26 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2EF643D5E; Mon, 25 Sep 2006 18:04:24 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PI4OCE094333; Mon, 25 Sep 2006 18:04:24 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PI4OlH094332; Mon, 25 Sep 2006 18:04:24 GMT (envelope-from pav) Message-Id: <200609251804.k8PI4OlH094332@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 25 Sep 2006 18:04:24 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/pl_PL.ISO8859-2/articles/new-users article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 18:04:27 -0000 pav 2006-09-25 18:04:24 UTC FreeBSD doc repository Modified files: pl_PL.ISO8859-2/articles/new-users article.sgml Log: - Don't include an entity catalog which a) is not used in the document b) does not exist This fixes the build with openjade Revision Changes Path 1.3 +0 -2 doc/pl_PL.ISO8859-2/articles/new-users/article.sgml From owner-cvs-all@FreeBSD.ORG Mon Sep 25 18:11:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A67616A4AB; Mon, 25 Sep 2006 18:11:00 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05B8D43D96; Mon, 25 Sep 2006 18:10:59 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PIAwQL094726; Mon, 25 Sep 2006 18:10:58 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PIAwnv094725; Mon, 25 Sep 2006 18:10:58 GMT (envelope-from oliver) Message-Id: <200609251810.k8PIAwnv094725@repoman.freebsd.org> From: Oliver Lehmann Date: Mon, 25 Sep 2006 18:10:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/vqadmin pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 18:11:00 -0000 oliver 2006-09-25 18:10:58 UTC FreeBSD ports repository Modified files: mail/vqadmin pkg-plist Log: make pointyhat happy by trying to remove cgi-bin-dist and data-dist Noted by: kris Revision Changes Path 1.6 +2 -0 ports/mail/vqadmin/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 18:20:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E9F316A407; Mon, 25 Sep 2006 18:20:57 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29FB543D45; Mon, 25 Sep 2006 18:20:57 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PIKvk2095195; Mon, 25 Sep 2006 18:20:57 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PIKvTx095194; Mon, 25 Sep 2006 18:20:57 GMT (envelope-from bms) Message-Id: <200609251820.k8PIKvTx095194@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 25 Sep 2006 18:20:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/ifconfig af_inet6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 18:20:57 -0000 bms 2006-09-25 18:20:56 UTC FreeBSD src repository Modified files: sbin/ifconfig af_inet6.c Log: Fix a typo in af_inet6.c such that IPv6 addresses may be deleted from interfaces. PR: bin/102701 Submitted by: George Mitchell MFC after: 3 days Revision Changes Path 1.4 +1 -1 src/sbin/ifconfig/af_inet6.c From owner-cvs-all@FreeBSD.ORG Mon Sep 25 18:27:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C466816A407; Mon, 25 Sep 2006 18:27:34 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 811A743D4C; Mon, 25 Sep 2006 18:27:34 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PIRY6o095484; Mon, 25 Sep 2006 18:27:34 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PIRYsm095483; Mon, 25 Sep 2006 18:27:34 GMT (envelope-from stas) Message-Id: <200609251827.k8PIRYsm095483@repoman.freebsd.org> From: Stanislav Sedov Date: Mon, 25 Sep 2006 18:27:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/io Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 18:27:34 -0000 stas 2006-09-25 18:27:34 UTC FreeBSD ports repository Modified files: lang/io Makefile pkg-plist Log: - Guararantee file permissions - Fix pkg-plist in case of NOPORTDOCS was specified Approved by: perky (maintainer), sem (mentor) Revision Changes Path 1.12 +4 -0 ports/lang/io/Makefile 1.8 +106 -106 ports/lang/io/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 18:50:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D811C16A403; Mon, 25 Sep 2006 18:50:54 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A04B43D53; Mon, 25 Sep 2006 18:50:54 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PIosYn099038; Mon, 25 Sep 2006 18:50:54 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PIoskn099037; Mon, 25 Sep 2006 18:50:54 GMT (envelope-from blackend) Message-Id: <200609251850.k8PIoskn099037@repoman.freebsd.org> From: Marc Fonvieille Date: Mon, 25 Sep 2006 18:50:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access.doc_src X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 18:50:55 -0000 blackend 2006-09-25 18:50:54 UTC FreeBSD src repository (doc committer) Modified files: . access.doc_src Log: Take ue@'s bit to the safekeeping since he has no time to work on FreeBSD. With Hat: doceng@ Approved by: core (implicit) Revision Changes Path 1.44 +0 -1 CVSROOT/access.doc_src From owner-cvs-all@FreeBSD.ORG Mon Sep 25 18:51:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FCEB16A417; Mon, 25 Sep 2006 18:51:50 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDAED43D5D; Mon, 25 Sep 2006 18:51:49 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PIpnYp099145; Mon, 25 Sep 2006 18:51:49 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PIpnPa099144; Mon, 25 Sep 2006 18:51:49 GMT (envelope-from blackend) Message-Id: <200609251851.k8PIpnPa099144@repoman.freebsd.org> From: Marc Fonvieille Date: Mon, 25 Sep 2006 18:51:49 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 18:51:50 -0000 blackend 2006-09-25 18:51:49 UTC FreeBSD doc repository Modified files: . access Log: Take ue@'s bit to the safekeeping since he has no time to work on FreeBSD. With Hat: doceng@ Revision Changes Path 1.572 +0 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Mon Sep 25 18:53:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AEAA16A415; Mon, 25 Sep 2006 18:53:11 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A769643D5D; Mon, 25 Sep 2006 18:53:10 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PIrAeN099231; Mon, 25 Sep 2006 18:53:10 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PIrAuO099230; Mon, 25 Sep 2006 18:53:10 GMT (envelope-from stas) Message-Id: <200609251853.k8PIrAuO099230@repoman.freebsd.org> From: Stanislav Sedov Date: Mon, 25 Sep 2006 18:53:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/bins pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 18:53:11 -0000 stas 2006-09-25 18:53:10 UTC FreeBSD ports repository Modified files: www/bins pkg-plist Log: - Fix pkg-plist. Do not delete directories listed in BSD.local.dist. Approved by: sem (mentor) Revision Changes Path 1.5 +0 -12 ports/www/bins/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 18:58:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EC2A16A403; Mon, 25 Sep 2006 18:58:03 +0000 (UTC) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38E8543D55; Mon, 25 Sep 2006 18:58:03 +0000 (GMT) (envelope-from alepulver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PIw3DT099460; Mon, 25 Sep 2006 18:58:03 GMT (envelope-from alepulver@repoman.freebsd.org) Received: (from alepulver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PIw3Vu099459; Mon, 25 Sep 2006 18:58:03 GMT (envelope-from alepulver) Message-Id: <200609251858.k8PIw3Vu099459@repoman.freebsd.org> From: Alejandro Pulver Date: Mon, 25 Sep 2006 18:58:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/qtiplot Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 18:58:03 -0000 alepulver 2006-09-25 18:58:02 UTC FreeBSD ports repository Modified files: math/qtiplot Makefile distinfo Added files: math/qtiplot pkg-plist Log: - Update QtiPlot to 0.8.7.3 (bug fixing release). - Add missing run-time dependency on x11-toolkits/py-qt. PR: ports/103457 Submitted by: Max Brazhnikov (maintainer) Revision Changes Path 1.8 +3 -2 ports/math/qtiplot/Makefile 1.8 +3 -3 ports/math/qtiplot/distinfo 1.1 +10 -0 ports/math/qtiplot/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 19:24:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 324D216A407; Mon, 25 Sep 2006 19:24:14 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97C3F43D6B; Mon, 25 Sep 2006 19:24:11 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PJOBGs002034; Mon, 25 Sep 2006 19:24:11 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PJOBVV002033; Mon, 25 Sep 2006 19:24:11 GMT (envelope-from sat) Message-Id: <200609251924.k8PJOBVV002033@repoman.freebsd.org> From: Andrew Pantyukhin Date: Mon, 25 Sep 2006 19:24:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/eyeos Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 19:24:14 -0000 sat 2006-09-25 19:24:11 UTC FreeBSD ports repository Modified files: www/eyeos Makefile distinfo pkg-plist Log: - Update to 0.9.1 Revision Changes Path 1.5 +8 -4 ports/www/eyeos/Makefile 1.5 +3 -3 ports/www/eyeos/distinfo 1.5 +115 -87 ports/www/eyeos/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 19:24:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4AA216A415; Mon, 25 Sep 2006 19:24:25 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6319843D7B; Mon, 25 Sep 2006 19:24:25 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PJOPlQ002063; Mon, 25 Sep 2006 19:24:25 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PJOPxp002062; Mon, 25 Sep 2006 19:24:25 GMT (envelope-from rafan) Message-Id: <200609251924.k8PJOPxp002062@repoman.freebsd.org> From: Rong-En Fan Date: Mon, 25 Sep 2006 19:24:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/zile Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 19:24:25 -0000 rafan 2006-09-25 19:24:25 UTC FreeBSD ports repository Modified files: editors/zile Makefile distinfo Log: - Update to 2.2.22 PR: ports/103633 Submitted by: KATO Tsuguru Revision Changes Path 1.39 +1 -1 ports/editors/zile/Makefile 1.34 +3 -3 ports/editors/zile/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 19:38:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 511F016A416; Mon, 25 Sep 2006 19:38:41 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5663043D83; Mon, 25 Sep 2006 19:38:40 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PJcexD002848; Mon, 25 Sep 2006 19:38:40 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PJceLx002846; Mon, 25 Sep 2006 19:38:40 GMT (envelope-from sat) Message-Id: <200609251938.k8PJceLx002846@repoman.freebsd.org> From: Andrew Pantyukhin Date: Mon, 25 Sep 2006 19:38:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 19:38:41 -0000 sat 2006-09-25 19:38:39 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Document multiple XSS security bugs in eyeOS Revision Changes Path 1.1147 +29 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Mon Sep 25 19:43:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46D4616A407; Mon, 25 Sep 2006 19:43:31 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0234843D6E; Mon, 25 Sep 2006 19:43:31 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PJhUeg003202; Mon, 25 Sep 2006 19:43:30 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PJhUBa003201; Mon, 25 Sep 2006 19:43:30 GMT (envelope-from thierry) Message-Id: <200609251943.k8PJhUBa003201@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 25 Sep 2006 19:43:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/mpich2 Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 19:43:31 -0000 thierry 2006-09-25 19:43:30 UTC FreeBSD ports repository Modified files: net/mpich2 Makefile pkg-plist Log: Add a knob WITH_SMPD, to enable SMPD instead of MPD, to work with SMPD under Microsoft Windows. Submitted by: Intron Revision Changes Path 1.50 +27 -0 ports/net/mpich2/Makefile 1.27 +73 -72 ports/net/mpich2/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 19:50:53 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4551616A403; Mon, 25 Sep 2006 19:50:53 +0000 (UTC) (envelope-from ambrisko@ambrisko.com) Received: from mail.ambrisko.com (mail.ambrisko.com [64.174.51.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4E8843D5E; Mon, 25 Sep 2006 19:50:52 +0000 (GMT) (envelope-from ambrisko@ambrisko.com) Received: from server2.ambrisko.com (HELO www.ambrisko.com) ([192.168.1.2]) by mail.ambrisko.com with ESMTP; 25 Sep 2006 12:48:04 -0700 Received: from ambrisko.com (localhost [127.0.0.1]) by www.ambrisko.com (8.13.1/8.12.11) with ESMTP id k8PJoq2D055326; Mon, 25 Sep 2006 12:50:52 -0700 (PDT) (envelope-from ambrisko@ambrisko.com) Received: (from ambrisko@localhost) by ambrisko.com (8.13.1/8.13.1/Submit) id k8PJoqgM055325; Mon, 25 Sep 2006 12:50:52 -0700 (PDT) (envelope-from ambrisko) From: Doug Ambrisko Message-Id: <200609251950.k8PJoqgM055325@ambrisko.com> In-Reply-To: <200609222211.k8MMBUJI069799@repoman.freebsd.org> To: John Baldwin Date: Mon, 25 Sep 2006 12:50:52 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL94b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/amd64/conf NOTES src/sys/conf files.amd64 files.i386 src/sys/dev/ipmi ipmi.c ipmi_acpi.c ipmi_isa.c ipmi_kcs.c ipmi_pci.c ipmi_smbios.c ipmi_smbus.c ipmi_smic.c ipmi_ssif.c ipmivars.h src/sys/i386/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 19:50:53 -0000 John Baldwin writes: | jhb 2006-09-22 22:11:29 UTC | | FreeBSD src repository | | Modified files: | sys/amd64/conf NOTES | sys/conf files.amd64 files.i386 | sys/dev/ipmi ipmi.c ipmi_pci.c ipmi_smbios.c | ipmivars.h | sys/i386/conf NOTES | sys/modules/ipmi Makefile | sys/sys ipmi.h | Added files: | sys/dev/ipmi ipmi_acpi.c ipmi_isa.c ipmi_kcs.c | ipmi_smbus.c ipmi_smic.c ipmi_ssif.c | Log: | Update the ipmi(4) driver: [snip] | - Add an ACPI attachment. This should work, however, my one test machine doesn't attach with it. Since it doesn't break anything having it, it is safe to add. That machine attached fine with the SMBIOS info. so it's not a big deal. Just don't expect it to work out of the box. There are some issues that need to get investigated. Thanks to John for helping to finish some loose ends and add a lot more polish. Doug A. From owner-cvs-all@FreeBSD.ORG Mon Sep 25 19:51:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF8C316A407; Mon, 25 Sep 2006 19:51:46 +0000 (UTC) (envelope-from jmelo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BF7043D4C; Mon, 25 Sep 2006 19:51:46 +0000 (GMT) (envelope-from jmelo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PJpkxN003784; Mon, 25 Sep 2006 19:51:46 GMT (envelope-from jmelo@repoman.freebsd.org) Received: (from jmelo@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PJpkjb003783; Mon, 25 Sep 2006 19:51:46 GMT (envelope-from jmelo) Message-Id: <200609251951.k8PJpkjb003783@repoman.freebsd.org> From: Jean Milanez Melo Date: Mon, 25 Sep 2006 19:51:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/ruby-rmagick Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 19:51:46 -0000 jmelo 2006-09-25 19:51:46 UTC FreeBSD ports repository Modified files: graphics/ruby-rmagick Makefile pkg-plist Log: - Fix plist. - Bump portrevision. Reported by: krismail Revision Changes Path 1.37 +1 -1 ports/graphics/ruby-rmagick/Makefile 1.18 +2 -0 ports/graphics/ruby-rmagick/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 20:05:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAC8416A403; Mon, 25 Sep 2006 20:05:59 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A9BB43D68; Mon, 25 Sep 2006 20:05:59 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PK5xJp005681; Mon, 25 Sep 2006 20:05:59 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PK5x3U005680; Mon, 25 Sep 2006 20:05:59 GMT (envelope-from pav) Message-Id: <200609252005.k8PK5x3U005680@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 25 Sep 2006 20:05:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games Makefile ports/games/mudmagic Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 20:05:59 -0000 pav 2006-09-25 20:05:59 UTC FreeBSD ports repository Modified files: games Makefile Added files: games/mudmagic Makefile distinfo pkg-descr pkg-plist Log: The Mud Magic Mud Client is written in GTK+ and supports MXP, MSP, MCCP, and ZMP with PCRE regular expression handling and Python script engine. The plugins shipped with the client currently include an automapper, note system, and database front end. WWW: http://www.mudmagic.com/mud-client/ PR: ports/103482 Submitted by: trasz Revision Changes Path 1.1041 +1 -0 ports/games/Makefile 1.1 +32 -0 ports/games/mudmagic/Makefile (new) 1.1 +3 -0 ports/games/mudmagic/distinfo (new) 1.1 +6 -0 ports/games/mudmagic/pkg-descr (new) 1.1 +119 -0 ports/games/mudmagic/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 20:06:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2439616A47B; Mon, 25 Sep 2006 20:06:27 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5D5C43D46; Mon, 25 Sep 2006 20:06:26 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PK6Qsl005734; Mon, 25 Sep 2006 20:06:26 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PK6QgN005733; Mon, 25 Sep 2006 20:06:26 GMT (envelope-from pav) Message-Id: <200609252006.k8PK6QgN005733@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 25 Sep 2006 20:06:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 20:06:27 -0000 pav 2006-09-25 20:06:26 UTC FreeBSD ports repository Modified files: . modules Log: mudmagic --> ports/games/mudmagic Revision Changes Path 1.16264 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Sep 25 20:12:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5F1616A40F; Mon, 25 Sep 2006 20:12:10 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A1E643D45; Mon, 25 Sep 2006 20:12:10 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PKCAn6006080; Mon, 25 Sep 2006 20:12:10 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PKCAmb006079; Mon, 25 Sep 2006 20:12:10 GMT (envelope-from ahze) Message-Id: <200609252012.k8PKCAmb006079@repoman.freebsd.org> From: Michael Johnson Date: Mon, 25 Sep 2006 20:12:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/qdbm Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 20:12:10 -0000 ahze 2006-09-25 20:12:10 UTC FreeBSD ports repository Modified files: databases/qdbm Makefile distinfo pkg-plist Log: - Update to 1.8.71 Revision Changes Path 1.73 +1 -3 ports/databases/qdbm/Makefile 1.67 +3 -3 ports/databases/qdbm/distinfo 1.42 +1 -1 ports/databases/qdbm/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 20:12:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E36A116A5A9; Mon, 25 Sep 2006 20:12:13 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FC8D43D55; Mon, 25 Sep 2006 20:12:13 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PKCDXE006110; Mon, 25 Sep 2006 20:12:13 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PKCDQg006109; Mon, 25 Sep 2006 20:12:13 GMT (envelope-from imp) Message-Id: <200609252012.k8PKCDQg006109@repoman.freebsd.org> From: Warner Losh Date: Mon, 25 Sep 2006 20:12:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 Makefile config_intrhook.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 20:12:14 -0000 imp 2006-09-25 20:12:13 UTC FreeBSD src repository Modified files: share/man/man9 Makefile Added files: share/man/man9 config_intrhook.9 Log: Document config_intrhook. MFC After: 250 millifortnights Revision Changes Path 1.278 +3 -0 src/share/man/man9/Makefile 1.1 +102 -0 src/share/man/man9/config_intrhook.9 (new) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 20:13:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E80C216A403; Mon, 25 Sep 2006 20:13:39 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39FA443D58; Mon, 25 Sep 2006 20:13:35 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PKDZE7006267; Mon, 25 Sep 2006 20:13:35 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PKDZUY006266; Mon, 25 Sep 2006 20:13:35 GMT (envelope-from ahze) Message-Id: <200609252013.k8PKDZUY006266@repoman.freebsd.org> From: Michael Johnson Date: Mon, 25 Sep 2006 20:13:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases Makefile ports/databases/qdbm-plus Makefile pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 20:13:40 -0000 ahze 2006-09-25 20:13:35 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/qdbm-plus Makefile pkg-descr pkg-plist Log: Add qdbm-plus (slave port to qdbm) C++ API for QDBM WWW: http://qdbm.sourceforge.net/xspex.html Revision Changes Path 1.545 +1 -0 ports/databases/Makefile 1.1 +19 -0 ports/databases/qdbm-plus/Makefile (new) 1.1 +3 -0 ports/databases/qdbm-plus/pkg-descr (new) 1.1 +96 -0 ports/databases/qdbm-plus/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 20:14:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCB4116A4C9; Mon, 25 Sep 2006 20:14:13 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C31643D49; Mon, 25 Sep 2006 20:14:13 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PKEDqs006336; Mon, 25 Sep 2006 20:14:13 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PKEDKJ006335; Mon, 25 Sep 2006 20:14:13 GMT (envelope-from ahze) Message-Id: <200609252014.k8PKEDKJ006335@repoman.freebsd.org> From: Michael Johnson Date: Mon, 25 Sep 2006 20:14:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 20:14:13 -0000 ahze 2006-09-25 20:14:13 UTC FreeBSD ports repository Modified files: . modules Log: qdbm-plus --> ports/databases/qdbm-plus Revision Changes Path 1.16265 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Sep 25 20:22:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6E2C16A415; Mon, 25 Sep 2006 20:22:57 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 863D543D62; Mon, 25 Sep 2006 20:22:57 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PKMvNF008263; Mon, 25 Sep 2006 20:22:57 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PKMvmg008262; Mon, 25 Sep 2006 20:22:57 GMT (envelope-from joel) Message-Id: <200609252022.k8PKMvmg008262@repoman.freebsd.org> From: Joel Dahl Date: Mon, 25 Sep 2006 20:22:57 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.committers.sgml contrib.develalumni.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 20:22:57 -0000 joel 2006-09-25 20:22:57 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.committers.sgml contrib.develalumni.sgml Log: Move ue to the Development Team Alumni. Revision Changes Path 1.153 +0 -4 doc/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml 1.31 +4 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.develalumni.sgml From owner-cvs-all@FreeBSD.ORG Mon Sep 25 20:23:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E3DD16A412; Mon, 25 Sep 2006 20:23:37 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA0D343D53; Mon, 25 Sep 2006 20:23:36 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PKNahY008358; Mon, 25 Sep 2006 20:23:36 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PKNaMM008357; Mon, 25 Sep 2006 20:23:36 GMT (envelope-from ahze) Message-Id: <200609252023.k8PKNaMM008357@repoman.freebsd.org> From: Michael Johnson Date: Mon, 25 Sep 2006 20:23:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/qdbm Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 20:23:37 -0000 ahze 2006-09-25 20:23:36 UTC FreeBSD ports repository Modified files: databases/qdbm Makefile Log: - Update for java slave port - Make things a little quiter Revision Changes Path 1.74 +6 -5 ports/databases/qdbm/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 20:24:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CDC616A492; Mon, 25 Sep 2006 20:24:58 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E99F043D53; Mon, 25 Sep 2006 20:24:57 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PKOvEe008570; Mon, 25 Sep 2006 20:24:57 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PKOvh8008566; Mon, 25 Sep 2006 20:24:57 GMT (envelope-from ahze) Message-Id: <200609252024.k8PKOvh8008566@repoman.freebsd.org> From: Michael Johnson Date: Mon, 25 Sep 2006 20:24:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases Makefile ports/databases/qdbm-java Makefile pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 20:24:58 -0000 ahze 2006-09-25 20:24:57 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/qdbm-java Makefile pkg-descr pkg-plist Log: - Add qdbm-java, slave port to qdbm Java API for QDBM WWW: http://qdbm.sourceforge.net/jspex.html Revision Changes Path 1.546 +1 -0 ports/databases/Makefile 1.1 +22 -0 ports/databases/qdbm-java/Makefile (new) 1.1 +3 -0 ports/databases/qdbm-java/pkg-descr (new) 1.1 +36 -0 ports/databases/qdbm-java/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Sep 25 20:25:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C154B16A403; Mon, 25 Sep 2006 20:25:54 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C43043D58; Mon, 25 Sep 2006 20:25:54 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PKPsU5009369; Mon, 25 Sep 2006 20:25:54 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PKPsO5009365; Mon, 25 Sep 2006 20:25:54 GMT (envelope-from ahze) Message-Id: <200609252025.k8PKPsO5009365@repoman.freebsd.org> From: Michael Johnson Date: Mon, 25 Sep 2006 20:25:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 20:25:54 -0000 ahze 2006-09-25 20:25:54 UTC FreeBSD ports repository Modified files: . modules Log: qdbm-java --> ports/databases/qdbm-java Revision Changes Path 1.16266 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Sep 25 21:05:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3748816A494; Mon, 25 Sep 2006 21:05:55 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2049243D5D; Mon, 25 Sep 2006 21:05:50 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PL5otR020951; Mon, 25 Sep 2006 21:05:50 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PL5oFg020950; Mon, 25 Sep 2006 21:05:50 GMT (envelope-from acm) Message-Id: <200609252105.k8PL5oFg020950@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Mon, 25 Sep 2006 21:05:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/fpc Makefile.units ports/devel/fpc-fcl Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 21:05:55 -0000 acm 2006-09-25 21:05:50 UTC FreeBSD ports repository Modified files: lang/fpc Makefile.units devel/fpc-fcl Makefile Log: - Add a clean solution to compile devel/fpc-fcl, using OPT and removing the rtl and packages directories from WRKSRC - Bump devel/fpc-fcl PORTREVISION Submitted by: Ales Katona (via email) Modified by: me Revision Changes Path 1.6 +2 -2 ports/devel/fpc-fcl/Makefile 1.7 +4 -1 ports/lang/fpc/Makefile.units From owner-cvs-all@FreeBSD.ORG Mon Sep 25 21:32:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC74616A415; Mon, 25 Sep 2006 21:32:28 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 845D343D55; Mon, 25 Sep 2006 21:32:28 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PLWS4F022137; Mon, 25 Sep 2006 21:32:28 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PLWS0f022136; Mon, 25 Sep 2006 21:32:28 GMT (envelope-from danger) Message-Id: <200609252132.k8PLWS0f022136@repoman.freebsd.org> From: Daniel Gerzo Date: Mon, 25 Sep 2006 21:32:28 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml press.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 21:32:28 -0000 danger 2006-09-25 21:32:28 UTC FreeBSD doc repository Modified files: share/sgml press.xml Log: Win4BSD has been released and is available for users. Reviewed by: imp Approved by: trhodes (mentor) Revision Changes Path 1.6 +16 -1 www/share/sgml/press.xml From owner-cvs-all@FreeBSD.ORG Mon Sep 25 21:41:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFB5216A412; Mon, 25 Sep 2006 21:41:22 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E64443D46; Mon, 25 Sep 2006 21:41:22 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PLfMJ0022961; Mon, 25 Sep 2006 21:41:22 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PLfMWr022960; Mon, 25 Sep 2006 21:41:22 GMT (envelope-from maho) Message-Id: <200609252141.k8PLfMWr022960@repoman.freebsd.org> From: Maho Nakata Date: Mon, 25 Sep 2006 21:41:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/octave-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 21:41:23 -0000 maho 2006-09-25 21:41:22 UTC FreeBSD ports repository Modified files: math/octave-devel Makefile Log: Remove the dependency of umfpack, this is not needed. PR: 103646 Submitted by: Karsten Rothemund Revision Changes Path 1.60 +0 -1 ports/math/octave-devel/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 22:03:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6727516A412; Mon, 25 Sep 2006 22:03:11 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21CBD43D64; Mon, 25 Sep 2006 22:03:11 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PM3B15025271; Mon, 25 Sep 2006 22:03:11 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PM3B68025270; Mon, 25 Sep 2006 22:03:11 GMT (envelope-from thierry) Message-Id: <200609252203.k8PM3B68025270@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 25 Sep 2006 22:03:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/libsigcx Makefile distinfo pkg-plist ports/devel/libsigcx/files patch-dispatch.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 22:03:11 -0000 thierry 2006-09-25 22:03:10 UTC FreeBSD ports repository Modified files: devel/libsigcx Makefile distinfo pkg-plist Removed files: devel/libsigcx/files patch-dispatch.cc Log: Upgrade to 0.6.5 and unbreak for gcc > 2.95. Changelog available at Revision Changes Path 1.14 +2 -9 ports/devel/libsigcx/Makefile 1.6 +3 -3 ports/devel/libsigcx/distinfo 1.2 +0 -12 ports/devel/libsigcx/files/patch-dispatch.cc (dead) 1.5 +1 -1 ports/devel/libsigcx/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 22:03:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE6C416A40F; Mon, 25 Sep 2006 22:03:52 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49A1C43D76; Mon, 25 Sep 2006 22:03:52 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PM3qLl025306; Mon, 25 Sep 2006 22:03:52 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PM3qv4025305; Mon, 25 Sep 2006 22:03:52 GMT (envelope-from flz) Message-Id: <200609252203.k8PM3qv4025305@repoman.freebsd.org> From: Florent Thoumie Date: Mon, 25 Sep 2006 22:03:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 22:03:52 -0000 flz 2006-09-25 22:03:52 UTC FreeBSD ports repository Modified files: . modules Log: Re-add libtorrent and rtorrent... Revision Changes Path 1.16267 +2 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Sep 25 22:23:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A56EA16A40F; Mon, 25 Sep 2006 22:23:57 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 642B743D69; Mon, 25 Sep 2006 22:23:57 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PMNv9d026387; Mon, 25 Sep 2006 22:23:57 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PMNvbg026386; Mon, 25 Sep 2006 22:23:57 GMT (envelope-from ehaupt) Message-Id: <200609252223.k8PMNvbg026386@repoman.freebsd.org> From: Emanuel Haupt Date: Mon, 25 Sep 2006 22:23:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/mathomatic Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 22:23:57 -0000 ehaupt 2006-09-25 22:23:57 UTC FreeBSD ports repository Modified files: math/mathomatic Makefile distinfo Log: Update to 12.6.4 Revision Changes Path 1.21 +1 -1 ports/math/mathomatic/Makefile 1.20 +3 -3 ports/math/mathomatic/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 22:36:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17A8616A416; Mon, 25 Sep 2006 22:36:05 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 726C943D7E; Mon, 25 Sep 2006 22:36:04 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PMa4jY027856; Mon, 25 Sep 2006 22:36:04 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PMa3l6027854; Mon, 25 Sep 2006 22:36:03 GMT (envelope-from rwatson) Message-Id: <200609252236.k8PMa3l6027854@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 22:36:03 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/audit chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 22:36:05 -0000 rwatson 2006-09-25 22:36:03 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/audit chapter.sgml Log: Further adjustments to handbook audit chapter: - Further clarify nature of composition of audit_control flags and audit_user. - Add missing before auditpipe configuration example. - Mark up usernames as . Obtained from: TrustedBSD Project Revision Changes Path 1.19 +11 -10 doc/en_US.ISO8859-1/books/handbook/audit/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Sep 25 22:37:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E82A16A40F; Mon, 25 Sep 2006 22:37:17 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F39F43D49; Mon, 25 Sep 2006 22:37:17 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PMbHGD027956; Mon, 25 Sep 2006 22:37:17 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PMbG0T027955; Mon, 25 Sep 2006 22:37:17 GMT (envelope-from flz) Message-Id: <200609252237.k8PMbG0T027955@repoman.freebsd.org> From: Florent Thoumie Date: Mon, 25 Sep 2006 22:37:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/libtorrent Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 22:37:17 -0000 flz 2006-09-25 22:37:16 UTC FreeBSD ports repository Modified files: net-p2p/libtorrent Makefile Log: Inherit CONFIGURE_ARGS from slave port. Submitted by: Dennis Schneider Revision Changes Path 1.29 +1 -1 ports/net-p2p/libtorrent/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 22:39:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 910AB16A403; Mon, 25 Sep 2006 22:39:28 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EC6443D5A; Mon, 25 Sep 2006 22:39:28 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PMdSQD028083; Mon, 25 Sep 2006 22:39:28 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PMdSR1028082; Mon, 25 Sep 2006 22:39:28 GMT (envelope-from flz) Message-Id: <200609252239.k8PMdSR1028082@repoman.freebsd.org> From: Florent Thoumie Date: Mon, 25 Sep 2006 22:39:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/libtorrent-devel Makefile distinfo pkg-plist ports/net-p2p/libtorrent-devel/files devel-src_utils_sha1.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 22:39:28 -0000 flz 2006-09-25 22:39:28 UTC FreeBSD ports repository Modified files: net-p2p/libtorrent-devel Makefile distinfo pkg-plist Removed files: net-p2p/libtorrent-devel/files devel-src_utils_sha1.h Log: - Update to 0.10.2. [1] - Support kqueue polling. [2] PR: ports/103508 [1] Submitted by: Toni Viemero [1] Dennis Schneider [2] Revision Changes Path 1.4 +5 -1 ports/net-p2p/libtorrent-devel/Makefile 1.4 +3 -3 ports/net-p2p/libtorrent-devel/distinfo 1.2 +0 -11 ports/net-p2p/libtorrent-devel/files/devel-src_utils_sha1.h (dead) 1.3 +4 -1 ports/net-p2p/libtorrent-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Sep 25 22:40:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E143116A412; Mon, 25 Sep 2006 22:40:32 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0D1F43D45; Mon, 25 Sep 2006 22:40:32 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PMeWQJ028190; Mon, 25 Sep 2006 22:40:32 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PMeWiR028189; Mon, 25 Sep 2006 22:40:32 GMT (envelope-from flz) Message-Id: <200609252240.k8PMeWiR028189@repoman.freebsd.org> From: Florent Thoumie Date: Mon, 25 Sep 2006 22:40:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/rtorrent-devel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 22:40:33 -0000 flz 2006-09-25 22:40:32 UTC FreeBSD ports repository Modified files: net-p2p/rtorrent-devel Makefile distinfo Log: - Update to 0.6.2. PR: ports/103509 Submitted by: Toni Viemero Revision Changes Path 1.4 +2 -2 ports/net-p2p/rtorrent-devel/Makefile 1.4 +3 -3 ports/net-p2p/rtorrent-devel/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 22:51:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 548BF16A40F; Mon, 25 Sep 2006 22:51:27 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1301B43D5E; Mon, 25 Sep 2006 22:51:27 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PMpQQJ028729; Mon, 25 Sep 2006 22:51:26 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PMpQDB028728; Mon, 25 Sep 2006 22:51:26 GMT (envelope-from rwatson) Message-Id: <200609252251.k8PMpQDB028728@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 22:51:26 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/audit chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 22:51:27 -0000 rwatson 2006-09-25 22:51:26 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/audit chapter.sgml Log: Clarify experimental software warning -- it's not just considered experimental, it is experimental. Expand on what this means (not all events that should be audited are). Rename Key Terms section to match similar naming convention in MAC chapter. Obtained from: TrustedBSD Project Revision Changes Path 1.20 +8 -4 doc/en_US.ISO8859-1/books/handbook/audit/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Sep 25 22:57:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25A8916A40F; Mon, 25 Sep 2006 22:57:19 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D87CF43D49; Mon, 25 Sep 2006 22:57:18 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PMvIhF029034; Mon, 25 Sep 2006 22:57:18 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PMvINF029033; Mon, 25 Sep 2006 22:57:18 GMT (envelope-from ehaupt) Message-Id: <200609252257.k8PMvINF029033@repoman.freebsd.org> From: Emanuel Haupt Date: Mon, 25 Sep 2006 22:57:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/p5-Dir-Purge Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 22:57:19 -0000 ehaupt 2006-09-25 22:57:18 UTC FreeBSD ports repository Modified files: sysutils/p5-Dir-Purge Makefile distinfo Log: Update to 1.02 Revision Changes Path 1.2 +1 -1 ports/sysutils/p5-Dir-Purge/Makefile 1.2 +3 -3 ports/sysutils/p5-Dir-Purge/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 23:03:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FB2116A403; Mon, 25 Sep 2006 23:03:19 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DA8543D67; Mon, 25 Sep 2006 23:03:19 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PN3Jk6031499; Mon, 25 Sep 2006 23:03:19 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PN3J39031498; Mon, 25 Sep 2006 23:03:19 GMT (envelope-from ehaupt) Message-Id: <200609252303.k8PN3J39031498@repoman.freebsd.org> From: Emanuel Haupt Date: Mon, 25 Sep 2006 23:03:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/colordiff Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 23:03:19 -0000 ehaupt 2006-09-25 23:03:19 UTC FreeBSD ports repository Modified files: textproc/colordiff Makefile distinfo Log: Update to 1.0.6 Revision Changes Path 1.6 +1 -2 ports/textproc/colordiff/Makefile 1.3 +3 -3 ports/textproc/colordiff/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 23:19:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25C7816A403; Mon, 25 Sep 2006 23:19:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8AEE43D60; Mon, 25 Sep 2006 23:19:01 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PNJ16f032221; Mon, 25 Sep 2006 23:19:01 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PNJ17F032220; Mon, 25 Sep 2006 23:19:01 GMT (envelope-from rwatson) Message-Id: <200609252319.k8PNJ17F032220@repoman.freebsd.org> From: Robert Watson Date: Mon, 25 Sep 2006 23:19:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys copyright.h src/sys/kern init_main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 23:19:02 -0000 rwatson 2006-09-25 23:19:01 UTC FreeBSD src repository Modified files: sys/sys copyright.h sys/kern init_main.c Log: Add "FreeBSD" trademark statement to copyright section of boot messages. MFC after: 3 days Approved by: core, board at FreeBSDFoundation dot org Revision Changes Path 1.266 +4 -3 src/sys/kern/init_main.c 1.22 +5 -0 src/sys/sys/copyright.h From owner-cvs-all@FreeBSD.ORG Mon Sep 25 23:39:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 156A916A407; Mon, 25 Sep 2006 23:39:00 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B7A043D67; Mon, 25 Sep 2006 23:38:59 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PNcwDD033271; Mon, 25 Sep 2006 23:38:58 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PNcw57033270; Mon, 25 Sep 2006 23:38:58 GMT (envelope-from ehaupt) Message-Id: <200609252338.k8PNcw57033270@repoman.freebsd.org> From: Emanuel Haupt Date: Mon, 25 Sep 2006 23:38:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/talkfilters Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 23:39:00 -0000 ehaupt 2006-09-25 23:38:58 UTC FreeBSD ports repository Modified files: misc/talkfilters Makefile distinfo Log: Update to 2.3.6 Revision Changes Path 1.20 +1 -2 ports/misc/talkfilters/Makefile 1.13 +3 -3 ports/misc/talkfilters/distinfo From owner-cvs-all@FreeBSD.ORG Mon Sep 25 23:52:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD32B16A415; Mon, 25 Sep 2006 23:52:44 +0000 (UTC) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3243943D6B; Mon, 25 Sep 2006 23:52:39 +0000 (GMT) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PNqdm0033970; Mon, 25 Sep 2006 23:52:39 GMT (envelope-from sumikawa@repoman.freebsd.org) Received: (from sumikawa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PNqdYl033969; Mon, 25 Sep 2006 23:52:39 GMT (envelope-from sumikawa) Message-Id: <200609252352.k8PNqdYl033969@repoman.freebsd.org> From: Munechika SUMIKAWA Date: Mon, 25 Sep 2006 23:52:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-Plagger Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 23:52:44 -0000 sumikawa 2006-09-25 23:52:39 UTC FreeBSD ports repository Modified files: textproc/p5-Plagger Makefile Log: - Add 4 more options. - Fix plist. PR: ports/103643 Submitted by: Masahiro Teramoto Revision Changes Path 1.13 +31 -4 ports/textproc/p5-Plagger/Makefile From owner-cvs-all@FreeBSD.ORG Mon Sep 25 23:56:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0078D16A403; Mon, 25 Sep 2006 23:56:04 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B285943D45; Mon, 25 Sep 2006 23:56:04 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8PNu4R6034152; Mon, 25 Sep 2006 23:56:04 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8PNu4r3034151; Mon, 25 Sep 2006 23:56:04 GMT (envelope-from flz) Message-Id: <200609252356.k8PNu4r3034151@repoman.freebsd.org> From: Florent Thoumie Date: Mon, 25 Sep 2006 23:56:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/roundcube Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 25 Sep 2006 23:56:05 -0000 flz 2006-09-25 23:56:04 UTC FreeBSD ports repository Modified files: mail/roundcube Makefile distinfo pkg-plist Log: - Update to 20060922. - Pass maintainership to submitter. PR: ports/102890 Submitted by: Babak Farrokhi Revision Changes Path 1.16 +4 -5 ports/mail/roundcube/Makefile 1.11 +3 -3 ports/mail/roundcube/distinfo 1.10 +255 -63 ports/mail/roundcube/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 00:00:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A6B816A407; Tue, 26 Sep 2006 00:00:12 +0000 (UTC) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0E0943D49; Tue, 26 Sep 2006 00:00:11 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q00B3L034321; Tue, 26 Sep 2006 00:00:11 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q00B1x034320; Tue, 26 Sep 2006 00:00:11 GMT (envelope-from markus) Message-Id: <200609260000.k8Q00B1x034320@repoman.freebsd.org> From: Markus Brueffer Date: Tue, 26 Sep 2006 00:00:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/kile Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 00:00:12 -0000 markus 2006-09-26 00:00:11 UTC FreeBSD ports repository Modified files: editors/kile Makefile Log: - Adjust CONFLICTS entry in order to silence portlint - Optionally depend on kdegraphics3 for kpdf and kdvi defaulting to "on" [1] Suggested by: Lars Engels [1] Revision Changes Path 1.28 +10 -2 ports/editors/kile/Makefile From owner-cvs-all@FreeBSD.ORG Tue Sep 26 00:06:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D34A16A403; Tue, 26 Sep 2006 00:06:02 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B81343D6E; Tue, 26 Sep 2006 00:06:02 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q062ML035842; Tue, 26 Sep 2006 00:06:02 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q062Wo035841; Tue, 26 Sep 2006 00:06:02 GMT (envelope-from flz) Message-Id: <200609260006.k8Q062Wo035841@repoman.freebsd.org> From: Florent Thoumie Date: Tue, 26 Sep 2006 00:06:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/openbsm Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 00:06:02 -0000 flz 2006-09-26 00:06:01 UTC FreeBSD ports repository Modified files: security/openbsm Makefile distinfo Log: Update to 1.0-alpha12. Revision Changes Path 1.5 +1 -1 ports/security/openbsm/Makefile 1.4 +3 -3 ports/security/openbsm/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 00:15:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BDE616A407; Tue, 26 Sep 2006 00:15:57 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C1F943D62; Tue, 26 Sep 2006 00:15:57 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q0FvR6037187; Tue, 26 Sep 2006 00:15:57 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q0Fv4d037186; Tue, 26 Sep 2006 00:15:57 GMT (envelope-from rwatson) Message-Id: <200609260015.k8Q0Fv4d037186@repoman.freebsd.org> From: Robert Watson Date: Tue, 26 Sep 2006 00:15:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern init_main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 00:15:57 -0000 rwatson 2006-09-26 00:15:57 UTC FreeBSD src repository Modified files: sys/kern init_main.c Log: SI_ORDER_THIRD + 2, not SI_ORDER_FOURTH + 2. MFC after: 3 days Submitted by: mlaier Revision Changes Path 1.267 +1 -1 src/sys/kern/init_main.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 00:59:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D182B16A40F; Tue, 26 Sep 2006 00:59:07 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EE5243D58; Tue, 26 Sep 2006 00:59:07 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q0x7U0046701; Tue, 26 Sep 2006 00:59:07 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q0x7hK046700; Tue, 26 Sep 2006 00:59:07 GMT (envelope-from ijliao) Message-Id: <200609260059.k8Q0x7hK046700@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 26 Sep 2006 00:59:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/pdfmap Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 00:59:07 -0000 ijliao 2006-09-26 00:59:07 UTC FreeBSD ports repository Modified files: misc/pdfmap Makefile distinfo pkg-plist Log: upgrade to 2.00 Revision Changes Path 1.8 +8 -6 ports/misc/pdfmap/Makefile 1.5 +3 -3 ports/misc/pdfmap/distinfo 1.3 +11 -21 ports/misc/pdfmap/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 01:02:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EBAE16A403; Tue, 26 Sep 2006 01:02:03 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 437C143D46; Tue, 26 Sep 2006 01:02:03 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q123u3046926; Tue, 26 Sep 2006 01:02:03 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q123lL046925; Tue, 26 Sep 2006 01:02:03 GMT (envelope-from brooks) Message-Id: <200609260102.k8Q123lL046925@repoman.freebsd.org> From: Brooks Davis Date: Tue, 26 Sep 2006 01:02:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/dhclient bpf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 01:02:03 -0000 brooks 2006-09-26 01:02:03 UTC FreeBSD src repository Modified files: sbin/dhclient bpf.c Log: It is possible for bpf to return a length such that: length != BPF_WORDALIGN(length) This meeans that it is possible for this to be true: interface->rbuf_offset > interface->rbuf_len Handle this case in the test for running out of packets. While OpenBSD's solution of setting interface->rbuf_len to BPF_WORDALIGN(length) is safe due to the size of the buffer, I think this solution results in less hidden assumptions. This should fix the problem of dhclient running away and consuming 100% CPU. PR: bin/102226 Submitted by: Joost Bekkers MFC after: 3 days Revision Changes Path 1.7 +1 -1 src/sbin/dhclient/bpf.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 01:06:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2BFB16A412; Tue, 26 Sep 2006 01:06:38 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB97743D4C; Tue, 26 Sep 2006 01:06:38 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q16cI1048395; Tue, 26 Sep 2006 01:06:38 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q16c6Y048394; Tue, 26 Sep 2006 01:06:38 GMT (envelope-from clsung) Message-Id: <200609260106.k8Q16c6Y048394@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 01:06:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www Makefile ports/www/templatelite Makefile distinfo pkg-descr pkg-plist ports/www/templatelite/files pkg-message.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 01:06:39 -0000 clsung 2006-09-26 01:06:38 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/templatelite Makefile distinfo pkg-descr pkg-plist www/templatelite/files pkg-message.in Log: Add templatelite 1.90, a smaller, faster alternative to the Smarty template engine. PR: ports/103460 Submitted by: Alexander Zhuravlev Revision Changes Path 1.1572 +1 -0 ports/www/Makefile 1.1 +35 -0 ports/www/templatelite/Makefile (new) 1.1 +3 -0 ports/www/templatelite/distinfo (new) 1.1 +8 -0 ports/www/templatelite/files/pkg-message.in (new) 1.1 +4 -0 ports/www/templatelite/pkg-descr (new) 1.1 +90 -0 ports/www/templatelite/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 01:06:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CE5216A583; Tue, 26 Sep 2006 01:06:57 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75F0643D72; Tue, 26 Sep 2006 01:06:56 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q16upY048433; Tue, 26 Sep 2006 01:06:56 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q16uox048432; Tue, 26 Sep 2006 01:06:56 GMT (envelope-from clsung) Message-Id: <200609260106.k8Q16uox048432@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 01:06:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 01:06:57 -0000 clsung 2006-09-26 01:06:56 UTC FreeBSD ports repository Modified files: . modules Log: templatelite --> ports/www/templatelite Revision Changes Path 1.16268 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Sep 26 01:21:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1C3F16A407; Tue, 26 Sep 2006 01:21:47 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61F0543D5C; Tue, 26 Sep 2006 01:21:47 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q1LlK6049118; Tue, 26 Sep 2006 01:21:47 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q1Llo8049117; Tue, 26 Sep 2006 01:21:47 GMT (envelope-from jmg) Message-Id: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> From: John-Mark Gurney Date: Tue, 26 Sep 2006 01:21:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet tcp_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 01:21:47 -0000 jmg 2006-09-26 01:21:47 UTC FreeBSD src repository Modified files: sys/netinet tcp_input.c Log: fix calculating to_tsecr... This prevents the rtt calculations from going all wonky... Revision Changes Path 1.309 +1 -1 src/sys/netinet/tcp_input.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 01:49:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3009E16A412; Tue, 26 Sep 2006 01:49:19 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA38943D86; Tue, 26 Sep 2006 01:49:17 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q1nHtP050369; Tue, 26 Sep 2006 01:49:17 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q1nHCx050368; Tue, 26 Sep 2006 01:49:17 GMT (envelope-from clsung) Message-Id: <200609260149.k8Q1nHCx050368@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 01:49:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www Makefile ports/www/p5-HTML-RSSAutodiscovery Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 01:49:19 -0000 clsung 2006-09-26 01:49:17 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/p5-HTML-RSSAutodiscovery Makefile distinfo pkg-descr pkg-plist Log: Add p5-HTML-RSSAutodiscovery 1.21, methods for retreiving RSS-ish information from an HTML document. PR: ports/103589 Submitted by: Gea-Suan Lin Revision Changes Path 1.1573 +1 -0 ports/www/Makefile 1.1 +32 -0 ports/www/p5-HTML-RSSAutodiscovery/Makefile (new) 1.1 +3 -0 ports/www/p5-HTML-RSSAutodiscovery/distinfo (new) 1.1 +3 -0 ports/www/p5-HTML-RSSAutodiscovery/pkg-descr (new) 1.1 +6 -0 ports/www/p5-HTML-RSSAutodiscovery/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 01:49:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8D0016A412; Tue, 26 Sep 2006 01:49:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45A0743D49; Tue, 26 Sep 2006 01:49:34 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q1nYkQ050407; Tue, 26 Sep 2006 01:49:34 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q1nYqw050406; Tue, 26 Sep 2006 01:49:34 GMT (envelope-from clsung) Message-Id: <200609260149.k8Q1nYqw050406@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 01:49:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 01:49:36 -0000 clsung 2006-09-26 01:49:34 UTC FreeBSD ports repository Modified files: . modules Log: p5-HTML-RSSAutodiscovery --> ports/www/p5-HTML-RSSAutodiscovery Revision Changes Path 1.16269 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Sep 26 01:53:43 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9666916A40F; Tue, 26 Sep 2006 01:53:43 +0000 (UTC) (envelope-from arr@watson.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E12643D7C; Tue, 26 Sep 2006 01:53:40 +0000 (GMT) (envelope-from arr@watson.org) Received: from fledge.watson.org (localhost.watson.org [127.0.0.1]) by fledge.watson.org (8.13.8/8.13.8) with ESMTP id k8Q1reMZ075855; Mon, 25 Sep 2006 21:53:40 -0400 (EDT) (envelope-from arr@watson.org) Received: from localhost (arr@localhost) by fledge.watson.org (8.13.8/8.13.8/Submit) with ESMTP id k8Q1rePZ075852; Mon, 25 Sep 2006 21:53:40 -0400 (EDT) (envelope-from arr@watson.org) X-Authentication-Warning: fledge.watson.org: arr owned process doing -bs Date: Mon, 25 Sep 2006 21:53:40 -0400 (EDT) From: "Andrew R. Reiter" To: John-Mark Gurney In-Reply-To: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> Message-ID: <20060925215235.C46437@fledge.watson.org> References: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 01:53:43 -0000 On Tue, 26 Sep 2006, John-Mark Gurney wrote: :jmg 2006-09-26 01:21:47 UTC : : FreeBSD src repository : : Modified files: : sys/netinet tcp_input.c : Log: : fix calculating to_tsecr... This prevents the rtt calculations from : going all wonky... : : Revision Changes Path : 1.309 +1 -1 src/sys/netinet/tcp_input.c At some point will it be safe to remove that min/max check? Thanks for doing this, andrew -- arr@watson.org From owner-cvs-all@FreeBSD.ORG Tue Sep 26 02:02:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C065916A407; Tue, 26 Sep 2006 02:02:14 +0000 (UTC) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7917143D78; Tue, 26 Sep 2006 02:02:13 +0000 (GMT) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q22Dei053427; Tue, 26 Sep 2006 02:02:13 GMT (envelope-from sumikawa@repoman.freebsd.org) Received: (from sumikawa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q22DrE053426; Tue, 26 Sep 2006 02:02:13 GMT (envelope-from sumikawa) Message-Id: <200609260202.k8Q22DrE053426@repoman.freebsd.org> From: Munechika SUMIKAWA Date: Tue, 26 Sep 2006 02:02:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/wwwoffle Makefile ports/www/wwwoffle/files wwwoffled.sh.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 02:02:14 -0000 sumikawa 2006-09-26 02:02:13 UTC FreeBSD ports repository Modified files: www/wwwoffle Makefile www/wwwoffle/files wwwoffled.sh.in Log: Support "reload" in the rc script. Submitted by: nork Revision Changes Path 1.50 +1 -0 ports/www/wwwoffle/Makefile 1.3 +3 -1 ports/www/wwwoffle/files/wwwoffled.sh.in From owner-cvs-all@FreeBSD.ORG Tue Sep 26 02:12:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F297F16A415; Tue, 26 Sep 2006 02:12:05 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C404A43D5D; Tue, 26 Sep 2006 02:12:05 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q2C5hG055055; Tue, 26 Sep 2006 02:12:05 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q2C5ul055054; Tue, 26 Sep 2006 02:12:05 GMT (envelope-from rwatson) Message-Id: <200609260212.k8Q2C5ul055054@repoman.freebsd.org> From: Robert Watson Date: Tue, 26 Sep 2006 02:12:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/id Makefile id.1 id.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 02:12:06 -0000 rwatson 2006-09-26 02:12:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/id Makefile id.1 id.c Log: Merge Makefile:1.12, id.1:1.16,1.17, id.c:1.28,1.29 from HEAD to RELENG_6: Add a -a argument to id(1), which causes id(1) to print out process audit properties, including the audit user id. This can be quite helpful in debugging audit problems. Obtained from: TrustedBSD Project Rename "-a" flag to "-A" in order to avoid conflicting with the "-a" flag as found on Solaris. Requested by: ceri Approved by: re (hrs) Revision Changes Path 1.11.8.1 +6 -0 src/usr.bin/id/Makefile 1.15.2.1 +5 -0 src/usr.bin/id/id.1 1.26.2.2 +43 -3 src/usr.bin/id/id.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 02:15:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DC8816A403; Tue, 26 Sep 2006 02:15:16 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E24943D81; Tue, 26 Sep 2006 02:15:15 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q2FF7g055191; Tue, 26 Sep 2006 02:15:15 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q2FFTu055190; Tue, 26 Sep 2006 02:15:15 GMT (envelope-from brooks) Message-Id: <200609260215.k8Q2FFTu055190@repoman.freebsd.org> From: Brooks Davis Date: Tue, 26 Sep 2006 02:15:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/rc.d devd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 02:15:16 -0000 brooks 2006-09-26 02:15:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d devd Log: MFC rev 1.10 network_ipv6 also does some interface configuration so require it to run before starting devd so they don't trip over each other. PR: conf/103428 Approved by: re (hrs) Revision Changes Path 1.7.2.3 +1 -1 src/etc/rc.d/devd From owner-cvs-all@FreeBSD.ORG Tue Sep 26 02:17:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2CAC16A4F8; Tue, 26 Sep 2006 02:17:43 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9842443D6A; Tue, 26 Sep 2006 02:17:43 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q2HhIm055323; Tue, 26 Sep 2006 02:17:43 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q2HhqH055322; Tue, 26 Sep 2006 02:17:43 GMT (envelope-from brooks) Message-Id: <200609260217.k8Q2HhqH055322@repoman.freebsd.org> From: Brooks Davis Date: Tue, 26 Sep 2006 02:17:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc network.subr pccard_ether X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 02:17:43 -0000 brooks 2006-09-26 02:17:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc network.subr pccard_ether Log: MFC pccard_ether rev 1.51: Search the list of up interfaces provided by "ifconfig -ul" instead of greping for UP in "ifconfig $ifn". This eliminates a dependancy on /usr. pccard_ether rev 1.53 and network.subr rev 1.173: Introduce a new method ipv6if which attemptes to figure out if an interface is an IPv6 interface. Use this method to decide if we should attempt to configure an interface with an IPv6 address in pccard_ether. The mechanism pccard_ether uses to do this is unsuited to the task because it assumes the list of interfaces it is passed is the full list of IPv6 interfaces and makes decissions based on that. This is at least a step in the right direction and is probably about as much as we can MFC safely. PR: conf/103428 Approved by: re (hrs) Revision Changes Path 1.164.2.4 +24 -0 src/etc/network.subr 1.45.2.4 +12 -6 src/etc/pccard_ether From owner-cvs-all@FreeBSD.ORG Tue Sep 26 02:18:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3418916A412; Tue, 26 Sep 2006 02:18:35 +0000 (UTC) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5BA843D64; Tue, 26 Sep 2006 02:18:34 +0000 (GMT) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q2IYTM055388; Tue, 26 Sep 2006 02:18:34 GMT (envelope-from sumikawa@repoman.freebsd.org) Received: (from sumikawa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q2IY6Z055387; Tue, 26 Sep 2006 02:18:34 GMT (envelope-from sumikawa) Message-Id: <200609260218.k8Q2IY6Z055387@repoman.freebsd.org> From: Munechika SUMIKAWA Date: Tue, 26 Sep 2006 02:18:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/wwwoffle Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 02:18:35 -0000 sumikawa 2006-09-26 02:18:34 UTC FreeBSD ports repository Modified files: www/wwwoffle Makefile Log: The port should work on non-i386 arch. Revision Changes Path 1.51 +0 -4 ports/www/wwwoffle/Makefile From owner-cvs-all@FreeBSD.ORG Tue Sep 26 02:18:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15FDD16A403; Tue, 26 Sep 2006 02:18:36 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE30043D64; Tue, 26 Sep 2006 02:18:35 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q2IZ3C055415; Tue, 26 Sep 2006 02:18:35 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q2IZ3E055414; Tue, 26 Sep 2006 02:18:35 GMT (envelope-from obrien) Message-Id: <200609260218.k8Q2IZ3E055414@repoman.freebsd.org> From: "David E. O'Brien" Date: Tue, 26 Sep 2006 02:18:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/sendmail Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 02:18:36 -0000 obrien 2006-09-26 02:18:35 UTC FreeBSD src repository Modified files: usr.sbin/sendmail Makefile Log: Catch up with share/mk/bsd.sys.mk rev. 1.38. Revision Changes Path 1.54 +0 -1 src/usr.sbin/sendmail/Makefile From owner-cvs-all@FreeBSD.ORG Tue Sep 26 03:21:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EED516A403; Tue, 26 Sep 2006 03:21:19 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B79B43D5F; Tue, 26 Sep 2006 03:21:19 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q3LI9u059539; Tue, 26 Sep 2006 03:21:18 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q3LIIE059538; Tue, 26 Sep 2006 03:21:18 GMT (envelope-from acm) Message-Id: <200609260321.k8Q3LIIE059538@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Tue, 26 Sep 2006 03:21:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/amanith Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 03:21:19 -0000 acm 2006-09-26 03:21:18 UTC FreeBSD ports repository Modified files: graphics/amanith Makefile pkg-plist Log: - Remove 3d empty directory. It avoid a warning on delete time of amanith package. Revision Changes Path 1.2 +4 -0 ports/graphics/amanith/Makefile 1.2 +0 -1 ports/graphics/amanith/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 04:12:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE60016A403; Tue, 26 Sep 2006 04:12:49 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75FF843D5D; Tue, 26 Sep 2006 04:12:49 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4CnPo065233; Tue, 26 Sep 2006 04:12:49 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4Cn5m065232; Tue, 26 Sep 2006 04:12:49 GMT (envelope-from tegge) Message-Id: <200609260412.k8Q4Cn5m065232@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:12:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/devfs devfs_vfsops.c src/sys/fs/hpfs hpfs_vfsops.c src/sys/fs/msdosfs msdosfs_vfsops.c src/sys/fs/ntfs ntfs_vfsops.c src/sys/fs/nullfs null_vfsops.c src/sys/fs/nwfs nwfs_vfsops.c src/sys/fs/portalfs portal_vfsops.c src/sys/fs/smbfs ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 04:12:49 -0000 tegge 2006-09-26 04:12:49 UTC FreeBSD src repository Modified files: sys/fs/devfs devfs_vfsops.c sys/fs/hpfs hpfs_vfsops.c sys/fs/msdosfs msdosfs_vfsops.c sys/fs/ntfs ntfs_vfsops.c sys/fs/nullfs null_vfsops.c sys/fs/nwfs nwfs_vfsops.c sys/fs/portalfs portal_vfsops.c sys/fs/smbfs smbfs_vfsops.c sys/fs/udf udf_vfsops.c sys/fs/umapfs umap_vfsops.c sys/fs/unionfs union_vfsops.c sys/gnu/fs/ext2fs ext2_vfsops.c sys/gnu/fs/reiserfs reiserfs_vfsops.c sys/isofs/cd9660 cd9660_vfsops.c sys/kern uipc_mqueue.c vfs_export.c vfs_mount.c vfs_subr.c vfs_syscalls.c sys/nfsclient nfs_vfsops.c sys/sys mount.h sys/ufs/ffs ffs_snapshot.c ffs_softdep.c ffs_vfsops.c sys/ufs/ufs ufs_quota.c Log: Use mount interlock to protect all changes to mnt_flag and mnt_kern_flag. This eliminates a race where MNT_UPDATE flag could be lost when nmount() raced against sync(), sync_fsync() or quotactl(). Revision Changes Path 1.52 +2 -0 src/sys/fs/devfs/devfs_vfsops.c 1.58 +4 -0 src/sys/fs/hpfs/hpfs_vfsops.c 1.153 +4 -0 src/sys/fs/msdosfs/msdosfs_vfsops.c 1.84 +4 -0 src/sys/fs/ntfs/ntfs_vfsops.c 1.80 +6 -1 src/sys/fs/nullfs/null_vfsops.c 1.44 +2 -0 src/sys/fs/nwfs/nwfs_vfsops.c 1.59 +2 -0 src/sys/fs/portalfs/portal_vfsops.c 1.41 +2 -0 src/sys/fs/smbfs/smbfs_vfsops.c 1.44 +6 -0 src/sys/fs/udf/udf_vfsops.c 1.65 +4 -1 src/sys/fs/umapfs/umap_vfsops.c 1.78 +8 -1 src/sys/fs/unionfs/union_vfsops.c 1.158 +6 -0 src/sys/gnu/fs/ext2fs/ext2_vfsops.c 1.6 +4 -0 src/sys/gnu/fs/reiserfs/reiserfs_vfsops.c 1.146 +6 -0 src/sys/isofs/cd9660/cd9660_vfsops.c 1.16 +2 -0 src/sys/kern/uipc_mqueue.c 1.336 +10 -0 src/sys/kern/vfs_export.c 1.234 +13 -0 src/sys/kern/vfs_mount.c 1.683 +4 -0 src/sys/kern/vfs_subr.c 1.424 +4 -0 src/sys/kern/vfs_syscalls.c 1.187 +13 -3 src/sys/nfsclient/nfs_vfsops.c 1.212 +1 -1 src/sys/sys/mount.h 1.129 +6 -1 src/sys/ufs/ffs/ffs_snapshot.c 1.199 +2 -0 src/sys/ufs/ffs/ffs_softdep.c 1.319 +43 -13 src/sys/ufs/ffs/ffs_vfsops.c 1.84 +6 -1 src/sys/ufs/ufs/ufs_quota.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 04:14:11 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C99C116A412; Tue, 26 Sep 2006 04:14:11 +0000 (UTC) (envelope-from jmg@hydrogen.funkthat.com) Received: from hydrogen.funkthat.com (gate.funkthat.com [69.17.45.168]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68F0C43D5D; Tue, 26 Sep 2006 04:14:11 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: from hydrogen.funkthat.com (h57xvhyefrp14fo8@localhost.funkthat.com [127.0.0.1]) by hydrogen.funkthat.com (8.13.6/8.13.3) with ESMTP id k8Q4E8Dj008425; Mon, 25 Sep 2006 21:14:08 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.13.6/8.13.3/Submit) id k8Q4E7CD008424; Mon, 25 Sep 2006 21:14:07 -0700 (PDT) (envelope-from jmg) Date: Mon, 25 Sep 2006 21:14:07 -0700 From: John-Mark Gurney To: "Andrew R. Reiter" Message-ID: <20060926041406.GE80527@funkthat.com> References: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> <20060925215235.C46437@fledge.watson.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060925215235.C46437@fledge.watson.org> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 5.4-RELEASE-p6 i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Sep 2006 04:14:11 -0000 Andrew R. Reiter wrote this message on Mon, Sep 25, 2006 at 21:53 -0400: > On Tue, 26 Sep 2006, John-Mark Gurney wrote: > > :jmg 2006-09-26 01:21:47 UTC > : > : FreeBSD src repository > : > : Modified files: > : sys/netinet tcp_input.c > : Log: > : fix calculating to_tsecr... This prevents the rtt calculations from > : going all wonky... > : > : Revision Changes Path > : 1.309 +1 -1 src/sys/netinet/tcp_input.c > > At some point will it be safe to remove that min/max check? Do you mean replace the else? or do you mean change it entirely? Unless someone can think of a reason why the retransmit timer should ever be allowed to go above 64 seconds, I'd consider replacing the else, but as I see it, it prevents run away code, though w/o the else I probably wouldn't of found this bug... -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-all@FreeBSD.ORG Tue Sep 26 04:15:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8863F16A407; Tue, 26 Sep 2006 04:15:05 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01BA143D68; Tue, 26 Sep 2006 04:15:05 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4F4Rp065350; Tue, 26 Sep 2006 04:15:04 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4F4pY065349; Tue, 26 Sep 2006 04:15:04 GMT (envelope-from tegge) Message-Id: <200609260415.k8Q4F4pY065349@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:15:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern vfs_mount.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 04:15:05 -0000 tegge 2006-09-26 04:15:04 UTC FreeBSD src repository Modified files: sys/kern vfs_mount.c Log: Don't restore mnt_kern_flag on failed MNT_UPDATE mount, it can race with dounmount(), causing loss of MNTK_UNMOUNT flag. Revision Changes Path 1.235 +2 -5 src/sys/kern/vfs_mount.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 04:15:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF98016A494; Tue, 26 Sep 2006 04:15:59 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70B7E43D70; Tue, 26 Sep 2006 04:15:59 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4FxeQ065535; Tue, 26 Sep 2006 04:15:59 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4FxE6065534; Tue, 26 Sep 2006 04:15:59 GMT (envelope-from tegge) Message-Id: <200609260415.k8Q4FxE6065534@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:15:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/pc98/boot2 inode.h src/sys/gnu/fs/ext2fs ext2_inode.c src/sys/kern vfs_cluster.c vfs_mount.c vfs_subr.c vfs_syscalls.c src/sys/nfsclient nfs_vnops.c src/sys/sys mount.h src/sys/ufs/ufs inode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 04:16:00 -0000 tegge 2006-09-26 04:15:59 UTC FreeBSD src repository Modified files: sys/boot/pc98/boot2 inode.h sys/gnu/fs/ext2fs ext2_inode.c sys/kern vfs_cluster.c vfs_mount.c vfs_subr.c vfs_syscalls.c sys/nfsclient nfs_vnops.c sys/sys mount.h sys/ufs/ufs inode.h Log: Add mnt_noasync counter to better handle interleaved calls to nmount(), sync() and sync_fsync() without losing MNT_ASYNC. Add MNTK_ASYNC flag which is set only when MNT_ASYNC is set and mnt_noasync is zero, and check that flag instead of MNT_ASYNC before initiating async io. Revision Changes Path 1.5 +1 -1 src/sys/boot/pc98/boot2/inode.h 1.58 +1 -1 src/sys/gnu/fs/ext2fs/ext2_inode.c 1.173 +1 -1 src/sys/kern/vfs_cluster.c 1.236 +15 -0 src/sys/kern/vfs_mount.c 1.684 +6 -5 src/sys/kern/vfs_subr.c 1.425 +6 -4 src/sys/kern/vfs_syscalls.c 1.269 +1 -1 src/sys/nfsclient/nfs_vnops.c 1.213 +2 -0 src/sys/sys/mount.h 1.50 +1 -1 src/sys/ufs/ufs/inode.h From owner-cvs-all@FreeBSD.ORG Tue Sep 26 04:17:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E124116A412; Tue, 26 Sep 2006 04:17:17 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A80243D53; Tue, 26 Sep 2006 04:17:17 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4HH6W065731; Tue, 26 Sep 2006 04:17:17 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4HHe9065730; Tue, 26 Sep 2006 04:17:17 GMT (envelope-from tegge) Message-Id: <200609260417.k8Q4HHe9065730@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:17:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys mount.h src/sys/ufs/ffs ffs_softdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 04:17:18 -0000 tegge 2006-09-26 04:17:17 UTC FreeBSD src repository Modified files: sys/sys mount.h sys/ufs/ffs ffs_softdep.c Log: Increase mnt_noasync once in softdep_mount() to disallow async io, closing a window where a file system using softupdates could be async for a short while if both MNT_UPDATE and MNT_ASYNC were passed as flags to nmount(). Add MNTK_SOFTDEP flag to ensure that softdep_mount() doesn't increase mnt_noasync multiple times. Revision Changes Path 1.214 +1 -0 src/sys/sys/mount.h 1.200 +5 -0 src/sys/ufs/ffs/ffs_softdep.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 04:18:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2825516A403; Tue, 26 Sep 2006 04:18:37 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D884643D64; Tue, 26 Sep 2006 04:18:36 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4IaLh065819; Tue, 26 Sep 2006 04:18:36 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4Iasx065818; Tue, 26 Sep 2006 04:18:36 GMT (envelope-from tegge) Message-Id: <200609260418.k8Q4Iasx065818@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:18:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern vfs_mount.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 04:18:37 -0000 tegge 2006-09-26 04:18:36 UTC FreeBSD src repository Modified files: sys/kern vfs_mount.c Log: Don't restore MNT_QUOTA bit in mnt_flag after a failed mount with MNT_UPDATE flag, closing a race between nmount() and quotactl(). Revision Changes Path 1.237 +2 -1 src/sys/kern/vfs_mount.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 04:19:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 518CA16A492; Tue, 26 Sep 2006 04:19:12 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6843E43D64; Tue, 26 Sep 2006 04:19:11 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4JBIE065855; Tue, 26 Sep 2006 04:19:11 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4JB02065854; Tue, 26 Sep 2006 04:19:11 GMT (envelope-from tegge) Message-Id: <200609260419.k8Q4JB02065854@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:19:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_snapshot.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 04:19:12 -0000 tegge 2006-09-26 04:19:11 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_snapshot.c Log: Don't restore MNT_QUOTA bit in mnt_flag after snapshot creation, closing a race between nmount() and quotactl(). Revision Changes Path 1.130 +1 -1 src/sys/ufs/ffs/ffs_snapshot.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 04:20:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0897416A47B; Tue, 26 Sep 2006 04:20:09 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AB2543D5E; Tue, 26 Sep 2006 04:20:09 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4K9nh065925; Tue, 26 Sep 2006 04:20:09 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4K9l2065924; Tue, 26 Sep 2006 04:20:09 GMT (envelope-from tegge) Message-Id: <200609260420.k8Q4K9l2065924@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:20:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern vfs_mount.c src/sys/ufs/ffs ffs_softdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 04:20:10 -0000 tegge 2006-09-26 04:20:09 UTC FreeBSD src repository Modified files: sys/kern vfs_mount.c sys/ufs/ffs ffs_softdep.c Log: Reduce fluctuations of mnt_flag to allow unlocked readers to get a slightly more consistent view. Revision Changes Path 1.238 +6 -6 src/sys/kern/vfs_mount.c 1.201 +1 -2 src/sys/ufs/ffs/ffs_softdep.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 04:21:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AC1B16A407; Tue, 26 Sep 2006 04:21:23 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64FC843D53; Tue, 26 Sep 2006 04:21:21 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4LLmJ066088; Tue, 26 Sep 2006 04:21:21 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4LLpS066087; Tue, 26 Sep 2006 04:21:21 GMT (envelope-from tegge) Message-Id: <200609260421.k8Q4LLpS066087@repoman.freebsd.org> From: Tor Egge Date: Tue, 26 Sep 2006 04:21:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 04:21:23 -0000 tegge 2006-09-26 04:21:21 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_vfsops.c Log: Protect change to bo_flag by holding the bufobj mutex. Revision Changes Path 1.320 +2 -0 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 04:59:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 951B716A403; Tue, 26 Sep 2006 04:59:53 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 231DA43D5D; Tue, 26 Sep 2006 04:59:53 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q4xrOY075899; Tue, 26 Sep 2006 04:59:53 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q4xqZS075898; Tue, 26 Sep 2006 04:59:52 GMT (envelope-from mjacob) Message-Id: <200609260459.k8Q4xqZS075898@repoman.freebsd.org> From: Matt Jacob Date: Tue, 26 Sep 2006 04:59:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/isp isp_freebsd.c isp_freebsd.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 04:59:53 -0000 mjacob 2006-09-26 04:59:52 UTC FreeBSD src repository Modified files: sys/dev/isp isp_freebsd.c isp_freebsd.h Log: Begin the process of moving info to sysctl stuff for FreeBSD by providing OIDs for WWNN/WWPN and Initiator ID. Revision Changes Path 1.123 +38 -1 src/sys/dev/isp/isp_freebsd.c 1.93 +9 -0 src/sys/dev/isp/isp_freebsd.h From owner-cvs-all@FreeBSD.ORG Tue Sep 26 05:02:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41C0B16A403; Tue, 26 Sep 2006 05:02:39 +0000 (UTC) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C4F243D60; Tue, 26 Sep 2006 05:02:39 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q52cRk076203; Tue, 26 Sep 2006 05:02:38 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q52cKw076202; Tue, 26 Sep 2006 05:02:38 GMT (envelope-from joerg) Message-Id: <200609260502.k8Q52cKw076202@repoman.freebsd.org> From: Joerg Wunsch Date: Tue, 26 Sep 2006 05:02:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/avr-binutils Makefile distinfo pkg-plist ports/devel/avr-binutils/files patch-aa patch-atmega256x patch-coff-avr patch-newdevices X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 05:02:39 -0000 joerg 2006-09-26 05:02:38 UTC FreeBSD ports repository Modified files: devel/avr-binutils Makefile distinfo pkg-plist devel/avr-binutils/files patch-aa patch-coff-avr patch-newdevices Added files: devel/avr-binutils/files patch-atmega256x Log: Upgrade to binutils 2.17, and add the ATmega256x patch from Björn Haase. Revision Changes Path 1.34 +1 -2 ports/devel/avr-binutils/Makefile 1.13 +3 -3 ports/devel/avr-binutils/distinfo 1.5 +14 -14 ports/devel/avr-binutils/files/patch-aa 1.1 +2323 -0 ports/devel/avr-binutils/files/patch-atmega256x (new) 1.4 +165 -149 ports/devel/avr-binutils/files/patch-coff-avr 1.9 +33 -82 ports/devel/avr-binutils/files/patch-newdevices 1.10 +12 -0 ports/devel/avr-binutils/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 05:27:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CE9E16A403; Tue, 26 Sep 2006 05:27:17 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDF4843D60; Tue, 26 Sep 2006 05:27:16 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q5RGsc078414; Tue, 26 Sep 2006 05:27:16 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q5RG9C078413; Tue, 26 Sep 2006 05:27:16 GMT (envelope-from sat) Message-Id: <200609260527.k8Q5RG9C078413@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 26 Sep 2006 05:27:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 05:27:17 -0000 sat 2006-09-26 05:27:16 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Update the unace advisory Revision Changes Path 1.1148 +25 -5 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Sep 26 05:29:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52B2C16A40F; Tue, 26 Sep 2006 05:29:51 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DE4243D46; Tue, 26 Sep 2006 05:29:51 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q5Toq5078494; Tue, 26 Sep 2006 05:29:50 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q5ToI3078493; Tue, 26 Sep 2006 05:29:50 GMT (envelope-from thierry) Message-Id: <200609260529.k8Q5ToI3078493@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 26 Sep 2006 05:29:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/science/medit Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 05:29:51 -0000 thierry 2006-09-26 05:29:50 UTC FreeBSD ports repository Modified files: science/medit Makefile distinfo Log: Add binaries (not tested) for amd64 (built by vd) and ia64 (built with help from marcel). Revision Changes Path 1.2 +10 -2 ports/science/medit/Makefile 1.2 +6 -0 ports/science/medit/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 05:46:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A4BB16A403; Tue, 26 Sep 2006 05:46:56 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 497FC43D45; Tue, 26 Sep 2006 05:46:56 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q5kuSJ079412; Tue, 26 Sep 2006 05:46:56 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q5kuI7079411; Tue, 26 Sep 2006 05:46:56 GMT (envelope-from ru) Message-Id: <200609260546.k8Q5kuI7079411@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 26 Sep 2006 05:46:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/id id.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 05:46:56 -0000 ru 2006-09-26 05:46:55 UTC FreeBSD src repository Modified files: usr.bin/id id.c Log: Fix both arguments to err(). Revision Changes Path 1.30 +1 -1 src/usr.bin/id/id.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 05:47:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A874C16A4CE; Tue, 26 Sep 2006 05:47:12 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9CBD43D5A; Tue, 26 Sep 2006 05:47:04 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q5l44Z079453; Tue, 26 Sep 2006 05:47:04 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q5l4S1079452; Tue, 26 Sep 2006 05:47:04 GMT (envelope-from sat) Message-Id: <200609260547.k8Q5l4S1079452@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 26 Sep 2006 05:47:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 05:47:12 -0000 sat 2006-09-26 05:47:04 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Document multiple vulnerabilities in plans Revision Changes Path 1.1149 +50 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Sep 26 05:47:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DA4516A500; Tue, 26 Sep 2006 05:47:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F3D343D62; Tue, 26 Sep 2006 05:47:11 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q5lBhV079506; Tue, 26 Sep 2006 05:47:11 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q5lBOu079505; Tue, 26 Sep 2006 05:47:11 GMT (envelope-from miwi) Message-Id: <200609260547.k8Q5lBOu079505@repoman.freebsd.org> From: Martin Wilke Date: Tue, 26 Sep 2006 05:47:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/mediaproxy Makefile pkg-plist ports/net/mediaproxy/files mediaproxy mediaproxy.sh.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 05:47:13 -0000 miwi 2006-09-26 05:47:11 UTC FreeBSD ports repository Modified files: net/mediaproxy Makefile pkg-plist Added files: net/mediaproxy/files mediaproxy.sh.in Removed files: net/mediaproxy/files mediaproxy Log: - Fix build problemes Submitted by: pointyhat via kris Revision Changes Path 1.3 +2 -2 ports/net/mediaproxy/Makefile 1.2 +0 -86 ports/net/mediaproxy/files/mediaproxy (dead) 1.1 +86 -0 ports/net/mediaproxy/files/mediaproxy.sh.in (new) 1.2 +0 -2 ports/net/mediaproxy/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 06:11:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECF1F16A412; Tue, 26 Sep 2006 06:11:50 +0000 (UTC) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AABA443D70; Tue, 26 Sep 2006 06:11:49 +0000 (GMT) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q6BnVo081836; Tue, 26 Sep 2006 06:11:49 GMT (envelope-from sumikawa@repoman.freebsd.org) Received: (from sumikawa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q6BnPL081835; Tue, 26 Sep 2006 06:11:49 GMT (envelope-from sumikawa) Message-Id: <200609260611.k8Q6BnPL081835@repoman.freebsd.org> From: Munechika SUMIKAWA Date: Tue, 26 Sep 2006 06:11:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/racoon2/files patch-iked-ikev2.c patch-iked-ikev2_payload.c patch-spmd-shell.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 06:11:51 -0000 sumikawa 2006-09-26 06:11:49 UTC FreeBSD ports repository Added files: security/racoon2/files patch-iked-ikev2.c patch-iked-ikev2_payload.c patch-spmd-shell.c Log: Add pathches to fix compilation problem on 64bit arch. Revision Changes Path 1.1 +59 -0 ports/security/racoon2/files/patch-iked-ikev2.c (new) 1.1 +107 -0 ports/security/racoon2/files/patch-iked-ikev2_payload.c (new) 1.1 +67 -0 ports/security/racoon2/files/patch-spmd-shell.c (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 06:12:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA84216A403; Tue, 26 Sep 2006 06:12:25 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A25443D8C; Tue, 26 Sep 2006 06:12:17 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q6CGjP081869; Tue, 26 Sep 2006 06:12:16 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q6CG0R081868; Tue, 26 Sep 2006 06:12:16 GMT (envelope-from sat) Message-Id: <200609260612.k8Q6CG0R081868@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 26 Sep 2006 06:12:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 06:12:25 -0000 sat 2006-09-26 06:12:16 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Document Packet Parsing Denial of Service Vulnerability in freeciv Revision Changes Path 1.1150 +37 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Sep 26 06:29:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8D6416A407; Tue, 26 Sep 2006 06:29:20 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 956D043D49; Tue, 26 Sep 2006 06:29:20 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q6TKQC082617; Tue, 26 Sep 2006 06:29:20 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q6TKmc082616; Tue, 26 Sep 2006 06:29:20 GMT (envelope-from sat) Message-Id: <200609260629.k8Q6TKmc082616@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 26 Sep 2006 06:29:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 06:29:21 -0000 sat 2006-09-26 06:29:20 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Document (another) Denial of Service Vulnerability in freeciv Revision Changes Path 1.1151 +42 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Sep 26 06:29:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 606E816A403; Tue, 26 Sep 2006 06:29:41 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1877943D45; Tue, 26 Sep 2006 06:29:41 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q6Tews082667; Tue, 26 Sep 2006 06:29:40 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q6TeUo082666; Tue, 26 Sep 2006 06:29:40 GMT (envelope-from clsung) Message-Id: <200609260629.k8Q6TeUo082666@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 06:29:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/kudu Makefile distinfo pkg-plist ports/graphics/kudu/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 06:29:41 -0000 clsung 2006-09-26 06:29:40 UTC FreeBSD ports repository Modified files: graphics/kudu Makefile distinfo pkg-plist graphics/kudu/files patch-configure Log: - Update to 0.1.2 PR: ports/103652 Submitted by: maintainer (Dmitry Marakasov) Revision Changes Path 1.4 +1 -1 ports/graphics/kudu/Makefile 1.3 +3 -3 ports/graphics/kudu/distinfo 1.2 +13 -13 ports/graphics/kudu/files/patch-configure 1.3 +1 -0 ports/graphics/kudu/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 06:37:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D06ED16A403; Tue, 26 Sep 2006 06:37:51 +0000 (UTC) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3750043D6A; Tue, 26 Sep 2006 06:37:46 +0000 (GMT) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q6bkvc083061; Tue, 26 Sep 2006 06:37:46 GMT (envelope-from sumikawa@repoman.freebsd.org) Received: (from sumikawa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q6bkAo083060; Tue, 26 Sep 2006 06:37:46 GMT (envelope-from sumikawa) Message-Id: <200609260637.k8Q6bkAo083060@repoman.freebsd.org> From: Munechika SUMIKAWA Date: Tue, 26 Sep 2006 06:37:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/p5-FFmpeg-Command Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 06:37:51 -0000 sumikawa 2006-09-26 06:37:46 UTC FreeBSD ports repository Modified files: multimedia/p5-FFmpeg-Command Makefile distinfo Log: Upgrade to 0.05. Revision Changes Path 1.3 +8 -2 ports/multimedia/p5-FFmpeg-Command/Makefile 1.3 +3 -3 ports/multimedia/p5-FFmpeg-Command/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 07:24:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B532416A403; Tue, 26 Sep 2006 07:24:19 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7213843D45; Tue, 26 Sep 2006 07:24:19 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q7OJu1086382; Tue, 26 Sep 2006 07:24:19 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q7OJjl086381; Tue, 26 Sep 2006 07:24:19 GMT (envelope-from ehaupt) Message-Id: <200609260724.k8Q7OJjl086381@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 26 Sep 2006 07:24:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/bestfit pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 07:24:19 -0000 ehaupt 2006-09-26 07:24:18 UTC FreeBSD ports repository Modified files: misc/bestfit pkg-descr Log: Remove WWW, freshmeat project page disappeared Revision Changes Path 1.5 +0 -2 ports/misc/bestfit/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Sep 26 07:34:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDF5A16A519; Tue, 26 Sep 2006 07:34:54 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CAB543DA2; Tue, 26 Sep 2006 07:34:52 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q7YoGB086893; Tue, 26 Sep 2006 07:34:50 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q7YoMb086892; Tue, 26 Sep 2006 07:34:50 GMT (envelope-from clsung) Message-Id: <200609260734.k8Q7YoMb086892@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 07:34:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Net-Blogger Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 07:34:54 -0000 clsung 2006-09-26 07:34:49 UTC FreeBSD ports repository Modified files: net/p5-Net-Blogger Makefile distinfo pkg-plist Log: - Update to 1.02 [1] - I'll maintain it. PR: ports/103660 [1] Submitted by: Gea-Suan Lin Revision Changes Path 1.3 +7 -7 ports/net/p5-Net-Blogger/Makefile 1.4 +3 -3 ports/net/p5-Net-Blogger/distinfo 1.4 +6 -7 ports/net/p5-Net-Blogger/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 07:40:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EB0F16A40F; Tue, 26 Sep 2006 07:40:34 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA4E343D49; Tue, 26 Sep 2006 07:40:33 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q7eXMJ087197; Tue, 26 Sep 2006 07:40:33 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q7eXYT087196; Tue, 26 Sep 2006 07:40:33 GMT (envelope-from sat) Message-Id: <200609260740.k8Q7eXYT087196@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 26 Sep 2006 07:40:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/freeciv Makefile ports/games/freeciv/files patch-common__packets.c patch-server__unithand.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 07:40:34 -0000 sat 2006-09-26 07:40:33 UTC FreeBSD ports repository Modified files: games/freeciv Makefile Added files: games/freeciv/files patch-common__packets.c patch-server__unithand.c Log: - Fix a security bug Obtained from: Freeciv SVN (-r 12105:12106) Security: http://www.vuxml.org/freebsd/2d9ad236-4d26-11db-b48d-00508d6a62df.html Revision Changes Path 1.79 +1 -1 ports/games/freeciv/Makefile 1.1 +10 -0 ports/games/freeciv/files/patch-common__packets.c (new) 1.1 +12 -0 ports/games/freeciv/files/patch-server__unithand.c (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 08:15:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC4F516A403; Tue, 26 Sep 2006 08:15:50 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A89D243D5F; Tue, 26 Sep 2006 08:15:49 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q8Fni2090077; Tue, 26 Sep 2006 08:15:49 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q8Fnmm090076; Tue, 26 Sep 2006 08:15:49 GMT (envelope-from erwin) Message-Id: <200609260815.k8Q8Fnmm090076@repoman.freebsd.org> From: Erwin Lansing Date: Tue, 26 Sep 2006 08:15:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Params-Util Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 08:15:51 -0000 erwin 2006-09-26 08:15:49 UTC FreeBSD ports repository Modified files: devel/p5-Params-Util Makefile distinfo Log: Update to 0.20 PR: 103667 Submitted by: Gea-Suan Lin Revision Changes Path 1.11 +12 -6 ports/devel/p5-Params-Util/Makefile 1.10 +3 -3 ports/devel/p5-Params-Util/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 08:18:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B51916A407; Tue, 26 Sep 2006 08:18:27 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC9CD43D58; Tue, 26 Sep 2006 08:18:26 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q8IQRd090221; Tue, 26 Sep 2006 08:18:26 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q8IQVR090220; Tue, 26 Sep 2006 08:18:26 GMT (envelope-from clsung) Message-Id: <200609260818.k8Q8IQVR090220@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 08:18:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc Makefile ports/textproc/p5-POSIX-Regex Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 08:18:27 -0000 clsung 2006-09-26 08:18:26 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-POSIX-Regex Makefile distinfo pkg-descr pkg-plist Log: Add p5-POSIX-Regex 0.89, OO interface for the gnu regex engine. PR: ports/102253 Submitted by: Gea-Suan Lin Revision Changes Path 1.1063 +1 -0 ports/textproc/Makefile 1.1 +36 -0 ports/textproc/p5-POSIX-Regex/Makefile (new) 1.1 +3 -0 ports/textproc/p5-POSIX-Regex/distinfo (new) 1.1 +12 -0 ports/textproc/p5-POSIX-Regex/pkg-descr (new) 1.1 +9 -0 ports/textproc/p5-POSIX-Regex/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 08:18:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAD6C16A492; Tue, 26 Sep 2006 08:18:40 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 781BA43D46; Tue, 26 Sep 2006 08:18:40 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q8IewJ090263; Tue, 26 Sep 2006 08:18:40 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q8IeXL090262; Tue, 26 Sep 2006 08:18:40 GMT (envelope-from clsung) Message-Id: <200609260818.k8Q8IeXL090262@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 08:18:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 08:18:40 -0000 clsung 2006-09-26 08:18:40 UTC FreeBSD ports repository Modified files: . modules Log: p5-POSIX-Regex --> ports/textproc/p5-POSIX-Regex Revision Changes Path 1.16270 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Sep 26 08:25:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD42916A403; Tue, 26 Sep 2006 08:25:17 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36CC943D78; Tue, 26 Sep 2006 08:25:16 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q8PGiU090667; Tue, 26 Sep 2006 08:25:16 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q8PFbx090666; Tue, 26 Sep 2006 08:25:15 GMT (envelope-from clsung) Message-Id: <200609260825.k8Q8PFbx090666@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 08:25:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/irc/p5-POE-Component-IRC Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 08:25:17 -0000 clsung 2006-09-26 08:25:15 UTC FreeBSD ports repository Modified files: irc/p5-POE-Component-IRC Makefile distinfo Log: - Update to 5.04 PR: ports/103627 Submitted by: Gea-Suan Lin Approved by: maintainer (Jin-Shan Tseng) Revision Changes Path 1.25 +1 -1 ports/irc/p5-POE-Component-IRC/Makefile 1.22 +3 -3 ports/irc/p5-POE-Component-IRC/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 08:29:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A08CA16A407; Tue, 26 Sep 2006 08:29:20 +0000 (UTC) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0880243D72; Tue, 26 Sep 2006 08:29:20 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q8TJ0K090897; Tue, 26 Sep 2006 08:29:19 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q8TJ4H090896; Tue, 26 Sep 2006 08:29:19 GMT (envelope-from roam) Message-Id: <200609260829.k8Q8TJ4H090896@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 26 Sep 2006 08:29:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/libelf Makefile distinfo pkg-plist ports/devel/libelf/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 08:29:20 -0000 roam 2006-09-26 08:29:19 UTC FreeBSD ports repository Modified files: devel/libelf Makefile distinfo pkg-plist devel/libelf/files patch-configure Log: Update to libelf 0.8.9. In addition to the patch in the PR: - fix a trivial, harmless omission in the configure script; - OPTIONS'ify the gettext support and the extended format support. PR: 103656 Submitted by: ijliao Revision Changes Path 1.18 +24 -8 ports/devel/libelf/Makefile 1.10 +3 -3 ports/devel/libelf/distinfo 1.6 +23 -5 ports/devel/libelf/files/patch-configure 1.5 +1 -1 ports/devel/libelf/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 08:59:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E81DC16A415; Tue, 26 Sep 2006 08:59:47 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C52C43D68; Tue, 26 Sep 2006 08:59:46 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q8xksu000398; Tue, 26 Sep 2006 08:59:46 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q8xkFL000397; Tue, 26 Sep 2006 08:59:46 GMT (envelope-from clsung) Message-Id: <200609260859.k8Q8xkFL000397@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 08:59:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc Makefile ports/textproc/p5-XML-Compile Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 08:59:48 -0000 clsung 2006-09-26 08:59:45 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-XML-Compile Makefile distinfo pkg-descr pkg-plist Log: Add p5-XML-Compile 0.05, compilation based XML processing. PR: ports/102626 Submitted by: Jin-Shan Tseng Revision Changes Path 1.1064 +1 -0 ports/textproc/Makefile 1.1 +33 -0 ports/textproc/p5-XML-Compile/Makefile (new) 1.1 +3 -0 ports/textproc/p5-XML-Compile/distinfo (new) 1.1 +24 -0 ports/textproc/p5-XML-Compile/pkg-descr (new) 1.1 +25 -0 ports/textproc/p5-XML-Compile/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 09:00:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CD3A16A587; Tue, 26 Sep 2006 09:00:07 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BD3443D8A; Tue, 26 Sep 2006 09:00:02 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q90171000462; Tue, 26 Sep 2006 09:00:01 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q901Gu000461; Tue, 26 Sep 2006 09:00:01 GMT (envelope-from clsung) Message-Id: <200609260900.k8Q901Gu000461@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 09:00:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 09:00:07 -0000 clsung 2006-09-26 09:00:01 UTC FreeBSD ports repository Modified files: . modules Log: p5-XML-Compile --> ports/textproc/p5-XML-Compile Revision Changes Path 1.16271 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Sep 26 09:01:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56FA016A40F; Tue, 26 Sep 2006 09:01:13 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21B7E43D53; Tue, 26 Sep 2006 09:01:13 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q91D8Z000663; Tue, 26 Sep 2006 09:01:13 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q91CoE000662; Tue, 26 Sep 2006 09:01:12 GMT (envelope-from clsung) Message-Id: <200609260901.k8Q91CoE000662@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 09:01:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/pear-Console_Getopt Makefile distinfo pkg-descr ports/devel/pear-Console_Getopt/files package.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 09:01:13 -0000 clsung 2006-09-26 09:01:12 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/pear-Console_Getopt Makefile distinfo pkg-descr devel/pear-Console_Getopt/files package.xml Log: Add pear-Console_Getopt 1.2, PHP class that provides Command-line option parser. PR: ports/101266 Submitted by: chinsan Revision Changes Path 1.2455 +1 -0 ports/devel/Makefile 1.12 +26 -0 ports/devel/pear-Console_Getopt/Makefile (new) 1.6 +3 -0 ports/devel/pear-Console_Getopt/distinfo (new) 1.1 +63 -0 ports/devel/pear-Console_Getopt/files/package.xml (new) 1.4 +4 -0 ports/devel/pear-Console_Getopt/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 09:01:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15EF816A494; Tue, 26 Sep 2006 09:01:27 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A59A943D58; Tue, 26 Sep 2006 09:01:26 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q91Qsx000722; Tue, 26 Sep 2006 09:01:26 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q91QEQ000721; Tue, 26 Sep 2006 09:01:26 GMT (envelope-from clsung) Message-Id: <200609260901.k8Q91QEQ000721@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 09:01:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 09:01:27 -0000 clsung 2006-09-26 09:01:26 UTC FreeBSD ports repository Modified files: . modules Log: pear-Console_Getopt --> ports/devel/pear-Console_Getopt Revision Changes Path 1.16272 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Sep 26 09:07:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91ECE16A412; Tue, 26 Sep 2006 09:07:23 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F98F43D45; Tue, 26 Sep 2006 09:07:23 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q97N9A003130; Tue, 26 Sep 2006 09:07:23 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q97NSQ003129; Tue, 26 Sep 2006 09:07:23 GMT (envelope-from clsung) Message-Id: <200609260907.k8Q97NSQ003129@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 09:07:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/lighttpd Makefile distinfo pkg-plist ports/www/lighttpd/files lighttpd.conf.sample X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 09:07:23 -0000 clsung 2006-09-26 09:07:18 UTC FreeBSD ports repository Modified files: www/lighttpd Makefile distinfo pkg-plist www/lighttpd/files lighttpd.conf.sample Log: - Update to 1.4.12 - Add mirror sites listed on the official page - Now FastCGI PHP is /usr/local/bin/php-cgi PR: ports/103618 Submitted by: Gea-Suan Lin Approved by: maintainer (Hendrik Scholz) Revision Changes Path 1.42 +3 -3 ports/www/lighttpd/Makefile 1.28 +3 -3 ports/www/lighttpd/distinfo 1.9 +2 -1 ports/www/lighttpd/files/lighttpd.conf.sample 1.14 +4 -1 ports/www/lighttpd/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 09:28:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A1EE16A416 for ; Tue, 26 Sep 2006 09:28:08 +0000 (UTC) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4806343D55 for ; Tue, 26 Sep 2006 09:28:06 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 47026 invoked from network); 26 Sep 2006 09:29:57 -0000 Received: from c00l3r.networx.ch (HELO [127.0.0.1]) ([62.48.2.2]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 26 Sep 2006 09:29:57 -0000 Message-ID: <4518F2A7.2040506@freebsd.org> Date: Tue, 26 Sep 2006 11:28:07 +0200 From: Andre Oppermann User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: John-Mark Gurney References: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> In-Reply-To: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 09:28:08 -0000 John-Mark Gurney wrote: > jmg 2006-09-26 01:21:47 UTC > > FreeBSD src repository > > Modified files: > sys/netinet tcp_input.c > Log: > fix calculating to_tsecr... This prevents the rtt calculations from > going all wonky... *blushes*, looks for pointy hat. -- Andre From owner-cvs-all@FreeBSD.ORG Tue Sep 26 09:47:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CF8216A415; Tue, 26 Sep 2006 09:47:51 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 045F143D6A; Tue, 26 Sep 2006 09:47:46 +0000 (GMT) (envelope-from vd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8Q9lk7b006258; Tue, 26 Sep 2006 09:47:46 GMT (envelope-from vd@repoman.freebsd.org) Received: (from vd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8Q9lkRZ006257; Tue, 26 Sep 2006 09:47:46 GMT (envelope-from vd) Message-Id: <200609260947.k8Q9lkRZ006257@repoman.freebsd.org> From: Vasil Dimov Date: Tue, 26 Sep 2006 09:47:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys aio_error.2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 09:47:51 -0000 vd 2006-09-26 09:47:46 UTC FreeBSD src repository (ports committer) Modified files: lib/libc/sys aio_error.2 Log: Fix typo PR: docs/103666 Submitted by: vd Approved by: maxim Revision Changes Path 1.20 +1 -2 src/lib/libc/sys/aio_error.2 From owner-cvs-all@FreeBSD.ORG Tue Sep 26 09:57:16 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF52516A4C2 for ; Tue, 26 Sep 2006 09:57:16 +0000 (UTC) (envelope-from sergei@FreeBSD.org) Received: from tirith.elendil.ru (tirith.elendil.ru [195.68.151.124]) by mx1.FreeBSD.org (Postfix) with SMTP id B905243D67 for ; Tue, 26 Sep 2006 09:57:11 +0000 (GMT) (envelope-from sergei@FreeBSD.org) Received: (qmail 56976 invoked from network); 26 Sep 2006 09:57:09 -0000 Received: from narsil.elendil.ru ([10.19.72.1]) by sirion.elendil.ru ([10.19.72.4]) with ESMTP via TCP; 26 Sep 2006 09:57:09 -0000 Received: (qmail 71722 invoked from network); 26 Sep 2006 09:57:09 -0000 Received: from unknown (HELO ?10.253.129.233?) (sgk@10.253.129.233) by narsil.elendil.ru with ESMTPA; 26 Sep 2006 09:57:09 -0000 Message-ID: <4518F922.4090904@FreeBSD.org> Date: Tue, 26 Sep 2006 13:55:46 +0400 From: Sergei Kolobov User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Jeremy Messenger References: <200609220657.k8M6v7aC053378@repoman.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-ports@freebsd.org, novel@FreeBSD.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/security/libgpg-error Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 09:57:17 -0000 On 23.09.2006 21:59, Jeremy Messenger wrote: > On Fri, 22 Sep 2006 01:57:06 -0500, Sergei Kolobov > wrote: > >> sergei 2006-09-22 06:57:06 UTC >> >> FreeBSD ports repository >> >> Modified files: >> security/libgpg-error Makefile distinfo pkg-plist >> Log: >> - Update to 1.4 (shared library version bumped to 3) > > Can you add about it in the UPDATING (portupgrade -rf libgpg-error-\*)? > The bump don't work if you missed some of ports. I'd like to defer this to Roman (novel@, cc'd) who is the new port maintainer for security/libgpg-error. Sergei -- Sergei Kolobov // PGP: 0x3BA53401 A2F4 5F34 0586 CC9C 493A 347C 14EC 6E69 3BA5 3401 From owner-cvs-all@FreeBSD.ORG Tue Sep 26 10:11:41 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C858616A407; Tue, 26 Sep 2006 10:11:41 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B8E143D4C; Tue, 26 Sep 2006 10:11:41 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 2D5DD6113; Tue, 26 Sep 2006 14:11:40 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 0B7FA60EF; Tue, 26 Sep 2006 14:11:40 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8QABW4m012326; Tue, 26 Sep 2006 14:11:32 +0400 (MSD) (envelope-from ru) Date: Tue, 26 Sep 2006 14:11:32 +0400 From: Ruslan Ermilov To: Martin Blapp Message-ID: <20060926101132.GD11800@rambler-co.ru> References: <200609231452.k8NEql6w078197@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TybLhxa8M7aNoW+V" Content-Disposition: inline In-Reply-To: <200609231452.k8NEql6w078197@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty.c tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 10:11:41 -0000 --TybLhxa8M7aNoW+V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Sep 23, 2006 at 02:52:47PM +0000, Martin Blapp wrote: > mbr 2006-09-23 14:52:47 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/kern tty.c tty_pty.c=20 > Log: > Check for tp->t_refcnt =3D=3D 0 before doing anything in tty_open(). > =20 > PR: 103520 > MFC after: 1 week > =20 > Revision Changes Path > 1.260 +6 -0 src/sys/kern/tty.c > 1.146 +12 -0 src/sys/kern/tty_pty.c >=20 Does kern_pts.c have the same problem? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --TybLhxa8M7aNoW+V Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGPzUqRfpzJluFF4RAmLJAKCQS84qTXWcGjO2+3Jv7gDYRfEOSQCaAvdy srrNFu2DCUj2qrwd9zV+ZeQ= =Ro/q -----END PGP SIGNATURE----- --TybLhxa8M7aNoW+V-- From owner-cvs-all@FreeBSD.ORG Tue Sep 26 10:22:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6491616A415; Tue, 26 Sep 2006 10:22:21 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3150A43D5C; Tue, 26 Sep 2006 10:22:21 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QAML73009127; Tue, 26 Sep 2006 10:22:21 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QAML6U009126; Tue, 26 Sep 2006 10:22:21 GMT (envelope-from clsung) Message-Id: <200609261022.k8QAML6U009126@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 10:22:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/dns Makefile ports/dns/p5-Net-DNS-Codes Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 10:22:21 -0000 clsung 2006-09-26 10:22:20 UTC FreeBSD ports repository Modified files: dns Makefile Added files: dns/p5-Net-DNS-Codes Makefile distinfo pkg-descr pkg-plist Log: Add p5-Net-DNS-Codes 0.08, collection of C library DNS codes. PR: ports/103106 Submitted by: Gea-Suan Lin Revision Changes Path 1.63 +1 -0 ports/dns/Makefile 1.1 +22 -0 ports/dns/p5-Net-DNS-Codes/Makefile (new) 1.1 +3 -0 ports/dns/p5-Net-DNS-Codes/distinfo (new) 1.1 +4 -0 ports/dns/p5-Net-DNS-Codes/pkg-descr (new) 1.1 +8 -0 ports/dns/p5-Net-DNS-Codes/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 10:22:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E356416A583; Tue, 26 Sep 2006 10:22:38 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5823943D55; Tue, 26 Sep 2006 10:22:38 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QAMcdS009186; Tue, 26 Sep 2006 10:22:38 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QAMc04009185; Tue, 26 Sep 2006 10:22:38 GMT (envelope-from clsung) Message-Id: <200609261022.k8QAMc04009185@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 10:22:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 10:22:39 -0000 clsung 2006-09-26 10:22:38 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-DNS-Codes --> ports/dns/p5-Net-DNS-Codes Revision Changes Path 1.16273 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Sep 26 10:26:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4B4316A412; Tue, 26 Sep 2006 10:26:35 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1185243DB0; Tue, 26 Sep 2006 10:26:07 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QAQ6gj009431; Tue, 26 Sep 2006 10:26:06 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QAQ60C009430; Tue, 26 Sep 2006 10:26:06 GMT (envelope-from clsung) Message-Id: <200609261026.k8QAQ60C009430@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 10:26:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security Makefile ports/security/blocksshd Makefile distinfo pkg-descr pkg-plist ports/security/blocksshd/files patch-blocksshd.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 10:26:35 -0000 clsung 2006-09-26 10:26:06 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/blocksshd Makefile distinfo pkg-descr pkg-plist security/blocksshd/files patch-blocksshd.conf Log: Add blocksshd 0.8, protects computers from SSH brute force attacks. PR: ports/102367 Submitted by: Gea-Suan Lin Revision Changes Path 1.819 +1 -0 ports/security/Makefile 1.1 +34 -0 ports/security/blocksshd/Makefile (new) 1.1 +3 -0 ports/security/blocksshd/distinfo (new) 1.1 +23 -0 ports/security/blocksshd/files/patch-blocksshd.conf (new) 1.1 +4 -0 ports/security/blocksshd/pkg-descr (new) 1.1 +3 -0 ports/security/blocksshd/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 10:26:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C998516A416; Tue, 26 Sep 2006 10:26:36 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C37143D6D; Tue, 26 Sep 2006 10:26:17 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QAQHpW009473; Tue, 26 Sep 2006 10:26:17 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QAQHru009472; Tue, 26 Sep 2006 10:26:17 GMT (envelope-from clsung) Message-Id: <200609261026.k8QAQHru009472@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 10:26:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 10:26:36 -0000 clsung 2006-09-26 10:26:17 UTC FreeBSD ports repository Modified files: . modules Log: blocksshd --> ports/security/blocksshd Revision Changes Path 1.16274 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Sep 26 10:36:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7ABA16A40F; Tue, 26 Sep 2006 10:36:57 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9268243D77; Tue, 26 Sep 2006 10:36:54 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QAandq009987; Tue, 26 Sep 2006 10:36:54 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QAanrS009986; Tue, 26 Sep 2006 10:36:49 GMT (envelope-from des) Message-Id: <200609261036.k8QAanrS009986@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 26 Sep 2006 10:36:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/java/jakarta-bcel Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 10:36:57 -0000 des 2006-09-26 10:36:49 UTC FreeBSD ports repository Modified files: java/jakarta-bcel Makefile distinfo Removed files: java/jakarta-bcel pkg-plist Log: Upgrade to 5.2. Submitted by: ijliao@ Revision Changes Path 1.5 +7 -1 ports/java/jakarta-bcel/Makefile 1.5 +3 -3 ports/java/jakarta-bcel/distinfo 1.4 +0 -1160 ports/java/jakarta-bcel/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 10:51:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97C7316A4D8; Tue, 26 Sep 2006 10:51:23 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4241243D90; Tue, 26 Sep 2006 10:51:22 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QApMg8010701; Tue, 26 Sep 2006 10:51:22 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QApMmC010700; Tue, 26 Sep 2006 10:51:22 GMT (envelope-from clsung) Message-Id: <200609261051.k8QApMmC010700@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 10:51:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers Makefile ports/archivers/p5-Compress-LZF Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 10:51:23 -0000 clsung 2006-09-26 10:51:22 UTC FreeBSD ports repository Modified files: archivers Makefile Added files: archivers/p5-Compress-LZF Makefile distinfo pkg-descr pkg-plist Log: Add p5-Compress-LZF 1.65, extremely light-weight Lempel-Ziv-Free compression. PR: ports/103095 Submitted by: Gea-Suan Lin Revision Changes Path 1.157 +1 -0 ports/archivers/Makefile 1.1 +22 -0 ports/archivers/p5-Compress-LZF/Makefile (new) 1.1 +3 -0 ports/archivers/p5-Compress-LZF/distinfo (new) 1.1 +8 -0 ports/archivers/p5-Compress-LZF/pkg-descr (new) 1.1 +8 -0 ports/archivers/p5-Compress-LZF/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 10:51:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36C1C16A552; Tue, 26 Sep 2006 10:51:51 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9916043DB2; Tue, 26 Sep 2006 10:51:39 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QApdnh010741; Tue, 26 Sep 2006 10:51:39 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QApdae010740; Tue, 26 Sep 2006 10:51:39 GMT (envelope-from clsung) Message-Id: <200609261051.k8QApdae010740@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 10:51:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 10:51:51 -0000 clsung 2006-09-26 10:51:39 UTC FreeBSD ports repository Modified files: . modules Log: p5-Compress-LZF --> ports/archivers/p5-Compress-LZF Revision Changes Path 1.16275 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Sep 26 11:05:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 122E216A412; Tue, 26 Sep 2006 11:05:22 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC80143D45; Tue, 26 Sep 2006 11:05:21 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QB5L4e012606; Tue, 26 Sep 2006 11:05:21 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QB5Lbr012605; Tue, 26 Sep 2006 11:05:21 GMT (envelope-from mat) Message-Id: <200609261105.k8QB5Lbr012605@repoman.freebsd.org> From: Mathieu Arnold Date: Tue, 26 Sep 2006 11:05:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-B-Deobfuscate Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 11:05:22 -0000 mat 2006-09-26 11:05:21 UTC FreeBSD ports repository Modified files: devel/p5-B-Deobfuscate Makefile distinfo Log: Update to 0.16 Revision Changes Path 1.7 +1 -1 ports/devel/p5-B-Deobfuscate/Makefile 1.8 +3 -3 ports/devel/p5-B-Deobfuscate/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 11:19:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 515FA16A407; Tue, 26 Sep 2006 11:19:39 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF35943D45; Tue, 26 Sep 2006 11:19:38 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QBJcYL013206; Tue, 26 Sep 2006 11:19:38 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QBJcmn013205; Tue, 26 Sep 2006 11:19:38 GMT (envelope-from novel) Message-Id: <200609261119.k8QBJcmn013205@repoman.freebsd.org> From: Roman Bogorodskiy Date: Tue, 26 Sep 2006 11:19:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 11:19:39 -0000 novel 2006-09-26 11:19:38 UTC FreeBSD ports repository Modified files: . UPDATING Log: Mention recent security/libgpg-error update. Revision Changes Path 1.399 +11 -1 ports/UPDATING From owner-cvs-all@FreeBSD.ORG Tue Sep 26 11:22:06 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D482A16A4D4; Tue, 26 Sep 2006 11:22:06 +0000 (UTC) (envelope-from novel@yoda.fannet.ru) Received: from yoda.fannet.ru (yoda.fannet.ru [82.116.56.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 199C543D53; Tue, 26 Sep 2006 11:22:06 +0000 (GMT) (envelope-from novel@yoda.fannet.ru) Received: from yoda.fannet.ru (localhost [127.0.0.1]) by yoda.fannet.ru (Postfix) with ESMTP id 67D72457C9; Tue, 26 Sep 2006 15:22:04 +0400 (MSD) Received: by yoda.fannet.ru (Postfix, from userid 1003) id 49EA1457C8; Tue, 26 Sep 2006 15:22:04 +0400 (MSD) X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on yoda.fannet.ru X-Spam-Status: No, score=-1.0 required=3.5 tests=ALL_TRUSTED=-1.44,AWL=0.455 Received: from localhost (novel.fannet.ru [82.116.56.3]) by yoda.fannet.ru (Postfix) with ESMTP id 7F58145660; Tue, 26 Sep 2006 15:22:00 +0400 (MSD) Date: Tue, 26 Sep 2006 15:22:06 +0400 From: Roman Bogorodskiy To: Sergei Kolobov Message-ID: <20060926112206.GT99061@novel.fannet.ru> Mail-Followup-To: Sergei Kolobov , Jeremy Messenger , ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org References: <200609220657.k8M6v7aC053378@repoman.freebsd.org> <4518F922.4090904@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+epxrXWOh++2HLjY" Content-Disposition: inline In-Reply-To: <4518F922.4090904@FreeBSD.org> X-PGP: http://people.freebsd.org/~novel/novel.key.asc X-Virus-Scanned: ClamAV Cc: Jeremy Messenger , cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/security/libgpg-error Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 11:22:06 -0000 --+epxrXWOh++2HLjY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Sergei Kolobov wrote: > On 23.09.2006 21:59, Jeremy Messenger wrote: > >On Fri, 22 Sep 2006 01:57:06 -0500, Sergei Kolobov = =20 > >wrote: > > > >>sergei 2006-09-22 06:57:06 UTC > >> > >> FreeBSD ports repository > >> > >> Modified files: > >> security/libgpg-error Makefile distinfo pkg-plist > >> Log: > >> - Update to 1.4 (shared library version bumped to 3) > > > >Can you add about it in the UPDATING (portupgrade -rf libgpg-error-\*)?= =20 > >The bump don't work if you missed some of ports. >=20 > I'd like to defer this to Roman (novel@, cc'd) who is the new port=20 > maintainer for security/libgpg-error. Done, thanks. --+epxrXWOh++2HLjY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iQCVAwUBRRkNXYB0WzgdqspGAQLFvQQAh4FUCa6cAmZ2kIyjHdWecwKZhoZlf6ac 3Jwn99JXxHxhL3VZBLEct8keao1lVskq72KRWYBeTeabIfKxg9dIQABx+uMz2y4U sCOuR0hf3ACrpBd54EersHtCMd8IcESKLs6SbP1eBTy6mYdxLIPJz28TLda4qc/a DmUd86xrxJ8= =lXvx -----END PGP SIGNATURE----- --+epxrXWOh++2HLjY-- From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:06:06 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC07C16A412; Tue, 26 Sep 2006 12:06:06 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E87543D7B; Tue, 26 Sep 2006 12:05:53 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8QC5oWK009909; Tue, 26 Sep 2006 14:05:50 +0200 (CEST) (envelope-from mb@imp.ch) Date: Tue, 26 Sep 2006 14:05:50 +0200 (CEST) From: Martin Blapp To: Ruslan Ermilov In-Reply-To: <20060926101132.GD11800@rambler-co.ru> Message-ID: <20060926133931.K91466@godot.imp.ch> References: <200609231452.k8NEql6w078197@repoman.freebsd.org> <20060926101132.GD11800@rambler-co.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@freebsd.org, Martin Blapp , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty.c tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:06:06 -0000 Hi, > Does kern_pts.c have the same problem? Smilar but different problems. Those are addressed in a PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=99758 Martin From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:13:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF8B716A522; Tue, 26 Sep 2006 12:13:36 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E714943D69; Tue, 26 Sep 2006 12:13:31 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCDVSr016818; Tue, 26 Sep 2006 12:13:31 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCDV5w016817; Tue, 26 Sep 2006 12:13:31 GMT (envelope-from rafan) Message-Id: <200609261213.k8QCDV5w016817@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Sep 2006 12:13:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/chinese/irssi Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:13:37 -0000 rafan 2006-09-26 12:13:31 UTC FreeBSD ports repository Modified files: chinese/irssi Makefile Log: - Bump PORTREVISION for latest irc/irssi changes Approved by: vanilla (maintainer) Revision Changes Path 1.28 +1 -1 ports/chinese/irssi/Makefile From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:31:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75D5516A403; Tue, 26 Sep 2006 12:31:37 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DD2243D4C; Tue, 26 Sep 2006 12:31:37 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCVbgO017749; Tue, 26 Sep 2006 12:31:37 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCVa2C017748; Tue, 26 Sep 2006 12:31:36 GMT (envelope-from rafan) Message-Id: <200609261231.k8QCVa2C017748@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Sep 2006 12:31:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/finance/ktoblzcheck Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:31:37 -0000 rafan 2006-09-26 12:31:36 UTC FreeBSD ports repository Modified files: finance/ktoblzcheck Makefile distinfo Log: - Update to 1.11 PR: ports/103634 Submitted by: KATO Tsuguru Revision Changes Path 1.16 +1 -4 ports/finance/ktoblzcheck/Makefile 1.8 +3 -3 ports/finance/ktoblzcheck/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:33:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 967D216A4F4; Tue, 26 Sep 2006 12:33:44 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5701143DC2; Tue, 26 Sep 2006 12:32:57 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCWuNn017869; Tue, 26 Sep 2006 12:32:56 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCWu08017868; Tue, 26 Sep 2006 12:32:56 GMT (envelope-from mat) Message-Id: <200609261232.k8QCWu08017868@repoman.freebsd.org> From: Mathieu Arnold Date: Tue, 26 Sep 2006 12:32:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Log-Dispatch Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:33:44 -0000 mat 2006-09-26 12:32:56 UTC FreeBSD ports repository Modified files: devel/p5-Log-Dispatch Makefile distinfo Log: Update to 1.13 Avoid RUN_DEPENDS on Module-Build. PR: 103657 Submitted by: Gea-Suan Lin Revision Changes Path 1.20 +9 -9 ports/devel/p5-Log-Dispatch/Makefile 1.11 +3 -3 ports/devel/p5-Log-Dispatch/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:33:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51A2416A4B3; Tue, 26 Sep 2006 12:33:55 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3334C43DD6; Tue, 26 Sep 2006 12:33:19 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCXJuC017972; Tue, 26 Sep 2006 12:33:19 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCXJYB017971; Tue, 26 Sep 2006 12:33:19 GMT (envelope-from rafan) Message-Id: <200609261233.k8QCXJYB017971@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Sep 2006 12:33:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/emulators/bochs Makefile distinfo pkg-plist ports/emulators/bochs/files patch-ae patch-iodev-eth_vde.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:33:55 -0000 rafan 2006-09-26 12:33:19 UTC FreeBSD ports repository Modified files: emulators/bochs Makefile distinfo pkg-plist Removed files: emulators/bochs/files patch-ae patch-iodev-eth_vde.cc Log: - Update to 2.3 PR: ports/103635 Submitted by: KATO Tsuguru Revision Changes Path 1.75 +6 -1 ports/emulators/bochs/Makefile 1.30 +3 -3 ports/emulators/bochs/distinfo 1.4 +0 -12 ports/emulators/bochs/files/patch-ae (dead) 1.3 +0 -27 ports/emulators/bochs/files/patch-iodev-eth_vde.cc (dead) 1.27 +8 -8 ports/emulators/bochs/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:33:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4364516A62C; Tue, 26 Sep 2006 12:33:58 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3712343DE9; Tue, 26 Sep 2006 12:33:30 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCXR4u018006; Tue, 26 Sep 2006 12:33:27 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCXRVd018005; Tue, 26 Sep 2006 12:33:27 GMT (envelope-from mat) Message-Id: <200609261233.k8QCXRVd018005@repoman.freebsd.org> From: Mathieu Arnold Date: Tue, 26 Sep 2006 12:33:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/p5-Geo-Postcodes Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:33:58 -0000 mat 2006-09-26 12:33:27 UTC FreeBSD ports repository Modified files: misc/p5-Geo-Postcodes Makefile distinfo Log: Update to 0.311 Revision Changes Path 1.6 +2 -1 ports/misc/p5-Geo-Postcodes/Makefile 1.5 +3 -3 ports/misc/p5-Geo-Postcodes/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:34:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21B0216A762; Tue, 26 Sep 2006 12:34:14 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C243943D55; Tue, 26 Sep 2006 12:34:13 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCYDb3018101; Tue, 26 Sep 2006 12:34:13 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCYDOp018100; Tue, 26 Sep 2006 12:34:13 GMT (envelope-from rafan) Message-Id: <200609261234.k8QCYDOp018100@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Sep 2006 12:34:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/xabacus Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:34:14 -0000 rafan 2006-09-26 12:34:13 UTC FreeBSD ports repository Modified files: games/xabacus Makefile distinfo Log: - Update to 7.2.5 PR: ports/103637 Submitted by: KATO Tsuguru Revision Changes Path 1.21 +1 -1 ports/games/xabacus/Makefile 1.10 +3 -3 ports/games/xabacus/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:35:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8CCB16A4C2; Tue, 26 Sep 2006 12:35:12 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4680543D45; Tue, 26 Sep 2006 12:35:12 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCZ97x018182; Tue, 26 Sep 2006 12:35:09 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCZ9vC018181; Tue, 26 Sep 2006 12:35:09 GMT (envelope-from rafan) Message-Id: <200609261235.k8QCZ9vC018181@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Sep 2006 12:35:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/sane-backends Makefile Makefile.man distinfo pkg-plist ports/graphics/sane-backends/files patch-backend__dell1600n_net.c patch-backend__pixma.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:35:12 -0000 rafan 2006-09-26 12:35:09 UTC FreeBSD ports repository Modified files: graphics/sane-backends Makefile Makefile.man distinfo pkg-plist Added files: graphics/sane-backends/files patch-backend__dell1600n_net.c patch-backend__pixma.h Log: - Update to 1.0.18 PR: ports/103638 Submitted by: KATO Tsuguru Revision Changes Path 1.74 +14 -12 ports/graphics/sane-backends/Makefile 1.11 +3 -0 ports/graphics/sane-backends/Makefile.man 1.24 +3 -3 ports/graphics/sane-backends/distinfo 1.1 +20 -0 ports/graphics/sane-backends/files/patch-backend__dell1600n_net.c (new) 1.1 +20 -0 ports/graphics/sane-backends/files/patch-backend__pixma.h (new) 1.45 +14 -0 ports/graphics/sane-backends/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:37:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97D5816A4AB; Tue, 26 Sep 2006 12:37:09 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 251C743DE9; Tue, 26 Sep 2006 12:36:10 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCa94n018280; Tue, 26 Sep 2006 12:36:09 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCa9RS018279; Tue, 26 Sep 2006 12:36:09 GMT (envelope-from rafan) Message-Id: <200609261236.k8QCa9RS018279@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Sep 2006 12:36:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/xmedcon Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:37:09 -0000 rafan 2006-09-26 12:36:09 UTC FreeBSD ports repository Modified files: graphics/xmedcon Makefile distinfo Log: - Update to 0.9.9.3 PR: ports/103639 Submitted by: KATO Tsuguru Revision Changes Path 1.29 +2 -1 ports/graphics/xmedcon/Makefile 1.21 +3 -3 ports/graphics/xmedcon/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:37:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D82716A4E0; Tue, 26 Sep 2006 12:37:10 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 504BF43DF7; Tue, 26 Sep 2006 12:36:19 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCaIkD018309; Tue, 26 Sep 2006 12:36:18 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCaIcV018308; Tue, 26 Sep 2006 12:36:18 GMT (envelope-from sat) Message-Id: <200609261236.k8QCaIcV018308@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 26 Sep 2006 12:36:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/linux-unace Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:37:10 -0000 sat 2006-09-26 12:36:18 UTC FreeBSD ports repository Modified files: archivers/linux-unace Makefile Log: - Do not strip [1] - Mark deprecated and schedule for removal in a month Reported by: pointyhat via kris [1] Revision Changes Path 1.16 +3 -0 ports/archivers/linux-unace/Makefile From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:37:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64B0216A651; Tue, 26 Sep 2006 12:37:15 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 425FE43D77; Tue, 26 Sep 2006 12:36:47 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCaZ1S018490; Tue, 26 Sep 2006 12:36:35 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCaZ9C018489; Tue, 26 Sep 2006 12:36:35 GMT (envelope-from ru) Message-Id: <200609261236.k8QCaZ9C018489@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 26 Sep 2006 12:36:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/amd64/conf GENERIC src/sys/conf NOTES options src/sys/i386/conf GENERIC src/sys/ia64/conf GENERIC src/sys/pc98/conf GENERIC src/sys/powerpc/conf GENERIC src/sys/sparc64/conf GENERIC X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:37:15 -0000 ru 2006-09-26 12:36:35 UTC FreeBSD src repository Modified files: sys/amd64/conf GENERIC sys/conf NOTES options sys/i386/conf GENERIC sys/ia64/conf GENERIC sys/pc98/conf GENERIC sys/powerpc/conf GENERIC sys/sparc64/conf GENERIC Log: Added COMPAT_FREEBSD6 option. Revision Changes Path 1.465 +1 -0 src/sys/amd64/conf/GENERIC 1.1383 +3 -0 src/sys/conf/NOTES 1.559 +1 -0 src/sys/conf/options 1.456 +1 -0 src/sys/i386/conf/GENERIC 1.83 +1 -0 src/sys/ia64/conf/GENERIC 1.284 +1 -0 src/sys/pc98/conf/GENERIC 1.60 +2 -1 src/sys/powerpc/conf/GENERIC 1.115 +1 -0 src/sys/sparc64/conf/GENERIC From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:37:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64FF516A557; Tue, 26 Sep 2006 12:37:22 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14D1443D45; Tue, 26 Sep 2006 12:37:22 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCbLKi018540; Tue, 26 Sep 2006 12:37:21 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCbLn2018539; Tue, 26 Sep 2006 12:37:21 GMT (envelope-from rafan) Message-Id: <200609261237.k8QCbLn2018539@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Sep 2006 12:37:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/fityk Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:37:22 -0000 rafan 2006-09-26 12:37:21 UTC FreeBSD ports repository Modified files: math/fityk Makefile distinfo Log: - Update to 0.7.6 PR: ports/103640 Submitted by: KATO Tsuguru Revision Changes Path 1.15 +1 -1 ports/math/fityk/Makefile 1.10 +3 -3 ports/math/fityk/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:37:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F05D516A492; Tue, 26 Sep 2006 12:37:56 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACCD943D46; Tue, 26 Sep 2006 12:37:56 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCbud9018585; Tue, 26 Sep 2006 12:37:56 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCbuV7018584; Tue, 26 Sep 2006 12:37:56 GMT (envelope-from rafan) Message-Id: <200609261237.k8QCbuV7018584@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Sep 2006 12:37:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/abcm2ps Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:37:57 -0000 rafan 2006-09-26 12:37:56 UTC FreeBSD ports repository Modified files: print/abcm2ps Makefile distinfo Log: - Update to 4.12.27 PR: ports/103641 Submitted by: KATO Tsuguru Revision Changes Path 1.14 +1 -1 ports/print/abcm2ps/Makefile 1.16 +3 -3 ports/print/abcm2ps/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:40:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD2C216A415; Tue, 26 Sep 2006 12:40:26 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50D8343D76; Tue, 26 Sep 2006 12:40:23 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCeNeu018738; Tue, 26 Sep 2006 12:40:23 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCeNFH018737; Tue, 26 Sep 2006 12:40:23 GMT (envelope-from rafan) Message-Id: <200609261240.k8QCeNFH018737@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Sep 2006 12:40:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/asymptote Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:40:26 -0000 rafan 2006-09-26 12:40:23 UTC FreeBSD ports repository Modified files: math/asymptote Makefile pkg-plist Log: - Fix build (chase new version of devel/boehm-gc - Fix pkg-plist PR: ports/103647 Reported by: pointyhat via kris Submitted by: Nicola Vitale (maintainer) Revision Changes Path 1.23 +2 -1 ports/math/asymptote/Makefile 1.18 +2 -2 ports/math/asymptote/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:41:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C049016A407; Tue, 26 Sep 2006 12:41:13 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C22543D45; Tue, 26 Sep 2006 12:41:13 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCfD7v018885; Tue, 26 Sep 2006 12:41:13 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCfDuU018884; Tue, 26 Sep 2006 12:41:13 GMT (envelope-from ru) Message-Id: <200609261241.k8QCfDuU018884@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 26 Sep 2006 12:41:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/wlan Makefile src/sys/net80211 ieee80211_ioctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:41:13 -0000 ru 2006-09-26 12:41:13 UTC FreeBSD src repository Modified files: sys/modules/wlan Makefile sys/net80211 ieee80211_ioctl.c Log: Now that we have COMPAT_FREEBSD6 officially, use it from opt_compat.h. Revision Changes Path 1.6 +4 -1 src/sys/modules/wlan/Makefile 1.50 +2 -1 src/sys/net80211/ieee80211_ioctl.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:41:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BCEB16A5AE; Tue, 26 Sep 2006 12:41:18 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B554843D53; Tue, 26 Sep 2006 12:41:18 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCfI7k018942; Tue, 26 Sep 2006 12:41:18 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCfIrW018941; Tue, 26 Sep 2006 12:41:18 GMT (envelope-from rafan) Message-Id: <200609261241.k8QCfIrW018941@repoman.freebsd.org> From: Rong-En Fan Date: Tue, 26 Sep 2006 12:41:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-toolkits/py-xlib Makefile distinfo pkg-plist ports/x11-toolkits/py-xlib/files patch-display patch-infofile patch-unix_connect X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:41:22 -0000 rafan 2006-09-26 12:41:18 UTC FreeBSD ports repository Modified files: x11-toolkits/py-xlib Makefile distinfo pkg-plist x11-toolkits/py-xlib/files patch-display Removed files: x11-toolkits/py-xlib/files patch-infofile patch-unix_connect Log: - Update to 0.13 PR: ports/103650 Submitted by: Mike Meyer (maintainer) Revision Changes Path 1.12 +1 -6 ports/x11-toolkits/py-xlib/Makefile 1.8 +3 -3 ports/x11-toolkits/py-xlib/distinfo 1.2 +8 -7 ports/x11-toolkits/py-xlib/files/patch-display 1.2 +0 -16 ports/x11-toolkits/py-xlib/files/patch-infofile (dead) 1.2 +0 -14 ports/x11-toolkits/py-xlib/files/patch-unix_connect (dead) 1.4 +3 -0 ports/x11-toolkits/py-xlib/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:44:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6393F16A40F; Tue, 26 Sep 2006 12:44:21 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21E7543D49; Tue, 26 Sep 2006 12:44:21 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCiLs5019121; Tue, 26 Sep 2006 12:44:21 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCiKeu019120; Tue, 26 Sep 2006 12:44:20 GMT (envelope-from ru) Message-Id: <200609261244.k8QCiKeu019120@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 26 Sep 2006 12:44:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/wlan Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:44:21 -0000 ru 2006-09-26 12:44:20 UTC FreeBSD src repository Modified files: sys/modules/wlan Makefile Log: Add a value to the define I forgot, for the purity's sake. Revision Changes Path 1.7 +1 -1 src/sys/modules/wlan/Makefile From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:45:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC48616A417; Tue, 26 Sep 2006 12:45:52 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0A3043D7E; Tue, 26 Sep 2006 12:45:48 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCjmY1019209; Tue, 26 Sep 2006 12:45:48 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCjmiE019208; Tue, 26 Sep 2006 12:45:48 GMT (envelope-from rwatson) Message-Id: <200609261245.k8QCjmiE019208@repoman.freebsd.org> From: Robert Watson Date: Tue, 26 Sep 2006 12:45:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys copyright.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:45:53 -0000 rwatson 2006-09-26 12:45:47 UTC FreeBSD src repository Modified files: sys/sys copyright.h Log: PC98 would also like a trademark. Who would have thought that getting a kernel printf right would be so tricky? MFC after: 3 days Submitted by: Gavin Atkinson Revision Changes Path 1.23 +2 -1 src/sys/sys/copyright.h From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:46:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3C1116A403; Tue, 26 Sep 2006 12:46:15 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A50943D53; Tue, 26 Sep 2006 12:46:13 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 604095CAA; Tue, 26 Sep 2006 16:46:12 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 479745C91; Tue, 26 Sep 2006 16:46:12 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8QCkCJg001239; Tue, 26 Sep 2006 16:46:12 +0400 (MSD) (envelope-from ru) Date: Tue, 26 Sep 2006 16:46:12 +0400 From: Ruslan Ermilov To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20060926124612.GA855@rambler-co.ru> References: <200609261236.k8QCaZ9C018489@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WIyZ46R2i8wDzkSu" Content-Disposition: inline In-Reply-To: <200609261236.k8QCaZ9C018489@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: Subject: Re: cvs commit: src/sys/amd64/conf GENERIC src/sys/conf NOTES options src/sys/i386/conf GENERIC src/sys/ia64/conf GENERIC src/sys/pc98/conf GENERIC src/sys/powerpc/conf GENERIC src/sys/sparc64/conf GENERIC X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:46:16 -0000 --WIyZ46R2i8wDzkSu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 26, 2006 at 12:36:35PM +0000, Ruslan Ermilov wrote: > ru 2006-09-26 12:36:35 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/amd64/conf GENERIC=20 > sys/conf NOTES options=20 > sys/i386/conf GENERIC=20 > sys/ia64/conf GENERIC=20 > sys/pc98/conf GENERIC=20 > sys/powerpc/conf GENERIC=20 > sys/sparc64/conf GENERIC=20 > Log: > Added COMPAT_FREEBSD6 option. > =20 > Revision Changes Path > 1.465 +1 -0 src/sys/amd64/conf/GENERIC > 1.1383 +3 -0 src/sys/conf/NOTES > 1.559 +1 -0 src/sys/conf/options > 1.456 +1 -0 src/sys/i386/conf/GENERIC > 1.83 +1 -0 src/sys/ia64/conf/GENERIC > 1.284 +1 -0 src/sys/pc98/conf/GENERIC > 1.60 +2 -1 src/sys/powerpc/conf/GENERIC > 1.115 +1 -0 src/sys/sparc64/conf/GENERIC >=20 For the curious, I have some WIP code that fixes ioctl(2) and it will need this option. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --WIyZ46R2i8wDzkSu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGSEUqRfpzJluFF4RAsDJAKCKSWV9tRrRMyXitorphjQ2wQK+TACggBCq +eGAgkwhzvTBpp6wnZuu5Qc= =79Pn -----END PGP SIGNATURE----- --WIyZ46R2i8wDzkSu-- From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:47:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E181216A47C; Tue, 26 Sep 2006 12:47:49 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 597C943D80; Tue, 26 Sep 2006 12:47:41 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 695DA5CD2; Tue, 26 Sep 2006 16:47:40 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 48D9D5CCD; Tue, 26 Sep 2006 16:47:40 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8QClemc001335; Tue, 26 Sep 2006 16:47:40 +0400 (MSD) (envelope-from ru) Date: Tue, 26 Sep 2006 16:47:40 +0400 From: Ruslan Ermilov To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20060926124740.GB855@rambler-co.ru> References: <200609261241.k8QCfDuU018884@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rJwd6BRFiFCcLxzm" Content-Disposition: inline In-Reply-To: <200609261241.k8QCfDuU018884@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: Subject: Re: cvs commit: src/sys/modules/wlan Makefile src/sys/net80211 ieee80211_ioctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:47:50 -0000 --rJwd6BRFiFCcLxzm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 26, 2006 at 12:41:13PM +0000, Ruslan Ermilov wrote: > ru 2006-09-26 12:41:13 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/modules/wlan Makefile=20 > sys/net80211 ieee80211_ioctl.c=20 > Log: > Now that we have COMPAT_FREEBSD6 officially, use it from opt_compat.h. > =20 > Revision Changes Path > 1.6 +4 -1 src/sys/modules/wlan/Makefile > 1.50 +2 -1 src/sys/net80211/ieee80211_ioctl.c >=20 That should read: "pick it up from opt_compat.h". Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --rJwd6BRFiFCcLxzm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGSFsqRfpzJluFF4RApFJAKCMfPviXjM0+lLUFRJyHzID8ErS1gCcDptx pi4Xjlwu3QcDEwiiQoMLOz0= =bMhR -----END PGP SIGNATURE----- --rJwd6BRFiFCcLxzm-- From owner-cvs-all@FreeBSD.ORG Tue Sep 26 12:55:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B79BE16A412; Tue, 26 Sep 2006 12:55:04 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9830E43D5F; Tue, 26 Sep 2006 12:54:59 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QCsxM5027639; Tue, 26 Sep 2006 12:54:59 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QCsx3h027638; Tue, 26 Sep 2006 12:54:59 GMT (envelope-from sat) Message-Id: <200609261254.k8QCsx3h027638@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 26 Sep 2006 12:54:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/linux-firefox-devel Makefile ports/www/linux-seamonkey-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 12:55:04 -0000 sat 2006-09-26 12:54:59 UTC FreeBSD ports repository Modified files: www/linux-firefox-devel Makefile www/linux-seamonkey-devel Makefile Log: - Add more mirrors Reported by: pointyhat via kris Revision Changes Path 1.11 +2 -1 ports/www/linux-firefox-devel/Makefile 1.10 +2 -1 ports/www/linux-seamonkey-devel/Makefile From owner-cvs-all@FreeBSD.ORG Tue Sep 26 13:01:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC71F16A40F; Tue, 26 Sep 2006 13:01:40 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 065D043D58; Tue, 26 Sep 2006 13:01:39 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QD1cNi028091; Tue, 26 Sep 2006 13:01:38 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QD1cMD028090; Tue, 26 Sep 2006 13:01:38 GMT (envelope-from sat) Message-Id: <200609261301.k8QD1cMD028090@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 26 Sep 2006 13:01:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-POE-Component-Client-Ident Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 13:01:41 -0000 sat 2006-09-26 13:01:38 UTC FreeBSD ports repository Modified files: net/p5-POE-Component-Client-Ident Makefile distinfo Log: - Update to 1.03 PR: ports/103632 Submitted by: Gea-Suan Lin Revision Changes Path 1.5 +1 -1 ports/net/p5-POE-Component-Client-Ident/Makefile 1.4 +3 -3 ports/net/p5-POE-Component-Client-Ident/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 13:37:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2EC316A412; Tue, 26 Sep 2006 13:37:23 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F94B43D46; Tue, 26 Sep 2006 13:37:23 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QDbNWc032409; Tue, 26 Sep 2006 13:37:23 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QDbN16032408; Tue, 26 Sep 2006 13:37:23 GMT (envelope-from garga) Message-Id: <200609261337.k8QDbN16032408@repoman.freebsd.org> From: Renato Botelho Date: Tue, 26 Sep 2006 13:37:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/clamav-devel/files patch-clamd_session.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 13:37:23 -0000 garga 2006-09-26 13:37:22 UTC FreeBSD ports repository Added files: security/clamav-devel/files patch-clamd_session.c Log: - Fix build on 7-CURRENT Thanks to: mnag Revision Changes Path 1.1 +13 -0 ports/security/clamav-devel/files/patch-clamd_session.c (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 13:40:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09AD016A412; Tue, 26 Sep 2006 13:40:58 +0000 (UTC) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1605E43D7C; Tue, 26 Sep 2006 13:40:52 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QDeqJW032664; Tue, 26 Sep 2006 13:40:52 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QDeqrh032663; Tue, 26 Sep 2006 13:40:52 GMT (envelope-from roam) Message-Id: <200609261340.k8QDeqrh032663@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 26 Sep 2006 13:40:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/stunnel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 13:40:58 -0000 roam 2006-09-26 13:40:52 UTC FreeBSD ports repository Modified files: security/stunnel Makefile distinfo Log: A trivial update to stunnel-4.18 - Windows-related changes only. Revision Changes Path 1.74 +1 -1 ports/security/stunnel/Makefile 1.41 +3 -6 ports/security/stunnel/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 13:43:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from [IPv6:::1] (hub.freebsd.org [216.136.204.18]) by hub.freebsd.org (Postfix) with ESMTP id 5670416A415; Tue, 26 Sep 2006 13:43:20 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Message-ID: <45192E76.4040202@FreeBSD.org> Date: Tue, 26 Sep 2006 10:43:18 -0300 From: Marcus Alves Grando Organization: FreeBSD.org User-Agent: Thunderbird 1.5.0.7 (X11/20060919) MIME-Version: 1.0 To: Cheng-Lung Sung References: <200609260907.k8Q97NSQ003129@repoman.freebsd.org> In-Reply-To: <200609260907.k8Q97NSQ003129@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/www/lighttpd Makefile distinfo pkg-plist ports/www/lighttpd/files lighttpd.conf.sample X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 13:43:21 -0000 Fix build on 4.x http://marcus.grupos.com.br:8080/patch/lighttpd.patch Thanks Cheng-Lung Sung wrote: > clsung 2006-09-26 09:07:18 UTC > > FreeBSD ports repository > > Modified files: > www/lighttpd Makefile distinfo pkg-plist > www/lighttpd/files lighttpd.conf.sample > Log: > - Update to 1.4.12 > - Add mirror sites listed on the official page > - Now FastCGI PHP is /usr/local/bin/php-cgi > > PR: ports/103618 > Submitted by: Gea-Suan Lin > Approved by: maintainer (Hendrik Scholz) > > Revision Changes Path > 1.42 +3 -3 ports/www/lighttpd/Makefile > 1.28 +3 -3 ports/www/lighttpd/distinfo > 1.9 +2 -1 ports/www/lighttpd/files/lighttpd.conf.sample > 1.14 +4 -1 ports/www/lighttpd/pkg-plist -- Marcus Alves Grando marcus(at)corp.grupos.com.br | Grupos Internet S/A mnag(at)FreeBSD.org | FreeBSD.org From owner-cvs-all@FreeBSD.ORG Tue Sep 26 14:00:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F4E416A407; Tue, 26 Sep 2006 14:00:09 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C04A143D49; Tue, 26 Sep 2006 14:00:08 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QE08PD033553; Tue, 26 Sep 2006 14:00:08 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QE084s033552; Tue, 26 Sep 2006 14:00:08 GMT (envelope-from clsung) Message-Id: <200609261400.k8QE084s033552@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 14:00:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-Number-Format Makefile ports/textproc/p5-Number-Format/files patch-Format.pm X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 14:00:09 -0000 clsung 2006-09-26 14:00:08 UTC FreeBSD ports repository Modified files: textproc/p5-Number-Format Makefile Removed files: textproc/p5-Number-Format/files patch-Format.pm Log: - the patch should be removed (tested via 'make test') - bump PORTREVISION PR: ports/103653 Submitted by: Warren Block Revision Changes Path 1.10 +2 -1 ports/textproc/p5-Number-Format/Makefile 1.3 +0 -11 ports/textproc/p5-Number-Format/files/patch-Format.pm (dead) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 14:18:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C215A16A415; Tue, 26 Sep 2006 14:18:27 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E5C343D49; Tue, 26 Sep 2006 14:18:27 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QEIRsZ035640; Tue, 26 Sep 2006 14:18:27 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QEIRS8035639; Tue, 26 Sep 2006 14:18:27 GMT (envelope-from clsung) Message-Id: <200609261418.k8QEIRS8035639@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 14:18:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers Makefile ports/archivers/p5-Compress-LZO Makefile distinfo pkg-descr pkg-plist ports/archivers/p5-Compress-LZO/files patch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 14:18:27 -0000 clsung 2006-09-26 14:18:27 UTC FreeBSD ports repository Modified files: archivers Makefile Added files: archivers/p5-Compress-LZO Makefile distinfo pkg-descr pkg-plist archivers/p5-Compress-LZO/files patch-Makefile.PL Log: Add p5-Compress-LZO 1.08, interface to the LZO compression library. PR: ports/103097 Submitted by: Gea-Suan Lin Revision Changes Path 1.158 +1 -0 ports/archivers/Makefile 1.1 +27 -0 ports/archivers/p5-Compress-LZO/Makefile (new) 1.1 +3 -0 ports/archivers/p5-Compress-LZO/distinfo (new) 1.1 +11 -0 ports/archivers/p5-Compress-LZO/files/patch-Makefile.PL (new) 1.1 +6 -0 ports/archivers/p5-Compress-LZO/pkg-descr (new) 1.1 +9 -0 ports/archivers/p5-Compress-LZO/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 14:18:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0BBE16A412; Tue, 26 Sep 2006 14:18:39 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F38843D58; Tue, 26 Sep 2006 14:18:39 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QEIc7c035691; Tue, 26 Sep 2006 14:18:38 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QEIcfB035690; Tue, 26 Sep 2006 14:18:38 GMT (envelope-from clsung) Message-Id: <200609261418.k8QEIcfB035690@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 14:18:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 14:18:39 -0000 clsung 2006-09-26 14:18:38 UTC FreeBSD ports repository Modified files: . modules Log: p5-Compress-LZO --> ports/archivers/p5-Compress-LZO Revision Changes Path 1.16276 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Sep 26 14:30:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF5E016A40F; Tue, 26 Sep 2006 14:30:07 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65B4E43D58; Tue, 26 Sep 2006 14:30:07 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QEU7ol036309; Tue, 26 Sep 2006 14:30:07 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QEU7E9036308; Tue, 26 Sep 2006 14:30:07 GMT (envelope-from clsung) Message-Id: <200609261430.k8QEU7E9036308@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 14:30:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www Makefile ports/www/p5-WWW-WebArchive Makefile distinfo p5-WWW-WebArchive-0.50.tbz pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 14:30:08 -0000 clsung 2006-09-26 14:30:06 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/p5-WWW-WebArchive Makefile distinfo p5-WWW-WebArchive-0.50.tbz pkg-descr pkg-plist Log: Add p5-WWW-WebArchive 0.50, retrieve old versions of public web pages from various web archives. PR: ports/102318 Submitted by: Gea-Suan Lin Revision Changes Path 1.1574 +1 -0 ports/www/Makefile 1.1 +33 -0 ports/www/p5-WWW-WebArchive/Makefile (new) 1.1 +3 -0 ports/www/p5-WWW-WebArchive/distinfo (new) 1.1 +59 -0 ports/www/p5-WWW-WebArchive/p5-WWW-WebArchive-0.50.tbz (new) 1.1 +14 -0 ports/www/p5-WWW-WebArchive/pkg-descr (new) 1.1 +9 -0 ports/www/p5-WWW-WebArchive/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 14:30:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AD3516A582; Tue, 26 Sep 2006 14:30:34 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1928543D58; Tue, 26 Sep 2006 14:30:34 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QEUXwQ036412; Tue, 26 Sep 2006 14:30:33 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QEUXRJ036411; Tue, 26 Sep 2006 14:30:33 GMT (envelope-from clsung) Message-Id: <200609261430.k8QEUXRJ036411@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 14:30:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 14:30:34 -0000 clsung 2006-09-26 14:30:33 UTC FreeBSD ports repository Modified files: . modules Log: p5-WWW-WebArchive --> ports/www/p5-WWW-WebArchive Revision Changes Path 1.16277 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Sep 26 14:38:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48EB116A403; Tue, 26 Sep 2006 14:38:57 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D987143D46; Tue, 26 Sep 2006 14:38:56 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QEcuRp036831; Tue, 26 Sep 2006 14:38:56 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QEcucu036830; Tue, 26 Sep 2006 14:38:56 GMT (envelope-from jhb) Message-Id: <200609261438.k8QEcucu036830@repoman.freebsd.org> From: John Baldwin Date: Tue, 26 Sep 2006 14:38:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/smbus smb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 14:38:57 -0000 jhb 2006-09-26 14:38:56 UTC FreeBSD src repository Modified files: sys/dev/smbus smb.c Log: Only support the SMB_OLD_BREAD ioctl if one of COMPAT_FREEBSD[456] is defined. Revision Changes Path 1.38 +6 -0 src/sys/dev/smbus/smb.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 14:46:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 326D816A407; Tue, 26 Sep 2006 14:46:03 +0000 (UTC) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77D0A43D4C; Tue, 26 Sep 2006 14:46:02 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QEk2xu037275; Tue, 26 Sep 2006 14:46:02 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QEk2UK037274; Tue, 26 Sep 2006 14:46:02 GMT (envelope-from roam) Message-Id: <200609261446.k8QEk2UK037274@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 26 Sep 2006 14:46:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/ftp/curlpp Makefile distinfo pkg-plist ports/ftp/curlpp/files patch-ltmain.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 14:46:03 -0000 roam 2006-09-26 14:46:02 UTC FreeBSD ports repository Modified files: ftp/curlpp Makefile distinfo pkg-plist Removed files: ftp/curlpp/files patch-ltmain.sh Log: Update to curlpp-0.6.1, USE_LDCONFIG, and remove the libtool hack. Revision Changes Path 1.15 +3 -3 ports/ftp/curlpp/Makefile 1.7 +3 -3 ports/ftp/curlpp/distinfo 1.2 +0 -15 ports/ftp/curlpp/files/patch-ltmain.sh (dead) 1.5 +49 -1 ports/ftp/curlpp/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 14:51:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4200C16A416; Tue, 26 Sep 2006 14:51:22 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAF1C43D46; Tue, 26 Sep 2006 14:51:21 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QEpL1M037680; Tue, 26 Sep 2006 14:51:21 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QEpLSB037679; Tue, 26 Sep 2006 14:51:21 GMT (envelope-from clsung) Message-Id: <200609261451.k8QEpLSB037679@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 14:51:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/p5-POE-Filter-Bzip2 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 14:51:22 -0000 clsung 2006-09-26 14:51:21 UTC FreeBSD ports repository Modified files: archivers/p5-POE-Filter-Bzip2 Makefile distinfo Log: - Update to 1.3 - Transfer maintainership to perl@ PR: ports/103631 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.2 +4 -4 ports/archivers/p5-POE-Filter-Bzip2/Makefile 1.2 +3 -3 ports/archivers/p5-POE-Filter-Bzip2/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 14:51:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C0EF16A49E; Tue, 26 Sep 2006 14:51:34 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC83F43D49; Tue, 26 Sep 2006 14:51:33 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QEpXd5037707; Tue, 26 Sep 2006 14:51:33 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QEpXKs037706; Tue, 26 Sep 2006 14:51:33 GMT (envelope-from kensmith) Message-Id: <200609261451.k8QEpXKs037706@repoman.freebsd.org> From: Ken Smith Date: Tue, 26 Sep 2006 14:51:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/pkg_install/add main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 14:51:34 -0000 kensmith 2006-09-26 14:51:33 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/add main.c Log: Oops. Catch up on the last couple of releases and prepare for the next one. Revision Changes Path 1.69 +3 -0 src/usr.sbin/pkg_install/add/main.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 15:01:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E577B16A403; Tue, 26 Sep 2006 15:01:56 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D83E43D8D; Tue, 26 Sep 2006 15:01:41 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QF1SYg038165; Tue, 26 Sep 2006 15:01:28 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QF1SoZ038164; Tue, 26 Sep 2006 15:01:28 GMT (envelope-from clsung) Message-Id: <200609261501.k8QF1SoZ038164@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 15:01:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Module-Build-Convert Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 15:01:57 -0000 clsung 2006-09-26 15:01:28 UTC FreeBSD ports repository Modified files: devel/p5-Module-Build-Convert Makefile distinfo Log: - Update to 0.35 Revision Changes Path 1.9 +1 -1 ports/devel/p5-Module-Build-Convert/Makefile 1.7 +3 -3 ports/devel/p5-Module-Build-Convert/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 15:21:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED28416A417; Tue, 26 Sep 2006 15:21:19 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C76B243D8A; Tue, 26 Sep 2006 15:19:18 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QFJDkp040089; Tue, 26 Sep 2006 15:19:13 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QFJDnP040088; Tue, 26 Sep 2006 15:19:13 GMT (envelope-from clsung) Message-Id: <200609261519.k8QFJDnP040088@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 15:19:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/p5-POE-Filter-Zlib Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 15:21:20 -0000 clsung 2006-09-26 15:19:13 UTC FreeBSD ports repository Modified files: archivers/p5-POE-Filter-Zlib Makefile distinfo Log: - Update to 1.7 - from Changes - Switched to Module::Install Revision Changes Path 1.6 +1 -1 ports/archivers/p5-POE-Filter-Zlib/Makefile 1.6 +3 -3 ports/archivers/p5-POE-Filter-Zlib/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 15:22:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9270416A407; Tue, 26 Sep 2006 15:22:42 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4387843DAC; Tue, 26 Sep 2006 15:21:17 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QFL4ct040258; Tue, 26 Sep 2006 15:21:04 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QFL4vM040257; Tue, 26 Sep 2006 15:21:04 GMT (envelope-from clsung) Message-Id: <200609261521.k8QFL4vM040257@repoman.freebsd.org> From: Cheng-Lung Sung Date: Tue, 26 Sep 2006 15:21:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/p5-POE-Filter-LZW Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 15:22:42 -0000 clsung 2006-09-26 15:21:04 UTC FreeBSD ports repository Modified files: archivers/p5-POE-Filter-LZW Makefile distinfo Log: - Update to 1.5 - from Changes - Switched to Module::Install Revision Changes Path 1.4 +1 -1 ports/archivers/p5-POE-Filter-LZW/Makefile 1.4 +3 -3 ports/archivers/p5-POE-Filter-LZW/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 15:43:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0F6C16A52B; Tue, 26 Sep 2006 15:43:49 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD3A243E3F; Tue, 26 Sep 2006 15:41:43 +0000 (GMT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QFfh6i041382; Tue, 26 Sep 2006 15:41:43 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QFfhjh041381; Tue, 26 Sep 2006 15:41:43 GMT (envelope-from leeym) Message-Id: <200609261541.k8QFfhjh041381@repoman.freebsd.org> From: Yen-Ming Lee Date: Tue, 26 Sep 2006 15:41:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/php4-imlib2 Makefile ports/graphics/php5-imlib2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 15:43:49 -0000 leeym 2006-09-26 15:41:42 UTC FreeBSD ports repository Modified files: graphics/php4-imlib2 Makefile graphics/php5-imlib2 Makefile Log: - use fixed PKGNAMEPREFIX instead of dynamic one based on PHP_VER - set IGNORE_WITH_PHP/DEFAULT_PHP_VER to avoid confusion Noticed by: erwin, ale Revision Changes Path 1.2 +2 -0 ports/graphics/php4-imlib2/Makefile 1.2 +3 -2 ports/graphics/php5-imlib2/Makefile From owner-cvs-all@FreeBSD.ORG Tue Sep 26 15:48:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E18F216A4CE; Tue, 26 Sep 2006 15:48:30 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC3CC43D67; Tue, 26 Sep 2006 15:48:13 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QFmDUS041744; Tue, 26 Sep 2006 15:48:13 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QFmDkE041743; Tue, 26 Sep 2006 15:48:13 GMT (envelope-from jhb) Message-Id: <200609261548.k8QFmDkE041743@repoman.freebsd.org> From: John Baldwin Date: Tue, 26 Sep 2006 15:48:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ipmi ipmi.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 15:48:31 -0000 jhb 2006-09-26 15:48:13 UTC FreeBSD src repository Modified files: sys/dev/ipmi ipmi.c Log: Fix a memory leak in ipmi_unload(). CID: 1542 Found by: Coverity Prevent Revision Changes Path 1.5 +3 -1 src/sys/dev/ipmi/ipmi.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 15:49:13 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB76A16A4DA; Tue, 26 Sep 2006 15:49:13 +0000 (UTC) (envelope-from arr@watson.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 244F443D5A; Tue, 26 Sep 2006 15:48:43 +0000 (GMT) (envelope-from arr@watson.org) Received: from fledge.watson.org (localhost.watson.org [127.0.0.1]) by fledge.watson.org (8.13.8/8.13.8) with ESMTP id k8QFmVBl038833; Tue, 26 Sep 2006 11:48:31 -0400 (EDT) (envelope-from arr@watson.org) Received: from localhost (arr@localhost) by fledge.watson.org (8.13.8/8.13.8/Submit) with ESMTP id k8QFmUSl038828; Tue, 26 Sep 2006 11:48:31 -0400 (EDT) (envelope-from arr@watson.org) X-Authentication-Warning: fledge.watson.org: arr owned process doing -bs Date: Tue, 26 Sep 2006 11:48:30 -0400 (EDT) From: "Andrew R. Reiter" To: John-Mark Gurney In-Reply-To: <20060926041406.GE80527@funkthat.com> Message-ID: <20060926114811.F46437@fledge.watson.org> References: <200609260121.k8Q1Llo8049117@repoman.freebsd.org> <20060925215235.C46437@fledge.watson.org> <20060926041406.GE80527@funkthat.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 15:49:13 -0000 On Mon, 25 Sep 2006, John-Mark Gurney wrote: :Andrew R. Reiter wrote this message on Mon, Sep 25, 2006 at 21:53 -0400: :> On Tue, 26 Sep 2006, John-Mark Gurney wrote: :> :> :jmg 2006-09-26 01:21:47 UTC :> : :> : FreeBSD src repository :> : :> : Modified files: :> : sys/netinet tcp_input.c :> : Log: :> : fix calculating to_tsecr... This prevents the rtt calculations from :> : going all wonky... :> : :> : Revision Changes Path :> : 1.309 +1 -1 src/sys/netinet/tcp_input.c :> :> At some point will it be safe to remove that min/max check? : :Do you mean replace the else? or do you mean change it entirely? : :Unless someone can think of a reason why the retransmit timer should :ever be allowed to go above 64 seconds, I'd consider replacing the :else, but as I see it, it prevents run away code, though w/o the :else I probably wouldn't of found this bug... : turn into KASSERT or something -- arr@watson.org From owner-cvs-all@FreeBSD.ORG Tue Sep 26 15:50:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EF1316A49E; Tue, 26 Sep 2006 15:50:55 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: from mail.droso.net (koala.droso.net [193.88.12.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B6A643DAC; Tue, 26 Sep 2006 15:50:45 +0000 (GMT) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id B4C0422F94; Tue, 26 Sep 2006 17:50:44 +0200 (CEST) Date: Tue, 26 Sep 2006 17:50:44 +0200 From: Erwin Lansing To: Yen-Ming Lee Message-ID: <20060926155044.GI10626@droso.net> Mail-Followup-To: Yen-Ming Lee , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200609261541.k8QFfhjh041381@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="//IivP0gvsAy3Can" Content-Disposition: inline In-Reply-To: <200609261541.k8QFfhjh041381@repoman.freebsd.org> X-Operating-System: FreeBSD/i386 5.4-RELEASE User-Agent: Mutt/1.5.13 (2006-08-11) Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/graphics/php4-imlib2 Makefile ports/graphics/php5-imlib2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 15:50:55 -0000 --//IivP0gvsAy3Can Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 26, 2006 at 03:41:43PM +0000, Yen-Ming Lee wrote: > leeym 2006-09-26 15:41:42 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > graphics/php4-imlib2 Makefile=20 > graphics/php5-imlib2 Makefile=20 > Log: > - use fixed PKGNAMEPREFIX instead of dynamic one based on PHP_VER > - set IGNORE_WITH_PHP/DEFAULT_PHP_VER to avoid confusion > =20 > Noticed by: erwin, ale > =20 Thanks! -erwin --=20 Erwin Lansing http://droso.org Security is like an onion. (o_ _o) It's made up of several layers \\\_\ /_/// erwin@FreeBSD.org And it makes you cry. <____) (____> erwin@aauug.dk --//IivP0gvsAy3Can Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGUxUqy9aWxUlaZARAu9fAKDsSUKHf3Ep20gQ4Eeu43uslcRu2wCg6+Ks QWT/Gix9TomWNwMJmYDue1I= =sd3B -----END PGP SIGNATURE----- --//IivP0gvsAy3Can-- From owner-cvs-all@FreeBSD.ORG Tue Sep 26 15:54:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5617716A4E5; Tue, 26 Sep 2006 15:54:43 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D255B43D73; Tue, 26 Sep 2006 15:54:41 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QFsfSA042367; Tue, 26 Sep 2006 15:54:41 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QFsflD042366; Tue, 26 Sep 2006 15:54:41 GMT (envelope-from acm) Message-Id: <200609261554.k8QFsflD042366@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Tue, 26 Sep 2006 15:54:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics Makefile ports/graphics/py-amanith Makefile distinfo pkg-descr pkg-plist ports/graphics/py-amanith/files patch-ignore.i patch-setup.py X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 15:54:44 -0000 acm 2006-09-26 15:54:41 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/py-amanith Makefile distinfo pkg-descr pkg-plist graphics/py-amanith/files patch-ignore.i patch-setup.py Log: - New port: graphics/py-amanith PyAmanith is a Python wrapper for the Amanith 2D vector graphics library. It strives to offer a pythonic interface to the library and make all its features accessible. WWW: http://louhi.kempele.fi/~skyostil/projects/pyamanith/ PR: ports/103655 Submitted by: Dmitry Marakasov Revision Changes Path 1.986 +1 -0 ports/graphics/Makefile 1.1 +29 -0 ports/graphics/py-amanith/Makefile (new) 1.1 +3 -0 ports/graphics/py-amanith/distinfo (new) 1.1 +10 -0 ports/graphics/py-amanith/files/patch-ignore.i (new) 1.1 +40 -0 ports/graphics/py-amanith/files/patch-setup.py (new) 1.1 +5 -0 ports/graphics/py-amanith/pkg-descr (new) 1.1 +4 -0 ports/graphics/py-amanith/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 15:58:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40D5616A47B; Tue, 26 Sep 2006 15:58:03 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DB6D43D9C; Tue, 26 Sep 2006 15:57:47 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QFvl42042581; Tue, 26 Sep 2006 15:57:47 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QFvlcq042580; Tue, 26 Sep 2006 15:57:47 GMT (envelope-from acm) Message-Id: <200609261557.k8QFvlcq042580@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Tue, 26 Sep 2006 15:57:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 15:58:03 -0000 acm 2006-09-26 15:57:46 UTC FreeBSD ports repository Modified files: . modules Log: - py-amanith --> ports/graphics/py-amanith Revision Changes Path 1.16278 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Sep 26 16:08:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EACB116A412; Tue, 26 Sep 2006 16:08:29 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6CE943D82; Tue, 26 Sep 2006 16:08:29 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QG8TBr044267; Tue, 26 Sep 2006 16:08:29 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QG8TYB044266; Tue, 26 Sep 2006 16:08:29 GMT (envelope-from sobomax) Message-Id: <200609261608.k8QG8TYB044266@repoman.freebsd.org> From: Maxim Sobolev Date: Tue, 26 Sep 2006 16:08:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/i386/i386 local_apic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 16:08:30 -0000 sobomax 2006-09-26 16:08:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/i386/i386 local_apic.c Log: Revert 1.17.2.8, which reportedly causes problems on some hardware. Approved by: re Reported by: glebius Revision Changes Path 1.17.2.9 +0 -12 src/sys/i386/i386/local_apic.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 16:14:56 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29FB516A40F; Tue, 26 Sep 2006 16:14:56 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF12443D72; Tue, 26 Sep 2006 16:14:54 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8QGEcjE049248; Tue, 26 Sep 2006 12:14:46 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Martin Blapp Date: Tue, 26 Sep 2006 10:32:09 -0400 User-Agent: KMail/1.9.1 References: <200609231735.k8NHZPWn003039@repoman.freebsd.org> In-Reply-To: <200609231735.k8NHZPWn003039@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609261032.10254.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 26 Sep 2006 12:14:46 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1946/Tue Sep 26 09:18:37 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_proc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 16:14:56 -0000 On Saturday 23 September 2006 13:35, Martin Blapp wrote: > mbr 2006-09-23 17:35:24 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_proc.c > Log: > Protect enterpgrp() against another tty/proc race case until the tty locking work > has been fixed. I would move Giant up even further since P_CONTROLT isn't really fully locked yet (p_flag is, but P_CONTROLT isn't really, I have some old WIP for P_CONTROLT). -- John Baldwin From owner-cvs-all@FreeBSD.ORG Tue Sep 26 16:15:36 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43C7D16A4F0; Tue, 26 Sep 2006 16:15:36 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9989443D7F; Tue, 26 Sep 2006 16:15:16 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8QGEcjF049248; Tue, 26 Sep 2006 12:14:52 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Doug Ambrisko Date: Tue, 26 Sep 2006 10:49:06 -0400 User-Agent: KMail/1.9.1 References: <200609251950.k8PJoqgM055325@ambrisko.com> In-Reply-To: <200609251950.k8PJoqgM055325@ambrisko.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609261049.07379.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 26 Sep 2006 12:14:53 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1946/Tue Sep 26 09:18:37 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.0 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00, SUBJ_HAS_SPACES autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/amd64/conf NOTES src/sys/conf files.amd64 files.i386 src/sys/dev/ipmi ipmi.c ipmi_acpi.c ipmi_isa.c ipmi_kcs.c ipmi_pci.c ipmi_smbios.c ipmi_smbus.c ipmi_smic.c ipmi_ssif.c ipmivars.h src/sys/i386/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 16:15:36 -0000 On Monday 25 September 2006 15:50, Doug Ambrisko wrote: > John Baldwin writes: > | jhb 2006-09-22 22:11:29 UTC > | > | FreeBSD src repository > | > | Modified files: > | sys/amd64/conf NOTES > | sys/conf files.amd64 files.i386 > | sys/dev/ipmi ipmi.c ipmi_pci.c ipmi_smbios.c > | ipmivars.h > | sys/i386/conf NOTES > | sys/modules/ipmi Makefile > | sys/sys ipmi.h > | Added files: > | sys/dev/ipmi ipmi_acpi.c ipmi_isa.c ipmi_kcs.c > | ipmi_smbus.c ipmi_smic.c ipmi_ssif.c > | Log: > | Update the ipmi(4) driver: > [snip] > | - Add an ACPI attachment. > > This should work, however, my one test machine doesn't attach with it. > Since it doesn't break anything having it, it is safe to add. That > machine attached fine with the SMBIOS info. so it's not a big deal. > Just don't expect it to work out of the box. There are some issues > that need to get investigated. > > Thanks to John for helping to finish some loose ends and add a lot more > polish. Did you get a chance to test the last snap of the patch with the ACPI attachment? It now does a loop to alloc multiple resources if they exist which should fix the machine you have I think. -- John Baldwin From owner-cvs-all@FreeBSD.ORG Tue Sep 26 16:50:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1166416A403; Tue, 26 Sep 2006 16:50:15 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B353B43D53; Tue, 26 Sep 2006 16:50:15 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QGoFhX054144; Tue, 26 Sep 2006 16:50:15 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QGoFHD054143; Tue, 26 Sep 2006 16:50:15 GMT (envelope-from oliver) Message-Id: <200609261650.k8QGoFHD054143@repoman.freebsd.org> From: Oliver Lehmann Date: Tue, 26 Sep 2006 16:50:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/ftp/gftp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 16:50:16 -0000 oliver 2006-09-26 16:50:15 UTC FreeBSD ports repository Modified files: ftp/gftp Makefile Log: make gtk2 the default toolkit instead of gtk12 Revision Changes Path 1.56 +5 -5 ports/ftp/gftp/Makefile From owner-cvs-all@FreeBSD.ORG Tue Sep 26 16:57:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E092B16A403; Tue, 26 Sep 2006 16:57:44 +0000 (UTC) (envelope-from simon@zaphod.nitro.dk) Received: from mx.nitro.dk (zarniwoop.nitro.dk [83.92.207.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D88943D45; Tue, 26 Sep 2006 16:57:43 +0000 (GMT) (envelope-from simon@zaphod.nitro.dk) Received: from zaphod.nitro.dk (unknown [192.168.3.39]) by mx.nitro.dk (Postfix) with ESMTP id 27E52386C48; Tue, 26 Sep 2006 16:57:43 +0000 (UTC) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id E2E761142D; Tue, 26 Sep 2006 18:57:42 +0200 (CEST) Date: Tue, 26 Sep 2006 18:57:42 +0200 From: "Simon L. Nielsen" To: Andrew Pantyukhin Message-ID: <20060926165741.GA8931@zaphod.nitro.dk> References: <200609260527.k8Q5RG9C078413@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609260527.k8Q5RG9C078413@repoman.freebsd.org> User-Agent: Mutt/1.5.11 Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 16:57:45 -0000 On 2006.09.26 05:27:16 +0000, Andrew Pantyukhin wrote: > sat 2006-09-26 05:27:16 UTC > > FreeBSD ports repository > > Modified files: > security/vuxml vuln.xml > Log: > - Update the unace advisory Why did you add the Secunia advisory in the body? Isn't it just different wording for the same issues? Also, it's generally a bad idea to use if the port isn't fixed since you risk someone bumping port reversion etc. and therefor marking the port as fixed when it really isn't. -- Simon L. Nielsen From owner-cvs-all@FreeBSD.ORG Tue Sep 26 17:11:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4E6B16A536; Tue, 26 Sep 2006 17:11:25 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0808943D49; Tue, 26 Sep 2006 17:10:10 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QH9lJM056366; Tue, 26 Sep 2006 17:09:47 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QH9lK6056365; Tue, 26 Sep 2006 17:09:47 GMT (envelope-from thierry) Message-Id: <200609261709.k8QH9lK6056365@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 26 Sep 2006 17:09:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/science/medit pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 17:11:26 -0000 thierry 2006-09-26 17:09:47 UTC FreeBSD ports repository Modified files: science/medit pkg-descr Log: Update location. Submitted by: Pascal Frey (author) Revision Changes Path 1.2 +2 -2 ports/science/medit/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Sep 26 17:38:04 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44D5816A582 for ; Tue, 26 Sep 2006 17:38:03 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B8B743D5D for ; Tue, 26 Sep 2006 17:37:53 +0000 (GMT) (envelope-from infofarmer@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so3009534pye for ; Tue, 26 Sep 2006 10:37:52 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=on9OiQ8rwV7iWhjzIN5AnV/uqYg2vMBg0IVBBQNk02bMpWkVK5DekMROix3ku8D2lp7YSJtGXnByYE58/YpOqAdSTXkOvmZ7fxBUTp13/c2t1NMyBq2cWtLDH9w5zNQ7TC5keWZe7oNTiS3H0W9onarX2Gohc9Gc94M7Kbkvypc= Received: by 10.35.82.15 with SMTP id j15mr1250894pyl; Tue, 26 Sep 2006 10:37:52 -0700 (PDT) Received: by 10.35.119.12 with HTTP; Tue, 26 Sep 2006 10:37:52 -0700 (PDT) Message-ID: Date: Tue, 26 Sep 2006 21:37:52 +0400 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Simon L. Nielsen" In-Reply-To: <20060926165741.GA8931@zaphod.nitro.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200609260527.k8Q5RG9C078413@repoman.freebsd.org> <20060926165741.GA8931@zaphod.nitro.dk> X-Google-Sender-Auth: e0a101c99486ec9f Cc: cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: infofarmer@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, 26 Sep 2006 17:38:04 -0000 On 9/26/06, Simon L. Nielsen wrote: > On 2006.09.26 05:27:16 +0000, Andrew Pantyukhin wrote: > > sat 2006-09-26 05:27:16 UTC > > > > FreeBSD ports repository > > > > Modified files: > > security/vuxml vuln.xml > > Log: > > - Update the unace advisory > > Why did you add the Secunia advisory in the body? Isn't it just > different wording for the same issues? The original advisory is only for 1.x. Secunia added some info about 2.x. > Also, it's generally a bad idea to use if the port isn't fixed > since you risk someone bumping port reversion etc. and therefor > marking the port as fixed when it really isn't. I understand. I used because (1) this is a binary port and there won't be a patch and a bump, so version+bump does not make sense, (2) the bug has been confirmed in <=2.5 only, and winace team is not very public about security fixes, (3) I'm the maintainer and I think the port has outlived its usefulness, so I scheduled it for removal in a month unless we are surprised by a brand new unace binary. If you think that 0 or something like that is better, please tell me and I'll fix the advisory. Thanks! From owner-cvs-all@FreeBSD.ORG Tue Sep 26 17:41:23 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDAE516A47B; Tue, 26 Sep 2006 17:41:23 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D75E43D49; Tue, 26 Sep 2006 17:41:23 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8QHfHel049839; Tue, 26 Sep 2006 13:41:21 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Maxim Sobolev Date: Tue, 26 Sep 2006 13:13:03 -0400 User-Agent: KMail/1.9.1 References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> In-Reply-To: <200609261608.k8QG8TYB044266@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609261313.03759.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 26 Sep 2006 13:41:22 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1946/Tue Sep 26 09:18:37 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 17:41:24 -0000 On Tuesday 26 September 2006 12:08, Maxim Sobolev wrote: > sobomax 2006-09-26 16:08:29 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/i386/i386 local_apic.c > Log: > Revert 1.17.2.8, which reportedly causes problems on some hardware. The report I saw was that it broke ULE in general. Are you going to revert it from amd64 as well? -- John Baldwin From owner-cvs-all@FreeBSD.ORG Tue Sep 26 17:48:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07E0B16A415; Tue, 26 Sep 2006 17:48:04 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B79D743D49; Tue, 26 Sep 2006 17:48:03 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QHm3cG058116; Tue, 26 Sep 2006 17:48:03 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QHm3Ai058115; Tue, 26 Sep 2006 17:48:03 GMT (envelope-from hrs) Message-Id: <200609261748.k8QHm3Ai058115@repoman.freebsd.org> From: Hiroki Sato Date: Tue, 26 Sep 2006 17:48:03 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/de Makefile index.xsl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 17:48:04 -0000 hrs 2006-09-26 17:48:03 UTC FreeBSD doc repository Modified files: de Makefile index.xsl Log: Catch up with the English version to fix some links in the top page. Reported by: Volker Glatz Revision Changes Path 1.29 +5 -25 www/de/Makefile 1.35 +1 -3 www/de/index.xsl From owner-cvs-all@FreeBSD.ORG Tue Sep 26 17:52:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FD0D16A494; Tue, 26 Sep 2006 17:52:26 +0000 (UTC) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7D6C43D72; Tue, 26 Sep 2006 17:52:25 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QHqPVN058416; Tue, 26 Sep 2006 17:52:25 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QHqPTf058415; Tue, 26 Sep 2006 17:52:25 GMT (envelope-from markus) Message-Id: <200609261752.k8QHqPTf058415@repoman.freebsd.org> From: Markus Brueffer Date: Tue, 26 Sep 2006 17:52:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/libsynaptics Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 17:52:26 -0000 markus 2006-09-26 17:52:25 UTC FreeBSD ports repository Modified files: x11/libsynaptics Makefile Log: Add additional mastersite as accessing sf.net directly is not reliable from time to time Submitted by: pointyhat via kris Revision Changes Path 1.4 +2 -1 ports/x11/libsynaptics/Makefile From owner-cvs-all@FreeBSD.ORG Tue Sep 26 17:53:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE0C116A403; Tue, 26 Sep 2006 17:53:56 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92AEA43D8F; Tue, 26 Sep 2006 17:53:50 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QHrnlF058502; Tue, 26 Sep 2006 17:53:49 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QHrnYe058501; Tue, 26 Sep 2006 17:53:49 GMT (envelope-from bsam) Message-Id: <200609261753.k8QHrnYe058501@repoman.freebsd.org> From: Boris Samorodov Date: Tue, 26 Sep 2006 17:53:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/mplayer-skins Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 17:53:57 -0000 bsam 2006-09-26 17:53:49 UTC FreeBSD ports repository Modified files: multimedia/mplayer-skins Makefile distinfo Log: Update mplayer/Abyss to version 1.6. PR: 103535 Submitted by: bsam (me) Approved by: Thomas E. Zander (maintainer) Revision Changes Path 1.41 +2 -2 ports/multimedia/mplayer-skins/Makefile 1.28 +3 -3 ports/multimedia/mplayer-skins/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 18:06:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B89D16A47B; Tue, 26 Sep 2006 18:06:10 +0000 (UTC) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAEB743D78; Tue, 26 Sep 2006 18:06:09 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QI69pw060291; Tue, 26 Sep 2006 18:06:09 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QI69YC060290; Tue, 26 Sep 2006 18:06:09 GMT (envelope-from brian) Message-Id: <200609261806.k8QI69YC060290@repoman.freebsd.org> From: Brian Somers Date: Tue, 26 Sep 2006 18:06:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/cron/lib entry.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 18:06:10 -0000 brian 2006-09-26 18:06:09 UTC FreeBSD src repository Modified files: usr.sbin/cron/lib entry.c Log: Behave as documented when reading fields saying "X/Y" where X != * rather than mis-parsing them as "X". MFC after: 1 day Revision Changes Path 1.17 +3 -1 src/usr.sbin/cron/lib/entry.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 18:09:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D89E116A4DA; Tue, 26 Sep 2006 18:09:39 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9486443D45; Tue, 26 Sep 2006 18:09:39 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QI9dgR060443; Tue, 26 Sep 2006 18:09:39 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QI9dYf060442; Tue, 26 Sep 2006 18:09:39 GMT (envelope-from miwi) Message-Id: <200609261809.k8QI9dYf060442@repoman.freebsd.org> From: Martin Wilke Date: Tue, 26 Sep 2006 18:09:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/fwipe Makefile ports/security/fwipe/files patch-hier.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 18:09:40 -0000 miwi 2006-09-26 18:09:39 UTC FreeBSD ports repository Modified files: security/fwipe Makefile security/fwipe/files patch-hier.c Log: - Fix build problems [1] - Fix permissions [2] Submitted by: pointyhat via kris [1] miwi [2] Approved by: David Thiel (maintainer) Revision Changes Path 1.2 +3 -2 ports/security/fwipe/Makefile 1.2 +17 -5 ports/security/fwipe/files/patch-hier.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 18:22:52 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14E6B16A416; Tue, 26 Sep 2006 18:22:52 +0000 (UTC) (envelope-from simon@zaphod.nitro.dk) Received: from mx.nitro.dk (zarniwoop.nitro.dk [83.92.207.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA3E743D66; Tue, 26 Sep 2006 18:22:46 +0000 (GMT) (envelope-from simon@zaphod.nitro.dk) Received: from zaphod.nitro.dk (unknown [192.168.3.39]) by mx.nitro.dk (Postfix) with ESMTP id 53252386C79; Tue, 26 Sep 2006 18:22:45 +0000 (UTC) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id 205141142D; Tue, 26 Sep 2006 20:22:45 +0200 (CEST) Date: Tue, 26 Sep 2006 20:22:44 +0200 From: "Simon L. Nielsen" To: infofarmer@FreeBSD.org Message-ID: <20060926182244.GD8931@zaphod.nitro.dk> References: <200609260527.k8Q5RG9C078413@repoman.freebsd.org> <20060926165741.GA8931@zaphod.nitro.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 Cc: cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 18:22:52 -0000 On 2006.09.26 21:37:52 +0400, Andrew Pantyukhin wrote: > On 9/26/06, Simon L. Nielsen wrote: > >On 2006.09.26 05:27:16 +0000, Andrew Pantyukhin wrote: > >> sat 2006-09-26 05:27:16 UTC > >> > >> FreeBSD ports repository > >> > >> Modified files: > >> security/vuxml vuln.xml > >> Log: > >> - Update the unace advisory > > > >Why did you add the Secunia advisory in the body? Isn't it just > >different wording for the same issues? > > The original advisory is only for 1.x. Secunia added some info > about 2.x. OK. I think the first two paragraph's could just have been ommitted from the Secunia blockquote to avoid too much duplicated info. > >Also, it's generally a bad idea to use if the port isn't fixed > >since you risk someone bumping port reversion etc. and therefor > >marking the port as fixed when it really isn't. > > I understand. I used because (1) this is a binary port and > there won't be a patch and a bump, so version+bump > does not make sense, (2) the bug has been confirmed in <=2.5 > only, and winace team is not very public about security fixes, > (3) I'm the maintainer and I think the port has outlived its > usefulness, so I scheduled it for removal in a month unless > we are surprised by a brand new unace binary. > > If you think that 0 or something like that is better, please > tell me and I'll fix the advisory. I agree that it probably isn't a problem, but I prefer better safe than sorry. Wrt. (1) above there could still be a patch level bump in theory due to other problems issues e.g. something in the port infrastructure which caused patch level to be bumped (not really a problem here due to (3), but still). So, I prefer if this was changes, also in case people look at the entry at a later point then it's better to have a good example :-). -- Simon L. Nielsen From owner-cvs-all@FreeBSD.ORG Tue Sep 26 18:24:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 400CA16A40F; Tue, 26 Sep 2006 18:24:14 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3B6143D79; Tue, 26 Sep 2006 18:24:13 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QIODgf061276; Tue, 26 Sep 2006 18:24:13 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QIODt1061275; Tue, 26 Sep 2006 18:24:13 GMT (envelope-from sat) Message-Id: <200609261824.k8QIODt1061275@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 26 Sep 2006 18:24:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/linux-mplayer-plugin Makefile distinfo.i386 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 18:24:14 -0000 sat 2006-09-26 18:24:13 UTC FreeBSD ports repository Modified files: www/linux-mplayer-plugin Makefile distinfo.i386 Log: - Fix master_site_subdir - Add src.rpm to distinfo Reported by: pointyhat via kris Revision Changes Path 1.5 +1 -3 ports/www/linux-mplayer-plugin/Makefile 1.3 +3 -0 ports/www/linux-mplayer-plugin/distinfo.i386 From owner-cvs-all@FreeBSD.ORG Tue Sep 26 18:28:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F27F516A40F; Tue, 26 Sep 2006 18:28:39 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3412243D7C; Tue, 26 Sep 2006 18:28:39 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QISc0g061507; Tue, 26 Sep 2006 18:28:38 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QIScvZ061506; Tue, 26 Sep 2006 18:28:38 GMT (envelope-from bms) Message-Id: <200609261828.k8QIScvZ061506@repoman.freebsd.org> From: Bruce M Simpson Date: Tue, 26 Sep 2006 18:28:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 18:28:40 -0000 bms 2006-09-26 18:28:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet ip_output.c Log: Back out rev 1.242.2.13 as it introduces a potentially expensive hash lookup to the ip output path. A better way needs to be found to resolve this. Approved by: re@ Revision Changes Path 1.242.2.14 +4 -11 src/sys/netinet/ip_output.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 18:43:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 669F616A4C2; Tue, 26 Sep 2006 18:43:59 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9873043D95; Tue, 26 Sep 2006 18:43:41 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QIhfBA062474; Tue, 26 Sep 2006 18:43:41 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QIhfxc062473; Tue, 26 Sep 2006 18:43:41 GMT (envelope-from sat) Message-Id: <200609261843.k8QIhfxc062473@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 26 Sep 2006 18:43:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 18:43:59 -0000 sat 2006-09-26 18:43:41 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Concisify a Secunia report - Use 0 for an unpatched bug Suggested by: simon Revision Changes Path 1.1152 +2 -9 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Sep 26 18:45:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6CAB16A407; Tue, 26 Sep 2006 18:45:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 613A043D58; Tue, 26 Sep 2006 18:44:57 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QIivuE062542; Tue, 26 Sep 2006 18:44:57 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QIiv0j062541; Tue, 26 Sep 2006 18:44:57 GMT (envelope-from jhb) Message-Id: <200609261844.k8QIiv0j062541@repoman.freebsd.org> From: John Baldwin Date: Tue, 26 Sep 2006 18:44:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/smbus smbus.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 18:45:00 -0000 jhb 2006-09-26 18:44:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/smbus smbus.c Log: MFC: Add an explicit bus_add_child method for smbus(4). Approved by: re (kensmith) Revision Changes Path 1.18.10.4 +1 -0 src/sys/dev/smbus/smbus.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 18:47:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 236DA16A4C8; Tue, 26 Sep 2006 18:47:32 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44E8E43DB1; Tue, 26 Sep 2006 18:47:21 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QIlL9w062721; Tue, 26 Sep 2006 18:47:21 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QIlLs5062720; Tue, 26 Sep 2006 18:47:21 GMT (envelope-from netchild) Message-Id: <200609261847.k8QIlLs5062720@repoman.freebsd.org> From: Alexander Leidinger Date: Tue, 26 Sep 2006 18:47:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws Makefile distinfo pkg-plist ports/mail/sylpheed-claws/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 18:47:32 -0000 netchild 2006-09-26 18:47:20 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws Makefile distinfo pkg-plist Added files: mail/sylpheed-claws/files patch-configure Log: Update to 2.5.1. Revision Changes Path 1.106 +6 -8 ports/mail/sylpheed-claws/Makefile 1.50 +3 -3 ports/mail/sylpheed-claws/distinfo 1.20 +106 -0 ports/mail/sylpheed-claws/files/patch-configure (new) 1.47 +9 -0 ports/mail/sylpheed-claws/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 18:54:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BFE016A403; Tue, 26 Sep 2006 18:54:17 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5A5643DA6; Tue, 26 Sep 2006 18:54:16 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QIsGUq063042; Tue, 26 Sep 2006 18:54:16 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QIsGZW063038; Tue, 26 Sep 2006 18:54:16 GMT (envelope-from acm) Message-Id: <200609261854.k8QIsGZW063038@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Tue, 26 Sep 2006 18:54:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/netpanzer Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 18:54:17 -0000 acm 2006-09-26 18:54:16 UTC FreeBSD ports repository Modified files: games/netpanzer Makefile pkg-plist Log: - Fix pkg-plist - Bump PORTREVISION Reported by: kris Revision Changes Path 1.8 +1 -1 ports/games/netpanzer/Makefile 1.6 +1 -0 ports/games/netpanzer/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 18:57:41 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AC3D16A492 for ; Tue, 26 Sep 2006 18:57:41 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1F3643D86 for ; Tue, 26 Sep 2006 18:57:34 +0000 (GMT) (envelope-from infofarmer@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so3031559pye for ; Tue, 26 Sep 2006 11:57:34 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=Ai2zGF1Nrx4THIJQ5fRUW7maC+T/9lyV6otoib8GmKVYiUp1qgASjz8esd6e7YnjlVAKZJ8pMXMSCDSApV2mXtfEkgZS7V/DSa7ee5mjlqmzvAIpOctBv05pnufThtcIZc4yGP4OgbZ8sKLPVsgPxa/9RppnsHOVMk6tYWhayUE= Received: by 10.35.80.20 with SMTP id h20mr1410333pyl; Tue, 26 Sep 2006 11:57:33 -0700 (PDT) Received: by 10.35.119.12 with HTTP; Tue, 26 Sep 2006 11:57:33 -0700 (PDT) Message-ID: Date: Tue, 26 Sep 2006 22:57:33 +0400 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Simon L. Nielsen" In-Reply-To: <20060926182244.GD8931@zaphod.nitro.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200609260527.k8Q5RG9C078413@repoman.freebsd.org> <20060926165741.GA8931@zaphod.nitro.dk> <20060926182244.GD8931@zaphod.nitro.dk> X-Google-Sender-Auth: 1010c985a0d39688 Cc: cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 18:57:41 -0000 On 9/26/06, Simon L. Nielsen wrote: > On 2006.09.26 21:37:52 +0400, Andrew Pantyukhin wrote: > > On 9/26/06, Simon L. Nielsen wrote: > > >On 2006.09.26 05:27:16 +0000, Andrew Pantyukhin wrote: > > >> sat 2006-09-26 05:27:16 UTC > > >> > > >> FreeBSD ports repository > > >> > > >> Modified files: > > >> security/vuxml vuln.xml > > >> Log: > > >> - Update the unace advisory > > > > > >Why did you add the Secunia advisory in the body? Isn't it just > > >different wording for the same issues? > > > > The original advisory is only for 1.x. Secunia added some info > > about 2.x. > > OK. I think the first two paragraph's could just have been ommitted > from the Secunia blockquote to avoid too much duplicated info. > > > >Also, it's generally a bad idea to use if the port isn't fixed > > >since you risk someone bumping port reversion etc. and therefor > > >marking the port as fixed when it really isn't. > > > > I understand. I used because (1) this is a binary port and > > there won't be a patch and a bump, so version+bump > > does not make sense, (2) the bug has been confirmed in <=2.5 > > only, and winace team is not very public about security fixes, > > (3) I'm the maintainer and I think the port has outlived its > > usefulness, so I scheduled it for removal in a month unless > > we are surprised by a brand new unace binary. > > > > If you think that 0 or something like that is better, please > > tell me and I'll fix the advisory. > > I agree that it probably isn't a problem, but I prefer better safe > than sorry. Wrt. (1) above there could still be a patch level bump in > theory due to other problems issues e.g. something in the port > infrastructure which caused patch level to be bumped (not really a > problem here due to (3), but still). > > So, I prefer if this was changes, also in case people look at the > entry at a later point then it's better to have a good example :-). Done, thanks! From owner-cvs-all@FreeBSD.ORG Tue Sep 26 19:16:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E368216A403; Tue, 26 Sep 2006 19:16:44 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17FE743E2D; Tue, 26 Sep 2006 19:12:17 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QJCBE0065231; Tue, 26 Sep 2006 19:12:11 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QJCBqR065230; Tue, 26 Sep 2006 19:12:11 GMT (envelope-from sobomax) Message-Id: <200609261912.k8QJCBqR065230@repoman.freebsd.org> From: Maxim Sobolev Date: Tue, 26 Sep 2006 19:12:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/amd64/amd64 local_apic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 19:16:45 -0000 sobomax 2006-09-26 19:12:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/amd64 local_apic.c Log: Revert 1.17.2.8, it causes some problems. Approved by: re Reported by: glebius Revision Changes Path 1.17.2.9 +0 -12 src/sys/amd64/amd64/local_apic.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 19:22:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D18B616A412; Tue, 26 Sep 2006 19:22:20 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF83B43E01; Tue, 26 Sep 2006 19:22:02 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QJM2A6065809; Tue, 26 Sep 2006 19:22:02 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QJM2md065808; Tue, 26 Sep 2006 19:22:02 GMT (envelope-from sat) Message-Id: <200609261922.k8QJM2md065808@repoman.freebsd.org> From: Andrew Pantyukhin Date: Tue, 26 Sep 2006 19:22:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/xpi-gmail-manager Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 19:22:21 -0000 sat 2006-09-26 19:22:02 UTC FreeBSD ports repository Modified files: www/xpi-gmail-manager Makefile distinfo pkg-plist Log: - Update to 0.5.2 PR: ports/103676 Submitted by: Chin-San Huang Revision Changes Path 1.3 +1 -1 ports/www/xpi-gmail-manager/Makefile 1.3 +3 -3 ports/www/xpi-gmail-manager/distinfo 1.3 +1 -0 ports/www/xpi-gmail-manager/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 19:51:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 834D516A47C; Tue, 26 Sep 2006 19:51:50 +0000 (UTC) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC4FE43DA6; Tue, 26 Sep 2006 19:51:11 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QJpAht067394; Tue, 26 Sep 2006 19:51:10 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QJpAtJ067393; Tue, 26 Sep 2006 19:51:10 GMT (envelope-from roam) Message-Id: <200609261951.k8QJpAtJ067393@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 26 Sep 2006 19:51:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/scare Makefile distinfo ports/games/scare/files patch-Makefile patch-os_glk.c xglk.patch X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 19:51:50 -0000 roam 2006-09-26 19:51:10 UTC FreeBSD ports repository Modified files: games/scare Makefile distinfo games/scare/files patch-Makefile patch-os_glk.c xglk.patch Log: Update to scare-1.3.4 - *all* the source files were reindented with two-character tabs! Grrrowl. While I'm here, OPTIONS'ify the xglk support. Revision Changes Path 1.3 +6 -2 ports/games/scare/Makefile 1.3 +3 -3 ports/games/scare/distinfo 1.2 +9 -7 ports/games/scare/files/patch-Makefile 1.2 +37 -37 ports/games/scare/files/patch-os_glk.c 1.2 +7 -7 ports/games/scare/files/xglk.patch From owner-cvs-all@FreeBSD.ORG Tue Sep 26 19:59:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09E3116A407; Tue, 26 Sep 2006 19:59:53 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B388643D6A; Tue, 26 Sep 2006 19:59:52 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QJxqMH068351; Tue, 26 Sep 2006 19:59:52 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QJxqkh068350; Tue, 26 Sep 2006 19:59:52 GMT (envelope-from danger) Message-Id: <200609261959.k8QJxqkh068350@repoman.freebsd.org> From: Daniel Gerzo Date: Tue, 26 Sep 2006 19:59:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 19:59:53 -0000 danger 2006-09-26 19:59:52 UTC FreeBSD src repository (doc committer) Modified files: share/examples/mdoc example.4 Log: Remove second person from the sentece and rephrase a bit. Approved by: trhodes (mentor), keramida (mentor) Revision Changes Path 1.26 +6 -8 src/share/examples/mdoc/example.4 From owner-cvs-all@FreeBSD.ORG Tue Sep 26 20:48:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3627D16A407; Tue, 26 Sep 2006 20:48:25 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E47643D5A; Tue, 26 Sep 2006 20:48:24 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 506D85C62; Wed, 27 Sep 2006 00:48:23 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 2E7BC5C28; Wed, 27 Sep 2006 00:48:23 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8QKmN3T043112; Wed, 27 Sep 2006 00:48:23 +0400 (MSD) (envelope-from ru) Date: Wed, 27 Sep 2006 00:48:23 +0400 From: Ruslan Ermilov To: Bruce M Simpson Message-ID: <20060926204823.GB42964@rambler-co.ru> References: <200609251011.k8PABGaL081087@repoman.freebsd.org> <20060925143108.GW27667@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mojUlQ0s9EVzWg2t" Content-Disposition: inline In-Reply-To: <20060925143108.GW27667@FreeBSD.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, Gleb Smirnoff , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in_var.h ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 20:48:25 -0000 --mojUlQ0s9EVzWg2t Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Bruce, Can you please reply to this email? Thanks. On Mon, Sep 25, 2006 at 06:31:08PM +0400, Gleb Smirnoff wrote: > On Mon, Sep 25, 2006 at 10:11:16AM +0000, Bruce M Simpson wrote: > B> bms 2006-09-25 10:11:16 UTC > B>=20 > B> FreeBSD src repository > B>=20 > B> Modified files: > B> sys/netinet in_var.h ip_output.c=20 > B> Log: > B> Account for output IP datagrams on the ifaddr where they originated = =66rom, > B> *not* the first ifaddr on the ifp. This is similar to what NetBSD d= oes. > B> =20 > B> PR: kern/72936 > B> Submitted by: alfred > B> Reviewed by: andre >=20 > This adds an additional hash lookup per packet, doesn't it? Have you meas= ured > performance impact of this change? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --mojUlQ0s9EVzWg2t Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGZIXqRfpzJluFF4RAmCKAJ93wokFOJt35qWsfbhhsaAJylgUPwCeNwmB tJAYDpFHOnS9wrBUEboVnqY= =u9jS -----END PGP SIGNATURE----- --mojUlQ0s9EVzWg2t-- From owner-cvs-all@FreeBSD.ORG Tue Sep 26 20:55:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1EFE16A47C; Tue, 26 Sep 2006 20:55:58 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7C9A43D5E; Tue, 26 Sep 2006 20:55:54 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 0C9FB618C; Wed, 27 Sep 2006 00:55:54 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id DCDFE5D99; Wed, 27 Sep 2006 00:55:53 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8QKts5L043221; Wed, 27 Sep 2006 00:55:54 +0400 (MSD) (envelope-from ru) Date: Wed, 27 Sep 2006 00:55:54 +0400 From: Ruslan Ermilov To: Bruce M Simpson Message-ID: <20060926205554.GD42964@rambler-co.ru> References: <200609261828.k8QIScvZ061506@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+KJYzRxRHjYqLGl5" Content-Disposition: inline In-Reply-To: <200609261828.k8QIScvZ061506@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 20:55:58 -0000 --+KJYzRxRHjYqLGl5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 26, 2006 at 06:28:38PM +0000, Bruce M Simpson wrote: > bms 2006-09-26 18:28:38 UTC >=20 > FreeBSD src repository >=20 > Modified files: (Branch: RELENG_6) > sys/netinet ip_output.c=20 > Log: > Back out rev 1.242.2.13 as it introduces a potentially expensive hash l= ookup > to the ip output path. A better way needs to be found to resolve this. > =20 > Approved by: re@ > =20 > Revision Changes Path > 1.242.2.14 +4 -11 src/sys/netinet/ip_output.c >=20 Thanks! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --+KJYzRxRHjYqLGl5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGZPaqRfpzJluFF4RAgPJAJ998brGoVYeHvqK+rrp7rVQpBWpNQCeIP2s ToTdUXOfG8IMQd6luHJpZX4= =6D1f -----END PGP SIGNATURE----- --+KJYzRxRHjYqLGl5-- From owner-cvs-all@FreeBSD.ORG Tue Sep 26 21:46:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5A3B16A415; Tue, 26 Sep 2006 21:46:12 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C17B43D6B; Tue, 26 Sep 2006 21:46:12 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QLkC0X086745; Tue, 26 Sep 2006 21:46:12 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QLkCYm086744; Tue, 26 Sep 2006 21:46:12 GMT (envelope-from ru) Message-Id: <200609262146.k8QLkCYm086744@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 26 Sep 2006 21:46:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/contrib/telnet/telnetd telnetd.c src/usr.sbin/vidcontrol vidcontrol.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 21:46:13 -0000 ru 2006-09-26 21:46:12 UTC FreeBSD src repository Modified files: contrib/telnet/telnetd telnetd.c usr.sbin/vidcontrol vidcontrol.c Log: Remove bogus casts of valid integer ioctl() arguments. Revision Changes Path 1.29 +4 -4 src/contrib/telnet/telnetd/telnetd.c 1.54 +2 -2 src/usr.sbin/vidcontrol/vidcontrol.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 21:52:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1CF016A407; Tue, 26 Sep 2006 21:52:30 +0000 (UTC) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B1A543D45; Tue, 26 Sep 2006 21:52:30 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QLqUup087106; Tue, 26 Sep 2006 21:52:30 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QLqUNR087105; Tue, 26 Sep 2006 21:52:30 GMT (envelope-from joerg) Message-Id: <200609262152.k8QLqUNR087105@repoman.freebsd.org> From: Joerg Wunsch Date: Tue, 26 Sep 2006 21:52:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/avr-gcc-devel Makefile distinfo pkg-descr pkg-plist ports/devel/avr-gcc-devel/files patch-attribute_alias patch-newdevices patch-zz-atmega256x X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 21:52:30 -0000 joerg 2006-09-26 21:52:30 UTC FreeBSD ports repository Modified files: devel/avr-gcc-devel Makefile distinfo pkg-descr pkg-plist devel/avr-gcc-devel/files patch-newdevices Added files: devel/avr-gcc-devel/files patch-attribute_alias patch-zz-atmega256x Log: Update to GCC 4.1.1. Add Björn Haase's (beta) patch for ATmega256x support, backported to GCC 4.1.1 by Bernhard Trog. Add Anatoly Sokolov's patch to support __attribute__((alias)). Revision Changes Path 1.8 +1 -2 ports/devel/avr-gcc-devel/Makefile 1.2 +6 -6 ports/devel/avr-gcc-devel/distinfo 1.1 +11 -0 ports/devel/avr-gcc-devel/files/patch-attribute_alias (new) 1.6 +154 -92 ports/devel/avr-gcc-devel/files/patch-newdevices 1.1 +499 -0 ports/devel/avr-gcc-devel/files/patch-zz-atmega256x (new) 1.3 +2 -0 ports/devel/avr-gcc-devel/pkg-descr 1.3 +54 -49 ports/devel/avr-gcc-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 22:10:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8248716A403; Tue, 26 Sep 2006 22:10:55 +0000 (UTC) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E25643D45; Tue, 26 Sep 2006 22:10:55 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QMAteK091669; Tue, 26 Sep 2006 22:10:55 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QMAtGw091668; Tue, 26 Sep 2006 22:10:55 GMT (envelope-from hq) Message-Id: <200609262210.k8QMAtGw091668@repoman.freebsd.org> From: Herve Quiroz Date: Tue, 26 Sep 2006 22:10:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/jakarta-commons-configuration Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 22:10:55 -0000 hq 2006-09-26 22:10:55 UTC FreeBSD ports repository Modified files: devel/jakarta-commons-configuration Makefile distinfo Log: Update to 1.3 PR: 103594 Submitted by: sem Revision Changes Path 1.3 +1 -1 ports/devel/jakarta-commons-configuration/Makefile 1.3 +3 -3 ports/devel/jakarta-commons-configuration/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 22:20:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8578516A403; Tue, 26 Sep 2006 22:20:37 +0000 (UTC) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40A9A43D45; Tue, 26 Sep 2006 22:20:37 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QMKbG7092193; Tue, 26 Sep 2006 22:20:37 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QMKaq6092191; Tue, 26 Sep 2006 22:20:36 GMT (envelope-from hq) Message-Id: <200609262220.k8QMKaq6092191@repoman.freebsd.org> From: Herve Quiroz Date: Tue, 26 Sep 2006 22:20:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/limewire Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 22:20:37 -0000 hq 2006-09-26 22:20:36 UTC FreeBSD ports repository Modified files: net-p2p/limewire Makefile distinfo Log: - Update to 4.12.13 (and thus unbreak) - Takeover maintainership - SHAify PR: 100987 Submitted by: Migs de Villa Approved by: maintainer timeout (2 months) Revision Changes Path 1.27 +5 -6 ports/net-p2p/limewire/Makefile 1.16 +3 -2 ports/net-p2p/limewire/distinfo From owner-cvs-all@FreeBSD.ORG Tue Sep 26 22:24:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B79C416A407; Tue, 26 Sep 2006 22:24:48 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65E7843D46; Tue, 26 Sep 2006 22:24:48 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QMOmLr092469; Tue, 26 Sep 2006 22:24:48 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QMOmAx092467; Tue, 26 Sep 2006 22:24:48 GMT (envelope-from mezz) Message-Id: <200609262224.k8QMOmAx092467@repoman.freebsd.org> From: Jeremy Messenger Date: Tue, 26 Sep 2006 22:24:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/evolution Makefile ports/mail/evolution/files patch-90_build_with_new_pisock X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 22:24:48 -0000 mezz 2006-09-26 22:24:48 UTC FreeBSD ports repository Modified files: mail/evolution Makefile Added files: mail/evolution/files patch-90_build_with_new_pisock Log: Took a patch from Debian to fix the build with new pilot-link when build with WITH_PILOT option. Bump the PORTREVISION. Reported by: backyard Revision Changes Path 1.129 +1 -0 ports/mail/evolution/Makefile 1.1 +907 -0 ports/mail/evolution/files/patch-90_build_with_new_pisock (new) From owner-cvs-all@FreeBSD.ORG Tue Sep 26 22:28:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66AF216A407; Tue, 26 Sep 2006 22:28:15 +0000 (UTC) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7945643D68; Tue, 26 Sep 2006 22:28:13 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QMSDv5092635; Tue, 26 Sep 2006 22:28:13 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QMSDv9092634; Tue, 26 Sep 2006 22:28:13 GMT (envelope-from ceri) Message-Id: <200609262228.k8QMSDv9092634@repoman.freebsd.org> From: Ceri Davies Date: Tue, 26 Sep 2006 22:28:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/id id.1 id.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 22:28:15 -0000 ceri 2006-09-26 22:28:13 UTC FreeBSD src repository Modified files: usr.bin/id id.1 id.c Log: Add a -a option as a no-op for Solaris compatibility, as briefly discussed on src-committers. This is intentionally not included in the usage() function as it would confuse the output too much. Approved by: jhb MFC after: 1 week Revision Changes Path 1.18 +5 -1 src/usr.bin/id/id.1 1.31 +3 -1 src/usr.bin/id/id.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 23:08:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F51416A40F; Tue, 26 Sep 2006 23:08:44 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB5D343D46; Tue, 26 Sep 2006 23:08:43 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.6) with ESMTP id k8QN8crb057089 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 26 Sep 2006 16:08:42 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <4519B2E5.9000304@FreeBSD.org> Date: Tue, 26 Sep 2006 16:08:21 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: John Baldwin References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609261313.03759.jhb@freebsd.org> In-Reply-To: <200609261313.03759.jhb@freebsd.org> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 23:08:44 -0000 John Baldwin wrote: > On Tuesday 26 September 2006 12:08, Maxim Sobolev wrote: >> sobomax 2006-09-26 16:08:29 UTC >> >> FreeBSD src repository >> >> Modified files: (Branch: RELENG_6) >> sys/i386/i386 local_apic.c >> Log: >> Revert 1.17.2.8, which reportedly causes problems on some hardware. > > The report I saw was that it broke ULE in general. Are you going to revert it > from amd64 as well? Yes, you are right - this is ULE specific bug. In fact, quick grep of the ULE code reveals that it doesn't honor hlt_cpus_mask, so that the problem is with ULE, not with the change in question. -Maxim From owner-cvs-all@FreeBSD.ORG Tue Sep 26 23:14:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BD6816A412; Tue, 26 Sep 2006 23:14:43 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DECAD43D45; Tue, 26 Sep 2006 23:14:42 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QNEg3b096308; Tue, 26 Sep 2006 23:14:42 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QNEgPM096307; Tue, 26 Sep 2006 23:14:42 GMT (envelope-from scottl) Message-Id: <200609262314.k8QNEgPM096307@repoman.freebsd.org> From: Scott Long Date: Tue, 26 Sep 2006 23:14:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/i386 busdma_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 23:14:43 -0000 scottl 2006-09-26 23:14:42 UTC FreeBSD src repository Modified files: sys/i386/i386 busdma_machdep.c Log: The need to run a filter also implies that bouncing could be possible, so just use the COULD_BOUNCE flag for both and retire the USE_FILTER flag. This fixes the problem that rev 1.81 introduced with the if_bfe driver (and possibly others). Revision Changes Path 1.84 +4 -5 src/sys/i386/i386/busdma_machdep.c From owner-cvs-all@FreeBSD.ORG Tue Sep 26 23:26:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8180D16A415; Tue, 26 Sep 2006 23:26:54 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20ED443D5A; Tue, 26 Sep 2006 23:26:54 +0000 (GMT) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QNQsGW098028; Tue, 26 Sep 2006 23:26:54 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QNQrtW098027; Tue, 26 Sep 2006 23:26:53 GMT (envelope-from piso) Message-Id: <200609262326.k8QNQrtW098027@repoman.freebsd.org> From: Paolo Pisati Date: Tue, 26 Sep 2006 23:26:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc Makefile libalias.conf src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/lib/libalias/modules/cuseeme Makefile src/lib/libalias/modules/dummy ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 23:26:54 -0000 piso 2006-09-26 23:26:53 UTC FreeBSD src repository Modified files: etc Makefile lib/libalias Makefile sbin/natd natd.c sys/conf files sys/modules/libalias Makefile sys/netinet/libalias alias.c alias.h alias_cuseeme.c alias_db.c alias_ftp.c alias_irc.c alias_local.h alias_nbt.c alias_old.c alias_pptp.c alias_proxy.c alias_skinny.c alias_smedia.c alias_util.c libalias.3 Added files: etc libalias.conf lib/libalias/libalias Makefile lib/libalias/modules Makefile Makefile.inc lib/libalias/modules/cuseeme Makefile lib/libalias/modules/dummy Makefile lib/libalias/modules/ftp Makefile lib/libalias/modules/irc Makefile lib/libalias/modules/nbt Makefile lib/libalias/modules/pptp Makefile lib/libalias/modules/skinny Makefile lib/libalias/modules/smedia Makefile sys/modules/libalias/libalias Makefile sys/modules/libalias/modules Makefile Makefile.inc modules.inc sys/modules/libalias/modules/cuseeme Makefile sys/modules/libalias/modules/dummy Makefile sys/modules/libalias/modules/ftp Makefile sys/modules/libalias/modules/irc Makefile sys/modules/libalias/modules/nbt Makefile sys/modules/libalias/modules/pptp Makefile sys/modules/libalias/modules/skinny Makefile sys/modules/libalias/modules/smedia Makefile sys/netinet/libalias alias_dummy.c alias_mod.c alias_mod.h Log: Summer of Code 2005: improve libalias - part 1 of 2 With the first part of my previous Summer of Code work, we get: -made libalias modular: -support for 'particular' protocols (like ftp/irc/etcetc) is no more hardcoded inside libalias, but it's available through external modules loadable at runtime -modules are available both in kernel (/boot/kernel/alias_*.ko) and user land (/lib/libalias_*) -protocols/applications modularized are: cuseeme, ftp, irc, nbt, pptp, skinny and smedia -added logging support for kernel side -cleanup After a buildworld, do a 'mergemaster -i' to install the file libalias.conf in /etc or manually copy it. During startup (and after every HUP signal) user land applications running the new libalias will try to read a file in /etc called libalias.conf: that file contains the list of modules to load. User land applications affected by this commit are ppp and natd: if libalias.conf is present in /etc you won't notice any difference. The only kernel land bit affected by this commit is ng_nat: if you are using ng_nat, and it doesn't correctly handle ftp/irc/etcetc sessions anymore, remember to kldload the correspondent module (i.e. kldload alias_ftp). General information and details about the inner working are available in the libalias man page under the section 'MODULAR ARCHITECTURE (AND ipfw(4) SUPPORT)'. NOTA BENE: this commit affects _ONLY_ libalias, ipfw in-kernel nat support will be part of the next libalias-related commit. Approved by: glebius Reviewed by: glebius, ru Revision Changes Path 1.358 +1 -1 src/etc/Makefile 1.1 +8 -0 src/etc/libalias.conf (new) 1.32 +26 -13 src/lib/libalias/Makefile 1.1 +13 -0 src/lib/libalias/libalias/Makefile (new) 1.1 +7 -0 src/lib/libalias/modules/Makefile (new) 1.1 +7 -0 src/lib/libalias/modules/Makefile.inc (new) 1.1 +6 -0 src/lib/libalias/modules/cuseeme/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/dummy/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/ftp/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/irc/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/nbt/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/pptp/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/skinny/Makefile (new) 1.1 +6 -0 src/lib/libalias/modules/smedia/Makefile (new) 1.50 +2 -1 src/sbin/natd/natd.c 1.1144 +2 -7 src/sys/conf/files 1.3 +2 -30 src/sys/modules/libalias/Makefile 1.1 +8 -0 src/sys/modules/libalias/libalias/Makefile (new) 1.1 +7 -0 src/sys/modules/libalias/modules/Makefile (new) 1.1 +3 -0 src/sys/modules/libalias/modules/Makefile.inc (new) 1.1 +6 -0 src/sys/modules/libalias/modules/cuseeme/Makefile (new) 1.1 +6 -0 src/sys/modules/libalias/modules/dummy/Makefile (new) 1.1 +6 -0 src/sys/modules/libalias/modules/ftp/Makefile (new) 1.1 +6 -0 src/sys/modules/libalias/modules/irc/Makefile (new) 1.1 +11 -0 src/sys/modules/libalias/modules/modules.inc (new) 1.1 +6 -0 src/sys/modules/libalias/modules/nbt/Makefile (new) 1.1 +6 -0 src/sys/modules/libalias/modules/pptp/Makefile (new) 1.1 +6 -0 src/sys/modules/libalias/modules/skinny/Makefile (new) 1.1 +6 -0 src/sys/modules/libalias/modules/smedia/Makefile (new) 1.54 +211 -80 src/sys/netinet/libalias/alias.c 1.33 +10 -4 src/sys/netinet/libalias/alias.h 1.13 +97 -2 src/sys/netinet/libalias/alias_cuseeme.c 1.69 +83 -66 src/sys/netinet/libalias/alias_db.c 1.1 +153 -0 src/sys/netinet/libalias/alias_dummy.c (new) 1.28 +78 -4 src/sys/netinet/libalias/alias_ftp.c 1.22 +79 -4 src/sys/netinet/libalias/alias_irc.c 1.33 +12 -52 src/sys/netinet/libalias/alias_local.h 1.1 +284 -0 src/sys/netinet/libalias/alias_mod.c (new) 1.1 +157 -0 src/sys/netinet/libalias/alias_mod.h (new) 1.20 +129 -9 src/sys/netinet/libalias/alias_nbt.c 1.8 +1 -0 src/sys/netinet/libalias/alias_old.c 1.15 +167 -26 src/sys/netinet/libalias/alias_pptp.c 1.27 +3 -9 src/sys/netinet/libalias/alias_proxy.c 1.13 +73 -7 src/sys/netinet/libalias/alias_skinny.c 1.16 +85 -3 src/sys/netinet/libalias/alias_smedia.c 1.19 +1 -0 src/sys/netinet/libalias/alias_util.c 1.56 +429 -0 src/sys/netinet/libalias/libalias.3 From owner-cvs-all@FreeBSD.ORG Tue Sep 26 23:32:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7745816A492; Tue, 26 Sep 2006 23:32:40 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AAF743D49; Tue, 26 Sep 2006 23:32:40 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8QNWeCe098472; Tue, 26 Sep 2006 23:32:40 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8QNWdBh098471; Tue, 26 Sep 2006 23:32:39 GMT (envelope-from ahze) Message-Id: <200609262332.k8QNWdBh098471@repoman.freebsd.org> From: Michael Johnson Date: Tue, 26 Sep 2006 23:32:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/tightvnc Makefile distinfo pkg-plist ports/net/tightvnc/files patch-Xvnc::config::cf::FreeBSD.cf patch-Xvnc::config::cf::vnclibs.def patch-vncserver patch-vncviewer::desktop.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 23:32:40 -0000 ahze 2006-09-26 23:32:39 UTC FreeBSD ports repository Modified files: net/tightvnc Makefile distinfo pkg-plist net/tightvnc/files patch-Xvnc::config::cf::FreeBSD.cf patch-Xvnc::config::cf::vnclibs.def patch-vncserver Removed files: net/tightvnc/files patch-vncviewer::desktop.c Log: - Update to 1.3.8 - Fix build on !i386 (sparc64 atleast anyways) [1] PR: 103693 Subbmitted by: Nils Vogels ahze (me) [1] Revision Changes Path 1.24 +2 -7 ports/net/tightvnc/Makefile 1.11 +3 -3 ports/net/tightvnc/distinfo 1.2 +10 -11 ports/net/tightvnc/files/patch-Xvnc::config::cf::FreeBSD.cf 1.4 +8 -8 ports/net/tightvnc/files/patch-Xvnc::config::cf::vnclibs.def 1.2 +7 -6 ports/net/tightvnc/files/patch-vncserver 1.2 +0 -14 ports/net/tightvnc/files/patch-vncviewer::desktop.c (dead) 1.7 +19 -18 ports/net/tightvnc/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Sep 26 23:56:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB1FA16A403; Tue, 26 Sep 2006 23:56:51 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66B9F43D46; Tue, 26 Sep 2006 23:56:51 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.6) with ESMTP id k8QNulVn058236 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 26 Sep 2006 16:56:49 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <4519BE2F.4000503@FreeBSD.org> Date: Tue, 26 Sep 2006 16:56:31 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Paolo Pisati References: <200609262326.k8QNQrtW098027@repoman.freebsd.org> In-Reply-To: <200609262326.k8QNQrtW098027@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile libalias.conf src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/lib/libalias/modules/cuseeme Makefile src/lib/libalias/modules/dummy ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 26 Sep 2006 23:56:52 -0000 Looks cool. Do you have any numbers comparing performance of the old libalias and a new one running in kernel/userland mode? -Maxim Paolo Pisati wrote: > piso 2006-09-26 23:26:53 UTC > > FreeBSD src repository > > Modified files: > etc Makefile > lib/libalias Makefile > sbin/natd natd.c > sys/conf files > sys/modules/libalias Makefile > sys/netinet/libalias alias.c alias.h alias_cuseeme.c > alias_db.c alias_ftp.c alias_irc.c > alias_local.h alias_nbt.c alias_old.c > alias_pptp.c alias_proxy.c alias_skinny.c > alias_smedia.c alias_util.c libalias.3 > Added files: > etc libalias.conf > lib/libalias/libalias Makefile > lib/libalias/modules Makefile Makefile.inc > lib/libalias/modules/cuseeme Makefile > lib/libalias/modules/dummy Makefile > lib/libalias/modules/ftp Makefile > lib/libalias/modules/irc Makefile > lib/libalias/modules/nbt Makefile > lib/libalias/modules/pptp Makefile > lib/libalias/modules/skinny Makefile > lib/libalias/modules/smedia Makefile > sys/modules/libalias/libalias Makefile > sys/modules/libalias/modules Makefile Makefile.inc modules.inc > sys/modules/libalias/modules/cuseeme Makefile > sys/modules/libalias/modules/dummy Makefile > sys/modules/libalias/modules/ftp Makefile > sys/modules/libalias/modules/irc Makefile > sys/modules/libalias/modules/nbt Makefile > sys/modules/libalias/modules/pptp Makefile > sys/modules/libalias/modules/skinny Makefile > sys/modules/libalias/modules/smedia Makefile > sys/netinet/libalias alias_dummy.c alias_mod.c alias_mod.h > Log: > Summer of Code 2005: improve libalias - part 1 of 2 > > With the first part of my previous Summer of Code work, we get: > > -made libalias modular: > > -support for 'particular' protocols (like ftp/irc/etcetc) is no more > hardcoded inside libalias, but it's available through external > modules loadable at runtime > > -modules are available both in kernel (/boot/kernel/alias_*.ko) and > user land (/lib/libalias_*) > > -protocols/applications modularized are: cuseeme, ftp, irc, nbt, pptp, > skinny and smedia > > -added logging support for kernel side > > -cleanup > > After a buildworld, do a 'mergemaster -i' to install the file libalias.conf > in /etc or manually copy it. > > During startup (and after every HUP signal) user land applications running > the new libalias will try to read a file in /etc called libalias.conf: > that file contains the list of modules to load. > > User land applications affected by this commit are ppp and natd: > if libalias.conf is present in /etc you won't notice any difference. > > The only kernel land bit affected by this commit is ng_nat: > if you are using ng_nat, and it doesn't correctly handle > ftp/irc/etcetc sessions anymore, remember to kldload > the correspondent module (i.e. kldload alias_ftp). > > General information and details about the inner working are available > in the libalias man page under the section 'MODULAR ARCHITECTURE > (AND ipfw(4) SUPPORT)'. > > NOTA BENE: this commit affects _ONLY_ libalias, ipfw in-kernel nat > support will be part of the next libalias-related commit. > > Approved by: glebius > Reviewed by: glebius, ru > > Revision Changes Path > 1.358 +1 -1 src/etc/Makefile > 1.1 +8 -0 src/etc/libalias.conf (new) > 1.32 +26 -13 src/lib/libalias/Makefile > 1.1 +13 -0 src/lib/libalias/libalias/Makefile (new) > 1.1 +7 -0 src/lib/libalias/modules/Makefile (new) > 1.1 +7 -0 src/lib/libalias/modules/Makefile.inc (new) > 1.1 +6 -0 src/lib/libalias/modules/cuseeme/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/dummy/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/ftp/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/irc/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/nbt/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/pptp/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/skinny/Makefile (new) > 1.1 +6 -0 src/lib/libalias/modules/smedia/Makefile (new) > 1.50 +2 -1 src/sbin/natd/natd.c > 1.1144 +2 -7 src/sys/conf/files > 1.3 +2 -30 src/sys/modules/libalias/Makefile > 1.1 +8 -0 src/sys/modules/libalias/libalias/Makefile (new) > 1.1 +7 -0 src/sys/modules/libalias/modules/Makefile (new) > 1.1 +3 -0 src/sys/modules/libalias/modules/Makefile.inc (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/cuseeme/Makefile (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/dummy/Makefile (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/ftp/Makefile (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/irc/Makefile (new) > 1.1 +11 -0 src/sys/modules/libalias/modules/modules.inc (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/nbt/Makefile (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/pptp/Makefile (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/skinny/Makefile (new) > 1.1 +6 -0 src/sys/modules/libalias/modules/smedia/Makefile (new) > 1.54 +211 -80 src/sys/netinet/libalias/alias.c > 1.33 +10 -4 src/sys/netinet/libalias/alias.h > 1.13 +97 -2 src/sys/netinet/libalias/alias_cuseeme.c > 1.69 +83 -66 src/sys/netinet/libalias/alias_db.c > 1.1 +153 -0 src/sys/netinet/libalias/alias_dummy.c (new) > 1.28 +78 -4 src/sys/netinet/libalias/alias_ftp.c > 1.22 +79 -4 src/sys/netinet/libalias/alias_irc.c > 1.33 +12 -52 src/sys/netinet/libalias/alias_local.h > 1.1 +284 -0 src/sys/netinet/libalias/alias_mod.c (new) > 1.1 +157 -0 src/sys/netinet/libalias/alias_mod.h (new) > 1.20 +129 -9 src/sys/netinet/libalias/alias_nbt.c > 1.8 +1 -0 src/sys/netinet/libalias/alias_old.c > 1.15 +167 -26 src/sys/netinet/libalias/alias_pptp.c > 1.27 +3 -9 src/sys/netinet/libalias/alias_proxy.c > 1.13 +73 -7 src/sys/netinet/libalias/alias_skinny.c > 1.16 +85 -3 src/sys/netinet/libalias/alias_smedia.c > 1.19 +1 -0 src/sys/netinet/libalias/alias_util.c > 1.56 +429 -0 src/sys/netinet/libalias/libalias.3 > > From owner-cvs-all@FreeBSD.ORG Wed Sep 27 00:14:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88E4216A407; Wed, 27 Sep 2006 00:14:35 +0000 (UTC) (envelope-from flag@newluxor.wired.org) Received: from mail.oltrelinux.com (krisma.oltrelinux.com [194.242.226.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id D017143D7D; Wed, 27 Sep 2006 00:14:26 +0000 (GMT) (envelope-from flag@newluxor.wired.org) Received: from newluxor.wired.org (ip-64-88.sn2.eutelia.it [83.211.64.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.oltrelinux.com (Postfix) with ESMTP id 6915E11B1C8; Wed, 27 Sep 2006 02:14:28 +0200 (CEST) Received: (from flag@localhost) by newluxor.wired.org (8.13.8/8.13.8/Submit) id k8R0ED0b062883; Wed, 27 Sep 2006 02:14:13 +0200 (CEST) (envelope-from flag) Date: Wed, 27 Sep 2006 02:14:07 +0200 From: Paolo Pisati To: Maxim Sobolev Message-ID: <20060927001407.GB62281@tin.it> References: <200609262326.k8QNQrtW098027@repoman.freebsd.org> <4519BE2F.4000503@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4519BE2F.4000503@FreeBSD.org> User-Agent: Mutt/1.4.2.2i X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at krisma.oltrelinux.com Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Paolo Pisati Subject: Re: cvs commit: src/etc Makefile libalias.conf src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/lib/libalias/modules/cuseeme Makefile src/lib/libalias/modules/dummy ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 00:14:35 -0000 On Tue, Sep 26, 2006 at 04:56:31PM -0700, Maxim Sobolev wrote: > Looks cool. Do you have any numbers comparing performance of the old > libalias and a new one running in kernel/userland mode? no unfortunately, but we can ask someone with a busy nat box to test it and see if there's any noticeable difference. bye -- Paolo Piso's first law: nothing works as expected! From owner-cvs-all@FreeBSD.ORG Wed Sep 27 00:32:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 506BE16A403; Wed, 27 Sep 2006 00:32:37 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F79443D45; Wed, 27 Sep 2006 00:32:37 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0WaB4002421; Wed, 27 Sep 2006 00:32:36 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0WaJ6002420; Wed, 27 Sep 2006 00:32:36 GMT (envelope-from tegge) Message-Id: <200609270032.k8R0WaJ6002420@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:32:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/sys mount.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 00:32:37 -0000 tegge 2006-09-27 00:32:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys mount.h Log: MFC rev 1.209: Prepare for type stable struct mount. Approved by: re (kensmith) Revision Changes Path 1.197.2.5 +4 -0 src/sys/sys/mount.h From owner-cvs-all@FreeBSD.ORG Wed Sep 27 00:33:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 799AE16A415; Wed, 27 Sep 2006 00:33:32 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3614C43D4C; Wed, 27 Sep 2006 00:33:32 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0XWib002522; Wed, 27 Sep 2006 00:33:32 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0XW08002521; Wed, 27 Sep 2006 00:33:32 GMT (envelope-from tegge) Message-Id: <200609270033.k8R0XW08002521@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:33:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_mount.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 00:33:32 -0000 tegge 2006-09-27 00:33:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_mount.c Log: MFC rev 1.220: Make struct mount type stable. Approved by: re (kensmith) Revision Changes Path 1.196.2.13 +34 -8 src/sys/kern/vfs_mount.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 00:34:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E38B616A416; Wed, 27 Sep 2006 00:34:51 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A432243D53; Wed, 27 Sep 2006 00:34:51 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0YpAK002605; Wed, 27 Sep 2006 00:34:51 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0YpFT002604; Wed, 27 Sep 2006 00:34:51 GMT (envelope-from tegge) Message-Id: <200609270034.k8R0YpFT002604@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:34:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_default.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 00:34:52 -0000 tegge 2006-09-27 00:34:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_default.c Log: MFC rev 1.133: VOP_GETWRITEMOUNT() returns a referenced mount. Approved by: re (kensmith) Revision Changes Path 1.127.2.3 +15 -1 src/sys/kern/vfs_default.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 00:36:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67A2816A40F; Wed, 27 Sep 2006 00:36:14 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7106143D77; Wed, 27 Sep 2006 00:36:10 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0aAd0002726; Wed, 27 Sep 2006 00:36:10 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0aAlC002725; Wed, 27 Sep 2006 00:36:10 GMT (envelope-from tegge) Message-Id: <200609270036.k8R0aAlC002725@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:36:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 00:36:14 -0000 tegge 2006-09-27 00:36:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_subr.c Log: MFC rev 1.667: vfs_busy() holds reference on mount until vfs_unbusy() is called. vfs_getvfs() returns a referenced mount. Approved by: re (kensmith) Revision Changes Path 1.635.2.21 +9 -3 src/sys/kern/vfs_subr.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 00:37:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60AA416A403; Wed, 27 Sep 2006 00:37:47 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FAC943D4C; Wed, 27 Sep 2006 00:37:47 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0bl3n002838; Wed, 27 Sep 2006 00:37:47 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0blMv002837; Wed, 27 Sep 2006 00:37:47 GMT (envelope-from tegge) Message-Id: <200609270037.k8R0blMv002837@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:37:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_syscalls.c vfs_vnops.c src/sys/nfsserver nfs_serv.c nfs_srvsubs.c src/sys/ufs/ffs ffs_snapshot.c ffs_vfsops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 00:37:47 -0000 tegge 2006-09-27 00:37:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_syscalls.c vfs_vnops.c sys/nfsserver nfs_serv.c nfs_srvsubs.c sys/ufs/ffs ffs_snapshot.c ffs_vfsops.c Log: MFC: Release references acquired by VOP_GETWRITEMOUNT() and vfs_getvfs(). Approved by: re (kensmith) Revision Changes Path 1.392.2.11 +7 -6 src/sys/kern/vfs_syscalls.c 1.233.2.6 +16 -2 src/sys/kern/vfs_vnops.c 1.156.2.5 +11 -0 src/sys/nfsserver/nfs_serv.c 1.136.2.5 +4 -2 src/sys/nfsserver/nfs_srvsubs.c 1.103.2.18 +1 -0 src/sys/ufs/ffs/ffs_snapshot.c 1.290.2.15 +6 -1 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 00:39:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BFB516A403; Wed, 27 Sep 2006 00:39:20 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5A7E43D5C; Wed, 27 Sep 2006 00:39:19 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0dJ6t002900; Wed, 27 Sep 2006 00:39:19 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0dJKm002899; Wed, 27 Sep 2006 00:39:19 GMT (envelope-from tegge) Message-Id: <200609270039.k8R0dJKm002899@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:39:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_mount.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 00:39:20 -0000 tegge 2006-09-27 00:39:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_mount.c Log: MFC rev 1.221 : Print dangling vnodes before panic at unmount. Approved by: re (kensmith) Revision Changes Path 1.196.2.14 +6 -1 src/sys/kern/vfs_mount.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 00:40:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36FF816A403; Wed, 27 Sep 2006 00:40:12 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAACF43D45; Wed, 27 Sep 2006 00:40:11 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0eBvZ002966; Wed, 27 Sep 2006 00:40:11 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0eBq2002965; Wed, 27 Sep 2006 00:40:11 GMT (envelope-from tegge) Message-Id: <200609270040.k8R0eBq2002965@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:40:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_mount.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 00:40:12 -0000 tegge 2006-09-27 00:40:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_mount.c Log: MFC rev 1.226: Unbusy mount before destruction. Approved by: re (kensmith) Revision Changes Path 1.196.2.15 +6 -5 src/sys/kern/vfs_mount.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 00:41:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A973F16A416; Wed, 27 Sep 2006 00:41:04 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DB8143D69; Wed, 27 Sep 2006 00:40:59 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0exKm003141; Wed, 27 Sep 2006 00:40:59 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0exmB003140; Wed, 27 Sep 2006 00:40:59 GMT (envelope-from tegge) Message-Id: <200609270040.k8R0exmB003140@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:40:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 00:41:04 -0000 tegge 2006-09-27 00:40:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_syscalls.c Log: MFC rev 1.419 and 1.420: Hold reference on mountpoint slightly longer in kern_statfs() and kern_fstatfs() Approved by: re (kensmith) Revision Changes Path 1.392.2.12 +16 -24 src/sys/kern/vfs_syscalls.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 00:41:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4B8216A412; Wed, 27 Sep 2006 00:41:51 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C15EF43D5A; Wed, 27 Sep 2006 00:41:50 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0forL003185; Wed, 27 Sep 2006 00:41:50 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0fo88003184; Wed, 27 Sep 2006 00:41:50 GMT (envelope-from tegge) Message-Id: <200609270041.k8R0fo88003184@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:41:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_default.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 00:41:51 -0000 tegge 2006-09-27 00:41:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_default.c Log: MFC rev 1.134: Handle reclaimed vnode in VOP_GETWRITEMOUNT() Approved by: re (kensmith) Revision Changes Path 1.127.2.4 +6 -4 src/sys/kern/vfs_default.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 00:42:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DD3116A47B; Wed, 27 Sep 2006 00:42:43 +0000 (UTC) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C28643D46; Wed, 27 Sep 2006 00:42:43 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R0ghsQ003234; Wed, 27 Sep 2006 00:42:43 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R0ghRi003231; Wed, 27 Sep 2006 00:42:43 GMT (envelope-from tegge) Message-Id: <200609270042.k8R0ghRi003231@repoman.freebsd.org> From: Tor Egge Date: Wed, 27 Sep 2006 00:42:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 00:42:43 -0000 tegge 2006-09-27 00:42:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_syscalls.c Log: MFC rev 1.422: Hold reference on mountpoint slightly longer in kern_fhstatfs() Approved by: re (kensmith) Revision Changes Path 1.392.2.13 +3 -4 src/sys/kern/vfs_syscalls.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 01:08:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98AD016A40F; Wed, 27 Sep 2006 01:08:35 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A12D43D55; Wed, 27 Sep 2006 01:08:35 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R18ZeN013536; Wed, 27 Sep 2006 01:08:35 GMT (envelope-from shaun@repoman.freebsd.org) Received: (from shaun@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R18ZJ2013535; Wed, 27 Sep 2006 01:08:35 GMT (envelope-from shaun) Message-Id: <200609270108.k8R18ZJ2013535@repoman.freebsd.org> From: Shaun Amott Date: Wed, 27 Sep 2006 01:08:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/p5-Error Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 01:08:35 -0000 shaun 2006-09-27 01:08:35 UTC FreeBSD ports repository Modified files: lang/p5-Error Makefile distinfo pkg-descr Log: - Upgrade to 0.17.004 The PR below provided an update to 0.17.002 from 0.15.009; but the previous commit had already updated it to 0.17. PR: ports/102206 Submitted by: Jin-Shan Tseng Approved by: maintainer timeout Revision Changes Path 1.10 +2 -1 ports/lang/p5-Error/Makefile 1.8 +3 -3 ports/lang/p5-Error/distinfo 1.3 +2 -0 ports/lang/p5-Error/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Sep 27 01:28:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 432B716A403; Wed, 27 Sep 2006 01:28:30 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0074D43D46; Wed, 27 Sep 2006 01:28:29 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R1STZM014395; Wed, 27 Sep 2006 01:28:29 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R1STNt014394; Wed, 27 Sep 2006 01:28:29 GMT (envelope-from clsung) Message-Id: <200609270128.k8R1STNt014394@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 01:28:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Acme-MetaSyntactic Makefile Makefile.man distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 01:28:30 -0000 clsung 2006-09-27 01:28:29 UTC FreeBSD ports repository Modified files: devel/p5-Acme-MetaSyntactic Makefile Makefile.man distinfo pkg-plist Log: - Update to 0.93 Revision Changes Path 1.23 +1 -1 ports/devel/p5-Acme-MetaSyntactic/Makefile 1.21 +2 -1 ports/devel/p5-Acme-MetaSyntactic/Makefile.man 1.23 +3 -3 ports/devel/p5-Acme-MetaSyntactic/distinfo 1.21 +97 -96 ports/devel/p5-Acme-MetaSyntactic/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 01:31:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14CA516A49E; Wed, 27 Sep 2006 01:31:41 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C24AE43D46; Wed, 27 Sep 2006 01:31:40 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R1Veh9014647; Wed, 27 Sep 2006 01:31:40 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R1VeIv014646; Wed, 27 Sep 2006 01:31:40 GMT (envelope-from clsung) Message-Id: <200609270131.k8R1VeIv014646@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 01:31:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Algorithm-Cluster Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 01:31:41 -0000 clsung 2006-09-27 01:31:40 UTC FreeBSD ports repository Modified files: devel/p5-Algorithm-Cluster Makefile distinfo Log: - Update to 1.33 PR: ports/103689 Submitted by: Gea-Suan Lin Revision Changes Path 1.11 +1 -1 ports/devel/p5-Algorithm-Cluster/Makefile 1.9 +3 -3 ports/devel/p5-Algorithm-Cluster/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 01:49:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E1CD16A40F; Wed, 27 Sep 2006 01:49:48 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DBA043D58; Wed, 27 Sep 2006 01:49:47 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R1nlWR015402; Wed, 27 Sep 2006 01:49:47 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R1nlYm015401; Wed, 27 Sep 2006 01:49:47 GMT (envelope-from clsung) Message-Id: <200609270149.k8R1nlYm015401@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 01:49:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Module-Build-Convert Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 01:49:48 -0000 clsung 2006-09-27 01:49:47 UTC FreeBSD ports repository Modified files: devel/p5-Module-Build-Convert Makefile distinfo Log: - Update to 0.37 Revision Changes Path 1.10 +1 -1 ports/devel/p5-Module-Build-Convert/Makefile 1.8 +3 -3 ports/devel/p5-Module-Build-Convert/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 02:07:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBD0216A403; Wed, 27 Sep 2006 02:07:38 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84C4F43D46; Wed, 27 Sep 2006 02:07:38 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R27c9H017467; Wed, 27 Sep 2006 02:07:38 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R27cDc017466; Wed, 27 Sep 2006 02:07:38 GMT (envelope-from clsung) Message-Id: <200609270207.k8R27cDc017466@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 02:07:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-PDF-FromHTML Makefile distinfo pkg-plist ports/textproc/p5-PDF-FromHTML/files patch-Makefile.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 02:07:38 -0000 clsung 2006-09-27 02:07:38 UTC FreeBSD ports repository Modified files: textproc/p5-PDF-FromHTML Makefile distinfo pkg-plist Removed files: textproc/p5-PDF-FromHTML/files patch-Makefile.PL Log: - Update to 0.20 - maintainership pass to perl@ PR: ports/103621 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.2 +29 -7 ports/textproc/p5-PDF-FromHTML/Makefile 1.2 +3 -3 ports/textproc/p5-PDF-FromHTML/distinfo 1.2 +0 -11 ports/textproc/p5-PDF-FromHTML/files/patch-Makefile.PL (dead) 1.2 +37 -4 ports/textproc/p5-PDF-FromHTML/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 02:08:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7934216A415; Wed, 27 Sep 2006 02:08:45 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0CD543D49; Wed, 27 Sep 2006 02:08:44 +0000 (GMT) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R28ibA017523; Wed, 27 Sep 2006 02:08:44 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R28iZE017522; Wed, 27 Sep 2006 02:08:44 GMT (envelope-from piso) Message-Id: <200609270208.k8R28iZE017522@repoman.freebsd.org> From: Paolo Pisati Date: Wed, 27 Sep 2006 02:08:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet/libalias alias_mod.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 02:08:45 -0000 piso 2006-09-27 02:08:44 UTC FreeBSD src repository Modified files: sys/netinet/libalias alias_mod.c Log: Compilation. Revision Changes Path 1.2 +1 -1 src/sys/netinet/libalias/alias_mod.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 02:09:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDDF116A53F; Wed, 27 Sep 2006 02:09:04 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8001B43D6E; Wed, 27 Sep 2006 02:09:01 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R291gC017562; Wed, 27 Sep 2006 02:09:01 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R291SR017561; Wed, 27 Sep 2006 02:09:01 GMT (envelope-from clsung) Message-Id: <200609270209.k8R291SR017561@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 02:09:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/astro/p5-Astro-SpaceTrack Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 02:09:05 -0000 clsung 2006-09-27 02:09:01 UTC FreeBSD ports repository Modified files: astro/p5-Astro-SpaceTrack Makefile distinfo Log: - Update to 0.024 - Transfer maintainership to perl@ PR: ports/103620 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.2 +2 -2 ports/astro/p5-Astro-SpaceTrack/Makefile 1.2 +3 -3 ports/astro/p5-Astro-SpaceTrack/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 02:10:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E4FC16A417; Wed, 27 Sep 2006 02:10:24 +0000 (UTC) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from mx09.ms.so-net.ne.jp (mx09.ms.so-net.ne.jp [202.238.82.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 186D743D55; Wed, 27 Sep 2006 02:10:23 +0000 (GMT) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from [127.0.0.1] (p62a1f6.tkyoac00.ap.so-net.ne.jp [219.98.161.246]) by mx09.ms.so-net.ne.jp with ESMTP id k8R29OvT021383; Wed, 27 Sep 2006 11:10:14 +0900 (JST) Message-ID: <4519DD53.8010005@ba2.so-net.ne.jp> Date: Wed, 27 Sep 2006 11:09:23 +0900 From: SANETO Takanori User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Dag-Erling Smorgrav References: <200609130838.k8D8cnW9063228@repoman.freebsd.org> In-Reply-To: <200609130838.k8D8cnW9063228@repoman.freebsd.org> X-Enigmail-Version: 0.93.2.0 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountcritlocal mountlate src/sbin/mount mount.8 mount.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 02:10:24 -0000 As for mount.c, following part should be MFC'ed as well. > @@ -628,6 +633,15 @@ > * not a real mount option. > */ > continue; > + } else if (strcmp(p, "late") == 0) { > + /* > + * "late" is used to prevent certain file > + * systems from being mounted before late > + * in the boot cycle; for instance, > + * loopback NFS mounts can't be mounted > + * before mountd starts. > + */ > + continue; > } else if (strcmp(p, "userquota") == 0) { > continue; > } else if (strncmp(p, userquotaeq, Dag-Erling Smorgrav wrote: > des 2006-09-13 08:38:49 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > etc/rc.d mountcritlocal > sbin/mount mount.8 mount.c > Added files: (Branch: RELENG_6) > etc/rc.d mountlate > Log: > MFC: "late" flag in fstab + mountlate script + necessary changes to mount(8) > > Approved by: re (kensmith) > > Revision Changes Path > 1.12.2.1 +2 -0 src/etc/rc.d/mountcritlocal > 1.1.2.1 +36 -0 src/etc/rc.d/mountlate (new) > 1.73.2.2 +20 -3 src/sbin/mount/mount.8 > 1.69.2.2 +9 -4 src/sbin/mount/mount.c > _______________________________________________ > cvs-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-all > To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-cvs-all@FreeBSD.ORG Wed Sep 27 02:11:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D317416A403; Wed, 27 Sep 2006 02:11:12 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C7FD43D5A; Wed, 27 Sep 2006 02:11:12 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R2BCvH017804; Wed, 27 Sep 2006 02:11:12 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R2BC7M017803; Wed, 27 Sep 2006 02:11:12 GMT (envelope-from clsung) Message-Id: <200609270211.k8R2BC7M017803@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 02:11:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/libopennet Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 02:11:12 -0000 clsung 2006-09-27 02:11:12 UTC FreeBSD ports repository Modified files: net/libopennet Makefile distinfo pkg-plist Log: - Update to 0.9.6 - Add local mirror PR: ports/103622 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.5 +5 -2 ports/net/libopennet/Makefile 1.3 +3 -3 ports/net/libopennet/distinfo 1.3 +2 -1 ports/net/libopennet/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 03:09:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0646316A403; Wed, 27 Sep 2006 03:09:15 +0000 (UTC) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 329C543D49; Wed, 27 Sep 2006 03:09:14 +0000 (GMT) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R39E21021543; Wed, 27 Sep 2006 03:09:14 GMT (envelope-from alexbl@repoman.freebsd.org) Received: (from alexbl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R39EFC021542; Wed, 27 Sep 2006 03:09:14 GMT (envelope-from alexbl) Message-Id: <200609270309.k8R39EFC021542@repoman.freebsd.org> From: Alexander Botero-Lowry Date: Wed, 27 Sep 2006 03:09:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/quodlibet Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 03:09:15 -0000 alexbl 2006-09-27 03:09:14 UTC FreeBSD ports repository Modified files: multimedia/quodlibet Makefile distinfo pkg-plist Log: - update to 0.23.1 - transfer maintainership to submitter PR: 102631 Submitted by: Peter Johnson Approved by: novel (mentor), maintainer timeout (3 weeks) Revision Changes Path 1.14 +42 -39 ports/multimedia/quodlibet/Makefile 1.5 +3 -3 ports/multimedia/quodlibet/distinfo 1.6 +109 -113 ports/multimedia/quodlibet/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 03:10:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D8A716A407; Wed, 27 Sep 2006 03:10:06 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BF4F43D45; Wed, 27 Sep 2006 03:10:06 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R3A56M021603; Wed, 27 Sep 2006 03:10:05 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R3A5sk021602; Wed, 27 Sep 2006 03:10:05 GMT (envelope-from ijliao) Message-Id: <200609270310.k8R3A5sk021602@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 27 Sep 2006 03:10:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/palm/libmal Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 03:10:06 -0000 ijliao 2006-09-27 03:10:05 UTC FreeBSD ports repository Modified files: palm/libmal Makefile distinfo Log: upgrade to 0.42 PR: 103572 Submitted by: alecn2002 Approved by: maintainer Revision Changes Path 1.11 +3 -3 ports/palm/libmal/Makefile 1.6 +3 -3 ports/palm/libmal/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 04:29:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A83D516A407; Wed, 27 Sep 2006 04:29:54 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 666F543D46; Wed, 27 Sep 2006 04:29:54 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R4TsiH026838; Wed, 27 Sep 2006 04:29:54 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R4TrNY026837; Wed, 27 Sep 2006 04:29:53 GMT (envelope-from rafan) Message-Id: <200609270429.k8R4TrNY026837@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 27 Sep 2006 04:29:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-PAR Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 04:29:54 -0000 rafan 2006-09-27 04:29:53 UTC FreeBSD ports repository Modified files: devel/p5-PAR Makefile distinfo Log: - Update to 0.95.4 (distversion 0.954) Revision Changes Path 1.23 +1 -1 ports/devel/p5-PAR/Makefile 1.17 +3 -3 ports/devel/p5-PAR/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 04:30:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9401016A40F; Wed, 27 Sep 2006 04:30:55 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3620843D5C; Wed, 27 Sep 2006 04:30:55 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R4UtQK027018; Wed, 27 Sep 2006 04:30:55 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R4Uttu027017; Wed, 27 Sep 2006 04:30:55 GMT (envelope-from rafan) Message-Id: <200609270430.k8R4Uttu027017@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 27 Sep 2006 04:30:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/chinese/gcin Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 04:30:55 -0000 rafan 2006-09-27 04:30:55 UTC FreeBSD ports repository Modified files: chinese/gcin Makefile distinfo Log: - Update to 1.2.6 PR: ports/103678 Submitted by: chinsan (maintainer) Revision Changes Path 1.60 +1 -1 ports/chinese/gcin/Makefile 1.47 +3 -3 ports/chinese/gcin/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 04:53:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 641C716A47E; Wed, 27 Sep 2006 04:53:43 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFF9843D77; Wed, 27 Sep 2006 04:53:40 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R4reNu036029; Wed, 27 Sep 2006 04:53:40 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R4reWr036028; Wed, 27 Sep 2006 04:53:40 GMT (envelope-from alc) Message-Id: <200609270453.k8R4reWr036028@repoman.freebsd.org> From: Alan Cox Date: Wed, 27 Sep 2006 04:53:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/sparc64/sparc64 tsb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 04:53:43 -0000 alc 2006-09-27 04:53:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sparc64/sparc64 tsb.c Log: MFC revision 1.38 The sparc64/sparc64/pmap.c implementations of pmap_remove(), pmap_protect(), and pmap_copy() have optimizations for regions larger than PMAP_TSB_THRESH (which works out to 16MB). This caused a panic in tsb_foreach for kernel mappings, since pm->pm_tsb is NULL in that case. This fix teaches tsb_foreach to use the kernel's tsb in that case. Approved by: re (mux) Revision Changes Path 1.37.2.1 +15 -6 src/sys/sparc64/sparc64/tsb.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 04:54:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBE8C16A40F; Wed, 27 Sep 2006 04:54:27 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF30E43D5C; Wed, 27 Sep 2006 04:54:23 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R4sNFG036075; Wed, 27 Sep 2006 04:54:23 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R4sNPk036074; Wed, 27 Sep 2006 04:54:23 GMT (envelope-from scottl) Message-Id: <200609270454.k8R4sNPk036074@repoman.freebsd.org> From: Scott Long Date: Wed, 27 Sep 2006 04:54:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/mfi mfi_debug.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 04:54:28 -0000 scottl 2006-09-27 04:54:23 UTC FreeBSD src repository Modified files: sys/dev/mfi mfi_debug.c Log: Fix a bad #include statment Revision Changes Path 1.2 +1 -1 src/sys/dev/mfi/mfi_debug.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 05:00:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E67916A403; Wed, 27 Sep 2006 05:00:11 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 161D243D46; Wed, 27 Sep 2006 05:00:11 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R50A4E036369; Wed, 27 Sep 2006 05:00:10 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R50Aci036368; Wed, 27 Sep 2006 05:00:10 GMT (envelope-from scottl) Message-Id: <200609270500.k8R50Aci036368@repoman.freebsd.org> From: Scott Long Date: Wed, 27 Sep 2006 05:00:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/mfi mfi.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 05:00:11 -0000 scottl 2006-09-27 05:00:10 UTC FreeBSD src repository Modified files: sys/dev/mfi mfi.c Log: Skip the AEN event command that is always hanging out on the card. Submitted by: Doug Ambrisko Revision Changes Path 1.19 +2 -0 src/sys/dev/mfi/mfi.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 05:04:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3587B16A407; Wed, 27 Sep 2006 05:04:42 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 060E743D45; Wed, 27 Sep 2006 05:04:42 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R54fUT037877; Wed, 27 Sep 2006 05:04:41 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R54fHG037876; Wed, 27 Sep 2006 05:04:41 GMT (envelope-from acm) Message-Id: <200609270504.k8R54fHG037876@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Wed, 27 Sep 2006 05:04:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics Makefile ports/graphics/py-glewpy Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 05:04:42 -0000 acm 2006-09-27 05:04:41 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/py-glewpy Makefile distinfo pkg-descr pkg-plist Log: - New port: graphics/py-glewpy GLEWpy aims to bring advanced OpenGL extensions to Python. This will allow the Python OpenGL developer to use features such as fragment and vertex shaders and image processing on the GPU. It serves as a compliment to PyOpenGL and toolkits such as GLUT and SDL (pygame). WWW: http://glewpy.sourceforge.net/ Revision Changes Path 1.987 +1 -0 ports/graphics/Makefile 1.1 +28 -0 ports/graphics/py-glewpy/Makefile (new) 1.1 +3 -0 ports/graphics/py-glewpy/distinfo (new) 1.1 +6 -0 ports/graphics/py-glewpy/pkg-descr (new) 1.1 +41 -0 ports/graphics/py-glewpy/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 05:06:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FAE916A40F; Wed, 27 Sep 2006 05:06:56 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFAF843D46; Wed, 27 Sep 2006 05:06:55 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R56tVW038067; Wed, 27 Sep 2006 05:06:55 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R56tE8038066; Wed, 27 Sep 2006 05:06:55 GMT (envelope-from acm) Message-Id: <200609270506.k8R56tE8038066@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Wed, 27 Sep 2006 05:06:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 05:06:56 -0000 acm 2006-09-27 05:06:55 UTC FreeBSD ports repository Modified files: . modules Log: - py-glewpy --> ports/graphics/py-glewpy Revision Changes Path 1.16279 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Sep 27 05:47:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B085516A407; Wed, 27 Sep 2006 05:47:21 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F49F43D49; Wed, 27 Sep 2006 05:47:21 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R5lLIc039891; Wed, 27 Sep 2006 05:47:21 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R5lLiN039890; Wed, 27 Sep 2006 05:47:21 GMT (envelope-from rafan) Message-Id: <200609270547.k8R5lLiN039890@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 27 Sep 2006 05:47:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/tunapie Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 05:47:21 -0000 rafan 2006-09-27 05:47:20 UTC FreeBSD ports repository Modified files: multimedia/tunapie Makefile distinfo Log: - Update to 1.0 PR: ports/103674 Submitted by: Nicola Vitale (maintainer) Revision Changes Path 1.5 +1 -1 ports/multimedia/tunapie/Makefile 1.5 +3 -3 ports/multimedia/tunapie/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 05:48:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8308516A407; Wed, 27 Sep 2006 05:48:21 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40AE343D4C; Wed, 27 Sep 2006 05:48:21 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R5mLnp039995; Wed, 27 Sep 2006 05:48:21 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R5mLtV039994; Wed, 27 Sep 2006 05:48:21 GMT (envelope-from rafan) Message-Id: <200609270548.k8R5mLtV039994@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 27 Sep 2006 05:48:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/spamass-rules Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 05:48:21 -0000 rafan 2006-09-27 05:48:21 UTC FreeBSD ports repository Modified files: mail/spamass-rules Makefile distinfo Log: - Update to 20060926 PR: ports/103675 Submitted by: Michael Ranner (maintainer) Revision Changes Path 1.20 +9 -11 ports/mail/spamass-rules/Makefile 1.18 +3 -3 ports/mail/spamass-rules/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 05:49:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A117116A494; Wed, 27 Sep 2006 05:49:21 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FCCC43D46; Wed, 27 Sep 2006 05:49:21 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R5nLvS040037; Wed, 27 Sep 2006 05:49:21 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R5nLSR040036; Wed, 27 Sep 2006 05:49:21 GMT (envelope-from delphij) Message-Id: <200609270549.k8R5nLSR040036@repoman.freebsd.org> From: Xin LI Date: Wed, 27 Sep 2006 05:49:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/newfs mkfs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 05:49:21 -0000 delphij 2006-09-27 05:49:21 UTC FreeBSD src repository Modified files: sbin/newfs mkfs.c Log: Explicitly say which gid do we use as a fallback, when operator is not found. Suggested by: kensmith Revision Changes Path 1.91 +1 -1 src/sbin/newfs/mkfs.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 05:53:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A015B16A49E; Wed, 27 Sep 2006 05:53:23 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C2F543D45; Wed, 27 Sep 2006 05:53:23 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R5rNBL040335; Wed, 27 Sep 2006 05:53:23 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R5rNlr040334; Wed, 27 Sep 2006 05:53:23 GMT (envelope-from rafan) Message-Id: <200609270553.k8R5rNlr040334@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 27 Sep 2006 05:53:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/chinese/oxim Makefile distinfo ports/chinese/oxim/files patch-src-modules-chewing-chewing.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 05:53:23 -0000 rafan 2006-09-27 05:53:23 UTC FreeBSD ports repository Modified files: chinese/oxim Makefile distinfo Removed files: chinese/oxim/files patch-src-modules-chewing-chewing.c Log: - Update to 1.1.1 Revision Changes Path 1.10 +1 -1 ports/chinese/oxim/Makefile 1.5 +3 -3 ports/chinese/oxim/distinfo 1.3 +0 -438 ports/chinese/oxim/files/patch-src-modules-chewing-chewing.c (dead) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 06:38:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2C2316A407; Wed, 27 Sep 2006 06:38:55 +0000 (UTC) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE38843D46; Wed, 27 Sep 2006 06:38:54 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R6csED044992; Wed, 27 Sep 2006 06:38:54 GMT (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R6csJ0044991; Wed, 27 Sep 2006 06:38:54 GMT (envelope-from anholt) Message-Id: <200609270638.k8R6csJ0044991@repoman.freebsd.org> From: Eric Anholt Date: Wed, 27 Sep 2006 06:38:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/pci agp_i810.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 06:38:55 -0000 anholt 2006-09-27 06:38:54 UTC FreeBSD src repository Modified files: sys/pci agp_i810.c Log: Add support for 945G/GM AGP chipsets. The key problem was that the aperture size detection using the MSAC bit doesn't work -- the bit appears to be set even when it shouldn't be. Linux takes a different approach, testing for a bit of the GMADR (PCIR_BAR(2)) being set. However, as I don't think that's a safe way to test aperture size, we just allocate the resource and check its size. This also pointed out that agp_generic_attach hadn't been allocating our aperture resource, which may have caused problems in some cases. Also corrected is a minor copy-and-pasteo in an error case. PR: kern/103079 Submitted by: mnag Tested on: i945GM, i915GM MFC after: 2 weeks Revision Changes Path 1.39 +29 -13 src/sys/pci/agp_i810.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 06:51:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFBD416A4D0; Wed, 27 Sep 2006 06:51:33 +0000 (UTC) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from ms-dienst.rz.rwth-aachen.de (ms-1.rz.RWTH-Aachen.DE [134.130.3.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id E949243D53; Wed, 27 Sep 2006 06:51:32 +0000 (GMT) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from circe (circe.rz.RWTH-Aachen.DE [134.130.3.36]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0J6800D5WOD3CJ@ms-dienst.rz.rwth-aachen.de>; Wed, 27 Sep 2006 08:51:04 +0200 (MEST) Received: from talos.rz.RWTH-Aachen.DE ([134.130.3.22]) by circe (MailMonitor for SMTP v1.2.2 ) ; Wed, 27 Sep 2006 08:51:03 +0200 (MEST) Received: from bigboss.hitnet.rwth-aachen.de (bigspace.hitnet.RWTH-Aachen.DE [137.226.181.2]) by smarthost.rwth-aachen.de (8.13.7/8.13.1/1) with ESMTP id k8R6p2PH027700; Wed, 27 Sep 2006 08:51:02 +0200 Received: from haakonia.hitnet.rwth-aachen.de ([137.226.181.92]) by bigboss.hitnet.rwth-aachen.de with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1GSTG2-0006Jh-Sl; Wed, 27 Sep 2006 08:51:02 +0200 Received: by haakonia.hitnet.rwth-aachen.de (Postfix, from userid 1001) id 132DB3F40B; Tue, 26 Sep 2006 22:23:40 +0200 (CEST) Date: Tue, 26 Sep 2006 22:23:39 +0200 From: Christian Brueffer In-reply-to: <200609261959.k8QJxqkh068350@repoman.freebsd.org> To: Daniel Gerzo Message-id: <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> MIME-version: 1.0 Content-type: multipart/signed; boundary="u3/rZRmxL6MmkK24"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-disposition: inline User-Agent: Mutt/1.5.11 X-Operating-System: FreeBSD 6.2-PRERELEASE X-PGP-Key: http://people.FreeBSD.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 06:51:34 -0000 --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: > danger 2006-09-26 19:59:52 UTC >=20 > FreeBSD src repository (doc committer) >=20 > Modified files: > share/examples/mdoc example.4=20 > Log: > Remove second person from the sentece and rephrase a bit. > =20 > Approved by: trhodes (mentor), keramida (mentor) > =20 > Revision Changes Path > 1.26 +6 -8 src/share/examples/mdoc/example.4 I don't agree to these changes, see below for details (also I don't see whe= re exactly you removed second person usage, it's still being used in the new version). > | =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/exampl= e.4,v > | retrieving revision 1.25 > | retrieving revision 1.26 > | diff -u -p -r1.25 -r1.26 > | --- src/share/examples/mdoc/example.4 2006/09/18 15:18:54 1.25 > | +++ src/share/examples/mdoc/example.4 2006/09/26 19:59:52 1.26 > | @@ -22,7 +22,7 @@ > | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILIT= Y OF > | .\" SUCH DAMAGE. > | .\" > | -.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/e= xample.4,v 1.25 2006/09/18 15:18:54 ru Exp $ > | +.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/e= xample.4,v 1.26 2006/09/26 19:59:52 danger Exp $ > | .\" > | .\" Note: The date here should be updated whenever a non-trivial > | .\" change is made to the manual page. > | @@ -33,11 +33,9 @@ > | .Nm example > | .Nd "example device driver manual page" > | .Sh SYNOPSIS > | -To compile the > | -.Ns Nm > | -driver into the kernel, > | -place the following lines in the > | -kernel configuration file: > | +To enable support for > | +.Ns Nm , > | +place the following lines in the kernel configuration file: The formulation used before was much more accurate WRT the distinction we make between compiling something into the kernel and loading it as a module. If we load something as a module we also "enable support for it". > | .Bd -ragged -offset indent > | .Cd "device example" > | .Cd "options EXAMPLE_DEBUG" > | @@ -45,9 +43,9 @@ kernel configuration file: > | .Pp > | Alternatively, to load the > | .Ns Nm > | -driver as a > | -module at boot time, place the following line in > | -.Xr loader.conf 5 : > | +as a module at boot time, add the following line into the > | +.Xr loader.conf 5 > | +file: > | .Bd -literal -offset indent > | example_load=3D"YES" > | .Ed >=20 Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm driver? The .Nm utility? It's just incorrect to rely on context here and it makes the sentence sound really awkward. IMHO the SYNOPSIS section in section 4 manpages is kind of a standard now, as it's being used in the majority of section 4 manpages. Changes to it should not be made without _good_ reason and with a sweep through all manpages that use it. Among other things, the purpose of this section is to achieve consistency across section 4 manpages. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --u3/rZRmxL6MmkK24 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGYxLbHYXjKDtmC0RAlwKAJ4moipL2zeAuIlKEIBwSK0gn/50RQCgxgET NnEER1136I5AXhji8/PxSmk= =kUH5 -----END PGP SIGNATURE----- --u3/rZRmxL6MmkK24-- From owner-cvs-all@FreeBSD.ORG Wed Sep 27 06:59:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB9B216A412; Wed, 27 Sep 2006 06:59:12 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9824143D53; Wed, 27 Sep 2006 06:59:12 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R6xCKa045987; Wed, 27 Sep 2006 06:59:12 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R6xCx7045986; Wed, 27 Sep 2006 06:59:12 GMT (envelope-from clsung) Message-Id: <200609270659.k8R6xCx7045986@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 06:59:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/p5-IMAP-Client Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 06:59:13 -0000 clsung 2006-09-27 06:59:12 UTC FreeBSD ports repository Modified files: mail/p5-IMAP-Client Makefile distinfo Log: - Update to 0.12 - I'll maintain it PR: ports/103630 Submitted by: maintainer (Gea-Suan Lin) Revision Changes Path 1.3 +4 -2 ports/mail/p5-IMAP-Client/Makefile 1.2 +3 -3 ports/mail/p5-IMAP-Client/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 07:03:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 975A716A40F; Wed, 27 Sep 2006 07:03:05 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7CB143D58; Wed, 27 Sep 2006 07:03:00 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R730GC046296; Wed, 27 Sep 2006 07:03:00 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R730q5046295; Wed, 27 Sep 2006 07:03:00 GMT (envelope-from erwin) Message-Id: <200609270703.k8R730q5046295@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 27 Sep 2006 07:03:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/php5-imlib2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 07:03:05 -0000 erwin 2006-09-27 07:03:00 UTC FreeBSD ports repository Modified files: graphics/php5-imlib2 Makefile Log: make PKGNAMEPREFIX, IGNORE_WITH_PHP and DEFAULT_PHP_VER overridable to fix the php4-imlib2 slave port and INDEX builds. Revision Changes Path 1.3 +3 -3 ports/graphics/php5-imlib2/Makefile From owner-cvs-all@FreeBSD.ORG Wed Sep 27 07:40:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A72116A407; Wed, 27 Sep 2006 07:40:56 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-0-0-cust107.cdif.cable.ntl.com [81.104.168.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id C39BE43D53; Wed, 27 Sep 2006 07:40:55 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GSU2I-0004jq-Ae; Wed, 27 Sep 2006 08:40:54 +0100 Date: Wed, 27 Sep 2006 08:40:54 +0100 From: Ceri Davies To: Christian Brueffer Message-ID: <20060927074054.GO54669@submonkey.net> Mail-Followup-To: Ceri Davies , Christian Brueffer , Daniel Gerzo , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Q59ABw34pTSIagmi" Content-Disposition: inline In-Reply-To: <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.13 (2006-08-11) Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, Daniel Gerzo , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 07:40:56 -0000 --Q59ABw34pTSIagmi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 26, 2006 at 10:23:39PM +0200, Christian Brueffer wrote: > On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: > > danger 2006-09-26 19:59:52 UTC > >=20 > > FreeBSD src repository (doc committer) > >=20 > > Modified files: > > share/examples/mdoc example.4=20 > > Log: > > Remove second person from the sentece and rephrase a bit. > > =20 > > Approved by: trhodes (mentor), keramida (mentor) > > =20 > > Revision Changes Path > > 1.26 +6 -8 src/share/examples/mdoc/example.4 >=20 > I don't agree to these changes, see below for details (also I don't see w= here > exactly you removed second person usage, it's still being used in the new > version). >=20 > > | =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/exam= ple.4,v > > | retrieving revision 1.25 > > | retrieving revision 1.26 > > | diff -u -p -r1.25 -r1.26 > > | --- src/share/examples/mdoc/example.4 2006/09/18 15:18:54 1.25 > > | +++ src/share/examples/mdoc/example.4 2006/09/26 19:59:52 1.26 > > | @@ -22,7 +22,7 @@ > > | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBIL= ITY OF > > | .\" SUCH DAMAGE. > > | .\" > > | -.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc= /example.4,v 1.25 2006/09/18 15:18:54 ru Exp $ > > | +.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc= /example.4,v 1.26 2006/09/26 19:59:52 danger Exp $ > > | .\" > > | .\" Note: The date here should be updated whenever a non-trivial > > | .\" change is made to the manual page. > > | @@ -33,11 +33,9 @@ > > | .Nm example > > | .Nd "example device driver manual page" > > | .Sh SYNOPSIS > > | -To compile the > > | -.Ns Nm > > | -driver into the kernel, > > | -place the following lines in the > > | -kernel configuration file: > > | +To enable support for > > | +.Ns Nm , > > | +place the following lines in the kernel configuration file: >=20 > The formulation used before was much more accurate WRT the distinction > we make between compiling something into the kernel and loading it as a > module. If we load something as a module we also "enable support for > it". >=20 > > | .Bd -ragged -offset indent > > | .Cd "device example" > > | .Cd "options EXAMPLE_DEBUG" > > | @@ -45,9 +43,9 @@ kernel configuration file: > > | .Pp > > | Alternatively, to load the > > | .Ns Nm > > | -driver as a > > | -module at boot time, place the following line in > > | -.Xr loader.conf 5 : > > | +as a module at boot time, add the following line into the > > | +.Xr loader.conf 5 > > | +file: > > | .Bd -literal -offset indent > > | example_load=3D"YES" > > | .Ed > >=20 >=20 > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > driver? The .Nm utility? It's just incorrect to rely on context here > and it makes the sentence sound really awkward. >=20 > IMHO the SYNOPSIS section in section 4 manpages is kind of a standard > now, as it's being used in the majority of section 4 manpages. > Changes to it should not be made without _good_ reason and with a sweep > through all manpages that use it. Among other things, the purpose of > this section is to achieve consistency across section 4 manpages. I agree. Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --Q59ABw34pTSIagmi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGisGocfcwTS3JF8RAp6OAJ0WuxupMi61WEDWFAfGVwN74/K8KwCcDZLW 0zCnhko3Bylgp97/f+tT/CI= =Ku/r -----END PGP SIGNATURE----- --Q59ABw34pTSIagmi-- From owner-cvs-all@FreeBSD.ORG Wed Sep 27 07:41:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B03716A51A; Wed, 27 Sep 2006 07:41:33 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7829643D53; Wed, 27 Sep 2006 07:41:32 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8R7fU1K019843 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 03:41:31 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 03:41:24 -0400 From: Tom Rhodes To: Christian Brueffer Message-Id: <20060927034124.2c57b517.trhodes@FreeBSD.org> In-Reply-To: <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 07:41:33 -0000 On Tue, 26 Sep 2006 22:23:39 +0200 Christian Brueffer wrote: > On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: > > danger 2006-09-26 19:59:52 UTC > > > > FreeBSD src repository (doc committer) > > > > Modified files: > > share/examples/mdoc example.4 > > Log: > > Remove second person from the sentece and rephrase a bit. > > > > Approved by: trhodes (mentor), keramida (mentor) > > > > Revision Changes Path > > 1.26 +6 -8 src/share/examples/mdoc/example.4 > > I don't agree to these changes, see below for details (also I don't see where > exactly you removed second person usage, it's still being used in the new > version). > > > | =================================================================== > > | RCS file: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/example.4,v > > | retrieving revision 1.25 > > | retrieving revision 1.26 > > | diff -u -p -r1.25 -r1.26 > > | --- src/share/examples/mdoc/example.4 2006/09/18 15:18:54 1.25 > > | +++ src/share/examples/mdoc/example.4 2006/09/26 19:59:52 1.26 > > | @@ -22,7 +22,7 @@ > > | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF > > | .\" SUCH DAMAGE. > > | .\" > > | -.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/example.4,v 1.25 2006/09/18 15:18:54 ru Exp $ > > | +.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/example.4,v 1.26 2006/09/26 19:59:52 danger Exp $ > > | .\" > > | .\" Note: The date here should be updated whenever a non-trivial > > | .\" change is made to the manual page. > > | @@ -33,11 +33,9 @@ > > | .Nm example > > | .Nd "example device driver manual page" > > | .Sh SYNOPSIS > > | -To compile the > > | -.Ns Nm > > | -driver into the kernel, > > | -place the following lines in the > > | -kernel configuration file: > > | +To enable support for > > | +.Ns Nm , > > | +place the following lines in the kernel configuration file: > > The formulation used before was much more accurate WRT the distinction > we make between compiling something into the kernel and loading it as a > module. If we load something as a module we also "enable support for > it". What about in cases where other hoops must be jumped before the driver/feature/whatever is really supported? > > > | .Bd -ragged -offset indent > > | .Cd "device example" > > | .Cd "options EXAMPLE_DEBUG" > > | @@ -45,9 +43,9 @@ kernel configuration file: > > | .Pp > > | Alternatively, to load the > > | .Ns Nm > > | -driver as a > > | -module at boot time, place the following line in > > | -.Xr loader.conf 5 : > > | +as a module at boot time, add the following line into the > > | +.Xr loader.conf 5 > > | +file: > > | .Bd -literal -offset indent > > | example_load="YES" > > | .Ed > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > driver? The .Nm utility? It's just incorrect to rely on context here > and it makes the sentence sound really awkward. Leaving driver here is wrong. > > IMHO the SYNOPSIS section in section 4 manpages is kind of a standard > now, as it's being used in the majority of section 4 manpages. > Changes to it should not be made without _good_ reason and with a sweep > through all manpages that use it. Among other things, the purpose of > this section is to achieve consistency across section 4 manpages. The purpose of this file is to provide an example for people who are going to write section four manual pages; however, no one really "has" to follow this "lead." -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Wed Sep 27 07:51:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5D7616A403; Wed, 27 Sep 2006 07:51:37 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 488CC43D5C; Wed, 27 Sep 2006 07:51:37 +0000 (GMT) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id ACACF209B; Wed, 27 Sep 2006 09:51:33 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by tim.des.no (Postfix) with ESMTP id 98F6C2099; Wed, 27 Sep 2006 09:51:33 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id 8AF7DB812; Wed, 27 Sep 2006 09:51:33 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: SANETO Takanori References: <200609130838.k8D8cnW9063228@repoman.freebsd.org> <4519DD53.8010005@ba2.so-net.ne.jp> Date: Wed, 27 Sep 2006 09:51:33 +0200 In-Reply-To: <4519DD53.8010005@ba2.so-net.ne.jp> (SANETO Takanori's message of "Wed, 27 Sep 2006 11:09:23 +0900") Message-ID: <86wt7ppx16.fsf@dwp.des.no> User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountcritlocal mountlate src/sbin/mount mount.8 mount.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 07:51:37 -0000 SANETO Takanori writes: > As for mount.c, following part should be MFC'ed as well. Thanks, I don't understand how it was left out. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Wed Sep 27 07:53:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FDE616A407; Wed, 27 Sep 2006 07:53:16 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-0-0-cust107.cdif.cable.ntl.com [81.104.168.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id D685D43D45; Wed, 27 Sep 2006 07:53:15 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GSUEF-0004i3-0a; Wed, 27 Sep 2006 08:53:15 +0100 Date: Wed, 27 Sep 2006 08:53:14 +0100 From: Ceri Davies To: Tom Rhodes Message-ID: <20060927075314.GQ54669@submonkey.net> Mail-Followup-To: Ceri Davies , Tom Rhodes , Christian Brueffer , danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LQAwcd5tHl0Qlnzi" Content-Disposition: inline In-Reply-To: <20060927034124.2c57b517.trhodes@FreeBSD.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.13 (2006-08-11) Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Christian Brueffer Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 07:53:16 -0000 --LQAwcd5tHl0Qlnzi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > On Tue, 26 Sep 2006 22:23:39 +0200 > Christian Brueffer wrote: > > > | @@ -33,11 +33,9 @@ > > > | .Nm example > > > | .Nd "example device driver manual page" > > > | .Sh SYNOPSIS > > > | -To compile the > > > | -.Ns Nm > > > | -driver into the kernel, > > > | -place the following lines in the > > > | -kernel configuration file: > > > | +To enable support for > > > | +.Ns Nm , > > > | +place the following lines in the kernel configuration file: > >=20 > > The formulation used before was much more accurate WRT the distinction > > we make between compiling something into the kernel and loading it as a > > module. If we load something as a module we also "enable support for > > it". >=20 > What about in cases where other hoops must be jumped before the > driver/feature/whatever is really supported? They can be special cased in the real manual. In the wider sense, kldload is the easiest way to enable support for something, and I know that I'm personally well past encouraging users to recompile the kernel just to get, for example, sound working when a simple kldload does the job just as well in most cases. > > > | .Bd -ragged -offset indent > > > | .Cd "device example" > > > | .Cd "options EXAMPLE_DEBUG" > > > | @@ -45,9 +43,9 @@ kernel configuration file: > > > | .Pp > > > | Alternatively, to load the > > > | .Ns Nm > > > | -driver as a > > > | -module at boot time, place the following line in > > > | -.Xr loader.conf 5 : > > > | +as a module at boot time, add the following line into the > > > | +.Xr loader.conf 5 > > > | +file: > > > | .Bd -literal -offset indent > > > | example_load=3D"YES" > > > | .Ed > > >=20 > >=20 > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > > driver? The .Nm utility? It's just incorrect to rely on context here > > and it makes the sentence sound really awkward. >=20 > Leaving driver here is wrong. Not if you also leave the word "the" before .Nm. Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --LQAwcd5tHl0Qlnzi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGi3qocfcwTS3JF8RAir9AKCaBizkXRgF2V6Eb3hQzTy6P2rg2wCaAurt Ya+U8528FArx5VyvBFb6iRg= =4Sc0 -----END PGP SIGNATURE----- --LQAwcd5tHl0Qlnzi-- From owner-cvs-all@FreeBSD.ORG Wed Sep 27 07:54:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 613D716A415; Wed, 27 Sep 2006 07:54:48 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7976143D49; Wed, 27 Sep 2006 07:54:43 +0000 (GMT) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 1D7CE209B; Wed, 27 Sep 2006 09:54:40 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by tim.des.no (Postfix) with ESMTP id 8C7422099; Wed, 27 Sep 2006 09:54:39 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id 77B15B80E; Wed, 27 Sep 2006 09:54:39 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: SANETO Takanori References: <200609130838.k8D8cnW9063228@repoman.freebsd.org> <4519DD53.8010005@ba2.so-net.ne.jp> <86wt7ppx16.fsf@dwp.des.no> Date: Wed, 27 Sep 2006 09:54:39 +0200 In-Reply-To: <86wt7ppx16.fsf@dwp.des.no> (Dag-Erling =?iso-8859-1?Q?Sm=F8r?= =?iso-8859-1?Q?grav's?= message of "Wed, 27 Sep 2006 09:51:33 +0200") Message-ID: <86odt1pww0.fsf@dwp.des.no> User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountcritlocal mountlate src/sbin/mount mount.8 mount.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 07:54:48 -0000 des@des.no (Dag-Erling Sm=F8rgrav) writes: > SANETO Takanori writes: > > As for mount.c, following part should be MFC'ed as well. > Thanks, I don't understand how it was left out. Uh, wait, it was left out for a reason: there is no equivalent code in RELENG_6. The hunk in question removes "late" from the list of options passed to nmount(), which isn't used in RELENG_6. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Wed Sep 27 07:59:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4C9916A412; Wed, 27 Sep 2006 07:59:26 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 816AC43D58; Wed, 27 Sep 2006 07:59:26 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R7xQcN050328; Wed, 27 Sep 2006 07:59:26 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R7xQWO050327; Wed, 27 Sep 2006 07:59:26 GMT (envelope-from maho) Message-Id: <200609270759.k8R7xQWO050327@repoman.freebsd.org> From: Maho Nakata Date: Wed, 27 Sep 2006 07:59:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/ooo-build Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 07:59:26 -0000 maho 2006-09-27 07:59:26 UTC FreeBSD ports repository Modified files: editors/ooo-build Makefile Log: Fix dependency Submitted by: kris via pointyhat Revision Changes Path 1.18 +1 -0 ports/editors/ooo-build/Makefile From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:02:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8081616A403; Wed, 27 Sep 2006 08:02:41 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 394DD43D64; Wed, 27 Sep 2006 08:02:35 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R82ZSv050567; Wed, 27 Sep 2006 08:02:35 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R82Za7050560; Wed, 27 Sep 2006 08:02:35 GMT (envelope-from rafan) Message-Id: <200609270802.k8R82Za7050560@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 27 Sep 2006 08:02:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/xemacs21-mule Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:02:41 -0000 rafan 2006-09-27 08:02:35 UTC FreeBSD ports repository Modified files: editors/xemacs21-mule Makefile Log: - Bump PORTREVISION for latest pkg-plist changes Approved by: anray (maintainer) Revision Changes Path 1.88 +1 -1 ports/editors/xemacs21-mule/Makefile From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:04:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A911816A40F; Wed, 27 Sep 2006 08:04:51 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54C5043D46; Wed, 27 Sep 2006 08:04:51 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R84pTa051864; Wed, 27 Sep 2006 08:04:51 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R84odv051863; Wed, 27 Sep 2006 08:04:50 GMT (envelope-from clsung) Message-Id: <200609270804.k8R84odv051863@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 08:04:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/converters Makefile ports/converters/p5-Convert-Bencode_XS Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:04:51 -0000 clsung 2006-09-27 08:04:50 UTC FreeBSD ports repository Modified files: converters Makefile Added files: converters/p5-Convert-Bencode_XS Makefile distinfo pkg-descr pkg-plist Log: Add p5-Convert-Bencode_XS 0.05, faster conversions to/from Bencode format. PR: ports/102395 Submitted by: Gea-Suan Lin Revision Changes Path 1.134 +1 -0 ports/converters/Makefile 1.1 +34 -0 ports/converters/p5-Convert-Bencode_XS/Makefile (new) 1.1 +3 -0 ports/converters/p5-Convert-Bencode_XS/distinfo (new) 1.1 +10 -0 ports/converters/p5-Convert-Bencode_XS/pkg-descr (new) 1.1 +11 -0 ports/converters/p5-Convert-Bencode_XS/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:05:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 998CF16A403; Wed, 27 Sep 2006 08:05:26 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C11C43D55; Wed, 27 Sep 2006 08:05:26 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R85Qcj051943; Wed, 27 Sep 2006 08:05:26 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R85QtS051942; Wed, 27 Sep 2006 08:05:26 GMT (envelope-from clsung) Message-Id: <200609270805.k8R85QtS051942@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 08:05:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:05:26 -0000 clsung 2006-09-27 08:05:26 UTC FreeBSD ports repository Modified files: . modules Log: p5-Convert-Bencode_XS --> ports/converters/p5-Convert-Bencode_XS Revision Changes Path 1.16280 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:14:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F21C16A407; Wed, 27 Sep 2006 08:14:42 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50E1043D68; Wed, 27 Sep 2006 08:14:34 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.4/8.13.3) with ESMTP id k8R8EXpd068509 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 27 Sep 2006 12:14:33 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k8R8EXWC068508; Wed, 27 Sep 2006 12:14:33 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Wed, 27 Sep 2006 12:14:32 +0400 From: Gleb Smirnoff To: Maxim Sobolev Message-ID: <20060927081432.GH59833@FreeBSD.org> References: <200609262326.k8QNQrtW098027@repoman.freebsd.org> <4519BE2F.4000503@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <4519BE2F.4000503@FreeBSD.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Paolo Pisati Subject: Re: cvs commit: src/etc Makefile libalias.conf src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/lib/libalias/modules/cuseeme Makefile src/lib/libalias/modules/dummy ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:14:42 -0000 On Tue, Sep 26, 2006 at 04:56:31PM -0700, Maxim Sobolev wrote: M> Looks cool. Do you have any numbers comparing performance of the old M> libalias and a new one running in kernel/userland mode? AFAIK, this change doesn't affect performance of the userland NAT. The main aim of this step was not performance, but separation of specific protocol NATing into separate pluggable modules. The kernel nat (I mean ng_nat) is probably pessimized be this change, because Paolo added locking to the list of plugins, this adds two atomic ops per packet. I hope, Paolo will rethink this. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:15:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3619316A417; Wed, 27 Sep 2006 08:15:49 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8134A43D6A; Wed, 27 Sep 2006 08:15:40 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8R8FYWK020094 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 04:15:37 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 04:15:26 -0400 From: Tom Rhodes To: Ceri Davies Message-Id: <20060927041526.6b33a348.trhodes@FreeBSD.org> In-Reply-To: <20060927075314.GQ54669@submonkey.net> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:15:49 -0000 On Wed, 27 Sep 2006 08:53:14 +0100 Ceri Davies wrote: > On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > > On Tue, 26 Sep 2006 22:23:39 +0200 > > Christian Brueffer wrote: > > > > > | @@ -33,11 +33,9 @@ > > > > | .Nm example > > > > | .Nd "example device driver manual page" > > > > | .Sh SYNOPSIS > > > > | -To compile the > > > > | -.Ns Nm > > > > | -driver into the kernel, > > > > | -place the following lines in the > > > > | -kernel configuration file: > > > > | +To enable support for > > > > | +.Ns Nm , > > > > | +place the following lines in the kernel configuration file: > > > > > > The formulation used before was much more accurate WRT the distinction > > > we make between compiling something into the kernel and loading it as a > > > module. If we load something as a module we also "enable support for > > > it". > > > > What about in cases where other hoops must be jumped before the > > driver/feature/whatever is really supported? > > They can be special cased in the real manual. In the wider sense, > kldload is the easiest way to enable support for something, and I know > that I'm personally well past encouraging users to recompile the kernel > just to get, for example, sound working when a simple kldload does the > job just as well in most cases. That is of course that "something" has a module. ;) Seriously though, why handle one case any differently than another? We should be fair here, and the above version will work for anything ... although, to be exact, we should probably use: "place the following line(s) in the kernel configuration file:" > > > > > | .Bd -ragged -offset indent > > > > | .Cd "device example" > > > > | .Cd "options EXAMPLE_DEBUG" > > > > | @@ -45,9 +43,9 @@ kernel configuration file: > > > > | .Pp > > > > | Alternatively, to load the > > > > | .Ns Nm > > > > | -driver as a > > > > | -module at boot time, place the following line in > > > > | -.Xr loader.conf 5 : > > > > | +as a module at boot time, add the following line into the > > > > | +.Xr loader.conf 5 > > > > | +file: > > > > | .Bd -literal -offset indent > > > > | example_load="YES" > > > > | .Ed > > > > > > > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > > > driver? The .Nm utility? It's just incorrect to rely on context here > > > and it makes the sentence sound really awkward. > > > > Leaving driver here is wrong. > > Not if you also leave the word "the" before .Nm. Then we should bloat it to handle "the XXX driver," "the XXX subsystem," "the XXX system," etc. To be honest, the sentence sounds better to me this way. And putting "driver" back in just does what Christian says it's there to prevent. We should not really "rely on the context" here, so I agree with Christian. We shouldn't believe that it will always be a "driver." In any sense, it's still just an "example." We are arguing over an "example" people. -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:19:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E18016A417; Wed, 27 Sep 2006 08:19:38 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1863E43D79; Wed, 27 Sep 2006 08:19:35 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8JYjr052666; Wed, 27 Sep 2006 08:19:34 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8JYN8052665; Wed, 27 Sep 2006 08:19:34 GMT (envelope-from clsung) Message-Id: <200609270819.k8R8JYN8052665@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 08:19:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics Makefile ports/graphics/p5-Image-Caa Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:19:38 -0000 clsung 2006-09-27 08:19:34 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/p5-Image-Caa Makefile distinfo pkg-descr pkg-plist Log: Add p5-Image-Caa 1.01, colored ASCII Art. PR: ports/102469 Submitted by: Gea-Suan Lin Revision Changes Path 1.988 +1 -0 ports/graphics/Makefile 1.1 +35 -0 ports/graphics/p5-Image-Caa/Makefile (new) 1.1 +3 -0 ports/graphics/p5-Image-Caa/distinfo (new) 1.1 +6 -0 ports/graphics/p5-Image-Caa/pkg-descr (new) 1.1 +23 -0 ports/graphics/p5-Image-Caa/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:19:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFE2716A407; Wed, 27 Sep 2006 08:19:49 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF16143D64; Wed, 27 Sep 2006 08:19:45 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8Jjh0052704; Wed, 27 Sep 2006 08:19:45 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8Jjeh052703; Wed, 27 Sep 2006 08:19:45 GMT (envelope-from clsung) Message-Id: <200609270819.k8R8Jjeh052703@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 08:19:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:19:49 -0000 clsung 2006-09-27 08:19:45 UTC FreeBSD ports repository Modified files: . modules Log: p5-Image-Caa --> ports/graphics/p5-Image-Caa Revision Changes Path 1.16281 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:22:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A05D16A407; Wed, 27 Sep 2006 08:22:46 +0000 (UTC) (envelope-from danger@rulez.sk) Received: from mail.rulez.sk (DaEmoN.RuLeZ.sK [84.16.32.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id E401143D53; Wed, 27 Sep 2006 08:22:43 +0000 (GMT) (envelope-from danger@rulez.sk) Received: from localhost (localhost [127.0.0.1]) by mail.rulez.sk (Postfix) with ESMTP id 883FF1CD1A; Wed, 27 Sep 2006 10:22:42 +0200 (CEST) X-Virus-Scanned: by amavisd-new at mail.rulez.sk X-Spam-Score: -1.745 X-Spam-Level: X-Spam-Status: No, score=-1.745 tagged_above=-999 required=5 tests=[ALL_TRUSTED=-1.8, AWL=1.693, BAYES_00=-2.599, NO_REAL_NAME=0.961] Received: by mail.rulez.sk (Postfix, from userid 80) id E56A21CC6D; Wed, 27 Sep 2006 10:22:34 +0200 (CEST) Received: from cpuxp-d08.cpu.elf.stuba.sk (cpuxp-d08.cpu.elf.stuba.sk [147.175.100.85]) by mail.rulez.sk (Horde MIME library) with HTTP; Wed, 27 Sep 2006 10:22:34 +0200 Message-ID: <20060927102234.dsupin91usswg4s0@mail.rulez.sk> Date: Wed, 27 Sep 2006 10:22:34 +0200 From: danger@rulez.sk To: Christian Brueffer References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> In-Reply-To: <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.1) Cc: cvs-src@FreeBSD.org, Daniel Gerzo , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:22:46 -0000 Quoting Christian Brueffer : > On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: >> danger 2006-09-26 19:59:52 UTC >> >> FreeBSD src repository (doc committer) >> >> Modified files: >> share/examples/mdoc example.4 >> Log: >> Remove second person from the sentece and rephrase a bit. >> >> Approved by: trhodes (mentor), keramida (mentor) >> >> Revision Changes Path >> 1.26 +6 -8 src/share/examples/mdoc/example.4 > > I don't agree to these changes, see below for details (also I don't see wh= ere > exactly you removed second person usage, it's still being used in the new > version). We want to aviod to use words like "you", "your" and so on. I have =20 talked about it with Ruslan and my mentors. >> | -To compile the >> | -.Ns Nm >> | -driver into the kernel, >> | -place the following lines in the >> | -kernel configuration file: >> | +To enable support for >> | +.Ns Nm , >> | +place the following lines in the kernel configuration file: > > The formulation used before was much more accurate WRT the distinction > we make between compiling something into the kernel and loading it as a > module. If we load something as a module we also "enable support for > it". I think it's certainly clear to users that they can either enable =20 support for something in kernel _or_ load it as a module which would =20 bring that support without need of kernel recompilation. > >> | .Bd -ragged -offset indent >> | .Cd "device example" >> | .Cd "options EXAMPLE_DEBUG" >> | @@ -45,9 +43,9 @@ kernel configuration file: >> | .Pp >> | Alternatively, to load the >> | .Ns Nm >> | -driver as a >> | -module at boot time, place the following line in >> | -.Xr loader.conf 5 : >> | +as a module at boot time, add the following line into the >> | +.Xr loader.conf 5 >> | +file: >> | .Bd -literal -offset indent >> | example_load=3D"YES" >> | .Ed >> > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > driver? The .Nm utility? It's just incorrect to rely on context here > and it makes the sentence sound really awkward. Yes, I know about this issue as it was pointed by Ruslan a few hours =20 after I have committed it (note, that I had an approval from my =20 mentors). Tom is native and he told that while it does not really =20 sounds correct, it is correct English, but depends on the context as =20 you have said. I have mailed my mentors and Ruslan with re-worded =20 sentence that should fix that. > > IMHO the SYNOPSIS section in section 4 manpages is kind of a standard > now, as it's being used in the majority of section 4 manpages. > Changes to it should not be made without _good_ reason and with a sweep > through all manpages that use it. Among other things, the purpose of > this section is to achieve consistency across section 4 manpages. > It is standard that should be fixed :-) and I'm about to do that; I =20 wanted to commit the change to the example.4 first and after that =20 start with changes to the affected section 4 manual pages. But if there are more people that think that this change is wrong, I'm =20 not going to argue about that or being upset or something, I will =20 revert the change and go ahead and start working on something else. > - Christian --=20 Best regards, Daniel -------------------------------------------------------- This message was sent from rulez.sk webamil using Horde. From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:25:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 337A116A407; Wed, 27 Sep 2006 08:25:56 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 418EA43D76; Wed, 27 Sep 2006 08:25:54 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8PshK053092; Wed, 27 Sep 2006 08:25:54 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8Pstj053091; Wed, 27 Sep 2006 08:25:54 GMT (envelope-from stas) Message-Id: <200609270825.k8R8Pstj053091@repoman.freebsd.org> From: Stanislav Sedov Date: Wed, 27 Sep 2006 08:25:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:25:56 -0000 stas 2006-09-27 08:25:53 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: - Add my birthday entry to the chronicle. Approved by: sem (mentor) Revision Changes Path 1.186 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:28:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0A6B16A40F; Wed, 27 Sep 2006 08:28:47 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53AFD43D58; Wed, 27 Sep 2006 08:28:47 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8SlxL053226; Wed, 27 Sep 2006 08:28:47 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8SlUW053225; Wed, 27 Sep 2006 08:28:47 GMT (envelope-from skv) Message-Id: <200609270828.k8R8SlUW053225@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 27 Sep 2006 08:28:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-XML-LibXML Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:28:47 -0000 skv 2006-09-27 08:28:47 UTC FreeBSD ports repository Modified files: textproc/p5-XML-LibXML Makefile distinfo Log: Update to 1.61003 Changes: http://search.cpan.org/src/PAJAS/XML-LibXML-1.61003/Changes Revision Changes Path 1.26 +7 -4 ports/textproc/p5-XML-LibXML/Makefile 1.17 +3 -3 ports/textproc/p5-XML-LibXML/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:35:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D201E16A412; Wed, 27 Sep 2006 08:35:42 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 259A143D67; Wed, 27 Sep 2006 08:35:41 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8ZfEo053675; Wed, 27 Sep 2006 08:35:41 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8ZekV053674; Wed, 27 Sep 2006 08:35:40 GMT (envelope-from clsung) Message-Id: <200609270835.k8R8ZekV053674@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 08:35:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net Makefile ports/net/p5-Net-NBsocket Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:35:42 -0000 clsung 2006-09-27 08:35:40 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/p5-Net-NBsocket Makefile distinfo pkg-descr pkg-plist Log: Add p5-Net-NBsocket 0.13, non-Blocking Sockets. PR: ports/103110 Submitted by: Gea-Suan Lin Revision Changes Path 1.1740 +1 -0 ports/net/Makefile 1.1 +22 -0 ports/net/p5-Net-NBsocket/Makefile (new) 1.1 +3 -0 ports/net/p5-Net-NBsocket/distinfo (new) 1.1 +4 -0 ports/net/p5-Net-NBsocket/pkg-descr (new) 1.1 +22 -0 ports/net/p5-Net-NBsocket/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:35:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0423416A47E; Wed, 27 Sep 2006 08:35:54 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5BF743D55; Wed, 27 Sep 2006 08:35:53 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8ZrNu053713; Wed, 27 Sep 2006 08:35:53 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8Zruv053712; Wed, 27 Sep 2006 08:35:53 GMT (envelope-from clsung) Message-Id: <200609270835.k8R8Zruv053712@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 08:35:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:35:54 -0000 clsung 2006-09-27 08:35:53 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-NBsocket --> ports/net/p5-Net-NBsocket Revision Changes Path 1.16282 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:38:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ECB816A403; Wed, 27 Sep 2006 08:38:42 +0000 (UTC) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from ms-dienst.rz.rwth-aachen.de (ms-1.rz.RWTH-Aachen.DE [134.130.3.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D3E043D46; Wed, 27 Sep 2006 08:38:41 +0000 (GMT) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from circe (circe.rz.RWTH-Aachen.DE [134.130.3.36]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0J6800HVYTAMKQ@ms-dienst.rz.rwth-aachen.de>; Wed, 27 Sep 2006 10:37:35 +0200 (MEST) Received: from talos.rz.RWTH-Aachen.DE ([134.130.3.22]) by circe (MailMonitor for SMTP v1.2.2 ) ; Wed, 27 Sep 2006 10:37:34 +0200 (MEST) Received: from bigboss.hitnet.rwth-aachen.de (bigspace.hitnet.RWTH-Aachen.DE [137.226.181.2]) by smarthost.rwth-aachen.de (8.13.7/8.13.1/1) with ESMTP id k8R8bY4s011378; Wed, 27 Sep 2006 10:37:34 +0200 Received: from haakonia.hitnet.rwth-aachen.de ([137.226.181.92]) by bigboss.hitnet.rwth-aachen.de with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1GSUv8-0000Xu-Av; Wed, 27 Sep 2006 10:37:34 +0200 Received: by haakonia.hitnet.rwth-aachen.de (Postfix, from userid 1001) id 00C933F40A; Wed, 27 Sep 2006 10:37:33 +0200 (CEST) Date: Wed, 27 Sep 2006 10:37:33 +0200 From: Christian Brueffer In-reply-to: <20060927041526.6b33a348.trhodes@FreeBSD.org> To: Tom Rhodes Message-id: <20060927083733.GA1941@haakonia.hitnet.RWTH-Aachen.DE> MIME-version: 1.0 Content-type: multipart/signed; boundary="/04w6evG8XlLl3ft"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-disposition: inline User-Agent: Mutt/1.5.11 X-Operating-System: FreeBSD 6.2-PRERELEASE X-PGP-Key: http://people.FreeBSD.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, danger@FreeBSD.org, brueffer@FreeBSD.org, Ceri Davies Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:38:42 -0000 --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 04:15:26AM -0400, Tom Rhodes wrote: > On Wed, 27 Sep 2006 08:53:14 +0100 > Ceri Davies wrote: >=20 > > On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > > > On Tue, 26 Sep 2006 22:23:39 +0200 > > > Christian Brueffer wrote: > >=20 > > > > > | @@ -33,11 +33,9 @@ > > > > > | .Nm example > > > > > | .Nd "example device driver manual page" > > > > > | .Sh SYNOPSIS > > > > > | -To compile the > > > > > | -.Ns Nm > > > > > | -driver into the kernel, > > > > > | -place the following lines in the > > > > > | -kernel configuration file: > > > > > | +To enable support for > > > > > | +.Ns Nm , > > > > > | +place the following lines in the kernel configuration file: > > > >=20 > > > > The formulation used before was much more accurate WRT the distinct= ion > > > > we make between compiling something into the kernel and loading it = as a > > > > module. If we load something as a module we also "enable support f= or > > > > it". > > >=20 > > > What about in cases where other hoops must be jumped before the > > > driver/feature/whatever is really supported? > >=20 > > They can be special cased in the real manual. In the wider sense, > > kldload is the easiest way to enable support for something, and I know > > that I'm personally well past encouraging users to recompile the kernel > > just to get, for example, sound working when a simple kldload does the > > job just as well in most cases. >=20 > That is of course that "something" has a module. ;) >=20 > Seriously though, why handle one case any differently than > another? We should be fair here, and the above version will > work for anything ... although, to be exact, we should probably > use: >=20 I don't understand your reasoning for using "to enable support". Using this would actually be wrong if there's more to do than recompiling the kernel, as that alone would not really enable support for $SOMETHING. OTOH if you have to e.g. set a sysctl value to enable this support, this would likely have to be done for the module case as well, so the old formulation would be better. Care to elaborate? > "place the following line(s) in the kernel configuration file:" >=20 >=20 > >=20 > > > > > | .Bd -ragged -offset indent > > > > > | .Cd "device example" > > > > > | .Cd "options EXAMPLE_DEBUG" > > > > > | @@ -45,9 +43,9 @@ kernel configuration file: > > > > > | .Pp > > > > > | Alternatively, to load the > > > > > | .Ns Nm > > > > > | -driver as a > > > > > | -module at boot time, place the following line in > > > > > | -.Xr loader.conf 5 : > > > > > | +as a module at boot time, add the following line into the > > > > > | +.Xr loader.conf 5 > > > > > | +file: > > > > > | .Bd -literal -offset indent > > > > > | example_load=3D"YES" > > > > > | .Ed > > > > >=20 > > > >=20 > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the= .Nm > > > > driver? The .Nm utility? It's just incorrect to rely on context h= ere > > > > and it makes the sentence sound really awkward. > > >=20 > > > Leaving driver here is wrong. > >=20 > > Not if you also leave the word "the" before .Nm. >=20 > Then we should bloat it to handle "the XXX driver," "the XXX > subsystem," "the XXX system," etc. To be honest, the sentence > sounds better to me this way. And putting "driver" back in > just does what Christian says it's there to prevent. We should > not really "rely on the context" here, so I agree with Christian. > We shouldn't believe that it will always be a "driver." >=20 You're twisting my argument here ;-) Of course this is an example, so I can't be said whether it's a driver or a subsystem. But anyone who is using this template _probably_ knows what he's modifying the example for and will just replace that word with whatever is correct. However leaving the word out will just result in an incorrect sentence (we still have several of those in our manpages, e.g. "utility" and "command" are among the favourite words that are left out). So in this case, put in driver/subsystem/whatever, but put in _something_. > In any sense, it's still just an "example." We are arguing over > an "example" people. >=20 I know :-) But having good examples means less editing to do when a new page based on this example hits the tree. That's exactly the reason for my last couple of commits to this manpage. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --/04w6evG8XlLl3ft Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGjhNbHYXjKDtmC0RArBhAKDY/9o5U4maorn8N/Kym85Mx5Mg7ACdEwND OVpUs3pi4pnr3QfI8ABUq8I= =0o9h -----END PGP SIGNATURE----- --/04w6evG8XlLl3ft-- From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:39:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4869916A580; Wed, 27 Sep 2006 08:39:01 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A46843D46; Wed, 27 Sep 2006 08:39:01 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8d0Hx053843; Wed, 27 Sep 2006 08:39:00 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8d0qO053842; Wed, 27 Sep 2006 08:39:00 GMT (envelope-from pjd) Message-Id: <200609270839.k8R8d0qO053842@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 27 Sep 2006 08:39:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/examples/mdoc example.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:39:01 -0000 pjd 2006-09-27 08:39:00 UTC FreeBSD src repository Modified files: share/examples/mdoc example.9 Log: - Use existing functions mtx_lock() and mtx_unlock(). - Change variable name to 'error', as this is what is mostly used for functions that return an error. - Add mutex(9) to the SEE ALSO section. - Bump the date. I don't really like the example code. I'd prefer symmetry where possible, eg. mtx_lock(&example_lock); error = example(NULL, EXAMPLE_ONE); mtx_unlock(&example_lock); if (error != 0) return (error); But I'll leave it as it is for now. Reviewed by: simon Revision Changes Path 1.4 +9 -8 src/share/examples/mdoc/example.9 From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:45:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 875A116A407; Wed, 27 Sep 2006 08:45:14 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5559243D49; Wed, 27 Sep 2006 08:45:14 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8jE7H054237; Wed, 27 Sep 2006 08:45:14 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8jE2t054236; Wed, 27 Sep 2006 08:45:14 GMT (envelope-from clsung) Message-Id: <200609270845.k8R8jE2t054236@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 08:45:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers Makefile ports/archivers/p5-POE-Filter-LZF Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:45:14 -0000 clsung 2006-09-27 08:45:14 UTC FreeBSD ports repository Modified files: archivers Makefile Added files: archivers/p5-POE-Filter-LZF Makefile distinfo pkg-descr pkg-plist Log: Add p5-POE-Filter-LZF 1.5, a POE filter wrapped around Compress::LZF. PR: ports/103096 Submitted by: Gea-Suan Lin Revision Changes Path 1.159 +1 -0 ports/archivers/Makefile 1.1 +26 -0 ports/archivers/p5-POE-Filter-LZF/Makefile (new) 1.1 +3 -0 ports/archivers/p5-POE-Filter-LZF/distinfo (new) 1.1 +5 -0 ports/archivers/p5-POE-Filter-LZF/pkg-descr (new) 1.1 +8 -0 ports/archivers/p5-POE-Filter-LZF/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:45:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 012DF16A571; Wed, 27 Sep 2006 08:45:15 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-0-0-cust107.cdif.cable.ntl.com [81.104.168.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56B9743D49; Wed, 27 Sep 2006 08:45:15 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GSV2Y-000NL1-9Z; Wed, 27 Sep 2006 09:45:14 +0100 Date: Wed, 27 Sep 2006 09:45:14 +0100 From: Ceri Davies To: Tom Rhodes Message-ID: <20060927084514.GR54669@submonkey.net> Mail-Followup-To: Ceri Davies , Tom Rhodes , brueffer@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="aqWxf8ydqYKP8htK" Content-Disposition: inline In-Reply-To: <20060927041526.6b33a348.trhodes@FreeBSD.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.13 (2006-08-11) Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:45:16 -0000 --aqWxf8ydqYKP8htK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 04:15:26AM -0400, Tom Rhodes wrote: > On Wed, 27 Sep 2006 08:53:14 +0100 > Ceri Davies wrote: >=20 > > On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > > > On Tue, 26 Sep 2006 22:23:39 +0200 > > > Christian Brueffer wrote: > >=20 > > > > > | @@ -33,11 +33,9 @@ > > > > > | .Nm example > > > > > | .Nd "example device driver manual page" > > > > > | .Sh SYNOPSIS > > > > > | -To compile the > > > > > | -.Ns Nm > > > > > | -driver into the kernel, > > > > > | -place the following lines in the > > > > > | -kernel configuration file: > > > > > | +To enable support for > > > > > | +.Ns Nm , > > > > > | +place the following lines in the kernel configuration file: > > > >=20 > > > > The formulation used before was much more accurate WRT the distinct= ion > > > > we make between compiling something into the kernel and loading it = as a > > > > module. If we load something as a module we also "enable support f= or > > > > it". > > >=20 > > > What about in cases where other hoops must be jumped before the > > > driver/feature/whatever is really supported? > >=20 > > They can be special cased in the real manual. In the wider sense, > > kldload is the easiest way to enable support for something, and I know > > that I'm personally well past encouraging users to recompile the kernel > > just to get, for example, sound working when a simple kldload does the > > job just as well in most cases. >=20 > That is of course that "something" has a module. ;) Well yes, which is why the previous text explicitly said "to compile .Nm into the kernel", because that's what the example does. > Seriously though, why handle one case any differently than > another? Compiling something into the kernel and loading a module are different, that's why, and we should be clear about the distinction (because, as you state, some modules don't exist). > > > > > | .Bd -ragged -offset indent > > > > > | .Cd "device example" > > > > > | .Cd "options EXAMPLE_DEBUG" > > > > > | @@ -45,9 +43,9 @@ kernel configuration file: > > > > > | .Pp > > > > > | Alternatively, to load the > > > > > | .Ns Nm > > > > > | -driver as a > > > > > | -module at boot time, place the following line in > > > > > | -.Xr loader.conf 5 : > > > > > | +as a module at boot time, add the following line into the > > > > > | +.Xr loader.conf 5 > > > > > | +file: > > > > > | .Bd -literal -offset indent > > > > > | example_load=3D"YES" > > > > > | .Ed > > > > >=20 > > > >=20 > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the= .Nm > > > > driver? The .Nm utility? It's just incorrect to rely on context h= ere > > > > and it makes the sentence sound really awkward. > > >=20 > > > Leaving driver here is wrong. > >=20 > > Not if you also leave the word "the" before .Nm. >=20 > Then we should bloat it to handle "the XXX driver," "the XXX > subsystem," "the XXX system," etc. To be honest, the sentence > sounds better to me this way. And putting "driver" back in > just does what Christian says it's there to prevent. We should > not really "rely on the context" here, so I agree with Christian. > We shouldn't believe that it will always be a "driver." >=20 > In any sense, it's still just an "example." We are arguing over > an "example" people. No, we're arguing over grammar. The sentence currently renders as something like: Alternatively, to load the fxp(4) as a module at boot time... That's wrong. Getting rid of "the" works. Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --aqWxf8ydqYKP8htK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGjoZocfcwTS3JF8RAnIjAJ41CgoEa+IX1KmZYzyqLOfWQyXYTgCfQIjd vT4JV/QHMe24WKNEKEtbmnQ= =84rg -----END PGP SIGNATURE----- --aqWxf8ydqYKP8htK-- From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:45:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F76F16A529; Wed, 27 Sep 2006 08:45:38 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E32043D49; Wed, 27 Sep 2006 08:45:38 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8jbTL054286; Wed, 27 Sep 2006 08:45:37 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8jbpU054285; Wed, 27 Sep 2006 08:45:37 GMT (envelope-from clsung) Message-Id: <200609270845.k8R8jbpU054285@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 08:45:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:45:38 -0000 clsung 2006-09-27 08:45:37 UTC FreeBSD ports repository Modified files: . modules Log: p5-POE-Filter-LZF --> ports/archivers/p5-POE-Filter-LZF Revision Changes Path 1.16283 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:48:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 711D616A412; Wed, 27 Sep 2006 08:48:00 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4027C43D58; Wed, 27 Sep 2006 08:48:00 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8m03n062427; Wed, 27 Sep 2006 08:48:00 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8m0Qs062426; Wed, 27 Sep 2006 08:48:00 GMT (envelope-from clsung) Message-Id: <200609270848.k8R8m0Qs062426@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 08:47:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers Makefile ports/archivers/p5-POE-Filter-LZO Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:48:00 -0000 clsung 2006-09-27 08:47:59 UTC FreeBSD ports repository Modified files: archivers Makefile Added files: archivers/p5-POE-Filter-LZO Makefile distinfo pkg-descr pkg-plist Log: Add p5-POE-Filter-LZO 1.5, a POE filter wrapped around Compress::LZO. PR: ports/103098 Submitted by: Gea-Suan Lin Revision Changes Path 1.160 +1 -0 ports/archivers/Makefile 1.1 +26 -0 ports/archivers/p5-POE-Filter-LZO/Makefile (new) 1.1 +3 -0 ports/archivers/p5-POE-Filter-LZO/distinfo (new) 1.1 +5 -0 ports/archivers/p5-POE-Filter-LZO/pkg-descr (new) 1.1 +8 -0 ports/archivers/p5-POE-Filter-LZO/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:48:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA57716A4A0; Wed, 27 Sep 2006 08:48:17 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0B4443D60; Wed, 27 Sep 2006 08:48:16 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8mGRm062471; Wed, 27 Sep 2006 08:48:16 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8mG5o062470; Wed, 27 Sep 2006 08:48:16 GMT (envelope-from clsung) Message-Id: <200609270848.k8R8mG5o062470@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 08:48:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:48:18 -0000 clsung 2006-09-27 08:48:16 UTC FreeBSD ports repository Modified files: . modules Log: p5-POE-Filter-LZO --> ports/archivers/p5-POE-Filter-LZO Revision Changes Path 1.16284 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:49:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F4F516A407; Wed, 27 Sep 2006 08:49:29 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from mail.rulez.sk (DaEmoN.RuLeZ.sK [84.16.32.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA34443D55; Wed, 27 Sep 2006 08:49:27 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by mail.rulez.sk (Postfix) with ESMTP id 2268A1CD3E; Wed, 27 Sep 2006 10:49:27 +0200 (CEST) X-Virus-Scanned: by amavisd-new at mail.rulez.sk X-Spam-Score: -3.654 X-Spam-Level: X-Spam-Status: No, score=-3.654 tagged_above=-999 required=5 tests=[ALL_TRUSTED=-1.8, AWL=0.545, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2] Received: by mail.rulez.sk (Postfix, from userid 80) id C92021CD39; Wed, 27 Sep 2006 10:49:21 +0200 (CEST) Received: from cpuxp-d08.cpu.elf.stuba.sk (cpuxp-d08.cpu.elf.stuba.sk [147.175.100.85]) by mail.rulez.sk (Horde MIME library) with HTTP; Wed, 27 Sep 2006 10:49:21 +0200 Message-ID: <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> Date: Wed, 27 Sep 2006 10:49:21 +0200 From: Daniel Gerzo To: Ceri Davies References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> In-Reply-To: <20060927084514.GR54669@submonkey.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.1.1) Cc: Tom Rhodes , src-committers@FreeBSD.org, brueffer@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:49:29 -0000 Quoting Ceri Davies : > > No, we're arguing over grammar. The sentence currently renders as > something like: > > Alternatively, to load the fxp(4) as a module at boot time... > I proposed the following change: Alternatively, to load .Ns Nm module at boot time... > That's wrong. Getting rid of "the" works. > -- Best Regards, Daniel -------------------------------------------------------- This message was sent from rulez.sk webamil using Horde. From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:52:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7634416A403; Wed, 27 Sep 2006 08:52:12 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31E4443D49; Wed, 27 Sep 2006 08:52:12 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8qCk6062698; Wed, 27 Sep 2006 08:52:12 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8qC2v062697; Wed, 27 Sep 2006 08:52:12 GMT (envelope-from delphij) Message-Id: <200609270852.k8R8qC2v062697@repoman.freebsd.org> From: Xin LI Date: Wed, 27 Sep 2006 08:52:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/openldap24-server Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:52:12 -0000 delphij 2006-09-27 08:52:11 UTC FreeBSD ports repository Modified files: net/openldap24-server Makefile distinfo Log: Update to 2.4.3alpha. Submitted by: Joerg Pulz PR: ports/102399 Revision Changes Path 1.134 +2 -2 ports/net/openldap24-server/Makefile 1.62 +3 -3 ports/net/openldap24-server/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:54:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C612F16A403; Wed, 27 Sep 2006 08:54:26 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64E9743D53; Wed, 27 Sep 2006 08:54:26 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8R8sOo9020410 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 04:54:25 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 04:54:17 -0400 From: Tom Rhodes To: Ceri Davies Message-Id: <20060927045417.639f3db1.trhodes@FreeBSD.org> In-Reply-To: <20060927084514.GR54669@submonkey.net> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:54:27 -0000 On Wed, 27 Sep 2006 09:45:14 +0100 Ceri Davies wrote: > On Wed, Sep 27, 2006 at 04:15:26AM -0400, Tom Rhodes wrote: > > On Wed, 27 Sep 2006 08:53:14 +0100 > > Ceri Davies wrote: > > > > > On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > > > > On Tue, 26 Sep 2006 22:23:39 +0200 > > > > Christian Brueffer wrote: > > > > > > > > > | @@ -33,11 +33,9 @@ > > > > > > | .Nm example > > > > > > | .Nd "example device driver manual page" > > > > > > | .Sh SYNOPSIS > > > > > > | -To compile the > > > > > > | -.Ns Nm > > > > > > | -driver into the kernel, > > > > > > | -place the following lines in the > > > > > > | -kernel configuration file: > > > > > > | +To enable support for > > > > > > | +.Ns Nm , > > > > > > | +place the following lines in the kernel configuration file: > > > > > > > > > > The formulation used before was much more accurate WRT the distinction > > > > > we make between compiling something into the kernel and loading it as a > > > > > module. If we load something as a module we also "enable support for > > > > > it". > > > > > > > > What about in cases where other hoops must be jumped before the > > > > driver/feature/whatever is really supported? > > > > > > They can be special cased in the real manual. In the wider sense, > > > kldload is the easiest way to enable support for something, and I know > > > that I'm personally well past encouraging users to recompile the kernel > > > just to get, for example, sound working when a simple kldload does the > > > job just as well in most cases. > > > > That is of course that "something" has a module. ;) > > Well yes, which is why the previous text explicitly said "to compile .Nm > into the kernel", because that's what the example does. > > > Seriously though, why handle one case any differently than > > another? > > Compiling something into the kernel and loading a module are different, > that's why, and we should be clear about the distinction (because, as > you state, some modules don't exist). You're right we should. How about "To ... the ... ABC (or XYZ or ...)? > > > > > > > | .Bd -ragged -offset indent > > > > > > | .Cd "device example" > > > > > > | .Cd "options EXAMPLE_DEBUG" > > > > > > | @@ -45,9 +43,9 @@ kernel configuration file: > > > > > > | .Pp > > > > > > | Alternatively, to load the > > > > > > | .Ns Nm > > > > > > | -driver as a > > > > > > | -module at boot time, place the following line in > > > > > > | -.Xr loader.conf 5 : > > > > > > | +as a module at boot time, add the following line into the > > > > > > | +.Xr loader.conf 5 > > > > > > | +file: > > > > > > | .Bd -literal -offset indent > > > > > > | example_load="YES" > > > > > > | .Ed > > > > > > > > > > > > > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > > > > > driver? The .Nm utility? It's just incorrect to rely on context here > > > > > and it makes the sentence sound really awkward. > > > > > > > > Leaving driver here is wrong. > > > > > > Not if you also leave the word "the" before .Nm. > > > > Then we should bloat it to handle "the XXX driver," "the XXX > > subsystem," "the XXX system," etc. To be honest, the sentence > > sounds better to me this way. And putting "driver" back in > > just does what Christian says it's there to prevent. We should > > not really "rely on the context" here, so I agree with Christian. > > We shouldn't believe that it will always be a "driver." > > > > In any sense, it's still just an "example." We are arguing over > > an "example" people. > > No, we're arguing over grammar. The sentence currently renders as > something like: > > Alternatively, to load the fxp(4) as a module at boot time... > > That's wrong. Getting rid of "the" works. I like "enable" in the first bit, and I'll agree "the" should go, even though your argument works in some cases but fails in others. -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:58:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8792516A40F; Wed, 27 Sep 2006 08:58:09 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56E8A43D45; Wed, 27 Sep 2006 08:58:09 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8w9g1063083; Wed, 27 Sep 2006 08:58:09 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8w9Ig063082; Wed, 27 Sep 2006 08:58:09 GMT (envelope-from clsung) Message-Id: <200609270858.k8R8w9Ig063082@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 08:58:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net Makefile ports/net/p5-Net-Interface Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:58:09 -0000 clsung 2006-09-27 08:58:08 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/p5-Net-Interface Makefile distinfo pkg-descr pkg-plist Log: Add p5-Net-Interface 0.08, perl extension to access network interfaces. PR: ports/103108 Submitted by: Gea-Suan Lin Revision Changes Path 1.1741 +1 -0 ports/net/Makefile 1.1 +22 -0 ports/net/p5-Net-Interface/Makefile (new) 1.1 +3 -0 ports/net/p5-Net-Interface/distinfo (new) 1.1 +6 -0 ports/net/p5-Net-Interface/pkg-descr (new) 1.1 +8 -0 ports/net/p5-Net-Interface/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 08:58:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5A5416A407; Wed, 27 Sep 2006 08:58:31 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77CEA43D66; Wed, 27 Sep 2006 08:58:31 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R8wVi0063142; Wed, 27 Sep 2006 08:58:31 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R8wVVI063141; Wed, 27 Sep 2006 08:58:31 GMT (envelope-from clsung) Message-Id: <200609270858.k8R8wVVI063141@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 08:58:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 08:58:31 -0000 clsung 2006-09-27 08:58:31 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-Interface --> ports/net/p5-Net-Interface Revision Changes Path 1.16285 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Sep 27 09:01:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD0AB16A416; Wed, 27 Sep 2006 09:01:15 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5BF143D6D; Wed, 27 Sep 2006 09:01:08 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8R916v9020489 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 05:01:07 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 05:01:00 -0400 From: Tom Rhodes To: Christian Brueffer Message-Id: <20060927050100.15f00467.trhodes@FreeBSD.org> In-Reply-To: <20060927083733.GA1941@haakonia.hitnet.RWTH-Aachen.DE> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927083733.GA1941@haakonia.hitnet.RWTH-Aachen.DE> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, danger@FreeBSD.org, brueffer@FreeBSD.org, ceri@submonkey.net Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 09:01:16 -0000 On Wed, 27 Sep 2006 10:37:33 +0200 Christian Brueffer wrote: > On Wed, Sep 27, 2006 at 04:15:26AM -0400, Tom Rhodes wrote: > > On Wed, 27 Sep 2006 08:53:14 +0100 > > Ceri Davies wrote: > > > > > On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > > > > On Tue, 26 Sep 2006 22:23:39 +0200 > > > > Christian Brueffer wrote: > > > > > > > > > | @@ -33,11 +33,9 @@ > > > > > > | .Nm example > > > > > > | .Nd "example device driver manual page" > > > > > > | .Sh SYNOPSIS > > > > > > | -To compile the > > > > > > | -.Ns Nm > > > > > > | -driver into the kernel, > > > > > > | -place the following lines in the > > > > > > | -kernel configuration file: > > > > > > | +To enable support for > > > > > > | +.Ns Nm , > > > > > > | +place the following lines in the kernel configuration file: > > > > > > > > > > The formulation used before was much more accurate WRT the distinction > > > > > we make between compiling something into the kernel and loading it as a > > > > > module. If we load something as a module we also "enable support for > > > > > it". > > > > > > > > What about in cases where other hoops must be jumped before the > > > > driver/feature/whatever is really supported? > > > > > > They can be special cased in the real manual. In the wider sense, > > > kldload is the easiest way to enable support for something, and I know > > > that I'm personally well past encouraging users to recompile the kernel > > > just to get, for example, sound working when a simple kldload does the > > > job just as well in most cases. > > > > That is of course that "something" has a module. ;) > > > > Seriously though, why handle one case any differently than > > another? We should be fair here, and the above version will > > work for anything ... although, to be exact, we should probably > > use: > > > > I don't understand your reasoning for using "to enable support". Using > this would actually be wrong if there's more to do than recompiling the > kernel, as that alone would not really enable support for $SOMETHING. > > OTOH if you have to e.g. set a sysctl value to enable this support, this > would likely have to be done for the module case as well, so the old > formulation would be better. > > Care to elaborate? Sure. Why can't we all go back to arguing the entire CVS thing again, least that I could ignore while pretending to care. It's like when some chick tries to get in my pants, she buys me a drink, she's "enabling" me. Doesn't mean she'll score, but she'll have a much better chance. But yea, we are creating opportunity. > > > "place the following line(s) in the kernel configuration file:" > > > > > > > > > > > > > | .Bd -ragged -offset indent > > > > > > | .Cd "device example" > > > > > > | .Cd "options EXAMPLE_DEBUG" > > > > > > | @@ -45,9 +43,9 @@ kernel configuration file: > > > > > > | .Pp > > > > > > | Alternatively, to load the > > > > > > | .Ns Nm > > > > > > | -driver as a > > > > > > | -module at boot time, place the following line in > > > > > > | -.Xr loader.conf 5 : > > > > > > | +as a module at boot time, add the following line into the > > > > > > | +.Xr loader.conf 5 > > > > > > | +file: > > > > > > | .Bd -literal -offset indent > > > > > > | example_load="YES" > > > > > > | .Ed > > > > > > > > > > > > > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > > > > > driver? The .Nm utility? It's just incorrect to rely on context here > > > > > and it makes the sentence sound really awkward. > > > > > > > > Leaving driver here is wrong. > > > > > > Not if you also leave the word "the" before .Nm. > > > > Then we should bloat it to handle "the XXX driver," "the XXX > > subsystem," "the XXX system," etc. To be honest, the sentence > > sounds better to me this way. And putting "driver" back in > > just does what Christian says it's there to prevent. We should > > not really "rely on the context" here, so I agree with Christian. > > We shouldn't believe that it will always be a "driver." > > > > You're twisting my argument here ;-) Of course this is an example, > so I can't be said whether it's a driver or a subsystem. But anyone > who is using this template _probably_ knows what he's modifying the > example for and will just replace that word with whatever is correct. > However leaving the word out will just result in an incorrect sentence > (we still have several of those in our manpages, e.g. "utility" and > "command" are among the favourite words that are left out). It's my job to twist arguments. :) We should let the writer decide if it's a driver, or subsystem, or some module simply made to call their ex girlfriend's phone a hundred times at 03:00. Surely if you can write a driver, you know the diffence. I guess that's my argument, make it as generic as plausible and let the author decide. Yea, the entire command/utility thing is bogus. > > So in this case, put in driver/subsystem/whatever, but put in > _something_. > > > In any sense, it's still just an "example." We are arguing over > > an "example" people. > > > > I know :-) But having good examples means less editing to do when a > new page based on this example hits the tree. That's exactly the reason > for my last couple of commits to this manpage. But Christian, you like typing. Just like I'm always telling the room mates. "Yes, you like to walk, you SHOULD get me that beer." "Yes, you SHOULD answer the door ... you like meeting people." -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Wed Sep 27 09:03:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C957C16A407; Wed, 27 Sep 2006 09:03:36 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E20843DC1; Wed, 27 Sep 2006 09:03:27 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R93Rk4064639; Wed, 27 Sep 2006 09:03:27 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R93RLi064638; Wed, 27 Sep 2006 09:03:27 GMT (envelope-from clsung) Message-Id: <200609270903.k8R93RLi064638@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 09:03:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases Makefile ports/databases/p5-Genezzo Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 09:03:36 -0000 clsung 2006-09-27 09:03:27 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/p5-Genezzo Makefile distinfo pkg-descr pkg-plist Log: Add p5-Genezzo 0.64, an extensible database with SQL and DBI. PR: ports/102388 Submitted by: Gea-Suan Lin Revision Changes Path 1.547 +1 -0 ports/databases/Makefile 1.1 +59 -0 ports/databases/p5-Genezzo/Makefile (new) 1.1 +3 -0 ports/databases/p5-Genezzo/distinfo (new) 1.1 +7 -0 ports/databases/p5-Genezzo/pkg-descr (new) 1.1 +87 -0 ports/databases/p5-Genezzo/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 09:04:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 150BD16A412; Wed, 27 Sep 2006 09:04:10 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E76943D7D; Wed, 27 Sep 2006 09:03:46 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R93jVX064677; Wed, 27 Sep 2006 09:03:45 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R93jgB064676; Wed, 27 Sep 2006 09:03:45 GMT (envelope-from clsung) Message-Id: <200609270903.k8R93jgB064676@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 09:03:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 09:04:10 -0000 clsung 2006-09-27 09:03:45 UTC FreeBSD ports repository Modified files: . modules Log: p5-Genezzo --> ports/databases/p5-Genezzo Revision Changes Path 1.16286 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Sep 27 09:11:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87A2816A403; Wed, 27 Sep 2006 09:11:03 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C3CC43D76; Wed, 27 Sep 2006 09:10:58 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.14] (imini.samsco.home [192.168.254.14]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k8R92MBW017573; Wed, 27 Sep 2006 03:02:27 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <451A3E1E.2070403@samsco.org> Date: Wed, 27 Sep 2006 03:02:22 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.7) Gecko/20050416 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Daniel Gerzo References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> In-Reply-To: <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: Tom Rhodes , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org, Ceri Davies Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 09:11:03 -0000 Daniel Gerzo wrote: > Quoting Ceri Davies : > >> >> No, we're arguing over grammar. The sentence currently renders as >> something like: >> >> Alternatively, to load the fxp(4) as a module at boot time... >> > > I proposed the following change: > > Alternatively, to load > .Ns Nm > module at boot time... > >> That's wrong. Getting rid of "the" works. >> > It should read: Alternatively, to load the fxp(4) driver as a module at boot time... not Alternatively, to load fxp(4) module at boot time... nor Alternatively, to load the fxp(4) as a module at boot time... nor Alternatively, to load the fxp(4) as a module at boot time... The following is correct, but is inconsistent with the preceding context. There has been no introduction in text of the term 'module', so trying to interchange it with the term 'driver', which has been introduced, is clumsy. Furthermore, the terms 'driver' and 'module' are not synonymous in the context, and thus are not interchangable. Alternatively, to load the fxp(4) module at boot time... That said, attention to detail in the docs is _always_ appreciated, and good, open discussions are always welcomed. It's just a bit surrealistic to watch a grammar discussion happen between a group of non-native speakers at 3am =-) Scott From owner-cvs-all@FreeBSD.ORG Wed Sep 27 09:24:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8369816A403; Wed, 27 Sep 2006 09:24:45 +0000 (UTC) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30D7943D5A; Wed, 27 Sep 2006 09:24:45 +0000 (GMT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R9OjeB065824; Wed, 27 Sep 2006 09:24:45 GMT (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R9Oj8e065823; Wed, 27 Sep 2006 09:24:45 GMT (envelope-from mux) Message-Id: <200609270924.k8R9Oj8e065823@repoman.freebsd.org> From: Maxime Henrion Date: Wed, 27 Sep 2006 09:24:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet tcp_usrreq.c udp_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 09:24:45 -0000 mux 2006-09-27 09:24:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet tcp_usrreq.c udp_usrreq.c Log: MFC udp_usrreq.c:1.180 and tcp_usrreq.c:1.128 : Fix a bunch of SYSCTL_INT() that should have been SYSCTL_ULONG() to match the type of the variable they are exporting. Spotted by: Thomas Hurst Approved by: re@ (rwatson) Forgotten by: mux Revision Changes Path 1.124.2.3 +2 -2 src/sys/netinet/tcp_usrreq.c 1.175.2.7 +2 -2 src/sys/netinet/udp_usrreq.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 09:28:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B00D16A407; Wed, 27 Sep 2006 09:28:54 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 587C043D53; Wed, 27 Sep 2006 09:28:54 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R9SsYA065998; Wed, 27 Sep 2006 09:28:54 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R9Ss6N065997; Wed, 27 Sep 2006 09:28:54 GMT (envelope-from delphij) Message-Id: <200609270928.k8R9Ss6N065997@repoman.freebsd.org> From: Xin LI Date: Wed, 27 Sep 2006 09:28:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/contrib/bc/bc main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 09:28:54 -0000 delphij 2006-09-27 09:28:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) contrib/bc/bc main.c Log: s/predefine/predefined/ PR: gnu/86627 Submitted by: Arne Woerner Approved by: re (mux) Revision Changes Path 1.6.8.1 +2 -2 src/contrib/bc/bc/main.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 09:29:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11B0516A407; Wed, 27 Sep 2006 09:29:30 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D2A043D5C; Wed, 27 Sep 2006 09:29:29 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8R9TTQm066038; Wed, 27 Sep 2006 09:29:29 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8R9TTDo066037; Wed, 27 Sep 2006 09:29:29 GMT (envelope-from delphij) Message-Id: <200609270929.k8R9TTDo066037@repoman.freebsd.org> From: Xin LI Date: Wed, 27 Sep 2006 09:29:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/contrib/bc/bc main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 09:29:30 -0000 delphij 2006-09-27 09:29:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) contrib/bc/bc main.c Log: s/predefine/predefined/ PR: gnu/86627 Submitted by: Arne Woerner Revision Changes Path 1.6.2.1 +2 -2 src/contrib/bc/bc/main.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 09:53:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3159816A47B; Wed, 27 Sep 2006 09:53:26 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DD7443D55; Wed, 27 Sep 2006 09:53:21 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8R9rJl6020700 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 05:53:20 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 05:53:13 -0400 From: Tom Rhodes To: Scott Long Message-Id: <20060927055313.28313885.trhodes@FreeBSD.org> In-Reply-To: <451A3E1E.2070403@samsco.org> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> <451A3E1E.2070403@samsco.org> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, danger@FreeBSD.org, brueffer@FreeBSD.org, ceri@submonkey.net Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 09:53:26 -0000 On Wed, 27 Sep 2006 03:02:22 -0600 Scott Long wrote: > Daniel Gerzo wrote: > > > Quoting Ceri Davies : > > > >> > >> No, we're arguing over grammar. The sentence currently renders as > >> something like: > >> > >> Alternatively, to load the fxp(4) as a module at boot time... > >> > > > > I proposed the following change: > > > > Alternatively, to load > > .Ns Nm > > module at boot time... > > > >> That's wrong. Getting rid of "the" works. > >> > > > > It should read: > > Alternatively, to load the fxp(4) driver as a module at boot time... > > not > > Alternatively, to load fxp(4) module at boot time... > > nor > > Alternatively, to load the fxp(4) as a module at boot time... > > nor > > Alternatively, to load the fxp(4) as a module at boot time... > > The following is correct, but is inconsistent with the preceding > context. There has been no introduction in text of the term > 'module', so trying to interchange it with the term 'driver', which > has been introduced, is clumsy. Furthermore, the terms 'driver' and > 'module' are not synonymous in the context, and thus are not > interchangable. > > Alternatively, to load the fxp(4) module at boot time... I'd like to see "driver" and "module" removed from this particular example page. :) > > That said, attention to detail in the docs is _always_ appreciated, > and good, open discussions are always welcomed. It's just a bit > surrealistic to watch a grammar discussion happen between a group of > non-native speakers at 3am =-) Yea, why ARE you up right now? :P -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Wed Sep 27 10:08:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C9FC16A415; Wed, 27 Sep 2006 10:08:04 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0E8843D46; Wed, 27 Sep 2006 10:08:03 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RA83Y2068993; Wed, 27 Sep 2006 10:08:03 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RA83CD068992; Wed, 27 Sep 2006 10:08:03 GMT (envelope-from rwatson) Message-Id: <200609271008.k8RA83CD068992@repoman.freebsd.org> From: Robert Watson Date: Wed, 27 Sep 2006 10:08:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/security/audit audit_worker.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 10:08:04 -0000 rwatson 2006-09-27 10:08:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/security/audit audit_worker.c Log: Merge audit_worker.c:1.12 from HEAD to RELENG_6: Rework the way errors are handled with respect to how audit records are written to the audit trail file: - audit_record_write() now returns void, and all file system specific error handling occurs inside this function. This pushes error handling complexity out of the record demux routine that hands off to both the trail and audit pipes, and makes trail behavior more consistent with pipes as a record destination. - Rate limit kernel printfs associated with running low on space. Rate limit audit triggers for low space. Rate limit printfs for fail stop events. Rate limit audit worker write error printfs. - Document in detail the types of limits and space checks we perform, and combine common cases. This improves the audit subsystems tolerance to low space conditions by avoiding toasting the console with printfs are waking up the audit daemon continuously. Obtained from: TrustedBSD Project Approved by: re (mux) Revision Changes Path 1.9.2.3 +146 -101 src/sys/security/audit/audit_worker.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 10:08:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDD1416A492; Wed, 27 Sep 2006 10:08:47 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40BAE43D58; Wed, 27 Sep 2006 10:08:47 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RA8lRj069039; Wed, 27 Sep 2006 10:08:47 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RA8lfZ069038; Wed, 27 Sep 2006 10:08:47 GMT (envelope-from rwatson) Message-Id: <200609271008.k8RA8lfZ069038@repoman.freebsd.org> From: Robert Watson Date: Wed, 27 Sep 2006 10:08:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/rc.d auditd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 10:08:47 -0000 rwatson 2006-09-27 10:08:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d auditd Log: Merge auditd:1.3 from HEAD to RELENG_6: Sleep for one second after calling audit -t to give the audit daemon a chance to actually terminate the audit service and exit. Otherwise, on an rc.d/auditd restart, the new audit daemon instance may try to start auditing while the previous session is still running. Likewise, this ensures a chance for auditd to terminate the audit trail at system shutdown. Perhaps more ideally, the script would wait synchronously for auditd to exit rather than for an arbitrary but short period of time. Obtained from: TrustedBSD Project Approved by: re (mux) Revision Changes Path 1.2.2.2 +1 -0 src/etc/rc.d/auditd From owner-cvs-all@FreeBSD.ORG Wed Sep 27 10:13:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF98616A403; Wed, 27 Sep 2006 10:13:17 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA9A443D46; Wed, 27 Sep 2006 10:13:16 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.11] (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k8RADASA018037; Wed, 27 Sep 2006 04:13:15 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <451A4EB5.4090208@samsco.org> Date: Wed, 27 Sep 2006 04:13:09 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.13) Gecko/20060414 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Tom Rhodes References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> <451A3E1E.2070403@samsco.org> <20060927055313.28313885.trhodes@FreeBSD.org> In-Reply-To: <20060927055313.28313885.trhodes@FreeBSD.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, danger@FreeBSD.org, brueffer@FreeBSD.org, ceri@submonkey.net Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 10:13:17 -0000 Tom Rhodes wrote: > On Wed, 27 Sep 2006 03:02:22 -0600 > Scott Long wrote: > > >>Daniel Gerzo wrote: >> >> >>>Quoting Ceri Davies : >>> >>> >>>>No, we're arguing over grammar. The sentence currently renders as >>>>something like: >>>> >>>> Alternatively, to load the fxp(4) as a module at boot time... >>>> >>> >>>I proposed the following change: >>> >>>Alternatively, to load >>>.Ns Nm >>>module at boot time... >>> >>> >>>>That's wrong. Getting rid of "the" works. >>>> >>> >>It should read: >> >>Alternatively, to load the fxp(4) driver as a module at boot time... >> >>not >> >>Alternatively, to load fxp(4) module at boot time... >> >>nor >> >>Alternatively, to load the fxp(4) as a module at boot time... >> >>nor >> >>Alternatively, to load the fxp(4) as a module at boot time... >> >>The following is correct, but is inconsistent with the preceding >>context. There has been no introduction in text of the term >>'module', so trying to interchange it with the term 'driver', which >>has been introduced, is clumsy. Furthermore, the terms 'driver' and >>'module' are not synonymous in the context, and thus are not >>interchangable. >> >>Alternatively, to load the fxp(4) module at boot time... > > > I'd like to see "driver" and "module" removed from this particular > example page. :) > Considering that this is meant for section 4 of the manual, and intro.4 says the following: INTRO(4) FreeBSD Kernel Interfaces Manual INTRO(4) NAME intro -- introduction to devices and device drivers The terms 'driver' and 'module' are very much appropriate when talking about 'device drivers'. Scott From owner-cvs-all@FreeBSD.ORG Wed Sep 27 10:30:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B6D816A403; Wed, 27 Sep 2006 10:30:18 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F90443D55; Wed, 27 Sep 2006 10:30:18 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RAUIJu069979; Wed, 27 Sep 2006 10:30:18 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RAUIYH069978; Wed, 27 Sep 2006 10:30:18 GMT (envelope-from ru) Message-Id: <200609271030.k8RAUIYH069978@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 27 Sep 2006 10:30:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libalias/libalias Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 10:30:19 -0000 ru 2006-09-27 10:30:18 UTC FreeBSD src repository Modified files: lib/libalias/libalias Makefile Log: Put back NO_WERROR= to fix sparc64 build. Revision Changes Path 1.2 +1 -0 src/lib/libalias/libalias/Makefile From owner-cvs-all@FreeBSD.ORG Wed Sep 27 10:46:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21BEE16A403; Wed, 27 Sep 2006 10:46:41 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95CDC43D4C; Wed, 27 Sep 2006 10:46:41 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RAkfT7070781; Wed, 27 Sep 2006 10:46:41 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RAkfvY070780; Wed, 27 Sep 2006 10:46:41 GMT (envelope-from maxim) Message-Id: <200609271046.k8RAkfvY070780@repoman.freebsd.org> From: Maxim Konovalov Date: Wed, 27 Sep 2006 10:46:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 10:46:42 -0000 maxim 2006-09-27 10:46:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . UPDATING Log: MFC rev. 1.456: s/IP_FIREWALL_FORWARD/IPFIREWALL_FORWARD/. Approved by: re (mux) Revision Changes Path 1.416.2.28 +1 -1 src/UPDATING From owner-cvs-all@FreeBSD.ORG Wed Sep 27 10:48:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9EB316A501; Wed, 27 Sep 2006 10:48:35 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E1A343D5A; Wed, 27 Sep 2006 10:48:35 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RAmZn8070878; Wed, 27 Sep 2006 10:48:35 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RAmZow070877; Wed, 27 Sep 2006 10:48:35 GMT (envelope-from maxim) Message-Id: <200609271048.k8RAmZow070877@repoman.freebsd.org> From: Maxim Konovalov Date: Wed, 27 Sep 2006 10:48:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/share/man/man7 ports.7 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 10:48:36 -0000 maxim 2006-09-27 10:48:35 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man7 ports.7 Log: MFC rev. 1.55: document 'make quicksearch'. Approved by: re (mux) Revision Changes Path 1.50.2.3 +6 -1 src/share/man/man7/ports.7 From owner-cvs-all@FreeBSD.ORG Wed Sep 27 10:50:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2709516A412; Wed, 27 Sep 2006 10:50:24 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from av9-1-sn2.hy.skanova.net (av9-1-sn2.hy.skanova.net [81.228.8.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 575AB43D46; Wed, 27 Sep 2006 10:50:23 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: by av9-1-sn2.hy.skanova.net (Postfix, from userid 502) id 1E6E0381BE; Wed, 27 Sep 2006 12:50:22 +0200 (CEST) Received: from smtp4-1-sn2.hy.skanova.net (smtp4-1-sn2.hy.skanova.net [81.228.8.92]) by av9-1-sn2.hy.skanova.net (Postfix) with ESMTP id 0C7AF37E75; Wed, 27 Sep 2006 12:50:22 +0200 (CEST) Received: from dude.automatvapen.se (81-229-112-193-no21.tbcn.telia.com [81.229.112.193]) by smtp4-1-sn2.hy.skanova.net (Postfix) with ESMTP id C7D0537E45; Wed, 27 Sep 2006 12:50:21 +0200 (CEST) From: Joel Dahl To: Christian Brueffer In-Reply-To: <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> Content-Type: text/plain Date: Wed, 27 Sep 2006 12:50:21 +0200 Message-Id: <1159354221.670.10.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, Daniel Gerzo , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 10:50:24 -0000 On Tue, 2006-09-26 at 22:23 +0200, Christian Brueffer wrote: > On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: > > danger 2006-09-26 19:59:52 UTC > > > > FreeBSD src repository (doc committer) > > > > Modified files: > > share/examples/mdoc example.4 > > Log: > > Remove second person from the sentece and rephrase a bit. > > > > Approved by: trhodes (mentor), keramida (mentor) > > > > Revision Changes Path > > 1.26 +6 -8 src/share/examples/mdoc/example.4 > > I don't agree to these changes, see below for details (also I don't see where > exactly you removed second person usage, it's still being used in the new > version). > > > | =================================================================== > > | RCS file: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/example.4,v > > | retrieving revision 1.25 > > | retrieving revision 1.26 > > | diff -u -p -r1.25 -r1.26 > > | --- src/share/examples/mdoc/example.4 2006/09/18 15:18:54 1.25 > > | +++ src/share/examples/mdoc/example.4 2006/09/26 19:59:52 1.26 > > | @@ -22,7 +22,7 @@ > > | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF > > | .\" SUCH DAMAGE. > > | .\" > > | -.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/example.4,v 1.25 2006/09/18 15:18:54 ru Exp $ > > | +.\" $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/share/examples/mdoc/example.4,v 1.26 2006/09/26 19:59:52 danger Exp $ > > | .\" > > | .\" Note: The date here should be updated whenever a non-trivial > > | .\" change is made to the manual page. > > | @@ -33,11 +33,9 @@ > > | .Nm example > > | .Nd "example device driver manual page" > > | .Sh SYNOPSIS > > | -To compile the > > | -.Ns Nm > > | -driver into the kernel, > > | -place the following lines in the > > | -kernel configuration file: > > | +To enable support for > > | +.Ns Nm , > > | +place the following lines in the kernel configuration file: > > The formulation used before was much more accurate WRT the distinction > we make between compiling something into the kernel and loading it as a > module. If we load something as a module we also "enable support for > it". Agreed. The previous statement seems more clear and accurate. > > | .Bd -ragged -offset indent > > | .Cd "device example" > > | .Cd "options EXAMPLE_DEBUG" > > | @@ -45,9 +43,9 @@ kernel configuration file: > > | .Pp > > | Alternatively, to load the > > | .Ns Nm > > | -driver as a > > | -module at boot time, place the following line in > > | -.Xr loader.conf 5 : > > | +as a module at boot time, add the following line into the > > | +.Xr loader.conf 5 > > | +file: > > | .Bd -literal -offset indent > > | example_load="YES" > > | .Ed > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > driver? The .Nm utility? It's just incorrect to rely on context here > and it makes the sentence sound really awkward. > > IMHO the SYNOPSIS section in section 4 manpages is kind of a standard > now, as it's being used in the majority of section 4 manpages. > Changes to it should not be made without _good_ reason and with a sweep > through all manpages that use it. Among other things, the purpose of > this section is to achieve consistency across section 4 manpages. Agreed, this change is just plain wrong. I've read the discussion and I believe this commit should be backed out. -- Joel From owner-cvs-all@FreeBSD.ORG Wed Sep 27 11:28:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1552016A534; Wed, 27 Sep 2006 11:28:16 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBD6B43D69; Wed, 27 Sep 2006 11:27:23 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RBRFmd074054; Wed, 27 Sep 2006 11:27:15 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RBRF0S074053; Wed, 27 Sep 2006 11:27:15 GMT (envelope-from miwi) Message-Id: <200609271127.k8RBRF0S074053@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Sep 2006 11:27:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/kannel Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 11:28:16 -0000 miwi 2006-09-27 11:27:15 UTC FreeBSD ports repository Modified files: www/kannel Makefile distinfo pkg-plist Log: - Update to 1.4.1 - Pet portlint - Pass maintainership to submitter PR: ports/103671 Submitted by: Babak Farrokhi Revision Changes Path 1.26 +3 -3 ports/www/kannel/Makefile 1.11 +3 -3 ports/www/kannel/distinfo 1.6 +93 -0 ports/www/kannel/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 11:34:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EEDB16A416; Wed, 27 Sep 2006 11:34:50 +0000 (UTC) (envelope-from flag@newluxor.wired.org) Received: from mail.oltrelinux.com (krisma.oltrelinux.com [194.242.226.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6395943D86; Wed, 27 Sep 2006 11:34:41 +0000 (GMT) (envelope-from flag@newluxor.wired.org) Received: from newluxor.wired.org (ip-64-88.sn2.eutelia.it [83.211.64.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.oltrelinux.com (Postfix) with ESMTP id 52FDA11AE49; Wed, 27 Sep 2006 13:34:40 +0200 (CEST) Received: (from flag@localhost) by newluxor.wired.org (8.13.8/8.13.8/Submit) id k8RBYavt056573; Wed, 27 Sep 2006 13:34:36 +0200 (CEST) (envelope-from flag) Date: Wed, 27 Sep 2006 13:34:36 +0200 From: Paolo Pisati To: Ruslan Ermilov Message-ID: <20060927113436.GB1262@tin.it> References: <200609271030.k8RAUIYH069978@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609271030.k8RAUIYH069978@repoman.freebsd.org> User-Agent: Mutt/1.4.2.2i X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at krisma.oltrelinux.com Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libalias/libalias Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 11:34:50 -0000 On Wed, Sep 27, 2006 at 10:30:18AM +0000, Ruslan Ermilov wrote: > ru 2006-09-27 10:30:18 UTC > > FreeBSD src repository > > Modified files: > lib/libalias/libalias Makefile > Log: > Put back NO_WERROR= to fix sparc64 build. Thanks. -- Paolo Piso's first law: nothing works as expected! From owner-cvs-all@FreeBSD.ORG Wed Sep 27 11:52:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B447916A40F; Wed, 27 Sep 2006 11:52:07 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4605843D53; Wed, 27 Sep 2006 11:52:07 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RBq7F3075281; Wed, 27 Sep 2006 11:52:07 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RBq7Ls075280; Wed, 27 Sep 2006 11:52:07 GMT (envelope-from dinoex) Message-Id: <200609271152.k8RBq7Ls075280@repoman.freebsd.org> From: Dirk Meyer Date: Wed, 27 Sep 2006 11:52:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/oniguruma Makefile distinfo pkg-plist ports/devel/oniguruma/files onig-config X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 11:52:07 -0000 dinoex 2006-09-27 11:52:07 UTC FreeBSD ports repository Modified files: devel/oniguruma Makefile distinfo pkg-plist Added files: devel/oniguruma/files onig-config Log: - take maintainership - update to 2.5.7 - add onig-config Revision Changes Path 1.33 +7 -2 ports/devel/oniguruma/Makefile 1.26 +3 -3 ports/devel/oniguruma/distinfo 1.1 +54 -0 ports/devel/oniguruma/files/onig-config (new) 1.12 +1 -0 ports/devel/oniguruma/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 11:57:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B74716A403; Wed, 27 Sep 2006 11:57:00 +0000 (UTC) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8A6243D4C; Wed, 27 Sep 2006 11:56:59 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RBuxcL075558; Wed, 27 Sep 2006 11:56:59 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RBux7T075557; Wed, 27 Sep 2006 11:56:59 GMT (envelope-from lofi) Message-Id: <200609271156.k8RBux7T075557@repoman.freebsd.org> From: Michael Nottebrock Date: Wed, 27 Sep 2006 11:56:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11/kdelibs3 Makefile ports/x11/kdelibs3/files patch-cups-1.2.x-sockets X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 11:57:00 -0000 lofi 2006-09-27 11:56:59 UTC FreeBSD ports repository Modified files: x11/kdelibs3 Makefile Added files: x11/kdelibs3/files patch-cups-1.2.x-sockets Log: Support printing over CUPS 1.2.x' unix domain socket interface. Revision Changes Path 1.202 +1 -1 ports/x11/kdelibs3/Makefile 1.1 +251 -0 ports/x11/kdelibs3/files/patch-cups-1.2.x-sockets (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 11:57:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E2F916A412; Wed, 27 Sep 2006 11:57:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07C0443D5A; Wed, 27 Sep 2006 11:57:33 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RBvWY2075613; Wed, 27 Sep 2006 11:57:32 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RBvWTC075612; Wed, 27 Sep 2006 11:57:32 GMT (envelope-from miwi) Message-Id: <200609271157.k8RBvWTC075612@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Sep 2006 11:57:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/www6to4 Makefile distinfo pkg-plist ports/www/www6to4/files patch-www6to4.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 11:57:33 -0000 miwi 2006-09-27 11:57:32 UTC FreeBSD ports repository Modified files: www/www6to4 Makefile distinfo pkg-plist Removed files: www/www6to4/files patch-www6to4.c Log: - Update to 1.6 - Remove respect DESTDIR PR: ports/101880 Submitted by: chinsan Approved by: Janos Mohacsi (maintainer) Revision Changes Path 1.5 +6 -1 ports/www/www6to4/Makefile 1.4 +3 -3 ports/www/www6to4/distinfo 1.2 +0 -19 ports/www/www6to4/files/patch-www6to4.c (dead) 1.2 +2 -2 ports/www/www6to4/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 12:02:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE27416A417; Wed, 27 Sep 2006 12:02:28 +0000 (UTC) (envelope-from babkin@verizon.net) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78A1D43D49; Wed, 27 Sep 2006 12:02:28 +0000 (GMT) (envelope-from babkin@verizon.net) Received: from vms064.mailsrvcs.net ([192.168.1.1]) by vms044.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J690085Y2RVL5P3@vms044.mailsrvcs.net>; Wed, 27 Sep 2006 07:02:19 -0500 (CDT) Received: from 198.190.8.100 ([198.190.8.100]) by vms064.mailsrvcs.net (Verizon Webmail) with HTTP; Wed, 27 Sep 2006 07:02:19 -0500 (CDT) Date: Wed, 27 Sep 2006 07:02:19 -0500 (CDT) From: Sergey Babkin X-Originating-IP: [198.190.8.100] To: danger@rulez.sk, Christian Brueffer Message-id: <12530240.6470551159358539962.JavaMail.root@vms064.mailsrvcs.net> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7bit Cc: cvs-src@FreeBSD.org, Daniel Gerzo , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: babkin@users.sf.net List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Sep 2006 12:02:28 -0000 >From: danger@rulez.sk >Quoting Christian Brueffer : > >> I don't agree to these changes, see below for details (also I don't see where >> exactly you removed second person usage, it's still being used in the new >> version). > >We want to aviod to use words like "you", "your" and so on. I have >talked about it with Ruslan and my mentors. Why? They make the text more readable. I'd say that The Bureaucratic Style Is Bad. -SB From owner-cvs-all@FreeBSD.ORG Wed Sep 27 12:30:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A483916A407; Wed, 27 Sep 2006 12:30:29 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 930E943D6B; Wed, 27 Sep 2006 12:30:28 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RCUSsq078391; Wed, 27 Sep 2006 12:30:28 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RCUSh6078390; Wed, 27 Sep 2006 12:30:28 GMT (envelope-from ru) Message-Id: <200609271230.k8RCUSh6078390@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 27 Sep 2006 12:30:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/sys/modules/libalias Makefile src/sys/modules/libalias/modules Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 12:30:29 -0000 ru 2006-09-27 12:30:27 UTC FreeBSD src repository Modified files: lib/libalias Makefile lib/libalias/libalias Makefile lib/libalias/modules Makefile Makefile.inc sys/modules/libalias Makefile sys/modules/libalias/modules Makefile Log: - Removed a copyright from makefile. - Added ${.CURDIR} to .include "...". - Whitespace fixes. OK'ed by: piso Revision Changes Path 1.33 +1 -25 src/lib/libalias/Makefile 1.3 +2 -2 src/lib/libalias/libalias/Makefile 1.2 +2 -2 src/lib/libalias/modules/Makefile 1.2 +2 -2 src/lib/libalias/modules/Makefile.inc 1.4 +1 -1 src/sys/modules/libalias/Makefile 1.2 +2 -2 src/sys/modules/libalias/modules/Makefile From owner-cvs-all@FreeBSD.ORG Wed Sep 27 12:49:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83A1216A407; Wed, 27 Sep 2006 12:49:38 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-0-0-cust107.cdif.cable.ntl.com [81.104.168.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82F7043D49; Wed, 27 Sep 2006 12:49:33 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GSYqw-000LAf-Le; Wed, 27 Sep 2006 13:49:30 +0100 Date: Wed, 27 Sep 2006 13:49:30 +0100 From: Ceri Davies To: Scott Long Message-ID: <20060927124930.GS54669@submonkey.net> Mail-Followup-To: Ceri Davies , Scott Long , Daniel Gerzo , Tom Rhodes , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> <451A3E1E.2070403@samsco.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HLsZ5Z1opAQvdr2J" Content-Disposition: inline In-Reply-To: <451A3E1E.2070403@samsco.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.13 (2006-08-11) Sender: Ceri Davies Cc: Tom Rhodes , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Daniel Gerzo , brueffer@FreeBSD.org Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 12:49:38 -0000 --HLsZ5Z1opAQvdr2J Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 03:02:22AM -0600, Scott Long wrote: > That said, attention to detail in the docs is _always_ appreciated, > and good, open discussions are always welcomed. It's just a bit=20 > surrealistic to watch a grammar discussion happen between a group of > non-native speakers at 3am =3D-) Hey, it's you who's the foreigner :) Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --HLsZ5Z1opAQvdr2J Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGnNaocfcwTS3JF8RAq4RAKCHC8FWeNPFV6tHuBD5uxyGfuPGHACeP3rH nNs1ciQlXd/nS1lQEkoGabs= =MyPB -----END PGP SIGNATURE----- --HLsZ5Z1opAQvdr2J-- From owner-cvs-all@FreeBSD.ORG Wed Sep 27 12:49:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4FC116A584; Wed, 27 Sep 2006 12:49:59 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1825D43D58; Wed, 27 Sep 2006 12:49:58 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id C4AC75CF2; Wed, 27 Sep 2006 16:49:56 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id BBADE5CDD; Wed, 27 Sep 2006 16:49:56 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8RCnwFp025347; Wed, 27 Sep 2006 16:49:58 +0400 (MSD) (envelope-from ru) Date: Wed, 27 Sep 2006 16:49:58 +0400 From: Ruslan Ermilov To: Tom Rhodes Message-ID: <20060927124958.GD6346@rambler-co.ru> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> <20060927045417.639f3db1.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="65ImJOski3p8EhYV" Content-Disposition: inline In-Reply-To: <20060927045417.639f3db1.trhodes@FreeBSD.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, danger@FreeBSD.org, brueffer@FreeBSD.org, Ceri Davies Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 12:49:59 -0000 --65ImJOski3p8EhYV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 04:54:17AM -0400, Tom Rhodes wrote: [...] > > That's wrong. Getting rid of "the" works. >=20 > I like "enable" in the first bit, and I'll agree "the" should > go, even though your argument works in some cases but fails > in others. >=20 I think a common sense should apply here -- i.e., make less work for manpage writers? What most of our section four manpages document? Drivers or subsystems? I think drivers. This is an example manpage, it's not a full skeleton manpage. To be a full skeleton manpage, some other words can be put into comments, like is already done for the .Dd argument. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --65ImJOski3p8EhYV Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGnN2qRfpzJluFF4RAmH/AJ4oylF4ivbg1oQ6rKH0CbbtdjyIpACfU76j jfDSEKiW6d1BzeoA1DYPEf8= =nDWF -----END PGP SIGNATURE----- --65ImJOski3p8EhYV-- From owner-cvs-all@FreeBSD.ORG Wed Sep 27 12:50:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A5E816A548; Wed, 27 Sep 2006 12:50:39 +0000 (UTC) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5562F43D8A; Wed, 27 Sep 2006 12:50:35 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RCoZdl087403; Wed, 27 Sep 2006 12:50:35 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RCoZVK087401; Wed, 27 Sep 2006 12:50:35 GMT (envelope-from roam) Message-Id: <200609271250.k8RCoZVK087401@repoman.freebsd.org> From: Peter Pentchev Date: Wed, 27 Sep 2006 12:50:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/libnids Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 12:50:39 -0000 roam 2006-09-27 12:50:34 UTC FreeBSD ports repository Modified files: net/libnids Makefile Log: Remove the mistaken run-dependency on libnet, since it causes conflicts in dependent ports. Also, reinstitute the choice between libnet-1.0 and 1.1, since the dependent ports seem to actually like libnet-1.0 better. PR: 103554 Submitted by: arved Revision Changes Path 1.18 +7 -2 ports/net/libnids/Makefile From owner-cvs-all@FreeBSD.ORG Wed Sep 27 12:58:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99A8916A403; Wed, 27 Sep 2006 12:58:54 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4295043D5D; Wed, 27 Sep 2006 12:58:54 +0000 (GMT) (envelope-from girgen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RCwsBW087853; Wed, 27 Sep 2006 12:58:54 GMT (envelope-from girgen@repoman.freebsd.org) Received: (from girgen@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RCws9a087852; Wed, 27 Sep 2006 12:58:54 GMT (envelope-from girgen) Message-Id: <200609271258.k8RCws9a087852@repoman.freebsd.org> From: Palle Girgensohn Date: Wed, 27 Sep 2006 12:58:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/postgresql81-server Makefile distinfo ports/databases/postgresql80-server Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 12:58:54 -0000 girgen 2006-09-27 12:58:54 UTC FreeBSD ports repository Modified files: databases/postgresql81-server Makefile distinfo databases/postgresql80-server Makefile distinfo Log: The update to handle different versions of ICU was not sufficient. Update the patches to handle ICU version 3.6 and fall back to 3.4. Revision Changes Path 1.158 +1 -1 ports/databases/postgresql80-server/Makefile 1.52 +3 -3 ports/databases/postgresql80-server/distinfo 1.159 +1 -1 ports/databases/postgresql81-server/Makefile 1.50 +3 -3 ports/databases/postgresql81-server/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 13:09:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CC2316A412; Wed, 27 Sep 2006 13:09:07 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2215F43D60; Wed, 27 Sep 2006 13:09:07 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RD96kS089499; Wed, 27 Sep 2006 13:09:07 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RD96pD089498; Wed, 27 Sep 2006 13:09:06 GMT (envelope-from miwi) Message-Id: <200609271309.k8RD96pD089498@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Sep 2006 13:09:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/blender-devel Makefile distinfo ports/graphics/blender-devel/files patch-SConstruct patch-intern_ghost-SConscript patch-source_blender_blenlib_intern-storage.c patch-source_blender_blenlib_intern_storage.c patch-user-config_py X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 13:09:07 -0000 miwi 2006-09-27 13:09:06 UTC FreeBSD ports repository Modified files: graphics/blender-devel Makefile distinfo Added files: graphics/blender-devel/files patch-intern_ghost-SConscript patch-source_blender_blenlib_intern-storage.c patch-user-config_py Removed files: graphics/blender-devel/files patch-SConstruct patch-source_blender_blenlib_intern_storage.c Log: - Update to 2.42a PR: ports/102200 Submitted by: Armin Pirkovitsch Approved by: Maintainer timout Revision Changes Path 1.24 +10 -6 ports/graphics/blender-devel/Makefile 1.11 +3 -3 ports/graphics/blender-devel/distinfo 1.7 +0 -30 ports/graphics/blender-devel/files/patch-SConstruct (dead) 1.1 +27 -0 ports/graphics/blender-devel/files/patch-intern_ghost-SConscript (new) 1.1 +20 -0 ports/graphics/blender-devel/files/patch-source_blender_blenlib_intern-storage.c (new) 1.2 +0 -20 ports/graphics/blender-devel/files/patch-source_blender_blenlib_intern_storage.c (dead) 1.1 +166 -0 ports/graphics/blender-devel/files/patch-user-config_py (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 13:21:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C3EE16A403; Wed, 27 Sep 2006 13:21:30 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6CF643D5D; Wed, 27 Sep 2006 13:21:29 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RDLTcK091439; Wed, 27 Sep 2006 13:21:29 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RDLTRA091438; Wed, 27 Sep 2006 13:21:29 GMT (envelope-from mat) Message-Id: <200609271321.k8RDLTRA091438@repoman.freebsd.org> From: Mathieu Arnold Date: Wed, 27 Sep 2006 13:21:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-Apache-Session-Wrapper Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 13:21:30 -0000 mat 2006-09-27 13:21:28 UTC FreeBSD ports repository Modified files: www/p5-Apache-Session-Wrapper Makefile distinfo Log: Update to 0.33 Revision Changes Path 1.10 +1 -1 ports/www/p5-Apache-Session-Wrapper/Makefile 1.9 +3 -3 ports/www/p5-Apache-Session-Wrapper/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 13:33:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4928E16A412; Wed, 27 Sep 2006 13:33:19 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAB2E43D69; Wed, 27 Sep 2006 13:33:14 +0000 (GMT) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RDXEOP094411; Wed, 27 Sep 2006 13:33:14 GMT (envelope-from mi@repoman.freebsd.org) Received: (from mi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RDXELw094402; Wed, 27 Sep 2006 13:33:14 GMT (envelope-from mi) Message-Id: <200609271333.k8RDXELw094402@repoman.freebsd.org> From: Mikhail Teterin Date: Wed, 27 Sep 2006 13:33:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/icu Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 13:33:19 -0000 mi 2006-09-27 13:33:14 UTC FreeBSD ports repository Modified files: devel/icu Makefile Log: While the known problems (compiler bugs?) are being investigated, be sure to compile with -O2 (not higher, not lower) to avoid some of them. Revision Changes Path 1.22 +2 -2 ports/devel/icu/Makefile From owner-cvs-all@FreeBSD.ORG Wed Sep 27 13:39:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8277F16A55E; Wed, 27 Sep 2006 13:39:44 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52C7343D45; Wed, 27 Sep 2006 13:39:42 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RDdgZS094649; Wed, 27 Sep 2006 13:39:42 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RDdgTP094648; Wed, 27 Sep 2006 13:39:42 GMT (envelope-from miwi) Message-Id: <200609271339.k8RDdgTP094648@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Sep 2006 13:39:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/blender-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 13:39:44 -0000 miwi 2006-09-27 13:39:41 UTC FreeBSD ports repository Modified files: graphics/blender-devel Makefile Log: - Mark broken on 4.x (i forget this) Reported by: sperber via irc Revision Changes Path 1.25 +4 -0 ports/graphics/blender-devel/Makefile From owner-cvs-all@FreeBSD.ORG Wed Sep 27 14:13:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97A2216A407; Wed, 27 Sep 2006 14:13:29 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4910843DA7; Wed, 27 Sep 2006 14:13:04 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RED18g097503; Wed, 27 Sep 2006 14:13:01 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RED1YM097502; Wed, 27 Sep 2006 14:13:01 GMT (envelope-from oliver) Message-Id: <200609271413.k8RED1YM097502@repoman.freebsd.org> From: Oliver Lehmann Date: Wed, 27 Sep 2006 14:13:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/ember Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 14:13:29 -0000 oliver 2006-09-27 14:13:01 UTC FreeBSD ports repository Modified files: games/ember Makefile Log: mark IGNORE again for OSVERSION < 600000 Revision Changes Path 1.18 +3 -3 ports/games/ember/Makefile From owner-cvs-all@FreeBSD.ORG Wed Sep 27 14:23:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4703816A416; Wed, 27 Sep 2006 14:23:39 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDD5243D8C; Wed, 27 Sep 2006 14:23:33 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RENS4F098063; Wed, 27 Sep 2006 14:23:28 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RENSEX098062; Wed, 27 Sep 2006 14:23:28 GMT (envelope-from mnag) Message-Id: <200609271423.k8RENSEX098062@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 27 Sep 2006 14:23:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/mysql50-client Makefile ports/databases/mysql50-server Makefile ports/databases/mysql50-server/files patch-include__mysql_com.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 14:23:39 -0000 mnag 2006-09-27 14:23:28 UTC FreeBSD ports repository Modified files: databases/mysql50-client Makefile databases/mysql50-server Makefile Added files: databases/mysql50-server/files patch-include__mysql_com.h Log: - Apply fix to ulong problem. http://bugs.mysql.com/bug.php?id=22227 - Bump -client PORTREVISION - portlint Approved by: maintainer (ale) Revision Changes Path 1.96 +1 -0 ports/databases/mysql50-client/Makefile 1.219 +1 -1 ports/databases/mysql50-server/Makefile 1.1 +21 -0 ports/databases/mysql50-server/files/patch-include__mysql_com.h (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:02:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD6FB16A417; Wed, 27 Sep 2006 15:02:14 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B31943DC5; Wed, 27 Sep 2006 15:01:46 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RF1jVZ000480; Wed, 27 Sep 2006 15:01:45 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RF1jWj000479; Wed, 27 Sep 2006 15:01:45 GMT (envelope-from tobez) Message-Id: <200609271501.k8RF1jWj000479@repoman.freebsd.org> From: Anton Berezin Date: Wed, 27 Sep 2006 15:01:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/p5-Mail-Box Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:02:14 -0000 tobez 2006-09-27 15:01:45 UTC FreeBSD ports repository Modified files: mail/p5-Mail-Box Makefile distinfo Log: Update to 2.068. Revision Changes Path 1.17 +1 -1 ports/mail/p5-Mail-Box/Makefile 1.16 +3 -3 ports/mail/p5-Mail-Box/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:07:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D57016A412; Wed, 27 Sep 2006 15:07:34 +0000 (UTC) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57D1343D76; Wed, 27 Sep 2006 15:07:34 +0000 (GMT) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RF7YDQ001994; Wed, 27 Sep 2006 15:07:34 GMT (envelope-from alexbl@repoman.freebsd.org) Received: (from alexbl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RF7YAO001993; Wed, 27 Sep 2006 15:07:34 GMT (envelope-from alexbl) Message-Id: <200609271507.k8RF7YAO001993@repoman.freebsd.org> From: Alexander Botero-Lowry Date: Wed, 27 Sep 2006 15:07:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/xmms2 Makefile distinfo pkg-plist ports/audio/xmms2/files patch-SConstruct patch-src_plugins_faad_Plugin patch-src_xmms_Program X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:07:34 -0000 alexbl 2006-09-27 15:07:34 UTC FreeBSD ports repository Modified files: audio/xmms2 Makefile distinfo pkg-plist audio/xmms2/files patch-src_plugins_faad_Plugin patch-src_xmms_Program Added files: audio/xmms2/files patch-SConstruct Log: - update to 0.2DrGonzo - Changelog at http://wiki.xmms2.xmms.se/index.php/Release:DrGonzo Approved by: novel (mentor) Revision Changes Path 1.18 +24 -11 ports/audio/xmms2/Makefile 1.7 +3 -3 ports/audio/xmms2/distinfo 1.1 +13 -0 ports/audio/xmms2/files/patch-SConstruct (new) 1.4 +4 -4 ports/audio/xmms2/files/patch-src_plugins_faad_Plugin 1.3 +9 -9 ports/audio/xmms2/files/patch-src_xmms_Program 1.9 +6 -0 ports/audio/xmms2/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:12:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33BD816A412; Wed, 27 Sep 2006 15:12:41 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E47843D46; Wed, 27 Sep 2006 15:12:36 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFCarV002444; Wed, 27 Sep 2006 15:12:36 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFCaCa002443; Wed, 27 Sep 2006 15:12:36 GMT (envelope-from clsung) Message-Id: <200609271512.k8RFCaCa002443@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 15:12:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/chinese Makefile ports/chinese/p5-Lingua-ZH-BPMFConvert Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:12:41 -0000 clsung 2006-09-27 15:12:36 UTC FreeBSD ports repository Modified files: chinese Makefile Added files: chinese/p5-Lingua-ZH-BPMFConvert Makefile distinfo pkg-descr pkg-plist Log: Add p5-Lingua-ZH-BPMFConvert 0.01, rule-based conversion of BPMF (bopomofo) into Hanyu Pinyin. PR: ports/102941 Submitted by: Gea-Suan Lin Revision Changes Path 1.234 +1 -0 ports/chinese/Makefile 1.1 +28 -0 ports/chinese/p5-Lingua-ZH-BPMFConvert/Makefile (new) 1.1 +3 -0 ports/chinese/p5-Lingua-ZH-BPMFConvert/distinfo (new) 1.1 +6 -0 ports/chinese/p5-Lingua-ZH-BPMFConvert/pkg-descr (new) 1.1 +8 -0 ports/chinese/p5-Lingua-ZH-BPMFConvert/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:12:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C087016A403; Wed, 27 Sep 2006 15:12:54 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AF7243D5F; Wed, 27 Sep 2006 15:12:48 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFCmqL002484; Wed, 27 Sep 2006 15:12:48 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFCmqE002483; Wed, 27 Sep 2006 15:12:48 GMT (envelope-from clsung) Message-Id: <200609271512.k8RFCmqE002483@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 15:12:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:12:54 -0000 clsung 2006-09-27 15:12:48 UTC FreeBSD ports repository Modified files: . modules Log: zh-p5-Lingua-ZH-BPMFConvert --> ports/chinese/p5-Lingua-ZH-BPMFConvert Revision Changes Path 1.16287 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:13:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCA2D16A403; Wed, 27 Sep 2006 15:13:29 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3105943D79; Wed, 27 Sep 2006 15:13:26 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFDQx8002551; Wed, 27 Sep 2006 15:13:26 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFDQYM002550; Wed, 27 Sep 2006 15:13:26 GMT (envelope-from sat) Message-Id: <200609271513.k8RFDQYM002550@repoman.freebsd.org> From: Andrew Pantyukhin Date: Wed, 27 Sep 2006 15:13:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/xpi-foxmarks Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:13:30 -0000 sat 2006-09-27 15:13:26 UTC FreeBSD ports repository Modified files: www/xpi-foxmarks Makefile distinfo pkg-plist Log: - Update to 0.80 Revision Changes Path 1.2 +1 -1 ports/www/xpi-foxmarks/Makefile 1.2 +3 -3 ports/www/xpi-foxmarks/distinfo 1.2 +5 -0 ports/www/xpi-foxmarks/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:13:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BF3916A494; Wed, 27 Sep 2006 15:13:44 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D52B43D6B; Wed, 27 Sep 2006 15:13:40 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFDegB002604; Wed, 27 Sep 2006 15:13:40 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFDe4b002603; Wed, 27 Sep 2006 15:13:40 GMT (envelope-from arved) Message-Id: <200609271513.k8RFDe4b002603@repoman.freebsd.org> From: Tilman Linneweh Date: Wed, 27 Sep 2006 15:13:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/kaffeine Makefile pkg-plist ports/multimedia/kaffeine/files patch-kaffeine-mimetypes-application-Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:13:44 -0000 arved 2006-09-27 15:13:40 UTC FreeBSD ports repository Modified files: multimedia/kaffeine Makefile pkg-plist Added files: multimedia/kaffeine/files patch-kaffeine-mimetypes-application-Makefile.in Log: Don't override x-mplayer2.desktop file from kdelibs Add missing @dirrm for obscure locale directories Reported by: pointyhat Revision Changes Path 1.36 +1 -0 ports/multimedia/kaffeine/Makefile 1.1 +20 -0 ports/multimedia/kaffeine/files/patch-kaffeine-mimetypes-application-Makefile.in (new) 1.17 +4 -1 ports/multimedia/kaffeine/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:15:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 467A316A403; Wed, 27 Sep 2006 15:15:50 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00F6A43D55; Wed, 27 Sep 2006 15:15:50 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFFnEC002729; Wed, 27 Sep 2006 15:15:49 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFFn6L002728; Wed, 27 Sep 2006 15:15:49 GMT (envelope-from clsung) Message-Id: <200609271515.k8RFFn6L002728@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 15:15:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Module-Build-Convert Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:15:50 -0000 clsung 2006-09-27 15:15:49 UTC FreeBSD ports repository Modified files: devel/p5-Module-Build-Convert Makefile distinfo Log: - Update to 0.38 Revision Changes Path 1.11 +2 -3 ports/devel/p5-Module-Build-Convert/Makefile 1.9 +3 -3 ports/devel/p5-Module-Build-Convert/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:18:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A2C916A417; Wed, 27 Sep 2006 15:18:38 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9F7943D53; Wed, 27 Sep 2006 15:18:37 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFIb6O002917; Wed, 27 Sep 2006 15:18:37 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFIbtL002916; Wed, 27 Sep 2006 15:18:37 GMT (envelope-from bsam) Message-Id: <200609271518.k8RFIbtL002916@repoman.freebsd.org> From: Boris Samorodov Date: Wed, 27 Sep 2006 15:18:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/ipmi-kmod Makefile distinfo pkg-descr ports/sysutils/ipmi-kmod/files patch-Makefile patch-dev-ipmi-ipmi_ssif.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:18:38 -0000 bsam 2006-09-27 15:18:37 UTC FreeBSD ports repository Modified files: sysutils/ipmi-kmod Makefile distinfo pkg-descr Added files: sysutils/ipmi-kmod/files patch-Makefile patch-dev-ipmi-ipmi_ssif.c Log: - more recent snapshot of the code from -current, containing much new code recently committed; - the port will no longer build on FreeBSD 6-stable for versions after ipmi was MFC'd into the base system. PR: 103708 Submitted by: Nick Barkas (maintainer) Revision Changes Path 1.5 +4 -6 ports/sysutils/ipmi-kmod/Makefile 1.2 +3 -3 ports/sysutils/ipmi-kmod/distinfo 1.1 +12 -0 ports/sysutils/ipmi-kmod/files/patch-Makefile (new) 1.1 +20 -0 ports/sysutils/ipmi-kmod/files/patch-dev-ipmi-ipmi_ssif.c (new) 1.3 +1 -1 ports/sysutils/ipmi-kmod/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:26:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4776A16A403; Wed, 27 Sep 2006 15:26:00 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69C4343D5C; Wed, 27 Sep 2006 15:25:55 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFPmIT003299; Wed, 27 Sep 2006 15:25:48 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFPmGH003298; Wed, 27 Sep 2006 15:25:48 GMT (envelope-from clsung) Message-Id: <200609271525.k8RFPmGH003298@repoman.freebsd.org> From: Cheng-Lung Sung Date: Wed, 27 Sep 2006 15:25:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/p5-POE-Filter-Bzip2 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:26:00 -0000 clsung 2006-09-27 15:25:48 UTC FreeBSD ports repository Modified files: archivers/p5-POE-Filter-Bzip2 Makefile distinfo Log: - Update to 1.4 Revision Changes Path 1.3 +1 -1 ports/archivers/p5-POE-Filter-Bzip2/Makefile 1.3 +3 -3 ports/archivers/p5-POE-Filter-Bzip2/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:29:17 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 443C416A535; Wed, 27 Sep 2006 15:29:17 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A98A43E3D; Wed, 27 Sep 2006 15:27:35 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RFROZN058728; Wed, 27 Sep 2006 11:27:34 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ceri Davies Date: Wed, 27 Sep 2006 11:24:59 -0400 User-Agent: KMail/1.9.1 References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> In-Reply-To: <20060927084514.GR54669@submonkey.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271125.00138.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 11:27:34 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1947/Tue Sep 26 20:46:56 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Tom Rhodes , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, danger@freebsd.org, brueffer@freebsd.org Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:29:17 -0000 On Wednesday 27 September 2006 04:45, Ceri Davies wrote: > On Wed, Sep 27, 2006 at 04:15:26AM -0400, Tom Rhodes wrote: > > On Wed, 27 Sep 2006 08:53:14 +0100 > > Ceri Davies wrote: > > > > > On Wed, Sep 27, 2006 at 03:41:24AM -0400, Tom Rhodes wrote: > > > > On Tue, 26 Sep 2006 22:23:39 +0200 > > > > Christian Brueffer wrote: > > > > > > > > > | @@ -33,11 +33,9 @@ > > > > > > | .Nm example > > > > > > | .Nd "example device driver manual page" > > > > > > | .Sh SYNOPSIS > > > > > > | -To compile the > > > > > > | -.Ns Nm > > > > > > | -driver into the kernel, > > > > > > | -place the following lines in the > > > > > > | -kernel configuration file: > > > > > > | +To enable support for > > > > > > | +.Ns Nm , > > > > > > | +place the following lines in the kernel configuration file: > > > > > > > > > > The formulation used before was much more accurate WRT the distinction > > > > > we make between compiling something into the kernel and loading it as a > > > > > module. If we load something as a module we also "enable support for > > > > > it". > > > > > > > > What about in cases where other hoops must be jumped before the > > > > driver/feature/whatever is really supported? > > > > > > They can be special cased in the real manual. In the wider sense, > > > kldload is the easiest way to enable support for something, and I know > > > that I'm personally well past encouraging users to recompile the kernel > > > just to get, for example, sound working when a simple kldload does the > > > job just as well in most cases. > > > > That is of course that "something" has a module. ;) > > Well yes, which is why the previous text explicitly said "to compile .Nm > into the kernel", because that's what the example does. > > > Seriously though, why handle one case any differently than > > another? > > Compiling something into the kernel and loading a module are different, > that's why, and we should be clear about the distinction (because, as > you state, some modules don't exist). And it's not the same as enabling the driver. You can kldload ipmi but still disable it via a hw.ipmi.on sysctl and then re-enable it later w/o unloading it by toggling the sysctl back on. Enable is a poor word choice and very vague. Since you are mentioning the specific details of adding lines to a kernel config file, you should be as specific in stating what that does (adds driver to kernel). -- John Baldwin From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:29:17 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6527516A53C; Wed, 27 Sep 2006 15:29:17 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C6F543E34; Wed, 27 Sep 2006 15:27:41 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RFROZO058728; Wed, 27 Sep 2006 11:27:35 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: danger@rulez.sk Date: Wed, 27 Sep 2006 11:27:09 -0400 User-Agent: KMail/1.9.1 References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927102234.dsupin91usswg4s0@mail.rulez.sk> In-Reply-To: <20060927102234.dsupin91usswg4s0@mail.rulez.sk> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271127.10798.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 11:27:35 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1947/Tue Sep 26 20:46:56 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, Daniel Gerzo , src-committers@freebsd.org, cvs-all@freebsd.org, Christian Brueffer Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:29:17 -0000 On Wednesday 27 September 2006 04:22, danger@rulez.sk wrote: > Quoting Christian Brueffer : > > > On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: > >> danger 2006-09-26 19:59:52 UTC > >> > >> FreeBSD src repository (doc committer) > >> > >> Modified files: > >> share/examples/mdoc example.4 > >> Log: > >> Remove second person from the sentece and rephrase a bit. > >> > >> Approved by: trhodes (mentor), keramida (mentor) > >> > >> Revision Changes Path > >> 1.26 +6 -8 src/share/examples/mdoc/example.4 > > > > I don't agree to these changes, see below for details (also I don't see where > > exactly you removed second person usage, it's still being used in the new > > version). > > We want to aviod to use words like "you", "your" and so on. I have > talked about it with Ruslan and my mentors. > > >> | -To compile the > >> | -.Ns Nm > >> | -driver into the kernel, > >> | -place the following lines in the > >> | -kernel configuration file: > >> | +To enable support for > >> | +.Ns Nm , > >> | +place the following lines in the kernel configuration file: > > > > The formulation used before was much more accurate WRT the distinction > > we make between compiling something into the kernel and loading it as a > > module. If we load something as a module we also "enable support for > > it". > > I think it's certainly clear to users that they can either enable > support for something in kernel _or_ load it as a module which would > bring that support without need of kernel recompilation. Not in the text you just wrote. The diff quoted above would now imply to at least some users that you have to compile drivers into the kernel since that's how one "enable[s] support for foo(4)". -- John Baldwin From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:29:17 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE8B016A407; Wed, 27 Sep 2006 15:29:17 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46F8843E2D; Wed, 27 Sep 2006 15:27:34 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RFROZM058728; Wed, 27 Sep 2006 11:27:30 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Maxim Sobolev Date: Wed, 27 Sep 2006 11:17:25 -0400 User-Agent: KMail/1.9.1 References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609261313.03759.jhb@freebsd.org> <4519B2E5.9000304@FreeBSD.org> In-Reply-To: <4519B2E5.9000304@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271117.25831.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 11:27:31 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1947/Tue Sep 26 20:46:56 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:29:18 -0000 On Tuesday 26 September 2006 19:08, Maxim Sobolev wrote: > John Baldwin wrote: > > On Tuesday 26 September 2006 12:08, Maxim Sobolev wrote: > >> sobomax 2006-09-26 16:08:29 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: (Branch: RELENG_6) > >> sys/i386/i386 local_apic.c > >> Log: > >> Revert 1.17.2.8, which reportedly causes problems on some hardware. > > > > The report I saw was that it broke ULE in general. Are you going to revert it > > from amd64 as well? > > Yes, you are right - this is ULE specific bug. In fact, quick grep of > the ULE code reveals that it doesn't honor hlt_cpus_mask, so that the > problem is with ULE, not with the change in question. Well, hlt_cpus_mask is really an x86-specific hack. :) -- John Baldwin From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:30:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BCE116A98C; Wed, 27 Sep 2006 15:30:47 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA5AB43D55; Wed, 27 Sep 2006 15:30:46 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFUkc2003551; Wed, 27 Sep 2006 15:30:46 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFUkv0003550; Wed, 27 Sep 2006 15:30:46 GMT (envelope-from mjacob) Message-Id: <200609271530.k8RFUkv0003550@repoman.freebsd.org> From: Matt Jacob Date: Wed, 27 Sep 2006 15:30:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/mpt mpt_cam.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:30:47 -0000 mjacob 2006-09-27 15:30:46 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/mpt mpt_cam.c Log: MFC 1.34: Connect QFULL events up with decreasing openings. Approved by: re (mux) Revision Changes Path 1.1.2.6 +32 -2 src/sys/dev/mpt/mpt_cam.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:32:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84A7E16A4CE; Wed, 27 Sep 2006 15:32:09 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99F8A43D5E; Wed, 27 Sep 2006 15:32:04 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFW4Gh003672; Wed, 27 Sep 2006 15:32:04 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFW4gO003671; Wed, 27 Sep 2006 15:32:04 GMT (envelope-from ru) Message-Id: <200609271532.k8RFW4gO003671@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 27 Sep 2006 15:32:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/kbdmux kbdmux.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:32:09 -0000 ru 2006-09-27 15:32:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/kbdmux kbdmux.c Log: MFC: Revert back to using *(int *)arg when accessing integer ioctl arguments. For now, this is a work-around only, as sparc64 remains broken for these ioctls, but it makes keyboard ioctls for little endian LP64 platforms such as amd64 work again when using kbdmux (it is used in the GENERIC kernel). A one true fix for all is in works, and will be committed to -CURRENT shortly. Approved by: re (kensmith) Revision Changes Path 1.2.2.7 +13 -13 src/sys/dev/kbdmux/kbdmux.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 15:38:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBE6F16A403; Wed, 27 Sep 2006 15:38:13 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A71A43D49; Wed, 27 Sep 2006 15:38:13 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RFcD6G003978; Wed, 27 Sep 2006 15:38:13 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RFcDkw003977; Wed, 27 Sep 2006 15:38:13 GMT (envelope-from mjacob) Message-Id: <200609271538.k8RFcDkw003977@repoman.freebsd.org> From: Matt Jacob Date: Wed, 27 Sep 2006 15:38:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/examples/scsi_target scsi_cmds.c scsi_target.c scsi_target.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 15:38:13 -0000 mjacob 2006-09-27 15:38:13 UTC FreeBSD src repository Modified files: share/examples/scsi_target scsi_cmds.c scsi_target.c scsi_target.h Log: Bump MAX_INITIATORS to 1024- the LSI-Logic can go even higher than this for 'initiator id'- this is a stopgap until a sparse map is added. Make compat defines for offset format (FreeBSD 5 or less). Add no-asyncio flag. There's some breakage with ASYNC I/O that every now and then drops us into an infinite loop. This also then does a fallback to no-asyncio if the AIO option isn't loaded/compiled into the kernel. A number of other chanes to try and track some breakage. Revision Changes Path 1.10 +72 -37 src/share/examples/scsi_target/scsi_cmds.c 1.18 +65 -58 src/share/examples/scsi_target/scsi_target.c 1.4 +14 -2 src/share/examples/scsi_target/scsi_target.h From owner-cvs-all@FreeBSD.ORG Wed Sep 27 16:11:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 738A716A4AB; Wed, 27 Sep 2006 16:11:01 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B58643D6E; Wed, 27 Sep 2006 16:10:59 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [10.10.3.185] ([165.236.175.187]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k8RFq4BG019520; Wed, 27 Sep 2006 09:52:10 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <451A9E1E.30601@samsco.org> Date: Wed, 27 Sep 2006 09:51:58 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060206 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Baldwin References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609261313.03759.jhb@freebsd.org> <4519B2E5.9000304@FreeBSD.org> <200609271117.25831.jhb@freebsd.org> In-Reply-To: <200609271117.25831.jhb@freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=0.0 required=3.8 tests=none autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: Maxim Sobolev , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 16:11:01 -0000 John Baldwin wrote: > On Tuesday 26 September 2006 19:08, Maxim Sobolev wrote: > >>John Baldwin wrote: >> >>>On Tuesday 26 September 2006 12:08, Maxim Sobolev wrote: >>> >>>>sobomax 2006-09-26 16:08:29 UTC >>>> >>>> FreeBSD src repository >>>> >>>> Modified files: (Branch: RELENG_6) >>>> sys/i386/i386 local_apic.c >>>> Log: >>>> Revert 1.17.2.8, which reportedly causes problems on some hardware. >>> >>>The report I saw was that it broke ULE in general. Are you going to > > revert it > >>>from amd64 as well? >> >>Yes, you are right - this is ULE specific bug. In fact, quick grep of >>the ULE code reveals that it doesn't honor hlt_cpus_mask, so that the >>problem is with ULE, not with the change in question. > > > Well, hlt_cpus_mask is really an x86-specific hack. :) > x86 and amd64, which represent about 95% of FreeBSD. Scott From owner-cvs-all@FreeBSD.ORG Wed Sep 27 16:41:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 886D316A523; Wed, 27 Sep 2006 16:41:17 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E321243D68; Wed, 27 Sep 2006 16:41:15 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RGfFs6008211; Wed, 27 Sep 2006 16:41:15 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RGfFrf008210; Wed, 27 Sep 2006 16:41:15 GMT (envelope-from mbr) Message-Id: <200609271641.k8RGfFrf008210@repoman.freebsd.org> From: Martin Blapp Date: Wed, 27 Sep 2006 16:41:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern tty_tty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 16:41:17 -0000 mbr 2006-09-27 16:41:15 UTC FreeBSD src repository Modified files: sys/kern tty_tty.c Log: Use ctty instead of just returning. ctty just has a simple open that returns ENXIO. Submitted by: jhb Revision Changes Path 1.59 +1 -1 src/sys/kern/tty_tty.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 16:42:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DA0F16A4A7; Wed, 27 Sep 2006 16:42:14 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD14943D6E; Wed, 27 Sep 2006 16:42:10 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RGgA3F008264; Wed, 27 Sep 2006 16:42:10 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RGgAEX008263; Wed, 27 Sep 2006 16:42:10 GMT (envelope-from mbr) Message-Id: <200609271642.k8RGgAEX008263@repoman.freebsd.org> From: Martin Blapp Date: Wed, 27 Sep 2006 16:42:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_proc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 16:42:14 -0000 mbr 2006-09-27 16:42:10 UTC FreeBSD src repository Modified files: sys/kern kern_proc.c Log: Move Giant up even further since P_CONTROLT isn't really fully locked yet (p_flag is, but P_CONTROLT isn't really). Submitted by: jhb Revision Changes Path 1.243 +1 -1 src/sys/kern/kern_proc.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 17:35:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEFBB16A415; Wed, 27 Sep 2006 17:35:54 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9628243D49; Wed, 27 Sep 2006 17:35:54 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RHZsHX019338; Wed, 27 Sep 2006 17:35:54 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RHZsZV019337; Wed, 27 Sep 2006 17:35:54 GMT (envelope-from netchild) Message-Id: <200609271735.k8RHZsZV019337@repoman.freebsd.org> From: Alexander Leidinger Date: Wed, 27 Sep 2006 17:35:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 17:35:55 -0000 netchild 2006-09-27 17:35:54 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws Makefile distinfo Log: Update to 2.5.2. Revision Changes Path 1.107 +1 -1 ports/mail/sylpheed-claws/Makefile 1.51 +3 -3 ports/mail/sylpheed-claws/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 17:41:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04C4916A40F; Wed, 27 Sep 2006 17:41:23 +0000 (UTC) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from ms-dienst.rz.rwth-aachen.de (ms-1.rz.RWTH-Aachen.DE [134.130.3.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD7A443D77; Wed, 27 Sep 2006 17:41:11 +0000 (GMT) (envelope-from chris@hitnet.RWTH-Aachen.DE) Received: from circe (circe.rz.RWTH-Aachen.DE [134.130.3.36]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0J69004CPIGICL@ms-dienst.rz.rwth-aachen.de>; Wed, 27 Sep 2006 19:41:07 +0200 (MEST) Received: from talos.rz.RWTH-Aachen.DE ([134.130.3.22]) by circe (MailMonitor for SMTP v1.2.2 ) ; Wed, 27 Sep 2006 19:41:05 +0200 (MEST) Received: from bigboss.hitnet.rwth-aachen.de (bigspace.hitnet.RWTH-Aachen.DE [137.226.181.2]) by smarthost.rwth-aachen.de (8.13.7/8.13.1/1) with ESMTP id k8RHf5Rn020032; Wed, 27 Sep 2006 19:41:05 +0200 Received: from haakonia.hitnet.rwth-aachen.de ([137.226.181.92]) by bigboss.hitnet.rwth-aachen.de with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1GSdP7-0008C0-HF; Wed, 27 Sep 2006 19:41:05 +0200 Received: by haakonia.hitnet.rwth-aachen.de (Postfix, from userid 1001) id 545E63F41D; Wed, 27 Sep 2006 10:54:08 +0200 (CEST) Date: Wed, 27 Sep 2006 10:54:08 +0200 From: Christian Brueffer In-reply-to: <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> To: Daniel Gerzo Message-id: <20060927085408.GD1941@haakonia.hitnet.RWTH-Aachen.DE> MIME-version: 1.0 Content-type: multipart/signed; boundary=M38YqGLZlgb6RLPS; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-disposition: inline User-Agent: Mutt/1.5.11 X-Operating-System: FreeBSD 6.2-PRERELEASE X-PGP-Key: http://people.FreeBSD.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927034124.2c57b517.trhodes@FreeBSD.org> <20060927075314.GQ54669@submonkey.net> <20060927041526.6b33a348.trhodes@FreeBSD.org> <20060927084514.GR54669@submonkey.net> <20060927104921.jd9ee4550kssgc04@mail.rulez.sk> Cc: Tom Rhodes , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org, Ceri Davies Subject: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 17:41:23 -0000 --M38YqGLZlgb6RLPS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 10:49:21AM +0200, Daniel Gerzo wrote: > Quoting Ceri Davies : >=20 > > > >No, we're arguing over grammar. The sentence currently renders as > >something like: > > > > Alternatively, to load the fxp(4) as a module at boot time... > > >=20 > I proposed the following change: >=20 > Alternatively, to load > .Ns Nm > module at boot time... >=20 That's wrong. In this case you'd _need_ the "the" or you'd have to remove "module". I prefer the former though, since it makes clean that we're talking about the module here. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --M38YqGLZlgb6RLPS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGjwwbHYXjKDtmC0RArlvAJ9qvjvNifE+w9l+yf7bbpNoAzkfSwCgrXau 5JraMwd2I0RH3428jg02OUE= =bqXs -----END PGP SIGNATURE----- --M38YqGLZlgb6RLPS-- From owner-cvs-all@FreeBSD.ORG Wed Sep 27 18:10:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34F4316A407; Wed, 27 Sep 2006 18:10:17 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB75543D53; Wed, 27 Sep 2006 18:10:16 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RIAGlx022080; Wed, 27 Sep 2006 18:10:16 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RIAGSu022079; Wed, 27 Sep 2006 18:10:16 GMT (envelope-from alc) Message-Id: <200609271810.k8RIAGSu022079@repoman.freebsd.org> From: Alan Cox Date: Wed, 27 Sep 2006 18:10:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 18:10:17 -0000 alc 2006-09-27 18:10:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c Log: MFC Correct a very old and very obscure bug: vmspace_fork() calls pmap_copy() if the mapping is VM_INHERIT_SHARE. Suppose the mapping is also wired. vmspace_fork() clears the wiring attributes in the vm map entry but pmap_copy() copies the PG_W attribute in the PTE. I don't think this is catastrophic. It blocks pmap_remove_pages() from destroying the mapping and corrupts the pmap's wiring count. This revision fixes the problem by changing pmap_copy() to clear the PG_W attribute. Approved by: re (mux) Revision Changes Path 1.516.2.8 +4 -3 src/sys/amd64/amd64/pmap.c 1.523.2.8 +5 -3 src/sys/i386/i386/pmap.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 18:24:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EFB016A40F; Wed, 27 Sep 2006 18:24:38 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCA8643D4C; Wed, 27 Sep 2006 18:24:37 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RIObjJ022799; Wed, 27 Sep 2006 18:24:37 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RIObtN022798; Wed, 27 Sep 2006 18:24:37 GMT (envelope-from netchild) Message-Id: <200609271824.k8RIObtN022798@repoman.freebsd.org> From: Alexander Leidinger Date: Wed, 27 Sep 2006 18:24:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/spamass-rules Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 18:24:38 -0000 netchild 2006-09-27 18:24:37 UTC FreeBSD ports repository Modified files: mail/spamass-rules Makefile distinfo Log: - Update to 20060927 - Cleanups in some rule files PR: 103719 Submitted by: maintainer Revision Changes Path 1.21 +1 -1 ports/mail/spamass-rules/Makefile 1.19 +3 -3 ports/mail/spamass-rules/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 18:29:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9549B16A403; Wed, 27 Sep 2006 18:29:43 +0000 (UTC) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45B3F43D5D; Wed, 27 Sep 2006 18:29:43 +0000 (GMT) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RIThRF023019; Wed, 27 Sep 2006 18:29:43 GMT (envelope-from stefan@repoman.freebsd.org) Received: (from stefan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RITh50023018; Wed, 27 Sep 2006 18:29:43 GMT (envelope-from stefan) Message-Id: <200609271829.k8RITh50023018@repoman.freebsd.org> From: Stefan Walter Date: Wed, 27 Sep 2006 18:29:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/java/eclipse-clay-core Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 18:29:43 -0000 stefan 2006-09-27 18:29:43 UTC FreeBSD ports repository Modified files: java/eclipse-clay-core Makefile distinfo Log: Update to 1.2.0. PR: 102623 Submitted by: Marcin Jessa Approved by: maintainer Revision Changes Path 1.7 +3 -3 ports/java/eclipse-clay-core/Makefile 1.4 +3 -3 ports/java/eclipse-clay-core/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 18:49:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44BD616A415; Wed, 27 Sep 2006 18:49:34 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFEA643D4C; Wed, 27 Sep 2006 18:49:33 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RInX5S024042; Wed, 27 Sep 2006 18:49:33 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RInXxs024041; Wed, 27 Sep 2006 18:49:33 GMT (envelope-from rafan) Message-Id: <200609271849.k8RInXxs024041@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 27 Sep 2006 18:49:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/sbcl Makefile distinfo pkg-plist ports/lang/sbcl/files patch-contrib_asdf-install_installer.lisp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 18:49:34 -0000 rafan 2006-09-27 18:49:33 UTC FreeBSD ports repository Modified files: lang/sbcl Makefile distinfo pkg-plist Removed files: lang/sbcl/files patch-contrib_asdf-install_installer.lisp Log: - Update to 0.9.17 PR: ports/103698 Submitted by: NIIMI Satoshi (maintainer) Revision Changes Path 1.37 +2 -2 ports/lang/sbcl/Makefile 1.27 +9 -9 ports/lang/sbcl/distinfo 1.2 +0 -24 ports/lang/sbcl/files/patch-contrib_asdf-install_installer.lisp (dead) 1.23 +1 -0 ports/lang/sbcl/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 18:51:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 536C616A416; Wed, 27 Sep 2006 18:51:20 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C102543D55; Wed, 27 Sep 2006 18:51:19 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RIpJMW024278; Wed, 27 Sep 2006 18:51:19 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RIpJEf024277; Wed, 27 Sep 2006 18:51:19 GMT (envelope-from sobomax) Message-Id: <200609271851.k8RIpJEf024277@repoman.freebsd.org> From: Maxim Sobolev Date: Wed, 27 Sep 2006 18:51:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/i386 local_apic.c src/sys/amd64/amd64 local_apic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 18:51:20 -0000 sobomax 2006-09-27 18:51:19 UTC FreeBSD src repository Modified files: sys/i386/i386 local_apic.c sys/amd64/amd64 local_apic.c Log: Since ULE doesn't honor hlt_cpus_mask don't compile code that prevents timer interrupt servicing for disabled HTT cores in ULE case. Should be probably fixed in ULE code instead, but we have no real maintainer for ULE to do it. PR: 103697 Revision Changes Path 1.30 +1 -1 src/sys/amd64/amd64/local_apic.c 1.32 +1 -1 src/sys/i386/i386/local_apic.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 19:20:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A33516A403; Wed, 27 Sep 2006 19:20:44 +0000 (UTC) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDC9243D4C; Wed, 27 Sep 2006 19:20:43 +0000 (GMT) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RJKhai026785; Wed, 27 Sep 2006 19:20:43 GMT (envelope-from schweikh@repoman.freebsd.org) Received: (from schweikh@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RJKhuN026784; Wed, 27 Sep 2006 19:20:43 GMT (envelope-from schweikh) Message-Id: <200609271920.k8RJKhuN026784@repoman.freebsd.org> From: Jens Schweikhardt Date: Wed, 27 Sep 2006 19:20:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/games/fortune/datfiles limerick startrek X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 19:20:44 -0000 schweikh 2006-09-27 19:20:43 UTC FreeBSD src repository Modified files: games/fortune/datfiles limerick startrek Log: Correct typo. Revision Changes Path 1.11 +1 -1 src/games/fortune/datfiles/limerick 1.9 +1 -1 src/games/fortune/datfiles/startrek From owner-cvs-all@FreeBSD.ORG Wed Sep 27 19:32:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FB0016A40F; Wed, 27 Sep 2006 19:32:30 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F12AF43D55; Wed, 27 Sep 2006 19:32:26 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RJWQsG027432; Wed, 27 Sep 2006 19:32:26 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RJWQKx027431; Wed, 27 Sep 2006 19:32:26 GMT (envelope-from jhb) Message-Id: <200609271932.k8RJWQKx027431@repoman.freebsd.org> From: John Baldwin Date: Wed, 27 Sep 2006 19:32:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/i386/btx/btx btx.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 19:32:30 -0000 jhb 2006-09-27 19:32:26 UTC FreeBSD src repository Modified files: sys/boot/i386/btx/btx btx.S Log: Emulate moving cr0, cr2, cr3, or cr4 into any i386 general register rather than just emulating mov cr0, eax. This fixes some Compaq/HP BIOS with DMA (as the BIOS tried to read cr3 so it could translate addresses if paging was enabled). MFC after: 1 week Revision Changes Path 1.39 +18 -6 src/sys/boot/i386/btx/btx/btx.S From owner-cvs-all@FreeBSD.ORG Wed Sep 27 19:54:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09FF316A412; Wed, 27 Sep 2006 19:54:14 +0000 (UTC) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE11843D45; Wed, 27 Sep 2006 19:54:13 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RJsDFr028367; Wed, 27 Sep 2006 19:54:13 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RJsDn1028366; Wed, 27 Sep 2006 19:54:13 GMT (envelope-from wilko) Message-Id: <200609271954.k8RJsDn1028366@repoman.freebsd.org> From: Wilko Bulte Date: Wed, 27 Sep 2006 19:54:13 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 19:54:14 -0000 wilko 2006-09-27 19:54:13 UTC FreeBSD doc repository Modified files: en/donations donors.sgml Log: sos received the Geode-based box Paul Ghering sent him Revision Changes Path 1.329 +2 -2 www/en/donations/donors.sgml From owner-cvs-all@FreeBSD.ORG Wed Sep 27 19:57:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5F9C16A407; Wed, 27 Sep 2006 19:57:02 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7087843D45; Wed, 27 Sep 2006 19:57:02 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RJv20X028903; Wed, 27 Sep 2006 19:57:02 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RJv25Z028902; Wed, 27 Sep 2006 19:57:02 GMT (envelope-from ru) Message-Id: <200609271957.k8RJv25Z028902@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 27 Sep 2006 19:57:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 19:57:02 -0000 ru 2006-09-27 19:57:02 UTC FreeBSD src repository Modified files: sys/dev/atkbdc atkbd.c sys/dev/digi digi.c sys/dev/kbdmux kbdmux.c sys/dev/syscons scvidctl.c syscons.c sys/dev/uart uart_kbd_sun.c sys/dev/usb ukbd.c sys/dev/vkbd vkbd.c sys/fs/procfs procfs_ioctl.c sys/kern sys_generic.c tty_pts.c tty_pty.c sys/modules/digi/digi Makefile sys/modules/if_tap Makefile sys/modules/kbdmux Makefile sys/modules/procfs Makefile sys/modules/ukbd Makefile sys/modules/vkbd Makefile sys/net if_tap.c if_tap.h sys/pc98/cbus pckbd.c sys/sys consio.h digiio.h ioccom.h kbio.h pioctl.h ttycom.h Log: Fix our ioctl(2) implementation when the argument is "int". New ioctls passing integer arguments should use the _IOWINT() macro. This fixes a lot of ioctl's not working on sparc64, most notable being keyboard/syscons ioctls. Full ABI compatibility is provided, with the bonus of fixing the handling of old ioctls on sparc64. Reviewed by: bde (with contributions) Tested by: emax, marius MFC after: 1 week Revision Changes Path 1.51 +33 -0 src/sys/dev/atkbdc/atkbd.c 1.63 +12 -1 src/sys/dev/digi/digi.c 1.14 +29 -0 src/sys/dev/kbdmux/kbdmux.c 1.38 +28 -2 src/sys/dev/syscons/scvidctl.c 1.447 +80 -5 src/sys/dev/syscons/syscons.c 1.9 +24 -1 src/sys/dev/uart/uart_kbd_sun.c 1.56 +33 -0 src/sys/dev/usb/ukbd.c 1.11 +28 -0 src/sys/dev/vkbd/vkbd.c 1.13 +27 -4 src/sys/fs/procfs/procfs_ioctl.c 1.150 +15 -11 src/sys/kern/sys_generic.c 1.9 +11 -0 src/sys/kern/tty_pts.c 1.147 +11 -0 src/sys/kern/tty_pty.c 1.5 +1 -0 src/sys/modules/digi/digi/Makefile 1.6 +4 -1 src/sys/modules/if_tap/Makefile 1.4 +4 -1 src/sys/modules/kbdmux/Makefile 1.32 +1 -0 src/sys/modules/procfs/Makefile 1.22 +5 -1 src/sys/modules/ukbd/Makefile 1.4 +4 -1 src/sys/modules/vkbd/Makefile 1.63 +13 -1 src/sys/net/if_tap.c 1.3 +1 -1 src/sys/net/if_tap.h 1.32 +26 -0 src/sys/pc98/cbus/pckbd.c 1.18 +7 -7 src/sys/sys/consio.h 1.5 +2 -2 src/sys/sys/digiio.h 1.16 +10 -2 src/sys/sys/ioccom.h 1.11 +8 -8 src/sys/sys/kbio.h 1.15 +4 -4 src/sys/sys/pioctl.h 1.25 +1 -1 src/sys/sys/ttycom.h From owner-cvs-all@FreeBSD.ORG Wed Sep 27 19:57:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53B7216A403; Wed, 27 Sep 2006 19:57:48 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B04B943D55; Wed, 27 Sep 2006 19:57:47 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RJvlIG028951; Wed, 27 Sep 2006 19:57:47 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RJvliP028950; Wed, 27 Sep 2006 19:57:47 GMT (envelope-from acm) Message-Id: <200609271957.k8RJvliP028950@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Wed, 27 Sep 2006 19:57:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/linux-savage Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 19:57:48 -0000 acm 2006-09-27 19:57:47 UTC FreeBSD ports repository Modified files: games/linux-savage Makefile Log: - Fix the long description of nvidia option Revision Changes Path 1.3 +1 -1 ports/games/linux-savage/Makefile From owner-cvs-all@FreeBSD.ORG Wed Sep 27 19:59:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABBF216A407; Wed, 27 Sep 2006 19:59:46 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AEA043D45; Wed, 27 Sep 2006 19:59:46 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RJxkDK029081; Wed, 27 Sep 2006 19:59:46 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RJxkUF029080; Wed, 27 Sep 2006 19:59:46 GMT (envelope-from dinoex) Message-Id: <200609271959.k8RJxkUF029080@repoman.freebsd.org> From: Dirk Meyer Date: Wed, 27 Sep 2006 19:59:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/science Makefile ports/science/gtamsanalyzer Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 19:59:46 -0000 dinoex 2006-09-27 19:59:46 UTC FreeBSD ports repository Modified files: science Makefile Added files: science/gtamsanalyzer Makefile distinfo pkg-descr pkg-plist Log: GTAMS Analyzer is a complete coding and analysis package. It is a "port" of TAMS Analyzer for Macintosh OS X. Note, at some point the two projects will have identical file formats, at which point the initial G (for GNUstep) will be dropped. GTAMS stands for GNUstep Text Analysis Markup System, it is a convention for identifying themes in text. The software offers a wide range of tools for applying themes to texts and identifying patterns of themes within and between texts. PR: 103680 Submitted by: Gürkan Sengün Revision Changes Path 1.104 +1 -0 ports/science/Makefile 1.1 +27 -0 ports/science/gtamsanalyzer/Makefile (new) 1.1 +3 -0 ports/science/gtamsanalyzer/distinfo (new) 1.1 +9 -0 ports/science/gtamsanalyzer/pkg-descr (new) 1.1 +112 -0 ports/science/gtamsanalyzer/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Sep 27 20:00:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8706516A518; Wed, 27 Sep 2006 20:00:58 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F05543D45; Wed, 27 Sep 2006 20:00:58 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RK0wFf029227; Wed, 27 Sep 2006 20:00:58 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RK0vw5029226; Wed, 27 Sep 2006 20:00:57 GMT (envelope-from dinoex) Message-Id: <200609272000.k8RK0vw5029226@repoman.freebsd.org> From: Dirk Meyer Date: Wed, 27 Sep 2006 20:00:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 20:00:58 -0000 dinoex 2006-09-27 20:00:57 UTC FreeBSD ports repository Modified files: . modules Log: gtamsanalyzer --> ports/science/gtamsanalyzer Revision Changes Path 1.16288 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Sep 27 20:13:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49B6C16A412; Wed, 27 Sep 2006 20:13:20 +0000 (UTC) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D328043D58; Wed, 27 Sep 2006 20:13:19 +0000 (GMT) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RKDJRF031131; Wed, 27 Sep 2006 20:13:19 GMT (envelope-from stefan@repoman.freebsd.org) Received: (from stefan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RKDJet031130; Wed, 27 Sep 2006 20:13:19 GMT (envelope-from stefan) Message-Id: <200609272013.k8RKDJet031130@repoman.freebsd.org> From: Stefan Walter Date: Wed, 27 Sep 2006 20:13:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/java/castor Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 20:13:20 -0000 stefan 2006-09-27 20:13:19 UTC FreeBSD ports repository Modified files: java/castor Makefile distinfo Log: - Update to 1.0.3. - Allow JDK versions > 1.4 as well. PR: 103230 Submitted by: maintainer Revision Changes Path 1.8 +2 -2 ports/java/castor/Makefile 1.8 +3 -3 ports/java/castor/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 20:39:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6580F16A407; Wed, 27 Sep 2006 20:39:24 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C8DA43D60; Wed, 27 Sep 2006 20:39:18 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RKdIMh041070; Wed, 27 Sep 2006 20:39:18 GMT (envelope-from itetcu@repoman.freebsd.org) Received: (from itetcu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RKdIir041063; Wed, 27 Sep 2006 20:39:18 GMT (envelope-from itetcu) Message-Id: <200609272039.k8RKdIir041063@repoman.freebsd.org> From: Ion-Mihai Tetcu Date: Wed, 27 Sep 2006 20:39:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/tinderbox Makefile ports/misc/tinderbox/files patch-setup.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 20:39:24 -0000 itetcu 2006-09-27 20:39:17 UTC FreeBSD ports repository Modified files: misc/tinderbox Makefile misc/tinderbox/files patch-setup.sh Log: Actually put something in files/patch-setup.sh and fix left-overs on deinstall. Submitted by: pointyhat via kris Revision Changes Path 1.20 +1 -0 ports/misc/tinderbox/Makefile 1.2 +11 -0 ports/misc/tinderbox/files/patch-setup.sh From owner-cvs-all@FreeBSD.ORG Wed Sep 27 20:56:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6EB916A4A7; Wed, 27 Sep 2006 20:56:56 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 939FE43D5A; Wed, 27 Sep 2006 20:56:56 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RKuulv064267; Wed, 27 Sep 2006 20:56:56 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RKuuAp064266; Wed, 27 Sep 2006 20:56:56 GMT (envelope-from thierry) Message-Id: <200609272056.k8RKuuAp064266@repoman.freebsd.org> From: Thierry Thomas Date: Wed, 27 Sep 2006 20:56:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/freefem++ Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 20:56:56 -0000 thierry 2006-09-27 20:56:56 UTC FreeBSD ports repository Modified files: math/freefem++ Makefile distinfo Log: Chase a silent update: only doc has been modified. Full diff available at . Reported by: pointyhat via Kris Revision Changes Path 1.46 +1 -0 ports/math/freefem++/Makefile 1.28 +3 -3 ports/math/freefem++/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 21:03:39 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8C6416A415; Wed, 27 Sep 2006 21:03:39 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5487643D45; Wed, 27 Sep 2006 21:03:39 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RL3bw1061032; Wed, 27 Sep 2006 17:03:37 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Scott Long Date: Wed, 27 Sep 2006 13:38:21 -0400 User-Agent: KMail/1.9.1 References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609271117.25831.jhb@freebsd.org> <451A9E1E.30601@samsco.org> In-Reply-To: <451A9E1E.30601@samsco.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271338.22284.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 17:03:37 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1948/Wed Sep 27 12:03:03 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.1 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00, DATE_IN_PAST_03_06 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Maxim Sobolev , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 21:03:40 -0000 On Wednesday 27 September 2006 11:51, Scott Long wrote: > John Baldwin wrote: > > On Tuesday 26 September 2006 19:08, Maxim Sobolev wrote: > > > >>John Baldwin wrote: > >> > >>>On Tuesday 26 September 2006 12:08, Maxim Sobolev wrote: > >>> > >>>>sobomax 2006-09-26 16:08:29 UTC > >>>> > >>>> FreeBSD src repository > >>>> > >>>> Modified files: (Branch: RELENG_6) > >>>> sys/i386/i386 local_apic.c > >>>> Log: > >>>> Revert 1.17.2.8, which reportedly causes problems on some hardware. > >>> > >>>The report I saw was that it broke ULE in general. Are you going to > > > > revert it > > > >>>from amd64 as well? > >> > >>Yes, you are right - this is ULE specific bug. In fact, quick grep of > >>the ULE code reveals that it doesn't honor hlt_cpus_mask, so that the > >>problem is with ULE, not with the change in question. > > > > > > Well, hlt_cpus_mask is really an x86-specific hack. :) > > > > x86 and amd64, which represent about 95% of FreeBSD. My point is that we need a notion of taking CPUs offline and online with scheudler hooks, instead of exporting a simple x86-specific bitmask. Right now we don't notify the schedulers when a CPU goes offline so that they can try to do sensible things with pinned and bound threads, etc. Instead, they just have to "notice" which is rediculously lame. -- John Baldwin From owner-cvs-all@FreeBSD.ORG Wed Sep 27 21:03:50 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5984316A5A9; Wed, 27 Sep 2006 21:03:50 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id A766B43D7D; Wed, 27 Sep 2006 21:03:44 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RL3e9T061037; Wed, 27 Sep 2006 17:03:42 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ruslan Ermilov Date: Wed, 27 Sep 2006 17:03:42 -0400 User-Agent: KMail/1.9.1 References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> In-Reply-To: <200609271957.k8RJv25Z028902@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271703.43643.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 17:03:42 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1948/Wed Sep 27 12:03:03 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 21:03:50 -0000 On Wednesday 27 September 2006 15:57, Ruslan Ermilov wrote: > ru 2006-09-27 19:57:02 UTC > > FreeBSD src repository > > Modified files: > sys/dev/atkbdc atkbd.c > sys/dev/digi digi.c > sys/dev/kbdmux kbdmux.c > sys/dev/syscons scvidctl.c syscons.c > sys/dev/uart uart_kbd_sun.c > sys/dev/usb ukbd.c > sys/dev/vkbd vkbd.c > sys/fs/procfs procfs_ioctl.c > sys/kern sys_generic.c tty_pts.c tty_pty.c > sys/modules/digi/digi Makefile > sys/modules/if_tap Makefile > sys/modules/kbdmux Makefile > sys/modules/procfs Makefile > sys/modules/ukbd Makefile > sys/modules/vkbd Makefile > sys/net if_tap.c if_tap.h > sys/pc98/cbus pckbd.c > sys/sys consio.h digiio.h ioccom.h kbio.h > pioctl.h ttycom.h > Log: > Fix our ioctl(2) implementation when the argument is "int". New > ioctls passing integer arguments should use the _IOWINT() macro. > This fixes a lot of ioctl's not working on sparc64, most notable > being keyboard/syscons ioctls. > > Full ABI compatibility is provided, with the bonus of fixing the > handling of old ioctls on sparc64. Eh? You just changed ioctl values breaking ABI all over the place, e.g. sys/pioctl.h. The size field changed from 0 to sizeof(int) meaning different ioctl values and thus ABI breakage. Plus, what if you have: struct foo { int bar; }; #define FOOIO _IOW('y', 0, struct foo) that's going to have the same issue isn't it? This really just looks like a big hack and it doesn't help with ABI compat at all. :( I think instead the various ioctl handlers have to realize that for IOC_VOID ioctls declared using _IO() data is a (caddr_t *), not an (int *) (the uap struct for ioctl clearly defines data as a caddr_t). Fix whatever crap you have to in the kernel to deal with it, but don't change the userland ABI. :( -- John Baldwin From owner-cvs-all@FreeBSD.ORG Wed Sep 27 21:08:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72F4216A4DE; Wed, 27 Sep 2006 21:08:12 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0816E43D69; Wed, 27 Sep 2006 21:07:34 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RL6xFu065878; Wed, 27 Sep 2006 21:06:59 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RL6xMx065877; Wed, 27 Sep 2006 21:06:59 GMT (envelope-from thierry) Message-Id: <200609272106.k8RL6xMx065877@repoman.freebsd.org> From: Thierry Thomas Date: Wed, 27 Sep 2006 21:06:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/science/medit Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 21:08:12 -0000 thierry 2006-09-27 21:06:58 UTC FreeBSD ports repository Modified files: science/medit Makefile distinfo Log: Add a spac64 binary, built by shaun. Revision Changes Path 1.3 +2 -2 ports/science/medit/Makefile 1.3 +3 -0 ports/science/medit/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 21:12:45 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11A9916A52B; Wed, 27 Sep 2006 21:12:45 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6432D43E00; Wed, 27 Sep 2006 21:10:56 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RLAenK061108; Wed, 27 Sep 2006 17:10:41 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ruslan Ermilov Date: Wed, 27 Sep 2006 17:10:51 -0400 User-Agent: KMail/1.9.1 References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271703.43643.jhb@freebsd.org> In-Reply-To: <200609271703.43643.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271710.51869.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 17:10:41 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1948/Wed Sep 27 12:03:03 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 21:12:45 -0000 On Wednesday 27 September 2006 17:03, John Baldwin wrote: > Eh? You just changed ioctl values breaking ABI all over the place, e.g. > sys/pioctl.h. The size field changed from 0 to sizeof(int) meaning > different ioctl values and thus ABI breakage. Bah, I see you did add compat hacks for the old ioctls. I don't see why we don't just fix the original ioctls to just use IOCPARM_IVAL() and be done with it, why do we have to add _IOWINT() and other hacks? > Plus, what if you have: > > struct foo { > int bar; > }; > > #define FOOIO _IOW('y', 0, struct foo) > > that's going to have the same issue isn't it? Ok, see now why this works. This is only for ioctl's that use int w/o specifying it (i.e. take an int directly instead of pointer to int). > I think instead the various ioctl handlers have to realize that for IOC_VOID > ioctls declared using _IO() data is a (caddr_t *), not an (int *) (the uap > struct for ioctl clearly defines data as a caddr_t). Fix whatever crap you > have to in the kernel to deal with it, but don't change the userland ABI. :( I still think doing this (via IOCPARM_IVAL()) is best and is probably a much smaller diff. -- John Baldwin From owner-cvs-all@FreeBSD.ORG Wed Sep 27 21:24:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C46B16A403; Wed, 27 Sep 2006 21:24:53 +0000 (UTC) (envelope-from tmclaugh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79DE643EB1; Wed, 27 Sep 2006 21:21:12 +0000 (GMT) (envelope-from tmclaugh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RLLCZu066589; Wed, 27 Sep 2006 21:21:12 GMT (envelope-from tmclaugh@repoman.freebsd.org) Received: (from tmclaugh@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RLLCnT066588; Wed, 27 Sep 2006 21:21:12 GMT (envelope-from tmclaugh) Message-Id: <200609272121.k8RLLCnT066588@repoman.freebsd.org> From: Tom McLaughlin Date: Wed, 27 Sep 2006 21:21:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 21:24:53 -0000 tmclaugh 2006-09-27 21:21:12 UTC FreeBSD ports repository Modified files: . access Log: Please welcome Soeren Straarup (xride) to the ports committers team. After bothering us with PRs and working with us on IRC we got fed up and punished him. I'll be his mentor and garga will be co-mentoring. Approved by: portmgr Account created by: simon Revision Changes Path 1.733 +1 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Wed Sep 27 21:30:14 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE91716A4A7; Wed, 27 Sep 2006 21:30:13 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5287143DCB; Wed, 27 Sep 2006 21:28:52 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id B829B618D; Thu, 28 Sep 2006 01:27:46 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 7DC166131; Thu, 28 Sep 2006 01:27:46 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8RLRmYx099959; Thu, 28 Sep 2006 01:27:48 +0400 (MSD) (envelope-from ru) Date: Thu, 28 Sep 2006 01:27:48 +0400 From: Ruslan Ermilov To: John Baldwin Message-ID: <20060927212748.GA83490@rambler-co.ru> References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271703.43643.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline In-Reply-To: <200609271703.43643.jhb@freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 21:30:14 -0000 --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi John, On Wed, Sep 27, 2006 at 05:03:42PM -0400, John Baldwin wrote: > On Wednesday 27 September 2006 15:57, Ruslan Ermilov wrote: > > ru 2006-09-27 19:57:02 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > sys/dev/atkbdc atkbd.c=20 > > sys/dev/digi digi.c=20 > > sys/dev/kbdmux kbdmux.c=20 > > sys/dev/syscons scvidctl.c syscons.c=20 > > sys/dev/uart uart_kbd_sun.c=20 > > sys/dev/usb ukbd.c=20 > > sys/dev/vkbd vkbd.c=20 > > sys/fs/procfs procfs_ioctl.c=20 > > sys/kern sys_generic.c tty_pts.c tty_pty.c=20 > > sys/modules/digi/digi Makefile=20 > > sys/modules/if_tap Makefile=20 > > sys/modules/kbdmux Makefile=20 > > sys/modules/procfs Makefile=20 > > sys/modules/ukbd Makefile=20 > > sys/modules/vkbd Makefile=20 > > sys/net if_tap.c if_tap.h=20 > > sys/pc98/cbus pckbd.c=20 > > sys/sys consio.h digiio.h ioccom.h kbio.h=20 > > pioctl.h ttycom.h=20 > > Log: > > Fix our ioctl(2) implementation when the argument is "int". New > > ioctls passing integer arguments should use the _IOWINT() macro. > > This fixes a lot of ioctl's not working on sparc64, most notable > > being keyboard/syscons ioctls. > > =20 > > Full ABI compatibility is provided, with the bonus of fixing the > > handling of old ioctls on sparc64. >=20 > Eh? You just changed ioctl values breaking ABI all over the place, e.g.= =20 > sys/pioctl.h. >=20 No, see also the sys/fs/procfs/procfs_ioctl.c part of a change. > The size field changed from 0 to sizeof(int) meaning different=20 > ioctl values and thus ABI breakage. >=20 No. Old ioctls are still supported, just not in headers. > Plus, what if you have: >=20 > struct foo { > int bar; > }; >=20 > #define FOOIO _IOW('y', 0, struct foo) >=20 > that's going to have the same issue isn't it? >=20 No. In this case, you're passing a pointer. Here's what happened when you called ioctl(fd, IOCTL, (int)1) on sparc64. "1" is passed in a register (64-bit). Due to the ioctl() prototype in the kernel, it sees 1 as "caddr_t data". This means that you have "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1" copied on the stack location pointed to by uap->data. Later on, a conversion from "int" to "int *" is made, and a pointer to that location of memory is passed to a device's ioctl() handler. It then accesses it as *(int *)arg and gets 0. > This really just looks like a=20 > big hack and it doesn't help with ABI compat at all. :( >=20 It does. It has been tested on i386/amd64/sparc64, with both old and new userland. > I think instead the various ioctl handlers have to realize that for IOC_V= OID=20 > ioctls declared using _IO() data is a (caddr_t *), not an (int *) (the ua= p=20 > struct for ioctl clearly defines data as a caddr_t). Fix whatever crap y= ou=20 > have to in the kernel to deal with it, but don't change the userland ABI.= :( >=20 POSIX and our manpage both say that an argument should either be an "int" or a pointer. This means we need to support "int" arguments but do it properly. My first version of the patch fixed the kernel only, replacing "int" with intptr_t where a kernel initiated an ioctl(). This is very inconvenient for a driver writer, when a userland passes an "int" argument, and a kernel has to pass an "intptr_t" argument, due to the bogus implementation. I think you were too quick in replying, and didn't look at the whole patch in detail. :-) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --EeQfGwPcQSOJBaQU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGuzUqRfpzJluFF4RAsGRAKCD/T3vbZQ5k+dH/6Yt6UVh/vyJ4wCdExzc /Iq9FCi6fAIhVaNKUqk8Pm8= =fSbo -----END PGP SIGNATURE----- --EeQfGwPcQSOJBaQU-- From owner-cvs-all@FreeBSD.ORG Wed Sep 27 21:30:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8906916A47B; Wed, 27 Sep 2006 21:30:15 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 540DF43DEC; Wed, 27 Sep 2006 21:29:14 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RLSiPB066915; Wed, 27 Sep 2006 21:28:44 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RLSiJn066914; Wed, 27 Sep 2006 21:28:44 GMT (envelope-from danger) Message-Id: <200609272128.k8RLSiJn066914@repoman.freebsd.org> From: Daniel Gerzo Date: Wed, 27 Sep 2006 21:28:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 21:30:15 -0000 danger 2006-09-27 21:28:44 UTC FreeBSD src repository (doc committer) Modified files: share/examples/mdoc example.4 Log: Revert my previous change as it does not seem to be entirely correct and popular. Revision Changes Path 1.27 +8 -6 src/share/examples/mdoc/example.4 From owner-cvs-all@FreeBSD.ORG Wed Sep 27 21:31:51 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFB8616A4E8; Wed, 27 Sep 2006 21:31:51 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B96643DC0; Wed, 27 Sep 2006 21:30:31 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id D1BAB613E; Thu, 28 Sep 2006 01:29:47 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id B10226138; Thu, 28 Sep 2006 01:29:47 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8RLTnhJ002362; Thu, 28 Sep 2006 01:29:49 +0400 (MSD) (envelope-from ru) Date: Thu, 28 Sep 2006 01:29:49 +0400 From: Ruslan Ermilov To: John Baldwin Message-ID: <20060927212949.GB83490@rambler-co.ru> References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271703.43643.jhb@freebsd.org> <200609271710.51869.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZfOjI3PrQbgiZnxM" Content-Disposition: inline In-Reply-To: <200609271710.51869.jhb@freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 21:31:52 -0000 --ZfOjI3PrQbgiZnxM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 05:10:51PM -0400, John Baldwin wrote: > On Wednesday 27 September 2006 17:03, John Baldwin wrote: > > Eh? You just changed ioctl values breaking ABI all over the place, e.g= =2E=20 > > sys/pioctl.h. The size field changed from 0 to sizeof(int) meaning > > different ioctl values and thus ABI breakage. >=20 > Bah, I see you did add compat hacks for the old ioctls. I don't see why = we=20 > don't just fix the original ioctls to just use IOCPARM_IVAL() and be done= =20 > with it, why do we have to add _IOWINT() and other hacks? >=20 > > Plus, what if you have:=20 > >=20 > > struct foo { > > int bar; > > }; > >=20 > > #define FOOIO _IOW('y', 0, struct foo) > >=20 > > that's going to have the same issue isn't it? >=20 > Ok, see now why this works. This is only for ioctl's that use int w/o=20 > specifying it (i.e. take an int directly instead of pointer to int). >=20 > > I think instead the various ioctl handlers have to realize that for IOC= _VOID=20 > > ioctls declared using _IO() data is a (caddr_t *), not an (int *) (the = uap=20 > > struct for ioctl clearly defines data as a caddr_t). Fix whatever crap= you=20 > > have to in the kernel to deal with it, but don't change the userland AB= I. :( >=20 > I still think doing this (via IOCPARM_IVAL()) is best and is probably a m= uch=20 > smaller diff. >=20 You don't consider that many ioctls are initiated inside the kernel, and this kernel code already uses (and passes) pointers to "int". While we could fix all of our kernel (and my first patch did exactly this), it's 1) very inconvenient, and 2) we cannot fix third-party kernel code this way. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --ZfOjI3PrQbgiZnxM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGu1NqRfpzJluFF4RAvfsAJwIFJYpBKJAg/ayA9iYaxDH2PnhKwCeOUH9 B6QkuX/z2jZO3S89hwUe0Io= =TfXP -----END PGP SIGNATURE----- --ZfOjI3PrQbgiZnxM-- From owner-cvs-all@FreeBSD.ORG Wed Sep 27 21:53:04 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14C6016A5AC; Wed, 27 Sep 2006 21:53:04 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6BDC43D80; Wed, 27 Sep 2006 21:52:56 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8RLqn4Z061525; Wed, 27 Sep 2006 17:52:52 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ruslan Ermilov Date: Wed, 27 Sep 2006 17:52:56 -0400 User-Agent: KMail/1.9.1 References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271710.51869.jhb@freebsd.org> <20060927212949.GB83490@rambler-co.ru> In-Reply-To: <20060927212949.GB83490@rambler-co.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609271752.57082.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Wed, 27 Sep 2006 17:52:54 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1948/Wed Sep 27 12:03:03 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 21:53:04 -0000 On Wednesday 27 September 2006 17:29, Ruslan Ermilov wrote: > On Wed, Sep 27, 2006 at 05:10:51PM -0400, John Baldwin wrote: > > On Wednesday 27 September 2006 17:03, John Baldwin wrote: > > > Eh? You just changed ioctl values breaking ABI all over the place, e.g. > > > sys/pioctl.h. The size field changed from 0 to sizeof(int) meaning > > > different ioctl values and thus ABI breakage. > > > > Bah, I see you did add compat hacks for the old ioctls. I don't see why we > > don't just fix the original ioctls to just use IOCPARM_IVAL() and be done > > with it, why do we have to add _IOWINT() and other hacks? > > > > > Plus, what if you have: > > > > > > struct foo { > > > int bar; > > > }; > > > > > > #define FOOIO _IOW('y', 0, struct foo) > > > > > > that's going to have the same issue isn't it? > > > > Ok, see now why this works. This is only for ioctl's that use int w/o > > specifying it (i.e. take an int directly instead of pointer to int). > > > > > I think instead the various ioctl handlers have to realize that for IOC_VOID > > > ioctls declared using _IO() data is a (caddr_t *), not an (int *) (the uap > > > struct for ioctl clearly defines data as a caddr_t). Fix whatever crap you > > > have to in the kernel to deal with it, but don't change the userland ABI. :( > > > > I still think doing this (via IOCPARM_IVAL()) is best and is probably a much > > smaller diff. > > > You don't consider that many ioctls are initiated inside the kernel, > and this kernel code already uses (and passes) pointers to "int". > While we could fix all of our kernel (and my first patch did exactly > this), it's 1) very inconvenient, and 2) we cannot fix third-party > kernel code this way. Could you avoid IOWINT by just assuming that any _IO() ioctl is getting an int as the arg? If an ioctl doesn't use the arg, then you don't lose anything.. do we have any ioctl's that use the arg directly but not as an int? The ioctl(2) manpage implies that 'data' is either a pointer or an int. If you go this route, you avoid changing all the ioctl values, basically just assume that IOC_VOID means the argument is an int. -- John Baldwin From owner-cvs-all@FreeBSD.ORG Wed Sep 27 22:05:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AE5E16A416; Wed, 27 Sep 2006 22:05:44 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D44DA43D5D; Wed, 27 Sep 2006 22:05:43 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RM5hsW069955; Wed, 27 Sep 2006 22:05:43 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RM5h1Q069954; Wed, 27 Sep 2006 22:05:43 GMT (envelope-from miwi) Message-Id: <200609272205.k8RM5h1Q069954@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Sep 2006 22:05:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/mediaproxy/files mediaproxy.sh.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 22:05:44 -0000 miwi 2006-09-27 22:05:43 UTC FreeBSD ports repository Modified files: net/mediaproxy/files mediaproxy.sh.in Log: - Fix INSTALL_DIR Submitted by: Steve Ames (maintainer) via privat mail Revision Changes Path 1.2 +2 -2 ports/net/mediaproxy/files/mediaproxy.sh.in From owner-cvs-all@FreeBSD.ORG Wed Sep 27 22:08:36 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 276C716A40F; Wed, 27 Sep 2006 22:08:36 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9BEA43D5C; Wed, 27 Sep 2006 22:08:33 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id ED46D46CFD; Wed, 27 Sep 2006 18:08:32 -0400 (EDT) Date: Wed, 27 Sep 2006 23:08:32 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: John Baldwin In-Reply-To: <200609271338.22284.jhb@freebsd.org> Message-ID: <20060927230635.D73166@fledge.watson.org> References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609271117.25831.jhb@freebsd.org> <451A9E1E.30601@samsco.org> <200609271338.22284.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Maxim Sobolev , Scott Long , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 22:08:36 -0000 On Wed, 27 Sep 2006, John Baldwin wrote: >>>>> from amd64 as well? >>>> >>>> Yes, you are right - this is ULE specific bug. In fact, quick grep of the >>>> ULE code reveals that it doesn't honor hlt_cpus_mask, so that the problem >>>> is with ULE, not with the change in question. >>> >>> Well, hlt_cpus_mask is really an x86-specific hack. :) >> >> x86 and amd64, which represent about 95% of FreeBSD. > > My point is that we need a notion of taking CPUs offline and online with > scheudler hooks, instead of exporting a simple x86-specific bitmask. Right > now we don't notify the schedulers when a CPU goes offline so that they can > try to do sensible things with pinned and bound threads, etc. Instead, they > just have to "notice" which is rediculously lame. It's pretty clear that if we're going to take the hypervisor + dynamic reconfiguration thing seriously, we need a structured notion of adding and removing CPUs from the active CPU pool, including things like event handlers so that subsystems can shut down operations on the CPU. For example, UMA needs a chance to drain per-CPU caches of various zones, services that have pinned threads on the CPU will need to decide how to deal with that, etc. It's work I'd very much like to see happen, and until it's done we basically need to make sure that CPUs either exist from boot and never cease existing, or don't exist at boot and are never used. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Wed Sep 27 22:09:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF17C16A407; Wed, 27 Sep 2006 22:09:35 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B3FD43D45; Wed, 27 Sep 2006 22:09:35 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RM9Zux070125; Wed, 27 Sep 2006 22:09:35 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RM9ZJe070124; Wed, 27 Sep 2006 22:09:35 GMT (envelope-from sobomax) Message-Id: <200609272209.k8RM9ZJe070124@repoman.freebsd.org> From: Maxim Sobolev Date: Wed, 27 Sep 2006 22:09:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/i386 local_apic.c src/sys/amd64/amd64 local_apic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 22:09:35 -0000 sobomax 2006-09-27 22:09:35 UTC FreeBSD src repository Modified files: sys/i386/i386 local_apic.c sys/amd64/amd64 local_apic.c Log: Extend comment explaining why code is conditional at !defined(SCHED_ULE). Suggested by: ru Revision Changes Path 1.31 +4 -0 src/sys/amd64/amd64/local_apic.c 1.33 +4 -0 src/sys/i386/i386/local_apic.c From owner-cvs-all@FreeBSD.ORG Wed Sep 27 22:12:52 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BDCD16A415; Wed, 27 Sep 2006 22:12:52 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id D330643D45; Wed, 27 Sep 2006 22:12:51 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id E84AA6219; Thu, 28 Sep 2006 02:12:49 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id AF3FA620B; Thu, 28 Sep 2006 02:12:49 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8RMCpkT052279; Thu, 28 Sep 2006 02:12:51 +0400 (MSD) (envelope-from ru) Date: Thu, 28 Sep 2006 02:12:51 +0400 From: Ruslan Ermilov To: John Baldwin Message-ID: <20060927221251.GA35467@rambler-co.ru> References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271710.51869.jhb@freebsd.org> <20060927212949.GB83490@rambler-co.ru> <200609271752.57082.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BOKacYhQ+x31HxR3" Content-Disposition: inline In-Reply-To: <200609271752.57082.jhb@freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 22:12:52 -0000 --BOKacYhQ+x31HxR3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 05:52:56PM -0400, John Baldwin wrote: > Could you avoid IOWINT by just assuming that any _IO() ioctl is getting a= n int=20 > as the arg? >=20 There are some _IO() ioctls that pass a pointer to variable sized data, and their ioctl handlers to uiocopy'ing rather than ioctl(). See sys/cam/scsi/scsi_ses.c, SESIOC_* ioctls for one such example. > If an ioctl doesn't use the arg, then you don't lose anything..=20 > do we have any ioctl's that use the arg directly but not as an int? >=20 Unfortunately yes. > The=20 > ioctl(2) manpage implies that 'data' is either a pointer or an int. If y= ou=20 > go this route, you avoid changing all the ioctl values, basically just as= sume=20 > that IOC_VOID means the argument is an int. >=20 That has been considered and found impossible due to the above. We also don't have any spare bits left in the ioctl type field, so IOC_VOID with size =3D=3D sizeof(int) have been used to implement _IOWINT(). IOC_VOID is incorrect name, the argument should either be a pointer or an "int", even when not used by ioctl(). Some ioctl() calls to "void" ioctls in userland don't pass a third argument. I think on architectures that pass arguments on the stack (such as i386) this causes return address to be accessed instead of the argument value. Ioctls that are "void" should either pass "0" or "NULL". Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --BOKacYhQ+x31HxR3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFGvdjqRfpzJluFF4RAs1RAJ41dFGKesyGojO26HDtr+Wq44sENQCeIp95 8s+w943o2ylJHs2QuGbsisY= =Llm5 -----END PGP SIGNATURE----- --BOKacYhQ+x31HxR3-- From owner-cvs-all@FreeBSD.ORG Wed Sep 27 22:28:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B94FB16A403; Wed, 27 Sep 2006 22:28:44 +0000 (UTC) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from mx07.ms.so-net.ne.jp (mx07.ms.so-net.ne.jp [202.238.82.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 570A943D6B; Wed, 27 Sep 2006 22:28:42 +0000 (GMT) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from [127.0.0.1] (p62a1f6.tkyoac00.ap.so-net.ne.jp [219.98.161.246]) by mx07.ms.so-net.ne.jp with ESMTP id k8RMSETg022825; Thu, 28 Sep 2006 07:28:34 +0900 (JST) Message-ID: <451AFAFD.6050700@ba2.so-net.ne.jp> Date: Thu, 28 Sep 2006 07:28:13 +0900 From: SANETO Takanori User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= References: <200609130838.k8D8cnW9063228@repoman.freebsd.org> <4519DD53.8010005@ba2.so-net.ne.jp> <86wt7ppx16.fsf@dwp.des.no> <86odt1pww0.fsf@dwp.des.no> In-Reply-To: <86odt1pww0.fsf@dwp.des.no> X-Enigmail-Version: 0.93.2.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountcritlocal mountlate src/sbin/mount mount.8 mount.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 22:28:44 -0000 DES, I think it affects argv for external mount commands as well as nmount. In fact, on RELENG_6, I got a message like "mount_smbfs: unknown option -o late" when I put "late" in my fstab like this: //SANEWO@SMBHOST/SMBDRIVE /smb/mnt1 smbfs rw,late 0 0 Thanks, Saneto Dag-Erling Smørgrav wrote: > des@des.no (Dag-Erling Smørgrav) writes: >> SANETO Takanori writes: >>> As for mount.c, following part should be MFC'ed as well. >> Thanks, I don't understand how it was left out. > > Uh, wait, it was left out for a reason: there is no equivalent code in > RELENG_6. The hunk in question removes "late" from the list of > options passed to nmount(), which isn't used in RELENG_6. > > DES From owner-cvs-all@FreeBSD.ORG Wed Sep 27 22:33:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBCB716A519; Wed, 27 Sep 2006 22:33:28 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A16FC43D8D; Wed, 27 Sep 2006 22:33:18 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RMXIXh071504; Wed, 27 Sep 2006 22:33:18 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RMXIFn071503; Wed, 27 Sep 2006 22:33:18 GMT (envelope-from miwi) Message-Id: <200609272233.k8RMXIFn071503@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Sep 2006 22:33:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/rocksndiamonds Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 22:33:28 -0000 miwi 2006-09-27 22:33:18 UTC FreeBSD ports repository Modified files: games/rocksndiamonds Makefile distinfo pkg-plist Log: - Update to 3.2.2 PR: ports/103636 Submitted by: KATO Tsuguru Revision Changes Path 1.25 +1 -2 ports/games/rocksndiamonds/Makefile 1.13 +3 -3 ports/games/rocksndiamonds/distinfo 1.11 +5 -0 ports/games/rocksndiamonds/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 22:35:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F3F016A527; Wed, 27 Sep 2006 22:35:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 882E343E33; Wed, 27 Sep 2006 22:34:41 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RMYfHq071643; Wed, 27 Sep 2006 22:34:41 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RMYfHA071642; Wed, 27 Sep 2006 22:34:41 GMT (envelope-from miwi) Message-Id: <200609272234.k8RMYfHA071642@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Sep 2006 22:34:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sympa5 Makefile distinfo ports/mail/sympa5/files patch-src-sympa_wizard.pl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 22:35:21 -0000 miwi 2006-09-27 22:34:41 UTC FreeBSD ports repository Modified files: mail/sympa5 Makefile distinfo mail/sympa5/files patch-src-sympa_wizard.pl Log: - Update to 5.2.2 PR: ports/103716 Submitted by: Olivier Girard (maintainer) Revision Changes Path 1.10 +4 -8 ports/mail/sympa5/Makefile 1.4 +3 -3 ports/mail/sympa5/distinfo 1.2 +12 -3 ports/mail/sympa5/files/patch-src-sympa_wizard.pl From owner-cvs-all@FreeBSD.ORG Wed Sep 27 22:36:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 683C816A4A0; Wed, 27 Sep 2006 22:36:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2176243D4C; Wed, 27 Sep 2006 22:36:15 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RMaFci071812; Wed, 27 Sep 2006 22:36:15 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RMaEAx071811; Wed, 27 Sep 2006 22:36:15 GMT (envelope-from miwi) Message-Id: <200609272236.k8RMaEAx071811@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Sep 2006 22:36:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/phpmyfaq Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 22:36:15 -0000 miwi 2006-09-27 22:36:14 UTC FreeBSD ports repository Modified files: www/phpmyfaq Makefile distinfo pkg-plist Log: - Update to 1.6.5 PR: ports/103717 Submitted by: Babak Farrokhi (maintainer) Revision Changes Path 1.18 +1 -1 ports/www/phpmyfaq/Makefile 1.12 +3 -3 ports/www/phpmyfaq/distinfo 1.5 +3 -1 ports/www/phpmyfaq/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 22:37:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0D1816A415; Wed, 27 Sep 2006 22:37:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3CFE43D8C; Wed, 27 Sep 2006 22:37:15 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RMbFKD071883; Wed, 27 Sep 2006 22:37:15 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RMbFok071882; Wed, 27 Sep 2006 22:37:15 GMT (envelope-from miwi) Message-Id: <200609272237.k8RMbFok071882@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Sep 2006 22:37:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/herrie Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 22:37:17 -0000 miwi 2006-09-27 22:37:15 UTC FreeBSD ports repository Modified files: audio/herrie Makefile distinfo Log: - Update to 0.5 Submitted by: Ed Schouten (maintainer) Revision Changes Path 1.4 +4 -2 ports/audio/herrie/Makefile 1.4 +3 -3 ports/audio/herrie/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 22:39:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 616AB16A417; Wed, 27 Sep 2006 22:39:56 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FE8443DD6; Wed, 27 Sep 2006 22:39:36 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RMdaXj072049; Wed, 27 Sep 2006 22:39:36 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RMda6B072048; Wed, 27 Sep 2006 22:39:36 GMT (envelope-from miwi) Message-Id: <200609272239.k8RMda6B072048@repoman.freebsd.org> From: Martin Wilke Date: Wed, 27 Sep 2006 22:39:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/poptop Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 22:39:56 -0000 miwi 2006-09-27 22:39:35 UTC FreeBSD ports repository Modified files: net/poptop Makefile distinfo Log: - Update to 1.3.0 - Pass maintainership to submitter PR: ports/103696 Submitted by: Nils Vogels Revision Changes Path 1.26 +2 -3 ports/net/poptop/Makefile 1.11 +3 -3 ports/net/poptop/distinfo From owner-cvs-all@FreeBSD.ORG Wed Sep 27 22:46:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB20116A4D2; Wed, 27 Sep 2006 22:46:20 +0000 (UTC) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from mx10.ms.so-net.ne.jp (mx10.ms.so-net.ne.jp [202.238.82.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA47643D82; Wed, 27 Sep 2006 22:45:32 +0000 (GMT) (envelope-from sanewo@ba2.so-net.ne.jp) Received: from [127.0.0.1] (p62a1f6.tkyoac00.ap.so-net.ne.jp [219.98.161.246]) by mx10.ms.so-net.ne.jp with ESMTP id k8RMikFx022144; Thu, 28 Sep 2006 07:44:55 +0900 (JST) Message-ID: <451AFEDE.7020607@ba2.so-net.ne.jp> Date: Thu, 28 Sep 2006 07:44:46 +0900 From: SANETO Takanori User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= References: <200609130838.k8D8cnW9063228@repoman.freebsd.org> <4519DD53.8010005@ba2.so-net.ne.jp> <86wt7ppx16.fsf@dwp.des.no> <86odt1pww0.fsf@dwp.des.no> <451AFAFD.6050700@ba2.so-net.ne.jp> In-Reply-To: <451AFAFD.6050700@ba2.so-net.ne.jp> X-Enigmail-Version: 0.93.2.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d mountcritlocal mountlate src/sbin/mount mount.8 mount.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 22:46:20 -0000 I understand that the code around invoking external mount commands is quite different between -CURRENT and RELENG_6. I did not looked into the code but just saw commit message like "Do not pass noauto to nmount() or external mount program." in 1.73. What I actually did to avoid the error message I got was: > Index: mount.c > =================================================================== > RCS file: /export/cvs/src/sbin/mount/mount.c,v > retrieving revision 1.69.2.2 > diff -u -r1.69.2.2 mount.c > --- mount.c 13 Sep 2006 08:38:49 -0000 1.69.2.2 > +++ mount.c 26 Sep 2006 09:17:25 -0000 > @@ -429,6 +429,7 @@ > } > } > optbuf = catopt(strdup(mntopts), options); > + remopt(optbuf, "late"); > > if (strcmp(name, "/") == 0) > flags |= MNT_UPDATE; Can this be the correct fix for RELENG_6? Regards, Saneto SANETO Takanori wrote: > DES, > > I think it affects argv for external mount commands as well as nmount. > In fact, on RELENG_6, I got a message like "mount_smbfs: unknown option > -o late" when I put "late" in my fstab like this: > > //SANEWO@SMBHOST/SMBDRIVE /smb/mnt1 smbfs rw,late 0 0 > > Thanks, > > Saneto > > Dag-Erling Smørgrav wrote: >> des@des.no (Dag-Erling Smørgrav) writes: >>> SANETO Takanori writes: >>>> As for mount.c, following part should be MFC'ed as well. >>> Thanks, I don't understand how it was left out. >> Uh, wait, it was left out for a reason: there is no equivalent code in >> RELENG_6. The hunk in question removes "late" from the list of >> options passed to nmount(), which isn't used in RELENG_6. >> >> DES From owner-cvs-all@FreeBSD.ORG Wed Sep 27 22:57:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C09316A403; Wed, 27 Sep 2006 22:57:31 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 774ED43D93; Wed, 27 Sep 2006 22:57:27 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8RMvPSH025285 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 18:57:26 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 18:57:17 -0400 From: Tom Rhodes To: danger@rulez.sk Message-Id: <20060927185717.69661a1c.trhodes@FreeBSD.org> In-Reply-To: <20060927102234.dsupin91usswg4s0@mail.rulez.sk> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927102234.dsupin91usswg4s0@mail.rulez.sk> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, brueffer@FreeBSD.org Subject: [Back it out] was: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 22:57:31 -0000 On Wed, 27 Sep 2006 10:22:34 +0200 danger@rulez.sk wrote: Daniel, Please just back this commit out. While I don't disagree with the commit, I do see at least one back out request. In the project, we back out after a request if we are unable to change the requester's mind. Leaving it in is just not how we do things around here and I would prefer not to become the very person who annoys the hell out of me. We'll put our heads together and see if there is a better way of wording it so everyone is happy. Besides, I need to prepare for a conference - leaving tonight - so I need to stop being difficult around here and prepare to be difficult elsewhere. Thanks, -- Tom Rhodes > Quoting Christian Brueffer : > > > On Tue, Sep 26, 2006 at 07:59:52PM +0000, Daniel Gerzo wrote: > >> danger 2006-09-26 19:59:52 UTC > >> > >> FreeBSD src repository (doc committer) > >> > >> Modified files: > >> share/examples/mdoc example.4 > >> Log: > >> Remove second person from the sentece and rephrase a bit. > >> > >> Approved by: trhodes (mentor), keramida (mentor) > >> > >> Revision Changes Path > >> 1.26 +6 -8 src/share/examples/mdoc/example.4 > > > > I don't agree to these changes, see below for details (also I don't see where > > exactly you removed second person usage, it's still being used in the new > > version). > > We want to aviod to use words like "you", "your" and so on. I have > talked about it with Ruslan and my mentors. > > >> | -To compile the > >> | -.Ns Nm > >> | -driver into the kernel, > >> | -place the following lines in the > >> | -kernel configuration file: > >> | +To enable support for > >> | +.Ns Nm , > >> | +place the following lines in the kernel configuration file: > > > > The formulation used before was much more accurate WRT the distinction > > we make between compiling something into the kernel and loading it as a > > module. If we load something as a module we also "enable support for > > it". > > I think it's certainly clear to users that they can either enable > support for something in kernel _or_ load it as a module which would > bring that support without need of kernel recompilation. > > > > >> | .Bd -ragged -offset indent > >> | .Cd "device example" > >> | .Cd "options EXAMPLE_DEBUG" > >> | @@ -45,9 +43,9 @@ kernel configuration file: > >> | .Pp > >> | Alternatively, to load the > >> | .Ns Nm > >> | -driver as a > >> | -module at boot time, place the following line in > >> | -.Xr loader.conf 5 : > >> | +as a module at boot time, add the following line into the > >> | +.Xr loader.conf 5 > >> | +file: > >> | .Bd -literal -offset indent > >> | example_load="YES" > >> | .Ed > >> > > > > Removing "driver" here is wrong. "...to load the .Nm..." what, the .Nm > > driver? The .Nm utility? It's just incorrect to rely on context here > > and it makes the sentence sound really awkward. > > Yes, I know about this issue as it was pointed by Ruslan a few hours > after I have committed it (note, that I had an approval from my > mentors). Tom is native and he told that while it does not really > sounds correct, it is correct English, but depends on the context as > you have said. I have mailed my mentors and Ruslan with re-worded > sentence that should fix that. > > > > > IMHO the SYNOPSIS section in section 4 manpages is kind of a standard > > now, as it's being used in the majority of section 4 manpages. > > Changes to it should not be made without _good_ reason and with a sweep > > through all manpages that use it. Among other things, the purpose of > > this section is to achieve consistency across section 4 manpages. > > > > It is standard that should be fixed :-) and I'm about to do that; I > wanted to commit the change to the example.4 first and after that > start with changes to the affected section 4 manual pages. > > But if there are more people that think that this change is wrong, I'm > not going to argue about that or being upset or something, I will > revert the change and go ahead and start working on something else. > > > - Christian > > -- > Best regards, > Daniel > > > > -------------------------------------------------------- > This message was sent from rulez.sk webamil using Horde. > > > -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Wed Sep 27 23:00:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE94C16A407; Wed, 27 Sep 2006 23:00:10 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AC7443D72; Wed, 27 Sep 2006 23:00:10 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RN0AP9073425; Wed, 27 Sep 2006 23:00:10 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RN0A0b073424; Wed, 27 Sep 2006 23:00:10 GMT (envelope-from bsam) Message-Id: <200609272300.k8RN0A0b073424@repoman.freebsd.org> From: Boris Samorodov Date: Wed, 27 Sep 2006 23:00:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/print/hplip Makefile distinfo pkg-message pkg-plist ports/print/hplip/files patch-0.9.11-2-official patch-Makefile.in patch-hplip.conf patch-io_hpiod patch-io_hpiod_device.cpp patch-io_hpiod_device.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 23:00:11 -0000 bsam 2006-09-27 23:00:10 UTC FreeBSD ports repository Modified files: print/hplip Makefile distinfo pkg-message pkg-plist print/hplip/files patch-Makefile.in patch-io_hpiod_device.cpp Added files: print/hplip/files patch-hplip.conf Removed files: print/hplip/files patch-0.9.11-2-official patch-io_hpiod patch-io_hpiod_device.h Log: - update from 0.9.11 to 1.6.7; - enhanced pkg-message. PR: 100413 Submitted by: Anish Mistry (maintainer) Revision Changes Path 1.7 +8 -3 ports/print/hplip/Makefile 1.3 +3 -3 ports/print/hplip/distinfo 1.2 +0 -276 ports/print/hplip/files/patch-0.9.11-2-official (dead) 1.3 +53 -12 ports/print/hplip/files/patch-Makefile.in 1.1 +8 -0 ports/print/hplip/files/patch-hplip.conf (new) 1.2 +0 -24 ports/print/hplip/files/patch-io_hpiod (dead) 1.3 +21 -26 ports/print/hplip/files/patch-io_hpiod_device.cpp 1.2 +0 -12 ports/print/hplip/files/patch-io_hpiod_device.h (dead) 1.2 +32 -0 ports/print/hplip/pkg-message 1.4 +50 -13 ports/print/hplip/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Sep 27 23:04:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4341316A40F; Wed, 27 Sep 2006 23:04:10 +0000 (UTC) (envelope-from danger@rulez.sk) Received: from virtual.micronet.sk (smtp.micronet.sk [84.16.32.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E19143D77; Wed, 27 Sep 2006 23:04:09 +0000 (GMT) (envelope-from danger@rulez.sk) Received: from localhost (localhost [127.0.0.1]) by virtual.micronet.sk (Postfix) with ESMTP id 091F410E7D3; Thu, 28 Sep 2006 01:03:40 +0200 (CEST) X-Virus-Scanned: by amavisd-new at virtual.micronet.sk Received: from virtual.micronet.sk ([127.0.0.1]) by localhost (virtual.micronet.sk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NWfJmgYp7J-f; Thu, 28 Sep 2006 01:03:37 +0200 (CEST) Received: from danger.mcrn.sk (danger.mcrn.sk [84.16.37.254]) by virtual.micronet.sk (Postfix) with ESMTP id 2EFE410E7B7; Thu, 28 Sep 2006 01:03:37 +0200 (CEST) Date: Thu, 28 Sep 2006 01:04:04 +0200 From: Daniel Gerzo X-Priority: 3 (Normal) Message-ID: <1801869769.20060928010404@rulez.sk> To: Tom Rhodes In-Reply-To: <20060927185717.69661a1c.trhodes@FreeBSD.org> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927102234.dsupin91usswg4s0@mail.rulez.sk> <20060927185717.69661a1c.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, brueffer@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: [Back it out] was: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Gerzo List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Sep 2006 23:04:10 -0000 Hello Tom, Thursday, September 28, 2006, 12:57:17 AM, you wrote: > On Wed, 27 Sep 2006 10:22:34 +0200 > danger@rulez.sk wrote: > Daniel, > Please just back this commit out. While I don't disagree with > the commit, I do see at least one back out request. In the > project, we back out after a request if we are unable to change > the requester's mind. Leaving it in is just not how we do things > around here and I would prefer not to become the very person who > annoys the hell out of me. I have already reverted the change as I saw the requests as well and that is what Giorgos advised me to do. > We'll put our heads together and see if there is a better way > of wording it so everyone is happy. Besides, I need to prepare > for a conference - leaving tonight - so I need to stop being > difficult around here and prepare to be difficult elsewhere. Have a nice time at the conference :-) > Thanks, You are welcome! -- Best regards, Daniel mailto:danger@rulez.sk From owner-cvs-all@FreeBSD.ORG Wed Sep 27 23:40:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7154F16A5D5; Wed, 27 Sep 2006 23:40:27 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43BF943D78; Wed, 27 Sep 2006 23:40:21 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8RNeLe2077132; Wed, 27 Sep 2006 23:40:21 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8RNeLJ4077129; Wed, 27 Sep 2006 23:40:21 GMT (envelope-from dougb) Message-Id: <200609272340.k8RNeLJ4077129@repoman.freebsd.org> From: Doug Barton Date: Wed, 27 Sep 2006 23:40:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/dns/p5-Net-DNS Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 27 Sep 2006 23:40:27 -0000 dougb 2006-09-27 23:40:21 UTC FreeBSD ports repository Modified files: dns/p5-Net-DNS Makefile distinfo Log: Update to 0.59, which mostly cleans up the PTR code. Revision Changes Path 1.66 +1 -1 ports/dns/p5-Net-DNS/Makefile 1.40 +3 -3 ports/dns/p5-Net-DNS/distinfo From owner-cvs-all@FreeBSD.ORG Thu Sep 28 00:51:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72BA016A5D6; Thu, 28 Sep 2006 00:51:41 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 404A743D4C; Thu, 28 Sep 2006 00:51:41 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S0pfUh092269; Thu, 28 Sep 2006 00:51:41 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S0pfgf092268; Thu, 28 Sep 2006 00:51:41 GMT (envelope-from clsung) Message-Id: <200609280051.k8S0pfgf092268@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 00:51:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/p5-Inline-TT Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 00:51:41 -0000 clsung 2006-09-28 00:51:41 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Inline-TT Makefile distinfo pkg-descr pkg-plist Log: Add p5-Inline-TT 0.07, provides inline support for template toolkit 2.x. PR: ports/103661 Submitted by: Gea-Suan Lin Revision Changes Path 1.2456 +1 -0 ports/devel/Makefile 1.1 +31 -0 ports/devel/p5-Inline-TT/Makefile (new) 1.1 +3 -0 ports/devel/p5-Inline-TT/distinfo (new) 1.1 +15 -0 ports/devel/p5-Inline-TT/pkg-descr (new) 1.1 +6 -0 ports/devel/p5-Inline-TT/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 00:51:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDF1316A4D8; Thu, 28 Sep 2006 00:51:57 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8982143D4C; Thu, 28 Sep 2006 00:51:57 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S0pv1E092312; Thu, 28 Sep 2006 00:51:57 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S0pv5B092311; Thu, 28 Sep 2006 00:51:57 GMT (envelope-from clsung) Message-Id: <200609280051.k8S0pv5B092311@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 00:51:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 00:51:57 -0000 clsung 2006-09-28 00:51:57 UTC FreeBSD ports repository Modified files: . modules Log: p5-Inline-TT --> ports/devel/p5-Inline-TT Revision Changes Path 1.16289 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Sep 28 00:53:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7798A16A40F; Thu, 28 Sep 2006 00:53:13 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2140343D4C; Thu, 28 Sep 2006 00:53:13 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S0rDUJ092404; Thu, 28 Sep 2006 00:53:13 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S0rD7p092403; Thu, 28 Sep 2006 00:53:13 GMT (envelope-from clsung) Message-Id: <200609280053.k8S0rD7p092403@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 00:53:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/p5-Pugs-Compiler-Rule Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 00:53:13 -0000 clsung 2006-09-28 00:53:12 UTC FreeBSD ports repository Modified files: lang/p5-Pugs-Compiler-Rule Makefile distinfo pkg-plist Log: - Update to 0.19 Revision Changes Path 1.5 +1 -4 ports/lang/p5-Pugs-Compiler-Rule/Makefile 1.5 +3 -3 ports/lang/p5-Pugs-Compiler-Rule/distinfo 1.3 +3 -10 ports/lang/p5-Pugs-Compiler-Rule/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Sep 28 01:02:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87D4A16A4A0; Thu, 28 Sep 2006 01:02:42 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AB1F43D55; Thu, 28 Sep 2006 01:02:39 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.6/8.13.6) with ESMTP id k8S12b6R025989 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 27 Sep 2006 21:02:38 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 27 Sep 2006 21:02:23 -0400 From: Tom Rhodes To: Daniel Gerzo Message-Id: <20060927210223.76d8bd9b.trhodes@FreeBSD.org> In-Reply-To: <1801869769.20060928010404@rulez.sk> References: <200609261959.k8QJxqkh068350@repoman.freebsd.org> <20060926202339.GA2039@haakonia.hitnet.RWTH-Aachen.DE> <20060927102234.dsupin91usswg4s0@mail.rulez.sk> <20060927185717.69661a1c.trhodes@FreeBSD.org> <1801869769.20060928010404@rulez.sk> Organization: The FreeBSD Project X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, danger@FreeBSD.org, src-committers@FreeBSD.org, brueffer@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: [Back it out] was: Re: cvs commit: src/share/examples/mdoc example.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 01:02:42 -0000 On Thu, 28 Sep 2006 01:04:04 +0200 Daniel Gerzo wrote: > Hello Tom, > > Thursday, September 28, 2006, 12:57:17 AM, you wrote: > > > On Wed, 27 Sep 2006 10:22:34 +0200 > > danger@rulez.sk wrote: > > > Daniel, > > > Please just back this commit out. While I don't disagree with > > the commit, I do see at least one back out request. In the > > project, we back out after a request if we are unable to change > > the requester's mind. Leaving it in is just not how we do things > > around here and I would prefer not to become the very person who > > annoys the hell out of me. > > I have already reverted the change as I saw the requests as well and > that is what Giorgos advised me to do. Yep, I noticed, thanks. :) > > > We'll put our heads together and see if there is a better way > > of wording it so everyone is happy. Besides, I need to prepare > > for a conference - leaving tonight - so I need to stop being > > difficult around here and prepare to be difficult elsewhere. > > Have a nice time at the conference :-) I'll try, brother Giorgos is in charge while I'm gone. ;) > > > Thanks, > > You are welcome! > > -- > Best regards, > Daniel mailto:danger@rulez.sk > > -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Thu Sep 28 01:28:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4514C16A403; Thu, 28 Sep 2006 01:28:20 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00C8D43D46; Thu, 28 Sep 2006 01:28:20 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S1SJMr095755; Thu, 28 Sep 2006 01:28:19 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S1SJDL095754; Thu, 28 Sep 2006 01:28:19 GMT (envelope-from ijliao) Message-Id: <200609280128.k8S1SJDL095754@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 28 Sep 2006 01:28:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/py-imdbpy Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 01:28:20 -0000 ijliao 2006-09-28 01:28:19 UTC FreeBSD ports repository Modified files: www/py-imdbpy Makefile distinfo Log: upgrade to 2.7 Revision Changes Path 1.12 +1 -1 ports/www/py-imdbpy/Makefile 1.13 +3 -3 ports/www/py-imdbpy/distinfo From owner-cvs-all@FreeBSD.ORG Thu Sep 28 01:55:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4A8116A40F; Thu, 28 Sep 2006 01:55:27 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BBAA43D45; Thu, 28 Sep 2006 01:55:27 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S1tRCI097537; Thu, 28 Sep 2006 01:55:27 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S1tRAK097536; Thu, 28 Sep 2006 01:55:27 GMT (envelope-from clsung) Message-Id: <200609280155.k8S1tRAK097536@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 01:55:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/p5-subatom Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 01:55:27 -0000 clsung 2006-09-28 01:55:27 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-subatom Makefile distinfo pkg-descr Log: Add p5-subatom 0.12, produce an atom feed from subversion commits. PR: ports/103644 Submitted by: Gea-Suan Lin Revision Changes Path 1.2457 +1 -0 ports/devel/Makefile 1.1 +32 -0 ports/devel/p5-subatom/Makefile (new) 1.1 +3 -0 ports/devel/p5-subatom/distinfo (new) 1.1 +5 -0 ports/devel/p5-subatom/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 01:55:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44A0A16A40F; Thu, 28 Sep 2006 01:55:41 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F395E43D49; Thu, 28 Sep 2006 01:55:40 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S1teif097589; Thu, 28 Sep 2006 01:55:40 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S1teXi097588; Thu, 28 Sep 2006 01:55:40 GMT (envelope-from clsung) Message-Id: <200609280155.k8S1teXi097588@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 01:55:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 01:55:41 -0000 clsung 2006-09-28 01:55:40 UTC FreeBSD ports repository Modified files: . modules Log: p5-subatom --> ports/devel/p5-subatom Revision Changes Path 1.16290 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Sep 28 01:59:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B34D116A407; Thu, 28 Sep 2006 01:59:31 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 811F643D46; Thu, 28 Sep 2006 01:59:31 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S1xVLx097856; Thu, 28 Sep 2006 01:59:31 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S1xVkv097855; Thu, 28 Sep 2006 01:59:31 GMT (envelope-from delphij) Message-Id: <200609280159.k8S1xVkv097855@repoman.freebsd.org> From: Xin LI Date: Thu, 28 Sep 2006 01:59:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/defaults periodic.conf src/share/man/man5 periodic.conf.5 src/etc/periodic/weekly 120.clean-kvmdb Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 01:59:31 -0000 delphij 2006-09-28 01:59:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/defaults periodic.conf share/man/man5 periodic.conf.5 etc/periodic/weekly Makefile Removed files: (Branch: RELENG_6) etc/periodic/weekly 120.clean-kvmdb Log: MFC: The kvm_mkdb(8) is long dead. Approved by: re (kensmith) Originally by: ru Revision Changes Path 1.33.2.2 +0 -5 src/etc/defaults/periodic.conf 1.7 +0 -49 src/etc/periodic/weekly/120.clean-kvmdb (dead) 1.8.14.1 +1 -2 src/etc/periodic/weekly/Makefile 1.55.2.2 +1 -18 src/share/man/man5/periodic.conf.5 From owner-cvs-all@FreeBSD.ORG Thu Sep 28 02:30:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8BDC16A417; Thu, 28 Sep 2006 02:30:03 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 416B643D5C; Thu, 28 Sep 2006 02:30:03 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S2U3v6001141; Thu, 28 Sep 2006 02:30:03 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S2U3eB001140; Thu, 28 Sep 2006 02:30:03 GMT (envelope-from clsung) Message-Id: <200609280230.k8S2U3eB001140@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 02:30:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/clucene Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 02:30:04 -0000 clsung 2006-09-28 02:30:02 UTC FreeBSD ports repository Modified files: textproc/clucene Makefile Log: - set variable WITH_ASCII_SUPPORT to configure ASCII support. Otherwise compile plain, out of the box. - this configuration makes clucene play nicely with the upcoming update of misc/bibletime. PR: ports/103731 Submitted by: Thomas Abthorpe Revision Changes Path 1.2 +4 -1 ports/textproc/clucene/Makefile From owner-cvs-all@FreeBSD.ORG Thu Sep 28 03:08:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E432216A40F; Thu, 28 Sep 2006 03:08:01 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A028E43D49; Thu, 28 Sep 2006 03:08:01 +0000 (GMT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S381Fn007551; Thu, 28 Sep 2006 03:08:01 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S381tW007549; Thu, 28 Sep 2006 03:08:01 GMT (envelope-from leeym) Message-Id: <200609280308.k8S381tW007549@repoman.freebsd.org> From: Yen-Ming Lee Date: Thu, 28 Sep 2006 03:08:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/news/nntpcache Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 03:08:02 -0000 leeym 2006-09-28 03:08:00 UTC FreeBSD ports repository Modified files: news/nntpcache Makefile Log: - set NOT_FOR_ARCHS=space64 Noticed by: kris Revision Changes Path 1.48 +2 -0 ports/news/nntpcache/Makefile From owner-cvs-all@FreeBSD.ORG Thu Sep 28 03:46:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5855616A407; Thu, 28 Sep 2006 03:46:59 +0000 (UTC) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74F2F43D49; Thu, 28 Sep 2006 03:46:58 +0000 (GMT) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S3kwNE010301; Thu, 28 Sep 2006 03:46:58 GMT (envelope-from alexbl@repoman.freebsd.org) Received: (from alexbl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S3kwsj010300; Thu, 28 Sep 2006 03:46:58 GMT (envelope-from alexbl) Message-Id: <200609280346.k8S3kwsj010300@repoman.freebsd.org> From: Alexander Botero-Lowry Date: Thu, 28 Sep 2006 03:46:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/gxmms2 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 03:46:59 -0000 alexbl 2006-09-28 03:46:58 UTC FreeBSD ports repository Modified files: audio/gxmms2 Makefile distinfo Log: - Update to 0.6.4 Approved by: novel (mentor) Revision Changes Path 1.8 +7 -3 ports/audio/gxmms2/Makefile 1.4 +3 -3 ports/audio/gxmms2/distinfo From owner-cvs-all@FreeBSD.ORG Thu Sep 28 05:28:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16E9116A4E7; Thu, 28 Sep 2006 05:28:11 +0000 (UTC) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8FBC43D55; Thu, 28 Sep 2006 05:28:10 +0000 (GMT) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S5SAvZ034084; Thu, 28 Sep 2006 05:28:10 GMT (envelope-from alexbl@repoman.freebsd.org) Received: (from alexbl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S5SAKr034083; Thu, 28 Sep 2006 05:28:10 GMT (envelope-from alexbl) Message-Id: <200609280528.k8S5SAKr034083@repoman.freebsd.org> From: Alexander Botero-Lowry Date: Thu, 28 Sep 2006 05:28:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/irc/epic5 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 05:28:11 -0000 alexbl 2006-09-28 05:28:10 UTC FreeBSD ports repository Modified files: irc/epic5 Makefile distinfo pkg-plist Log: - Update to epic5 0.2.0 - Hold off updating to newest version because of issues upstream. PR: 103694 Submitted by: Josh Paetzel (maintainer) Approved by: novel (mentor) Revision Changes Path 1.58 +3 -4 ports/irc/epic5/Makefile 1.34 +3 -3 ports/irc/epic5/distinfo 1.33 +8 -58 ports/irc/epic5/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Sep 28 05:29:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01B8D16A403; Thu, 28 Sep 2006 05:29:35 +0000 (UTC) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4AD843D4C; Thu, 28 Sep 2006 05:29:34 +0000 (GMT) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S5TYeP034186; Thu, 28 Sep 2006 05:29:34 GMT (envelope-from alexbl@repoman.freebsd.org) Received: (from alexbl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S5TYn0034183; Thu, 28 Sep 2006 05:29:34 GMT (envelope-from alexbl) Message-Id: <200609280529.k8S5TYn0034183@repoman.freebsd.org> From: Alexander Botero-Lowry Date: Thu, 28 Sep 2006 05:29:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/py-mutagen Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 05:29:35 -0000 alexbl 2006-09-28 05:29:34 UTC FreeBSD ports repository Modified files: audio/py-mutagen Makefile distinfo Log: - Update to 1.7.1 PR: 103601 Submitted by: Peter Johnson (maintainer) Approved by: novel (mentor) Revision Changes Path 1.5 +1 -1 ports/audio/py-mutagen/Makefile 1.4 +3 -3 ports/audio/py-mutagen/distinfo From owner-cvs-all@FreeBSD.ORG Thu Sep 28 05:49:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E26A16A4EA; Thu, 28 Sep 2006 05:49:59 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EB7643D58; Thu, 28 Sep 2006 05:49:59 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S5nwgW035510; Thu, 28 Sep 2006 05:49:58 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S5nwRN035509; Thu, 28 Sep 2006 05:49:58 GMT (envelope-from dougb) Message-Id: <200609280549.k8S5nwRN035509@repoman.freebsd.org> From: Doug Barton Date: Thu, 28 Sep 2006 05:49:58 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/snapshots index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 05:49:59 -0000 dougb 2006-09-28 05:49:58 UTC FreeBSD doc repository Modified files: en/snapshots index.sgml Log: Add a line for September snapshots Revision Changes Path 1.27 +3 -2 www/en/snapshots/index.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 06:12:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 298ED16A403; Thu, 28 Sep 2006 06:12:38 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from av7-1-sn3.vrr.skanova.net (av7-1-sn3.vrr.skanova.net [81.228.9.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD18F43D53; Thu, 28 Sep 2006 06:12:36 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: by av7-1-sn3.vrr.skanova.net (Postfix, from userid 502) id 53A5E38132; Thu, 28 Sep 2006 08:12:26 +0200 (CEST) Received: from smtp3-2-sn3.vrr.skanova.net (smtp3-2-sn3.vrr.skanova.net [81.228.9.102]) by av7-1-sn3.vrr.skanova.net (Postfix) with ESMTP id 2E22738170; Thu, 28 Sep 2006 08:12:26 +0200 (CEST) Received: from dude.automatvapen.se (81-229-112-193-no21.tbcn.telia.com [81.229.112.193]) by smtp3-2-sn3.vrr.skanova.net (Postfix) with ESMTP id 3FD2437E45; Thu, 28 Sep 2006 08:12:32 +0200 (CEST) From: Joel Dahl To: Eric Anholt In-Reply-To: <200609270638.k8R6csJ0044991@repoman.freebsd.org> References: <200609270638.k8R6csJ0044991@repoman.freebsd.org> Content-Type: multipart/mixed; boundary="=-9WiPoL6ukAE690k85eJA" Date: Thu, 28 Sep 2006 08:12:32 +0200 Message-Id: <1159423952.671.11.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 FreeBSD GNOME Team Port Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci agp_i810.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 06:12:38 -0000 --=-9WiPoL6ukAE690k85eJA Content-Type: text/plain Content-Transfer-Encoding: 7bit On Wed, 2006-09-27 at 06:38 +0000, Eric Anholt wrote: > anholt 2006-09-27 06:38:54 UTC > > FreeBSD src repository > > Modified files: > sys/pci agp_i810.c > Log: > Add support for 945G/GM AGP chipsets. > > The key problem was that the aperture size detection using the MSAC bit > doesn't work -- the bit appears to be set even when it shouldn't be. Linux > takes a different approach, testing for a bit of the GMADR (PCIR_BAR(2)) being > set. However, as I don't think that's a safe way to test aperture size, we > just allocate the resource and check its size. This also pointed out that > agp_generic_attach hadn't been allocating our aperture resource, which may > have caused problems in some cases. > > Also corrected is a minor copy-and-pasteo in an error case. Hmm, I have a HP NX7400 laptop with an Intel i945 chipset, and it's running a very fresh current (GENERIC, no changes made whatsoever). However, I see the following in my dmesg when I start X (I *think* it started appearing just after your commit to agp_i810.c): drm0: on vgapci0 info: [drm] AGP at 0xf4400000 0MB info: [drm] Initialized i915 1.5.0 20060119 malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,d454ca58,c2bc15b0,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c0a96d04,ffffffff,c2bc15b0,80000001,...) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x10c bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create +0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc +0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl +0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 It spits out a lot of this stuff (attached). -- Joel --=-9WiPoL6ukAE690k85eJA Content-Disposition: attachment; filename=dmesg.new Content-Type: text/plain; name=dmesg.new; charset=us-ascii Content-Transfer-Encoding: 7bit ata0: on atapci0 ata1: on atapci0 atapci1: port 0x13f0-0x13f7,0x15f4-0x15f7,0x1370-0x1377,0x1574-0x1577,0x40d0-0x40df mem 0xf4585000-0xf45853ff irq 17 at device 31.2 on pci0 atapci1: AHCI Version 01.10 controller with 4 ports detected ata2: on atapci1 ata3: on atapci1 ata4: on atapci1 ata5: on atapci1 battery0: on acpi0 battery1: on acpi0 acpi_acad0: on acpi0 acpi_button0: on acpi0 acpi_lid0: on acpi0 acpi_tz0: on acpi0 acpi_tz0: _CRT value is absurd, ignored (256.0C) acpi_tz1: on acpi0 acpi_tz2: on acpi0 acpi_tz3: on acpi0 acpi_tz4: on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model IntelliMouse, device ID 3 pmtimer0 on isa0 orm0: at iomem 0xc0000-0xcffff pnpid ORM0000 on isa0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold ppbus0: on ppc0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 ppc0: [GIANT-LOCKED] sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 8250 or not responding sio0: [FAST] sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 ugen0: on uhub0 Timecounters tick every 1.000 msec acd0: DVDR at ata0-master PIO4 acpi_tz0: _CRT value is absurd, ignored (256.0C) ad4: 76319MB at ata2-master SATA150 SMP: AP CPU #1 Launched! Trying to mount root from ufs:/dev/ad4s2a drm0: on vgapci0 info: [drm] AGP at 0xf4400000 0MB info: [drm] Initialized i915 1.5.0 20060119 malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,d454ca58,c2bc15b0,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c0a96d04,ffffffff,c2bc15b0,80000001,...) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x10c bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f8,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(6,c09d2380,2,c2bc15b0,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c0a96d04,ffffffff,c2bc15b0,80000001,...) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x10c bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(4,c09d2380,2,5,c2bc15b0,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c0a96d04,ffffffff,c2bc15b0,80000001,...) at sysctl_add_oid+0xf0 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x10c bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454ca04,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(1,c09d2380,2,c0919799,5,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c0a96d04,ffffffff,c2bc15b0,80000001,...) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x10c bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f0,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c25c9550,6,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04780) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c0a96d04,ffffffff,c2bc15b0,80000001,...) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x10c bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,c2bc15b0,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a85f,80000002,c2bc158c,0,c06a8d38,c091e38f,c094a86c) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x170 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(d,c09d2380,2,c094a85f,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a85f,80000002,c2bc158c,0,c06a8d38,c091e38f,c094a86c) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x170 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "32", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,20,c1072b40,1,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0949382) at witness_warn+0x192 uma_zalloc_arg(c1072b40,0,2) at uma_zalloc_arg+0x41 malloc(13,c09d2380,2,c094a86c,c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a85f,80000002,c2bc158c,0,c06a8d38,c091e38f,c094a86c) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x170 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c25ef0f0,d,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04740) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a85f,80000002,c2bc158c,0,c06a8d38,c091e38f,c094a86c) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x170 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,c,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9a8,80000002,c2bc1590,0,c06a8d38,c091e38f,c094a996) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ae bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c094a9a8,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9a8,80000002,c2bc1590,0,c06a8d38,c091e38f,c094a996) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ae bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "32", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,20,c1072b40,1,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0949382) at witness_warn+0x192 uma_zalloc_arg(c1072b40,0,2) at uma_zalloc_arg+0x41 malloc(12,c09d2380,2,c094a996,b,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9a8,80000002,c2bc1590,0,c06a8d38,c091e38f,c094a996) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ae bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c25ef780,c,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04700) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9a8,80000002,c2bc1590,0,c06a8d38,c091e38f,c094a996) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ae bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,b,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ca,80000002,c2bc1594,0,c06a8d38,c091e38f,c094a9b4) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ec bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(10,c09d2380,2,c094a9ca,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ca,80000002,c2bc1594,0,c06a8d38,c091e38f,c094a9b4) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ec bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "32", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,20,c1072b40,1,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0949382) at witness_warn+0x192 uma_zalloc_arg(c1072b40,0,2) at uma_zalloc_arg+0x41 malloc(16,c09d2380,2,c094a9b4,f,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ca,80000002,c2bc1594,0,c06a8d38,c091e38f,c094a9b4) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ec bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c2815250,10,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c046c0) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ca,80000002,c2bc1594,0,c06a8d38,c091e38f,c094a9b4) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x1ec bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 acpi_tz0: _CRT value is absurd, ignored (256.0C) ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,f,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ee,80000002,c2bc1598,0,c06a8d38,c091e38f,c094a9da) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x22a bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(e,c09d2380,2,c094a9ee,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ee,80000002,c2bc1598,0,c06a8d38,c091e38f,c094a9da) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x22a bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "32", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,20,c1072b40,1,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0949382) at witness_warn+0x192 uma_zalloc_arg(c1072b40,0,2) at uma_zalloc_arg+0x41 malloc(14,c09d2380,2,c094a9da,d,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ee,80000002,c2bc1598,0,c06a8d38,c091e38f,c094a9da) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x22a bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c283d1d0,e,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04680) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094a9ee,80000002,c2bc1598,0,c06a8d38,c091e38f,c094a9da) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x22a bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,d,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa12,80000002,c2bc159c,0,c06a8d38,c091e38f,c094a9fc) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x268 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(e,c09d2380,2,c094aa12,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa12,80000002,c2bc159c,0,c06a8d38,c091e38f,c094a9fc) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x268 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "32", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,20,c1072b40,1,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0949382) at witness_warn+0x192 uma_zalloc_arg(c1072b40,0,2) at uma_zalloc_arg+0x41 malloc(16,c09d2380,2,c094a9fc,d,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa12,80000002,c2bc159c,0,c06a8d38,c091e38f,c094a9fc) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x268 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c27267d0,e,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04640) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa12,80000002,c2bc159c,0,c06a8d38,c091e38f,c094a9fc) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x268 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,d,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa49,80000002,c2bc15a0,0,c06a8d38,c091e38f,c094aa20) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2a6 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(f,c09d2380,2,c094aa49,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa49,80000002,c2bc15a0,0,c06a8d38,c091e38f,c094aa20) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2a6 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,2) at uma_zalloc_arg+0x41 malloc(29,c09d2380,2,c094aa20,e,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa49,80000002,c2bc15a0,0,c06a8d38,c091e38f,c094aa20) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2a6 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c283d3b0,f,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04600) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa49,80000002,c2bc15a0,0,c06a8d38,c091e38f,c094aa20) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2a6 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,e,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa58,80000003,c2bc15b8,0,c06a8e5c,c091934e,c0919799) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2e4 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(8,c09d2380,2,c094aa58,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa58,80000003,c2bc15b8,0,c06a8e5c,c091934e,c0919799) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2e4 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(1,c09d2380,2,c0919799,7,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa58,80000003,c2bc15b8,0,c06a8e5c,c091934e,c0919799) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2e4 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c283d380,8,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04580) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094aa58,80000003,c2bc15b8,0,c06a8e5c,c091934e,c0919799) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x2e4 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,7,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c091d672,80000002,c2bc15a4,0,c06a8d38,c091e38f,c0919799) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x322 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(a,c09d2380,2,c091d672,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c091d672,80000002,c2bc15a4,0,c06a8d38,c091e38f,c0919799) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x322 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(1,c09d2380,2,c0919799,9,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c091d672,80000002,c2bc15a4,0,c06a8d38,c091e38f,c0919799) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x322 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c2815210,a,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04540) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c091d672,80000002,c2bc15a4,0,c06a8d38,c091e38f,c0919799) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x322 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "64", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,30,c1072d20,2,d454ca0c,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c092cdc5) at witness_warn+0x192 uma_zalloc_arg(c1072d20,0,102) at uma_zalloc_arg+0x41 malloc(2c,c09d2380,102,9,c2bc15cc,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094d56a,80000002,...) at sysctl_add_oid+0x7a alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x360 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9fc,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(9,c09d2380,2,c094d56a,2c,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094d56a,80000002,...) at sysctl_add_oid+0xad alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x360 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454ca08,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(1,c09d2380,2,c0919799,8,...) at malloc+0xb2 sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094d56a,80000002,...) at sysctl_add_oid+0x12c alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x360 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- malloc(M_WAITOK) of "16", forcing M_NOWAIT with the following non-sleepable locks held: exclusive sleep mutex drm device r = 0 (0xc25c78d8) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_drv.c:907 KDB: stack backtrace: kdb_backtrace(1,10,c1072960,0,d454c9f4,...) at kdb_backtrace+0x29 witness_warn(5,0,c0942941,c0903ad9) at witness_warn+0x192 uma_zalloc_arg(c1072960,0,2) at uma_zalloc_arg+0x41 malloc(c,c09d2380,2,c27268d0,9,...) at malloc+0xb2 sysctl_ctx_entry_add(c2bc15cc,c2c04500) at sysctl_ctx_entry_add+0x2a sysctl_add_oid(c2bc15cc,c25ef130,ffffffff,c094d56a,80000002,...) at sysctl_add_oid+0x151 alloc_bounce_zone(c2bc1500,0,c25c94d0,1000,1000,...) at alloc_bounce_zone+0x360 bus_dma_tag_create(0,1000,0,ffffffff,ffffffff,...) at bus_dma_tag_create+0x175 drm_pci_alloc(c25c7800,1000,1000,ffffffff,c25c78d8,...) at drm_pci_alloc+0x54 i915_dma_init(c2c00500,80446440,c2bc1480,3,c25eca20,...) at i915_dma_init+0x2ed drm_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,c0a163e8,0,c0922f98,11f) at drm_ioctl+0x150 giant_ioctl(c2c00500,80446440,c2bc1480,3,c25eca20,...) at giant_ioctl+0x33 devfs_ioctl_f(c2870168,80446440,c2bc1480,c2b6a300,c25eca20) at devfs_ioctl_f+0xaf kern_ioctl(c25eca20,7,80446440,c2bc1480) at kern_ioctl+0x296 ioctl(c25eca20,d454cd04) at ioctl+0xd1 syscall(3b,827003b,bfbf003b,8270d40,8213000,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (54, FreeBSD ELF32, ioctl), eip = 0x282cc177, esp = 0xbfbfe93c, ebp = 0xbfbfe958 --- acpi_tz0: _CRT value is absurd, ignored (256.0C) acpi_tz0: _CRT value is absurd, ignored (256.0C) acpi_tz0: _CRT value is absurd, ignored (256.0C) acpi_tz0: _CRT value is absurd, ignored (256.0C) --=-9WiPoL6ukAE690k85eJA-- From owner-cvs-all@FreeBSD.ORG Thu Sep 28 06:21:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2D4216A407; Thu, 28 Sep 2006 06:21:44 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0714C43D6A; Thu, 28 Sep 2006 06:21:35 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id CAFF31A4D84; Wed, 27 Sep 2006 23:21:35 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8DD8151578; Thu, 28 Sep 2006 02:21:34 -0400 (EDT) Date: Thu, 28 Sep 2006 02:21:34 -0400 From: Kris Kennaway To: Yen-Ming Lee Message-ID: <20060928062134.GA93521@xor.obsecurity.org> References: <200609280308.k8S381tW007549@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OXfL5xGRrasGEqWY" Content-Disposition: inline In-Reply-To: <200609280308.k8S381tW007549@repoman.freebsd.org> User-Agent: Mutt/1.4.2.2i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/news/nntpcache Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 06:21:45 -0000 --OXfL5xGRrasGEqWY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 28, 2006 at 03:08:00AM +0000, Yen-Ming Lee wrote: > leeym 2006-09-28 03:08:00 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > news/nntpcache Makefile=20 > Log: > - set NOT_FOR_ARCHS=3Dspace64 Thanks, but unless you know that the port will *never* run on sparc64 you should avoid using the (NOT|ONLY)_FOR_ARCHS in favour of conditionally marking it BROKEN. Kris --OXfL5xGRrasGEqWY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFG2ntWry0BWjoQKURAporAKCIzgiJuXg4efKoipHq6Pj4rZ9orwCcCE1c MDwM1P72Y+XmpuQ57AazX9w= =6tRn -----END PGP SIGNATURE----- --OXfL5xGRrasGEqWY-- From owner-cvs-all@FreeBSD.ORG Thu Sep 28 06:50:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80A7E16A407; Thu, 28 Sep 2006 06:50:35 +0000 (UTC) (envelope-from vd@datamax.bg) Received: from jengal.datamax.bg (jengal.datamax.bg [82.103.104.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 141A243D53; Thu, 28 Sep 2006 06:50:34 +0000 (GMT) (envelope-from vd@datamax.bg) Received: from qlovarnika.bg.datamax (qlovarnika.bg.datamax [192.168.10.2]) by jengal.datamax.bg (Postfix) with SMTP id 40585B833; Thu, 28 Sep 2006 09:50:33 +0300 (EEST) Received: (nullmailer pid 6293 invoked by uid 1002); Thu, 28 Sep 2006 06:50:33 -0000 Date: Thu, 28 Sep 2006 09:50:33 +0300 From: Vasil Dimov To: Yen-Ming Lee Message-ID: <20060928065033.GA98641@qlovarnika.bg.datamax> References: <200609280308.k8S381tW007549@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pf9I7BMVVzbSWLtt" Content-Disposition: inline In-Reply-To: <200609280308.k8S381tW007549@repoman.freebsd.org> Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/news/nntpcache Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vd@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, 28 Sep 2006 06:50:35 -0000 --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 28, 2006 at 03:08:00AM +0000, Yen-Ming Lee wrote: > leeym 2006-09-28 03:08:00 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > news/nntpcache Makefile=20 > Log: > - set NOT_FOR_ARCHS=3Dspace64 > =20 space64 !? --=20 Vasil Dimov gro.DSBeerF@dv % Never argue with a fool -- people might not be able to tell the difference.= =0D --pf9I7BMVVzbSWLtt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQFFG3C5Fw6SP/bBpCARAou8AKDHoPF4U06JfKk5fLQEq81gyMtJfwCfcLSV mmbaS9lkEQuTjasYboazWOk= =4CQ7 -----END PGP SIGNATURE----- --pf9I7BMVVzbSWLtt-- From owner-cvs-all@FreeBSD.ORG Thu Sep 28 07:02:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A91816A403; Thu, 28 Sep 2006 07:02:47 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5657243D45; Thu, 28 Sep 2006 07:02:47 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S72lT8043654; Thu, 28 Sep 2006 07:02:47 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S72lDR043653; Thu, 28 Sep 2006 07:02:47 GMT (envelope-from clsung) Message-Id: <200609280702.k8S72lDR043653@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 07:02:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www Makefile ports/www/p5-Gantry Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 07:02:47 -0000 clsung 2006-09-28 07:02:47 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/p5-Gantry Makefile distinfo pkg-descr pkg-plist Log: Add p5-Gantry 3.40, web application framework for mod_perl, cgi, etc. PR: ports/103662 Submitted by: Gea-Suan Lin Revision Changes Path 1.1575 +1 -0 ports/www/Makefile 1.1 +98 -0 ports/www/p5-Gantry/Makefile (new) 1.1 +3 -0 ports/www/p5-Gantry/distinfo (new) 1.1 +6 -0 ports/www/p5-Gantry/pkg-descr (new) 1.1 +107 -0 ports/www/p5-Gantry/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 07:03:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7F1416A417; Thu, 28 Sep 2006 07:03:04 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2-3.pacific.net.au [61.8.2.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B15C43D49; Thu, 28 Sep 2006 07:03:04 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.2.162]) by mailout2.pacific.net.au (Postfix) with ESMTP id 8119C702EE; Thu, 28 Sep 2006 17:03:02 +1000 (EST) Received: from epsplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k8S730eU016367; Thu, 28 Sep 2006 17:03:01 +1000 Date: Thu, 28 Sep 2006 17:02:59 +1000 (EST) From: Bruce Evans X-X-Sender: bde@epsplex.bde.org To: John Baldwin In-Reply-To: <200609271752.57082.jhb@freebsd.org> Message-ID: <20060928170249.G690@epsplex.bde.org> References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271710.51869.jhb@freebsd.org> <20060927212949.GB83490@rambler-co.ru> <200609271752.57082.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Ruslan Ermilov , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 07:03:04 -0000 On Wed, 27 Sep 2006, John Baldwin wrote: > On Wednesday 27 September 2006 17:29, Ruslan Ermilov wrote: >> On Wed, Sep 27, 2006 at 05:10:51PM -0400, John Baldwin wrote: >>> I still think doing this (via IOCPARM_IVAL()) is best and is probably a > much >>> smaller diff. >>> >> You don't consider that many ioctls are initiated inside the kernel, >> and this kernel code already uses (and passes) pointers to "int". >> While we could fix all of our kernel (and my first patch did exactly >> this), it's 1) very inconvenient, and 2) we cannot fix third-party >> kernel code this way. > > Could you avoid IOWINT by just assuming that any _IO() ioctl is getting an int > as the arg? If an ioctl doesn't use the arg, then you don't lose anything.. No -- see ru@'s reply. > do we have any ioctl's that use the arg directly but not as an int? The > ioctl(2) manpage implies that 'data' is either a pointer or an int. If you > go this route, you avoid changing all the ioctl values, basically just assume > that IOC_VOID means the argument is an int. The point of changing all the "void int" ioctls that actually pass an int to use _IOWINT() was to get away from the horrible (kernel) API and (user and kernel) ABI for them. The API is so horrible that there were no instances of correct use of it. The complications for using it are now mostly handled in IOCPARM_IVAL(), but we wanted to inhibit future uses of "void int" so so changed the ABI so that new (user) binaries use _IOWINT(). The ABI is still horrible because there aren't enough bits to encode the types in a nice way. Bruce From owner-cvs-all@FreeBSD.ORG Thu Sep 28 07:03:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B5B216A603; Thu, 28 Sep 2006 07:03:06 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85C0243D45; Thu, 28 Sep 2006 07:03:06 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S736JG044875; Thu, 28 Sep 2006 07:03:06 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S736XS044874; Thu, 28 Sep 2006 07:03:06 GMT (envelope-from clsung) Message-Id: <200609280703.k8S736XS044874@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 07:03:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 07:03:12 -0000 clsung 2006-09-28 07:03:06 UTC FreeBSD ports repository Modified files: . modules Log: p5-Gantry --> ports/www/p5-Gantry Revision Changes Path 1.16291 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Sep 28 07:05:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73E6116A415; Thu, 28 Sep 2006 07:05:59 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44D5043D49; Thu, 28 Sep 2006 07:05:59 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S75xUC045123; Thu, 28 Sep 2006 07:05:59 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S75xbP045122; Thu, 28 Sep 2006 07:05:59 GMT (envelope-from clsung) Message-Id: <200609280705.k8S75xbP045122@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 07:05:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-mgmt Makefile ports/net-mgmt/p5-Cisco-Reconfig Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 07:05:59 -0000 clsung 2006-09-28 07:05:59 UTC FreeBSD ports repository Modified files: net-mgmt Makefile Added files: net-mgmt/p5-Cisco-Reconfig Makefile distinfo pkg-descr pkg-plist Log: Add p5-Cisco-Reconfig 0.8, parse and generate Cisco configuration files. PR: ports/102490 Submitted by: Gea-Suan Lin Revision Changes Path 1.86 +1 -0 ports/net-mgmt/Makefile 1.1 +31 -0 ports/net-mgmt/p5-Cisco-Reconfig/Makefile (new) 1.1 +3 -0 ports/net-mgmt/p5-Cisco-Reconfig/distinfo (new) 1.1 +15 -0 ports/net-mgmt/p5-Cisco-Reconfig/pkg-descr (new) 1.1 +7 -0 ports/net-mgmt/p5-Cisco-Reconfig/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 07:06:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6122D16A412; Thu, 28 Sep 2006 07:06:16 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2363343D46; Thu, 28 Sep 2006 07:06:16 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S76FuK045186; Thu, 28 Sep 2006 07:06:16 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S76FsE045185; Thu, 28 Sep 2006 07:06:15 GMT (envelope-from clsung) Message-Id: <200609280706.k8S76FsE045185@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 07:06:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 07:06:16 -0000 clsung 2006-09-28 07:06:15 UTC FreeBSD ports repository Modified files: . modules Log: p5-Cisco-Reconfig --> ports/net-mgmt/p5-Cisco-Reconfig Revision Changes Path 1.16292 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Sep 28 07:22:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 479B516A40F; Thu, 28 Sep 2006 07:22:48 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from av11-1-sn2.hy.skanova.net (av11-1-sn2.hy.skanova.net [81.228.8.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id 853ED43D5D; Thu, 28 Sep 2006 07:22:41 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: by av11-1-sn2.hy.skanova.net (Postfix, from userid 502) id 590813847E; Thu, 28 Sep 2006 09:22:40 +0200 (CEST) Received: from smtp4-2-sn2.hy.skanova.net (smtp4-2-sn2.hy.skanova.net [81.228.8.93]) by av11-1-sn2.hy.skanova.net (Postfix) with ESMTP id 4AE6438455; Thu, 28 Sep 2006 09:22:40 +0200 (CEST) Received: from dude.automatvapen.se (81-229-112-193-no21.tbcn.telia.com [81.229.112.193]) by smtp4-2-sn2.hy.skanova.net (Postfix) with ESMTP id 2661737E46; Thu, 28 Sep 2006 09:22:40 +0200 (CEST) From: Joel Dahl To: Eric Anholt In-Reply-To: <1159423952.671.11.camel@localhost> References: <200609270638.k8R6csJ0044991@repoman.freebsd.org> <1159423952.671.11.camel@localhost> Content-Type: text/plain Date: Thu, 28 Sep 2006 09:22:40 +0200 Message-Id: <1159428160.671.35.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci agp_i810.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 07:22:48 -0000 On Thu, 2006-09-28 at 08:12 +0200, Joel Dahl wrote: > On Wed, 2006-09-27 at 06:38 +0000, Eric Anholt wrote: > > anholt 2006-09-27 06:38:54 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/pci agp_i810.c > > Log: > > Add support for 945G/GM AGP chipsets. > > > > The key problem was that the aperture size detection using the MSAC bit > > doesn't work -- the bit appears to be set even when it shouldn't be. Linux > > takes a different approach, testing for a bit of the GMADR (PCIR_BAR(2)) being > > set. However, as I don't think that's a safe way to test aperture size, we > > just allocate the resource and check its size. This also pointed out that > > agp_generic_attach hadn't been allocating our aperture resource, which may > > have caused problems in some cases. > > > > Also corrected is a minor copy-and-pasteo in an error case. > > Hmm, I have a HP NX7400 laptop with an Intel i945 chipset, and it's > running a very fresh current (GENERIC, no changes made whatsoever). > However, I see the following in my dmesg when I start X (I *think* it > started appearing just after your commit to agp_i810.c): Ok, I can confirm that reverting back to revision 1.38 of agp_i810.c fixes the problem. -- Joel From owner-cvs-all@FreeBSD.ORG Thu Sep 28 07:26:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA85C16A416; Thu, 28 Sep 2006 07:26:03 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 637CD43D6B; Thu, 28 Sep 2006 07:26:03 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S7Q3qB047059; Thu, 28 Sep 2006 07:26:03 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S7Q3SR047058; Thu, 28 Sep 2006 07:26:03 GMT (envelope-from clsung) Message-Id: <200609280726.k8S7Q3SR047058@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 07:26:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/p5-Thread-Queue-Duplex Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 07:26:03 -0000 clsung 2006-09-28 07:26:03 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Thread-Queue-Duplex Makefile distinfo pkg-descr pkg-plist Log: Add p5-Thread-Queue-Duplex 0.92, thread-safe request/response queue with identifiable elements. PR: ports/102636 Submitted by: Jin-Shan Tseng Revision Changes Path 1.2458 +1 -0 ports/devel/Makefile 1.1 +28 -0 ports/devel/p5-Thread-Queue-Duplex/Makefile (new) 1.1 +3 -0 ports/devel/p5-Thread-Queue-Duplex/distinfo (new) 1.1 +19 -0 ports/devel/p5-Thread-Queue-Duplex/pkg-descr (new) 1.1 +12 -0 ports/devel/p5-Thread-Queue-Duplex/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 07:26:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B9FA16A415; Thu, 28 Sep 2006 07:26:22 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC64443D77; Thu, 28 Sep 2006 07:26:21 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S7QLfb047103; Thu, 28 Sep 2006 07:26:21 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S7QLSu047102; Thu, 28 Sep 2006 07:26:21 GMT (envelope-from clsung) Message-Id: <200609280726.k8S7QLSu047102@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 07:26:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 07:26:22 -0000 clsung 2006-09-28 07:26:21 UTC FreeBSD ports repository Modified files: . modules Log: p5-Thread-Queue-Duplex --> ports/devel/p5-Thread-Queue-Duplex Revision Changes Path 1.16293 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Sep 28 07:32:30 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38FF816A47C; Thu, 28 Sep 2006 07:32:30 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42CC343D4C; Thu, 28 Sep 2006 07:32:28 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5D3A9.dip.t-dialin.net [84.165.211.169]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k8S77R7K079332; Thu, 28 Sep 2006 09:07:27 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from localhost (webmail.Leidinger.net [192.168.1.102]) by Andro-Beta.Leidinger.net (8.13.4/8.13.3) with ESMTP id k8S7WLIp097680; Thu, 28 Sep 2006 09:32:21 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from psbru.cec.eu.int (psbru.cec.eu.int [158.169.131.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Thu, 28 Sep 2006 09:31:50 +0200 Message-ID: <20060928093150.1k8m1mtu8808ocok@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Thu, 28 Sep 2006 09:31:50 +0200 From: Alexander Leidinger To: Robert Watson References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609271117.25831.jhb@freebsd.org> <451A9E1E.30601@samsco.org> <200609271338.22284.jhb@freebsd.org> <20060927230635.D73166@fledge.watson.org> In-Reply-To: <20060927230635.D73166@fledge.watson.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.3) / FreeBSD-7.0 X-Virus-Scanned: by amavisd-new Cc: Maxim Sobolev , Scott Long , src-committers@freebsd.org, John Baldwin , cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/i386/i386 local_apic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 07:32:30 -0000 Quoting Robert Watson (from Wed, 27 Sep 2006 =20 23:08:32 +0100 (BST)): > > On Wed, 27 Sep 2006, John Baldwin wrote: >> My point is that we need a notion of taking CPUs offline and online =20 >> with scheudler hooks, instead of exporting a simple x86-specific =20 >> bitmask. Right now we don't notify the schedulers when a CPU goes =20 >> offline so that they can try to do sensible things with pinned and =20 >> bound threads, etc. Instead, they just have to "notice" which is =20 >> rediculously lame. > > It's pretty clear that if we're going to take the hypervisor + dynamic > reconfiguration thing seriously, we need a structured notion of adding > and removing CPUs from the active CPU pool, including things like event > handlers so that subsystems can shut down operations on the CPU. For > example, UMA needs a chance to drain per-CPU caches of various zones, > services that have pinned threads on the CPU will need to decide how to > deal with that, etc. It's work I'd very much like to see happen, and > until it's done we basically need to make sure that CPUs either exist > from boot and never cease existing, or don't exist at boot and are > never used. Anyone out there who can write up a nice entry for the ideas list for =20 this? Some TODO items in it would be nice. Bye, Alexander. --=20 Sometimes it happens. People just explode. Natural causes. =09=09-- Repo Man http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-cvs-all@FreeBSD.ORG Thu Sep 28 07:40:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1389116A407; Thu, 28 Sep 2006 07:40:00 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7CAE43D4C; Thu, 28 Sep 2006 07:39:59 +0000 (GMT) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S7dxch047986; Thu, 28 Sep 2006 07:39:59 GMT (envelope-from johans@repoman.freebsd.org) Received: (from johans@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S7dxHA047985; Thu, 28 Sep 2006 07:39:59 GMT (envelope-from johans) Message-Id: <200609280739.k8S7dxHA047985@repoman.freebsd.org> From: Johan van Selst Date: Thu, 28 Sep 2006 07:39:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/eif Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 07:40:00 -0000 johans 2006-09-28 07:39:59 UTC FreeBSD ports repository Modified files: games/eif Makefile Log: - Fix build with gcc41 (error noted by pointyhat) - Add additional MASTER_SITE Revision Changes Path 1.6 +8 -2 ports/games/eif/Makefile From owner-cvs-all@FreeBSD.ORG Thu Sep 28 08:36:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5887D16A415; Thu, 28 Sep 2006 08:36:11 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A82E43D6B; Thu, 28 Sep 2006 08:36:08 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S8a8sX052808; Thu, 28 Sep 2006 08:36:08 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S8a8lU052807; Thu, 28 Sep 2006 08:36:08 GMT (envelope-from ru) Message-Id: <200609280836.k8S8a8lU052807@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 28 Sep 2006 08:36:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys param.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 08:36:11 -0000 ru 2006-09-28 08:36:08 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Retire macros for the old kernel memory allocator. Submitted by: bde Revision Changes Path 1.276 +0 -22 src/sys/sys/param.h From owner-cvs-all@FreeBSD.ORG Thu Sep 28 08:51:58 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C188A16A407; Thu, 28 Sep 2006 08:51:58 +0000 (UTC) (envelope-from marck@rinet.ru) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 262C343D49; Thu, 28 Sep 2006 08:51:57 +0000 (GMT) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.13.8/8.13.6) with ESMTP id k8S8pvYn003459; Thu, 28 Sep 2006 12:51:57 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Thu, 28 Sep 2006 12:51:57 +0400 (MSD) From: Dmitry Morozovsky To: Xin LI In-Reply-To: <200609280159.k8S1xVkv097855@repoman.freebsd.org> Message-ID: <20060928125114.J3187@woozle.rinet.ru> References: <200609280159.k8S1xVkv097855@repoman.freebsd.org> X-NCC-RegID: ru.rinet X-OpenPGP-Key-ID: 6B691B03 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (woozle.rinet.ru [0.0.0.0]); Thu, 28 Sep 2006 12:51:57 +0400 (MSD) Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/etc/defaults periodic.conf src/share/man/man5 periodic.conf.5 src/etc/periodic/weekly 120.clean-kvmdb Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 08:51:58 -0000 On Thu, 28 Sep 2006, Xin LI wrote: XL> delphij 2006-09-28 01:59:30 UTC XL> XL> FreeBSD src repository XL> XL> Modified files: (Branch: RELENG_6) XL> etc/defaults periodic.conf XL> share/man/man5 periodic.conf.5 XL> etc/periodic/weekly Makefile XL> Removed files: (Branch: RELENG_6) XL> etc/periodic/weekly 120.clean-kvmdb XL> Log: XL> MFC: The kvm_mkdb(8) is long dead. Shouldn't 120.clean-kvmdb be added to ObsoleFiles? Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-cvs-all@FreeBSD.ORG Thu Sep 28 09:10:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A522716A403; Thu, 28 Sep 2006 09:10:52 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from ns2.pil.dk (ns2.pil.dk [195.41.47.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 416C443D70; Thu, 28 Sep 2006 09:10:24 +0000 (GMT) (envelope-from henrik@brixandersen.dk) Received: from tirith.brixandersen.dk (osgiliath.brixandersen.dk [87.53.223.189]) by ns2.pil.dk (Postfix) with ESMTP id 5D97E7BA4BA; Thu, 28 Sep 2006 11:10:23 +0200 (CEST) Received: by tirith.brixandersen.dk (Postfix, from userid 1001) id DCC52B99F; Thu, 28 Sep 2006 11:10:22 +0200 (CEST) Date: Thu, 28 Sep 2006 11:10:22 +0200 From: Henrik Brix Andersen To: Marcus Alves Grando Message-ID: <20060928091022.GB64832@tirith.brixandersen.dk> Mail-Followup-To: Marcus Alves Grando , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200609271423.k8RENSEX098062@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UugvWAfsgieZRqgk" Content-Disposition: inline In-Reply-To: <200609271423.k8RENSEX098062@repoman.freebsd.org> X-PGP-Key: http://www.brixandersen.dk/files/HenrikBrixAndersen.asc User-Agent: Mutt/1.5.13 (2006-08-11) Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/databases/mysql50-client Makefile ports/databases/mysql50-server Makefile ports/databases/mysql50-server/files patch-include__mysql_com.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 09:10:52 -0000 --UugvWAfsgieZRqgk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 27, 2006 at 02:23:28PM +0000, Marcus Alves Grando wrote: > mnag 2006-09-27 14:23:28 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > databases/mysql50-client Makefile=20 > databases/mysql50-server Makefile=20 > Added files: > databases/mysql50-server/files patch-include__mysql_com.h=20 > Log: > - Apply fix to ulong problem. http://bugs.mysql.com/bug.php?id=3D22227 > - Bump -client PORTREVISION > - portlint Does this mean the work-around can be removed from databases/ruby-mysql again? Regards, Brix --=20 Henrik Brix Andersen --UugvWAfsgieZRqgk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: GnuPG signed iD8DBQFFG5F+v+Q4flTiePgRAux0AJ9Jm+8uwKARLjij6oCrvWRg2hyYgwCgl3Cg hZe0dz57lX+kpuCCOY/VJKM= =K+EC -----END PGP SIGNATURE----- --UugvWAfsgieZRqgk-- From owner-cvs-all@FreeBSD.ORG Thu Sep 28 09:25:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BCF316A412; Thu, 28 Sep 2006 09:25:10 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E66843D45; Thu, 28 Sep 2006 09:25:06 +0000 (GMT) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id 2039AEB1935; Thu, 28 Sep 2006 17:25:02 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id lYU9qHBtNtq6; Thu, 28 Sep 2006 17:25:00 +0800 (CST) Received: from [10.217.12.201] (sina152-194.staff.sina.com.cn [61.135.152.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id 0099CEB0BFF; Thu, 28 Sep 2006 17:24:57 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:organization:user-agent:mime-version:to:cc: subject:references:in-reply-to:x-enigmail-version:content-type; b=cLnTh4idC1HeTASwlSVCsnxWYmiSjYryFiK76mqG4Bco7iQSP5j8LXbmTDuVsLg9+ 3gbwGfTk9fkIxmBvDrJCg== Message-ID: <451B94D0.5090600@delphij.net> Date: Thu, 28 Sep 2006 17:24:32 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: Dmitry Morozovsky References: <200609280159.k8S1xVkv097855@repoman.freebsd.org> <20060928125114.J3187@woozle.rinet.ru> In-Reply-To: <20060928125114.J3187@woozle.rinet.ru> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="------------enig1BD5A47A81CE70981F26C296" Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, Xin LI , cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/defaults periodic.conf src/share/man/man5 periodic.conf.5 src/etc/periodic/weekly 120.clean-kvmdb Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 09:25:10 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig1BD5A47A81CE70981F26C296 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Dmitry Morozovsky wrote: > On Thu, 28 Sep 2006, Xin LI wrote: >=20 > XL> delphij 2006-09-28 01:59:30 UTC > XL>=20 > XL> FreeBSD src repository > XL>=20 > XL> Modified files: (Branch: RELENG_6) > XL> etc/defaults periodic.conf=20 > XL> share/man/man5 periodic.conf.5=20 > XL> etc/periodic/weekly Makefile=20 > XL> Removed files: (Branch: RELENG_6) > XL> etc/periodic/weekly 120.clean-kvmdb=20 > XL> Log: > XL> MFC: The kvm_mkdb(8) is long dead. >=20 > Shouldn't 120.clean-kvmdb be added to ObsoleFiles? Yes it should. I will add it to -HEAD and request for re@'s approval. Thanks for pointing this out. Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enig1BD5A47A81CE70981F26C296 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFG5TQOfuToMruuMARA3LfAJwLl8j3FXe55XBtIpQ0LPvd5RLq8QCdGBFX GvUs2H8Mh2fXayHFubkIq+A= =jYnv -----END PGP SIGNATURE----- --------------enig1BD5A47A81CE70981F26C296-- From owner-cvs-all@FreeBSD.ORG Thu Sep 28 09:32:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F400116A4D0; Thu, 28 Sep 2006 09:32:22 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A616643D49; Thu, 28 Sep 2006 09:32:22 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8S9WME7068223; Thu, 28 Sep 2006 09:32:22 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8S9WMid068222; Thu, 28 Sep 2006 09:32:22 GMT (envelope-from delphij) Message-Id: <200609280932.k8S9WMid068222@repoman.freebsd.org> From: Xin LI Date: Thu, 28 Sep 2006 09:32:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 09:32:23 -0000 delphij 2006-09-28 09:32:22 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Log: Remove 120.clean-kvmdb. MFC After: 1 day Revision Changes Path 1.52 +2 -0 src/ObsoleteFiles.inc From owner-cvs-all@FreeBSD.ORG Thu Sep 28 10:02:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0CDC16A47C; Thu, 28 Sep 2006 10:02:13 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 953EB43D70; Thu, 28 Sep 2006 10:02:04 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SA24xx070192; Thu, 28 Sep 2006 10:02:04 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SA24gP070191; Thu, 28 Sep 2006 10:02:04 GMT (envelope-from ru) Message-Id: <200609281002.k8SA24gP070191@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 28 Sep 2006 10:02:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/ficl Makefile src/sys/boot/i386 Makefile.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 10:02:14 -0000 ru 2006-09-28 10:02:04 UTC FreeBSD src repository Modified files: sys/boot/ficl Makefile sys/boot/i386 Makefile.inc Log: Add -march=i386 to fix amd64 build by generating the same code as i386 would do. Revision Changes Path 1.44 +1 -1 src/sys/boot/ficl/Makefile 1.12 +1 -1 src/sys/boot/i386/Makefile.inc From owner-cvs-all@FreeBSD.ORG Thu Sep 28 10:04:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C566016A494; Thu, 28 Sep 2006 10:04:13 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 977CE43D55; Thu, 28 Sep 2006 10:04:08 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SA48vY071518; Thu, 28 Sep 2006 10:04:08 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SA480d071517; Thu, 28 Sep 2006 10:04:08 GMT (envelope-from bms) Message-Id: <200609281004.k8SA480d071517@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 28 Sep 2006 10:04:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet in.c in_var.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 10:04:13 -0000 bms 2006-09-28 10:04:08 UTC FreeBSD src repository Modified files: sys/netinet in.c in_var.h Log: The IPv4 code should clean up multicast group state when an interface goes away. Without this change, it leaks in_multi (and often ether_multi state) if many clonable interfaces are created and destroyed in quick succession. The concept of this fix is borrowed from KAME. Detailed information about this behaviour, as well as test cases, are available in the PR. PR: kern/78227 MFC after: 1 week Revision Changes Path 1.94 +31 -2 src/sys/netinet/in.c 1.59 +2 -0 src/sys/netinet/in_var.h From owner-cvs-all@FreeBSD.ORG Thu Sep 28 10:50:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41CD716A4D1; Thu, 28 Sep 2006 10:50:37 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3FD043D53; Thu, 28 Sep 2006 10:50:36 +0000 (GMT) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SAoaZ3074497; Thu, 28 Sep 2006 10:50:36 GMT (envelope-from johans@repoman.freebsd.org) Received: (from johans@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SAoa1V074496; Thu, 28 Sep 2006 10:50:36 GMT (envelope-from johans) Message-Id: <200609281050.k8SAoa1V074496@repoman.freebsd.org> From: Johan van Selst Date: Thu, 28 Sep 2006 10:50:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/elm+ME Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 10:50:37 -0000 johans 2006-09-28 10:50:36 UTC FreeBSD ports repository Modified files: mail/elm+ME Makefile distinfo Log: - Update to 2.4.123d (minor bugfixes, including gcc4x compilation fix) Revision Changes Path 1.99 +1 -1 ports/mail/elm+ME/Makefile 1.56 +3 -0 ports/mail/elm+ME/distinfo From owner-cvs-all@FreeBSD.ORG Thu Sep 28 12:18:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DBFC16A403; Thu, 28 Sep 2006 12:18:57 +0000 (UTC) (envelope-from barner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B876C43D70; Thu, 28 Sep 2006 12:18:56 +0000 (GMT) (envelope-from barner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SCIusB082424; Thu, 28 Sep 2006 12:18:56 GMT (envelope-from barner@repoman.freebsd.org) Received: (from barner@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SCIuDs082423; Thu, 28 Sep 2006 12:18:56 GMT (envelope-from barner) Message-Id: <200609281218.k8SCIuDs082423@repoman.freebsd.org> From: Simon Barner Date: Thu, 28 Sep 2006 12:18:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/libunrar Makefile distinfo ports/archivers/libunrar/files patch-dll.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 12:18:57 -0000 barner 2006-09-28 12:18:56 UTC FreeBSD ports repository Modified files: archivers/libunrar Makefile distinfo archivers/libunrar/files patch-dll.cpp Log: - Update to 3.6.8 [1] - Use more sane PORTVERSION numbering (this requires a PORTEPOCH bump to 1, though :( - Use USE_LDCONFIG Submitted by: "Alex Samorukov" (maintainer) [1] PR: ports/103440 Revision Changes Path 1.8 +4 -3 ports/archivers/libunrar/Makefile 1.6 +3 -3 ports/archivers/libunrar/distinfo 1.3 +0 -10 ports/archivers/libunrar/files/patch-dll.cpp From owner-cvs-all@FreeBSD.ORG Thu Sep 28 12:21:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0AA816A415; Thu, 28 Sep 2006 12:21:09 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C18C43D6E; Thu, 28 Sep 2006 12:21:09 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SCL9UH082617; Thu, 28 Sep 2006 12:21:09 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SCL9cw082616; Thu, 28 Sep 2006 12:21:09 GMT (envelope-from bms) Message-Id: <200609281221.k8SCL9cw082616@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 28 Sep 2006 12:21:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet ip_mroute.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 12:21:09 -0000 bms 2006-09-28 12:21:09 UTC FreeBSD src repository Modified files: sys/netinet ip_mroute.c Log: Fix the IPv4 multicast routing detach path. On interface detach whilst the MROUTER is running, the system would panic as described in the PR. The fix in the PR is a good start, however, the other state associated with the multicast forwarding cache has to be freed in order to avoid leaking memory and other possible panics. More care and attention is needed in this area. PR: kern/82882 MFC after: 1 week Revision Changes Path 1.119 +87 -5 src/sys/netinet/ip_mroute.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 12:26:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85D9216A412; Thu, 28 Sep 2006 12:26:36 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCA4343D5A; Thu, 28 Sep 2006 12:26:35 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.14] (imini.samsco.home [192.168.254.14]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k8SCQTp7024272; Thu, 28 Sep 2006 06:26:34 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <451BBF75.3050009@samsco.org> Date: Thu, 28 Sep 2006 06:26:29 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.7) Gecko/20050416 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ruslan Ermilov References: <200609281002.k8SA24gP070191@repoman.freebsd.org> In-Reply-To: <200609281002.k8SA24gP070191@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/ficl Makefile src/sys/boot/i386 Makefile.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 12:26:36 -0000 Ruslan Ermilov wrote: > ru 2006-09-28 10:02:04 UTC > > FreeBSD src repository > > Modified files: > sys/boot/ficl Makefile > sys/boot/i386 Makefile.inc > Log: > Add -march=i386 to fix amd64 build by generating the same code > as i386 would do. > > Revision Changes Path > 1.44 +1 -1 src/sys/boot/ficl/Makefile > 1.12 +1 -1 src/sys/boot/i386/Makefile.inc Thanks, I fell asleep before I finished fixing this =-) Scott From owner-cvs-all@FreeBSD.ORG Thu Sep 28 12:33:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B29416A407; Thu, 28 Sep 2006 12:33:37 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3752E43D46; Thu, 28 Sep 2006 12:33:37 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SCXbqL083251; Thu, 28 Sep 2006 12:33:37 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SCXb07083250; Thu, 28 Sep 2006 12:33:37 GMT (envelope-from ru) Message-Id: <200609281233.k8SCXb07083250@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 28 Sep 2006 12:33:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/tools/tools/find-sb Makefile find-sb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 12:33:37 -0000 ru 2006-09-28 12:33:36 UTC FreeBSD src repository Modified files: tools/tools/find-sb Makefile find-sb.c Log: Initializate "offset" variable to zero; otherwise, if not using the -o option, it might contain garbage. MFC after: 1 day Revision Changes Path 1.3 +2 -0 src/tools/tools/find-sb/Makefile 1.4 +1 -0 src/tools/tools/find-sb/find-sb.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 12:44:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B58216A407; Thu, 28 Sep 2006 12:44:13 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED8F343D62; Thu, 28 Sep 2006 12:44:12 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SCiCs2083767; Thu, 28 Sep 2006 12:44:12 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SCiCra083766; Thu, 28 Sep 2006 12:44:12 GMT (envelope-from sat) Message-Id: <200609281244.k8SCiCra083766@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 28 Sep 2006 12:44:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net Makefile ports/net/p5-Net-Packet-Target Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 12:44:13 -0000 sat 2006-09-28 12:44:12 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/p5-Net-Packet-Target Makefile distinfo pkg-descr pkg-plist Log: Add port net/p5-Net-Packet-Target: Net::Packet::Target - Target object for all Net::Packet related stuff WWW: http://search.cpan.org/dist/Net-Packet-Target/ Author: GomoR Revision Changes Path 1.1742 +1 -0 ports/net/Makefile 1.1 +24 -0 ports/net/p5-Net-Packet-Target/Makefile (new) 1.1 +3 -0 ports/net/p5-Net-Packet-Target/distinfo (new) 1.1 +4 -0 ports/net/p5-Net-Packet-Target/pkg-descr (new) 1.1 +7 -0 ports/net/p5-Net-Packet-Target/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 12:45:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01C5C16A407; Thu, 28 Sep 2006 12:45:11 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A18143D46; Thu, 28 Sep 2006 12:45:11 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SCjB98083828; Thu, 28 Sep 2006 12:45:11 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SCjBA8083827; Thu, 28 Sep 2006 12:45:11 GMT (envelope-from sat) Message-Id: <200609281245.k8SCjBA8083827@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 28 Sep 2006 12:45:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 12:45:12 -0000 sat 2006-09-28 12:45:11 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-Packet-Target --> ports/net/p5-Net-Packet-Target Revision Changes Path 1.16294 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Sep 28 12:47:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8227A16A403; Thu, 28 Sep 2006 12:47:55 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CAED43D46; Thu, 28 Sep 2006 12:47:55 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SClt2T091946; Thu, 28 Sep 2006 12:47:55 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SCltQ1091945; Thu, 28 Sep 2006 12:47:55 GMT (envelope-from sat) Message-Id: <200609281247.k8SCltQ1091945@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 28 Sep 2006 12:47:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Net-Packet Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 12:47:55 -0000 sat 2006-09-28 12:47:54 UTC FreeBSD ports repository Modified files: net/p5-Net-Packet Makefile distinfo pkg-descr pkg-plist Log: - Update to 3.00 - Minor fixes Approved by: GomoR (maintainer) Revision Changes Path 1.4 +15 -14 ports/net/p5-Net-Packet/Makefile 1.5 +3 -3 ports/net/p5-Net-Packet/distinfo 1.3 +1 -3 ports/net/p5-Net-Packet/pkg-descr 1.4 +4 -5 ports/net/p5-Net-Packet/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Sep 28 12:54:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 910E516A40F; Thu, 28 Sep 2006 12:54:38 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7102B43D72; Thu, 28 Sep 2006 12:54:36 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SCsalB092271; Thu, 28 Sep 2006 12:54:36 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SCsalP092270; Thu, 28 Sep 2006 12:54:36 GMT (envelope-from sat) Message-Id: <200609281254.k8SCsalP092270@repoman.freebsd.org> From: Andrew Pantyukhin Date: Thu, 28 Sep 2006 12:54:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/sinfp Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 12:54:38 -0000 sat 2006-09-28 12:54:36 UTC FreeBSD ports repository Modified files: security/sinfp Makefile distinfo pkg-descr pkg-plist Log: - Use CPAN version - Resolve all conflicts Revision Changes Path 1.4 +16 -39 ports/security/sinfp/Makefile 1.3 +3 -3 ports/security/sinfp/distinfo 1.2 +1 -0 ports/security/sinfp/pkg-descr 1.2 +3 -30 ports/security/sinfp/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:00:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D71D016A4A0; Thu, 28 Sep 2006 13:00:51 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9189C43D5F; Thu, 28 Sep 2006 13:00:51 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD0pGA092622; Thu, 28 Sep 2006 13:00:51 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD0pdb092621; Thu, 28 Sep 2006 13:00:51 GMT (envelope-from bms) Message-Id: <200609281300.k8SD0pdb092621@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 28 Sep 2006 13:00:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:00:52 -0000 bms 2006-09-28 13:00:51 UTC FreeBSD src repository Modified files: . UPDATING Log: Note the removal of tcpslice Revision Changes Path 1.457 +3 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:02:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A79016A403; Thu, 28 Sep 2006 13:02:37 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BB6043D5A; Thu, 28 Sep 2006 13:02:37 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD2big092866; Thu, 28 Sep 2006 13:02:37 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD2b9C092865; Thu, 28 Sep 2006 13:02:37 GMT (envelope-from cperciva) Message-Id: <200609281302.k8SD2b9C092865@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:02:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c src/crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:02:37 -0000 cperciva 2006-09-28 13:02:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: re (htimsnek) Revision Changes Path 1.1.1.2.10.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.12.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.5.2.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.9.2.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.7.2.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.12.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.8.2.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.11.2.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.13.2.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.12.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.13.2.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.14.2.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.12.2.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:03:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8544B16A523; Thu, 28 Sep 2006 13:03:15 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F68C43D55; Thu, 28 Sep 2006 13:03:15 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD3Ef4094255; Thu, 28 Sep 2006 13:03:14 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD3Euc094254; Thu, 28 Sep 2006 13:03:14 GMT (envelope-from cperciva) Message-Id: <200609281303.k8SD3Euc094254@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:03:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_1 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:03:15 -0000 cperciva 2006-09-28 13:03:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_1) . UPDATING crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c sys/conf newvers.sh Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.416.2.22.2.10 +5 -0 src/UPDATING 1.1.1.2.14.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.16.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.5.6.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.9.6.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.7.6.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.16.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.8.6.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.11.6.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.13.6.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.16.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.13.6.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.14.6.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.12.6.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c 1.69.2.11.2.10 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:03:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC20816A4B3; Thu, 28 Sep 2006 13:03:42 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40ADF43D49; Thu, 28 Sep 2006 13:03:42 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD3gZQ094432; Thu, 28 Sep 2006 13:03:42 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD3gfi094429; Thu, 28 Sep 2006 13:03:42 GMT (envelope-from cperciva) Message-Id: <200609281303.k8SD3gfi094429@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:03:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:03:43 -0000 cperciva 2006-09-28 13:03:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) . UPDATING crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c sys/conf newvers.sh Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.416.2.3.2.18 +5 -0 src/UPDATING 1.1.1.2.12.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.14.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.5.4.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.9.4.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.7.4.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.14.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.8.4.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.11.4.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.13.4.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.14.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.13.4.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.14.4.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.12.4.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c 1.69.2.8.2.14 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:04:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBC7A16A403; Thu, 28 Sep 2006 13:04:05 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3142B43D7C; Thu, 28 Sep 2006 13:03:58 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD3wZJ094559; Thu, 28 Sep 2006 13:03:58 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD3wpi094558; Thu, 28 Sep 2006 13:03:58 GMT (envelope-from cperciva) Message-Id: <200609281303.k8SD3wpi094558@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:03:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c src/crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:04:06 -0000 cperciva 2006-09-28 13:03:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Revision Changes Path 1.1.1.2.4.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.6.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.4.6.2 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.8.4.2 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.6.6.2 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.6.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.7.4.2 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.10.4.2 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.12.4.2 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.6.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.12.2.2 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.13.2.2 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.11.2.2 +1 -1 src/crypto/openssl/ssl/ssl_lib.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:04:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E292716A40F; Thu, 28 Sep 2006 13:04:19 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55CC243D67; Thu, 28 Sep 2006 13:04:16 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD4GLv094729; Thu, 28 Sep 2006 13:04:16 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD4GqQ094728; Thu, 28 Sep 2006 13:04:16 GMT (envelope-from cperciva) Message-Id: <200609281304.k8SD4GqQ094728@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:04:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_5 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:04:20 -0000 cperciva 2006-09-28 13:04:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_5) . UPDATING crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c sys/conf newvers.sh Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.342.2.35.2.6 +5 -0 src/UPDATING 1.1.1.2.16.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.18.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.4.6.1.4.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.8.4.1.4.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.6.6.1.4.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.18.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.7.4.1.4.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.10.4.1.4.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.12.4.1.4.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.18.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.12.2.1.4.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.13.2.1.4.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.11.2.1.4.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c 1.62.2.21.2.8 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:04:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6003B16A51C; Thu, 28 Sep 2006 13:04:49 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C99443D77; Thu, 28 Sep 2006 13:04:47 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD4lGK094910; Thu, 28 Sep 2006 13:04:47 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD4lAr094909; Thu, 28 Sep 2006 13:04:47 GMT (envelope-from cperciva) Message-Id: <200609281304.k8SD4lAr094909@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:04:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_4 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:04:49 -0000 cperciva 2006-09-28 13:04:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_4) . UPDATING crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c sys/conf newvers.sh Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.342.2.24.2.29 +5 -0 src/UPDATING 1.1.1.2.8.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.10.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.4.6.1.2.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.8.4.1.2.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.6.6.1.2.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.10.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.7.4.1.2.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.10.4.1.2.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.12.4.1.2.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.10.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.12.2.1.2.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.13.2.1.2.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.11.2.1.2.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c 1.62.2.18.2.25 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:05:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA54316A529; Thu, 28 Sep 2006 13:05:13 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8734943D7F; Thu, 28 Sep 2006 13:05:09 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD59nQ095092; Thu, 28 Sep 2006 13:05:09 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD59o1095091; Thu, 28 Sep 2006 13:05:09 GMT (envelope-from cperciva) Message-Id: <200609281305.k8SD59o1095091@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:05:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_3 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:05:14 -0000 cperciva 2006-09-28 13:05:08 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_3) . UPDATING crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c sys/conf newvers.sh Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.342.2.13.2.38 +5 -0 src/UPDATING 1.1.1.2.6.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.6.8.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.4.8.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.8.6.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.6.8.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.4.8.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.7.6.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.10.6.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.12.6.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.4.8.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.12.4.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.13.4.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.11.4.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c 1.62.2.15.2.40 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:06:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A8AF16A494; Thu, 28 Sep 2006 13:06:07 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ABA143D5F; Thu, 28 Sep 2006 13:05:59 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD5xQ4095265; Thu, 28 Sep 2006 13:05:59 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD5xMS095264; Thu, 28 Sep 2006 13:05:59 GMT (envelope-from cperciva) Message-Id: <200609281305.k8SD5xMS095264@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:05:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: Subject: cvs commit: src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c src/crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:06:07 -0000 cperciva 2006-09-28 13:05:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Revision Changes Path 1.1.1.1.2.3 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.1.2.5 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.1.2.4 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.1.2.8 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.1.2.5 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.1.2.4 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.1.2.8 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.2.2.9 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.2.4.9 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.1.2.4 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.2.2.9 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.1.2.10 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.1.2.9 +1 -1 src/crypto/openssl/ssl/ssl_lib.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:06:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 415AE16A4A7; Thu, 28 Sep 2006 13:06:27 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BC3743D5E; Thu, 28 Sep 2006 13:06:24 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SD6O2C095449; Thu, 28 Sep 2006 13:06:24 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SD6Ox5095448; Thu, 28 Sep 2006 13:06:24 GMT (envelope-from cperciva) Message-Id: <200609281306.k8SD6Ox5095448@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:06:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_11 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/asn1 tasn_dec.c src/crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c src/crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c src/crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:06:27 -0000 cperciva 2006-09-28 13:06:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_4_11) . UPDATING crypto/openssl/crypto/asn1 tasn_dec.c crypto/openssl/crypto/dh dh.h dh_err.c dh_key.c crypto/openssl/crypto/dsa dsa.h dsa_err.c dsa_ossl.c crypto/openssl/crypto/rsa rsa.h rsa_eay.c rsa_err.c crypto/openssl/ssl s2_clnt.c s3_srvr.c ssl_lib.c sys/conf newvers.sh Log: Correct multiple vulnerabilities in crypto(3). Limit the size of public keys used in order to protect applications from a denial of service via insane key sizes. Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.73.2.91.2.24 +5 -0 src/UPDATING 1.1.1.1.2.2.6.1 +3 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c 1.1.1.1.2.4.8.1 +5 -0 src/crypto/openssl/crypto/dh/dh.h 1.1.1.1.2.3.8.1 +1 -0 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.1.2.7.6.1 +6 -0 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.1.2.4.8.1 +6 -0 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.1.2.3.8.1 +2 -0 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.1.2.7.6.1 +12 -0 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.2.2.8.4.1 +13 -1 src/crypto/openssl/crypto/rsa/rsa.h 1.2.4.8.4.1 +45 -1 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.1.2.3.8.1 +1 -0 src/crypto/openssl/crypto/rsa/rsa_err.c 1.2.2.8.4.1 +2 -1 src/crypto/openssl/ssl/s2_clnt.c 1.1.1.1.2.9.4.1 +1 -1 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.1.2.8.4.1 +1 -1 src/crypto/openssl/ssl/ssl_lib.c 1.44.2.39.2.27 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:12:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E99CB16A403; Thu, 28 Sep 2006 13:12:16 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A49D143D45; Thu, 28 Sep 2006 13:12:16 +0000 (GMT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SDCGuq095761; Thu, 28 Sep 2006 13:12:16 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SDCG9k095760; Thu, 28 Sep 2006 13:12:16 GMT (envelope-from leeym) Message-Id: <200609281312.k8SDCG9k095760@repoman.freebsd.org> From: Yen-Ming Lee Date: Thu, 28 Sep 2006 13:12:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/news/nntpcache Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:12:17 -0000 leeym 2006-09-28 13:12:16 UTC FreeBSD ports repository Modified files: news/nntpcache Makefile Log: - avoid NOT_FOR_ARCHS which will mark IGNORE - mark BROKEN instead - correct typo Noticed by: kris, vd Revision Changes Path 1.49 +4 -2 ports/news/nntpcache/Makefile From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:14:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B549416A4D4; Thu, 28 Sep 2006 13:14:57 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CB0543D79; Thu, 28 Sep 2006 13:14:55 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SDEtIZ095898; Thu, 28 Sep 2006 13:14:55 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SDEtsM095897; Thu, 28 Sep 2006 13:14:55 GMT (envelope-from cperciva) Message-Id: <200609281314.k8SDEtsM095897@repoman.freebsd.org> From: Colin Percival Date: Thu, 28 Sep 2006 13:14:55 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml advisories.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:14:57 -0000 cperciva 2006-09-28 13:14:54 UTC FreeBSD doc repository (src,ports committer) Modified files: share/sgml advisories.xml Log: Add FreeBSD-SA-06:23.openssl Revision Changes Path 1.202 +9 -1 www/share/sgml/advisories.xml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:15:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98FC816A5CA; Thu, 28 Sep 2006 13:15:59 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20A9743D73; Thu, 28 Sep 2006 13:15:48 +0000 (GMT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SDFfxk096027; Thu, 28 Sep 2006 13:15:41 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SDFfIf096026; Thu, 28 Sep 2006 13:15:41 GMT (envelope-from leeym) Message-Id: <200609281315.k8SDFfIf096026@repoman.freebsd.org> From: Yen-Ming Lee Date: Thu, 28 Sep 2006 13:15:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/openwebmail Makefile ports/mail/openwebmail/files patch-CVE-2006-3233 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:15:59 -0000 leeym 2006-09-28 13:15:41 UTC FreeBSD ports repository Modified files: mail/openwebmail Makefile Added files: mail/openwebmail/files patch-CVE-2006-3233 Log: - fix cross-site scripting (XSS) vulnerability in openwebmail-read.pl - bump PORTREVISION Submitted by: rafan Security: CVE-2006-3233 Revision Changes Path 1.63 +1 -1 ports/mail/openwebmail/Makefile 1.1 +29 -0 ports/mail/openwebmail/files/patch-CVE-2006-3233 (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:21:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from [IPv6:::1] (hub.freebsd.org [216.136.204.18]) by hub.freebsd.org (Postfix) with ESMTP id B62A016A494; Thu, 28 Sep 2006 13:21:35 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Message-ID: <451BCC5E.1000006@FreeBSD.org> Date: Thu, 28 Sep 2006 10:21:34 -0300 From: Marcus Alves Grando Organization: FreeBSD.org User-Agent: Thunderbird 1.5.0.7 (X11/20060919) MIME-Version: 1.0 To: Marcus Alves Grando , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200609271423.k8RENSEX098062@repoman.freebsd.org> <20060928091022.GB64832@tirith.brixandersen.dk> In-Reply-To: <20060928091022.GB64832@tirith.brixandersen.dk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: cvs commit: ports/databases/mysql50-client Makefile ports/databases/mysql50-server Makefile ports/databases/mysql50-server/files patch-include__mysql_com.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:21:37 -0000 Henrik Brix Andersen wrote: > On Wed, Sep 27, 2006 at 02:23:28PM +0000, Marcus Alves Grando wrote: >> mnag 2006-09-27 14:23:28 UTC >> >> FreeBSD ports repository >> >> Modified files: >> databases/mysql50-client Makefile >> databases/mysql50-server Makefile >> Added files: >> databases/mysql50-server/files patch-include__mysql_com.h >> Log: >> - Apply fix to ulong problem. http://bugs.mysql.com/bug.php?id=22227 >> - Bump -client PORTREVISION >> - portlint > > Does this mean the work-around can be removed from > databases/ruby-mysql again? Yes. Thanks > > Regards, > Brix -- Marcus Alves Grando marcus(at)corp.grupos.com.br | Grupos Internet S/A mnag(at)FreeBSD.org | FreeBSD.org From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:54:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5907716A47B; Thu, 28 Sep 2006 13:54:10 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from zxy.spb.ru (zxy.spb.ru [194.58.105.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDE0243D86; Thu, 28 Sep 2006 13:54:09 +0000 (GMT) (envelope-from slw@zxy.spb.ru) Received: from slw by zxy.spb.ru with local (Exim 4.44 (FreeBSD)) id 1GSwL1-000CMt-RF; Thu, 28 Sep 2006 17:54:08 +0400 Date: Thu, 28 Sep 2006 17:54:07 +0400 From: Slawa Olhovchenkov To: Paolo Pisati Message-ID: <20060928135407.GB6453%slw@zxy.spb.ru> References: <200609262326.k8QNQrtW098027@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609262326.k8QNQrtW098027@repoman.freebsd.org> User-Agent: Mutt/1.5.11 X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: slw@zxy.spb.ru X-SA-Exim-Scanned: No (on zxy.spb.ru); SAEximRunCond expanded to false Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile libalias.conf src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/lib/libalias/modules/cuseeme Makefile src/lib/libalias/modules/dummy ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:54:10 -0000 On Tue, Sep 26, 2006 at 11:26:53PM +0000, Paolo Pisati wrote: > During startup (and after every HUP signal) user land applications running > the new libalias will try to read a file in /etc called libalias.conf: > that file contains the list of modules to load. I think handle HUP signal inside library (for re-reading config) is bad idea. From owner-cvs-all@FreeBSD.ORG Thu Sep 28 13:59:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B94BD16A407; Thu, 28 Sep 2006 13:59:26 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7057E43D82; Thu, 28 Sep 2006 13:59:26 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SDxQVr098102; Thu, 28 Sep 2006 13:59:26 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SDxQA7098101; Thu, 28 Sep 2006 13:59:26 GMT (envelope-from andre) Message-Id: <200609281359.k8SDxQA7098101@repoman.freebsd.org> From: Andre Oppermann Date: Thu, 28 Sep 2006 13:59:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet tcp_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 13:59:26 -0000 andre 2006-09-28 13:59:26 UTC FreeBSD src repository Modified files: sys/netinet tcp_output.c Log: When doing TSO correctly do the check to prevent a maximum sized IP packet from overflowing. Revision Changes Path 1.119 +1 -1 src/sys/netinet/tcp_output.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 14:00:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1D6E16A492; Thu, 28 Sep 2006 14:00:35 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91A9643D45; Thu, 28 Sep 2006 14:00:35 +0000 (GMT) (envelope-from johans@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SE0ZLx098203; Thu, 28 Sep 2006 14:00:35 GMT (envelope-from johans@repoman.freebsd.org) Received: (from johans@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SE0ZOE098193; Thu, 28 Sep 2006 14:00:35 GMT (envelope-from johans) Message-Id: <200609281400.k8SE0ZOE098193@repoman.freebsd.org> From: Johan van Selst Date: Thu, 28 Sep 2006 14:00:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/wolfpack Makefile distinfo pkg-install pkg-plist ports/games/wolfpack/files patch-src::server::main.c wolfpack.in wolfpack.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 14:00:35 -0000 johans 2006-09-28 14:00:35 UTC FreeBSD ports repository Modified files: games/wolfpack Makefile distinfo pkg-install pkg-plist Added files: games/wolfpack/files wolfpack.in Removed files: games/wolfpack/files patch-src::server::main.c wolfpack.sh Log: - Update to 4.2.21 (should work on ia64) - Remove obsoleted pidfile patch - Update rc.d script style - Assume maintainership Revision Changes Path 1.13 +6 -11 ports/games/wolfpack/Makefile 1.10 +3 -3 ports/games/wolfpack/distinfo 1.2 +0 -127 ports/games/wolfpack/files/patch-src::server::main.c (dead) 1.1 +24 -0 ports/games/wolfpack/files/wolfpack.in (new) 1.2 +0 -25 ports/games/wolfpack/files/wolfpack.sh (dead) 1.2 +1 -1 ports/games/wolfpack/pkg-install 1.8 +15 -9 ports/games/wolfpack/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Sep 28 14:19:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CE4D16A407; Thu, 28 Sep 2006 14:19:56 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A51443D78; Thu, 28 Sep 2006 14:19:55 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.4/8.13.3) with ESMTP id k8SEJqmQ080677 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 28 Sep 2006 18:19:53 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k8SEJqEZ080676; Thu, 28 Sep 2006 18:19:52 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Thu, 28 Sep 2006 18:19:52 +0400 From: Gleb Smirnoff To: Slawa Olhovchenkov Message-ID: <20060928141952.GZ59833@FreeBSD.org> References: <200609262326.k8QNQrtW098027@repoman.freebsd.org> <20060928135407.GB6453%slw@zxy.spb.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20060928135407.GB6453%slw@zxy.spb.ru> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Paolo Pisati Subject: Re: cvs commit: src/etc Makefile libalias.conf src/lib/libalias Makefile src/lib/libalias/libalias Makefile src/lib/libalias/modules Makefile Makefile.inc src/lib/libalias/modules/cuseeme Makefile src/lib/libalias/modules/dummy ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 14:19:56 -0000 On Thu, Sep 28, 2006 at 05:54:07PM +0400, Slawa Olhovchenkov wrote: S> > During startup (and after every HUP signal) user land applications running S> > the new libalias will try to read a file in /etc called libalias.conf: S> > that file contains the list of modules to load. S> S> I think handle HUP signal inside library (for re-reading config) is S> bad idea. It isn't handled in the library. Paolo just suggests to use HUP in the program for reconfiguration. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Thu Sep 28 14:26:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB9D616A40F; Thu, 28 Sep 2006 14:26:15 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86D8943D6D; Thu, 28 Sep 2006 14:26:15 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SEQFc8000863; Thu, 28 Sep 2006 14:26:15 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SEQFK2000862; Thu, 28 Sep 2006 14:26:15 GMT (envelope-from clsung) Message-Id: <200609281426.k8SEQFK2000862@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 14:26:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/p5-Sys-Syscall Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 14:26:15 -0000 clsung 2006-09-28 14:26:15 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Sys-Syscall Makefile distinfo pkg-descr pkg-plist Log: Add p5-Sys-Syscall 0.21, access system calls that Perl doesn\'t provide access to. PR: ports/103744 Submitted by: Gea-Suan Lin Revision Changes Path 1.2459 +1 -0 ports/devel/Makefile 1.1 +22 -0 ports/devel/p5-Sys-Syscall/Makefile (new) 1.1 +3 -0 ports/devel/p5-Sys-Syscall/distinfo (new) 1.1 +4 -0 ports/devel/p5-Sys-Syscall/pkg-descr (new) 1.1 +6 -0 ports/devel/p5-Sys-Syscall/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 14:26:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7578E16A40F; Thu, 28 Sep 2006 14:26:32 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55C1543D7C; Thu, 28 Sep 2006 14:26:31 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SEQVPI000919; Thu, 28 Sep 2006 14:26:31 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SEQVB1000918; Thu, 28 Sep 2006 14:26:31 GMT (envelope-from clsung) Message-Id: <200609281426.k8SEQVB1000918@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 14:26:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 14:26:32 -0000 clsung 2006-09-28 14:26:31 UTC FreeBSD ports repository Modified files: . modules Log: p5-Sys-Syscall --> ports/devel/p5-Sys-Syscall Revision Changes Path 1.16295 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Sep 28 14:44:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 343BF16A492; Thu, 28 Sep 2006 14:44:35 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14D6343DAC; Thu, 28 Sep 2006 14:44:17 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SEiGWA002819; Thu, 28 Sep 2006 14:44:16 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SEiG2O002818; Thu, 28 Sep 2006 14:44:16 GMT (envelope-from bmah) Message-Id: <200609281444.k8SEiG2O002818@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 14:44:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: 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.5 Precedence: 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, 28 Sep 2006 14:44:35 -0000 bmah 2006-09-28 14:44:16 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes: id(1) -a (+MFC), tcpslice removed, ARM binary generation. Updated release notes: KDE 3.5.4. Revision Changes Path 1.976 +13 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 14:46:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BCF316A49E; Thu, 28 Sep 2006 14:46:12 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E830D43D8E; Thu, 28 Sep 2006 14:46:00 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SEk0KI002941; Thu, 28 Sep 2006 14:46:00 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SEk0VX002940; Thu, 28 Sep 2006 14:46:00 GMT (envelope-from clsung) Message-Id: <200609281446.k8SEk0VX002940@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 14:46:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/hyperestraier Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 14:46:12 -0000 clsung 2006-09-28 14:46:00 UTC FreeBSD ports repository Modified files: textproc/hyperestraier Makefile distinfo pkg-plist Log: - Update to 1.4.4 PR: ports/103736 Submitted by: clsung Approved by: maintainer (ahze) Revision Changes Path 1.35 +1 -1 ports/textproc/hyperestraier/Makefile 1.32 +3 -3 ports/textproc/hyperestraier/distinfo 1.30 +1 -1 ports/textproc/hyperestraier/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Sep 28 14:52:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09B9616A415; Thu, 28 Sep 2006 14:52:46 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E546E43D78; Thu, 28 Sep 2006 14:52:31 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SEphcq003256; Thu, 28 Sep 2006 14:51:43 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SEphJ9003255; Thu, 28 Sep 2006 14:51:43 GMT (envelope-from bmah) Message-Id: <200609281451.k8SEphJ9003255@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 14:51:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: 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.5 Precedence: 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, 28 Sep 2006 14:52:46 -0000 bmah 2006-09-28 14:51:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: id(1) -A, KDE 3.5.4. Approved by: re (implicitly) Revision Changes Path 1.883.2.42 +5 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 14:53:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BABC416A5E3; Thu, 28 Sep 2006 14:53:28 +0000 (UTC) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1504943D7B; Thu, 28 Sep 2006 14:53:16 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SErFKW003354; Thu, 28 Sep 2006 14:53:15 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SErFF2003353; Thu, 28 Sep 2006 14:53:15 GMT (envelope-from oliver) Message-Id: <200609281453.k8SErFF2003353@repoman.freebsd.org> From: Oliver Lehmann Date: Thu, 28 Sep 2006 14:53:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/courier-imap/files courier-imap-imapd-ssl.sh courier-imap-imapd.sh courier-imap-pop3d-ssl.sh courier-imap-pop3d.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 14:53:29 -0000 oliver 2006-09-28 14:53:15 UTC FreeBSD ports repository Modified files: mail/courier-imap/files courier-imap-imapd-ssl.sh courier-imap-imapd.sh courier-imap-pop3d-ssl.sh courier-imap-pop3d.sh Log: fix status command Noted by: AIDA Shinra Revision Changes Path 1.4 +1 -1 ports/mail/courier-imap/files/courier-imap-imapd-ssl.sh 1.4 +1 -1 ports/mail/courier-imap/files/courier-imap-imapd.sh 1.4 +1 -1 ports/mail/courier-imap/files/courier-imap-pop3d-ssl.sh 1.4 +1 -1 ports/mail/courier-imap/files/courier-imap-pop3d.sh From owner-cvs-all@FreeBSD.ORG Thu Sep 28 14:56:42 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19F3616A494; Thu, 28 Sep 2006 14:56:42 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89F6343D53; Thu, 28 Sep 2006 14:56:33 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8SEuUpx005561; Thu, 28 Sep 2006 10:56:31 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ruslan Ermilov Date: Thu, 28 Sep 2006 10:56:27 -0400 User-Agent: KMail/1.9.1 References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271752.57082.jhb@freebsd.org> <20060927221251.GA35467@rambler-co.ru> In-Reply-To: <20060927221251.GA35467@rambler-co.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609281056.28105.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 28 Sep 2006 10:56:31 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1949/Thu Sep 28 09:03:14 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 14:56:42 -0000 On Wednesday 27 September 2006 18:12, Ruslan Ermilov wrote: > On Wed, Sep 27, 2006 at 05:52:56PM -0400, John Baldwin wrote: > > Could you avoid IOWINT by just assuming that any _IO() ioctl is getting an int > > as the arg? > > > There are some _IO() ioctls that pass a pointer to variable sized data, > and their ioctl handlers to uiocopy'ing rather than ioctl(). See > sys/cam/scsi/scsi_ses.c, SESIOC_* ioctls for one such example. I think these are just broken and should be fixed. :) SESIOC_ENCSTAT should be IOW(..., ses_encstat) for example. The two troublesome ones GETNOBJ and GETOBJMAP are broken by design. Somehow they need to tell userland how much they copied out, and they also need to let userland specify the buffer length to avoid buffer overflows. Thus, they need to be using a IOWR with a structure containing a pointer and length (modify the length on return if needed) to avoid problems anyway. I'd be all for just fixing the few that abuse _IO to treat the arg as anything other than an int and assume _IO means an int arg for 7.x and future. The solution for 6.x might be uglier, but for the future we should fix the abusers and avoid adding the _IOWINT hack. > > If an ioctl doesn't use the arg, then you don't lose anything.. > > do we have any ioctl's that use the arg directly but not as an int? > > > Unfortunately yes. Are there any others outside of SES? How many? If it's a small list, then let's fix them. The SES ones are broken as an API anyway as mentioned above, and if other ioctl's are copying out a variable amount of data w/o allowing for buffer lengths or telling userland how much it copied, they are also fundamentally broken as well. > > The > > ioctl(2) manpage implies that 'data' is either a pointer or an int. If you > > go this route, you avoid changing all the ioctl values, basically just assume > > that IOC_VOID means the argument is an int. > > > That has been considered and found impossible due to the above. > We also don't have any spare bits left in the ioctl type field, > so IOC_VOID with size == sizeof(int) have been used to implement > _IOWINT(). IOC_VOID is incorrect name, the argument should either > be a pointer or an "int", even when not used by ioctl(). Some > ioctl() calls to "void" ioctls in userland don't pass a third > argument. I think on architectures that pass arguments on the > stack (such as i386) this causes return address to be accessed > instead of the argument value. Ioctls that are "void" should > either pass "0" or "NULL". It will be stack (or register) garbage yes, but unread stack (or register) garbage. :) -- John Baldwin From owner-cvs-all@FreeBSD.ORG Thu Sep 28 15:03:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BA3616A412; Thu, 28 Sep 2006 15:03:58 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 226C143D5C; Thu, 28 Sep 2006 15:03:58 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SF3vt2005010; Thu, 28 Sep 2006 15:03:58 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SF3v8A005009; Thu, 28 Sep 2006 15:03:57 GMT (envelope-from thierry) Message-Id: <200609281503.k8SF3v8A005009@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 28 Sep 2006 15:03:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/mesa-demos Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 15:03:58 -0000 thierry 2006-09-28 15:03:57 UTC FreeBSD ports repository Modified files: graphics/mesa-demos Makefile distinfo Log: Update to 6.5.1 and unbreake. Note that unbreaking was done by removing (not building and not installing) problematic (offscreen) demo. PR: ports/103720 Submitted by: trasz Revision Changes Path 1.12 +18 -23 ports/graphics/mesa-demos/Makefile 1.7 +6 -6 ports/graphics/mesa-demos/distinfo From owner-cvs-all@FreeBSD.ORG Thu Sep 28 15:10:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A3ED16A412; Thu, 28 Sep 2006 15:10:39 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2125243D72; Thu, 28 Sep 2006 15:10:33 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFAX5E005366; Thu, 28 Sep 2006 15:10:33 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFAXdf005365; Thu, 28 Sep 2006 15:10:33 GMT (envelope-from bmah) Message-Id: <200609281510.k8SFAXdf005365@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:10:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 15:10:39 -0000 bmah 2006-09-28 15:10:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata: SA-06:21.gzip, SA-06:23.openssl. Approved by: re (implicitly) Revision Changes Path 1.73.2.31 +14 -0 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 15:13:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1152F16A415; Thu, 28 Sep 2006 15:13:01 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51AAA43D73; Thu, 28 Sep 2006 15:12:55 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFCt0s005542; Thu, 28 Sep 2006 15:12:55 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFCtUa005541; Thu, 28 Sep 2006 15:12:55 GMT (envelope-from bmah) Message-Id: <200609281512.k8SFCtUa005541@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:12:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 15:13:01 -0000 bmah 2006-09-28 15:12:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata: SA-06:21.gzip, SA-06:23.openssl. Revision Changes Path 1.69.2.44 +14 -0 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 15:17:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C3A316A403; Thu, 28 Sep 2006 15:17:17 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40C8B43D7D; Thu, 28 Sep 2006 15:17:08 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFH8Zm005705; Thu, 28 Sep 2006 15:17:08 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFH8WQ005704; Thu, 28 Sep 2006 15:17:08 GMT (envelope-from bmah) Message-Id: <200609281517.k8SFH8WQ005704@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:17:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 15:17:17 -0000 bmah 2006-09-28 15:17:08 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata: SA-06:21.gzip, SA-06:23.openssl. Revision Changes Path 1.1.2.133 +14 -0 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 15:20:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2897116A40F; Thu, 28 Sep 2006 15:20:08 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58F4443D55; Thu, 28 Sep 2006 15:20:07 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFK7aL005888; Thu, 28 Sep 2006 15:20:07 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFK73w005887; Thu, 28 Sep 2006 15:20:07 GMT (envelope-from bmah) Message-Id: <200609281520.k8SFK73w005887@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:20:06 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/releases/4.11R errata.html www/en/releases/5.5R errata.html www/en/releases/6.1R errata.html X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 15:20:08 -0000 bmah 2006-09-28 15:20:06 UTC FreeBSD doc repository Modified files: en/releases/4.11R errata.html en/releases/5.5R errata.html en/releases/6.1R errata.html Log: Regen from errata/article.sgml 1.1.2.133, 1.69.2.44, and 1.73.2.31. Revision Changes Path 1.8 +24 -2 www/en/releases/4.11R/errata.html 1.8 +23 -1 www/en/releases/5.5R/errata.html 1.14 +23 -1 www/en/releases/6.1R/errata.html From owner-cvs-all@FreeBSD.ORG Thu Sep 28 15:24:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C01816A412; Thu, 28 Sep 2006 15:24:42 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FF9A43D58; Thu, 28 Sep 2006 15:24:41 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFOfdx006233; Thu, 28 Sep 2006 15:24:41 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFOfh3006232; Thu, 28 Sep 2006 15:24:41 GMT (envelope-from dinoex) Message-Id: <200609281524.k8SFOfh3006232@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Sep 2006 15:24:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/openssl Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 15:24:42 -0000 dinoex 2006-09-28 15:24:41 UTC FreeBSD ports repository Modified files: security/openssl Makefile distinfo Log: - Security update to 0.9.7l - Security update to 0.9.8d Security: http://www.openssl.org/news/secadv_20060928.txt Security: CVE-2006-2937 Security: CVE-2006-2940 Security: CVE-2006-3738 Security: CVE-2006-4343 Security: http://security.freebsd.org/advisories/FreeBSD-SA-06:23.openssl.asc md5 hashes verfied Revision Changes Path 1.121 +2 -2 ports/security/openssl/Makefile 1.41 +6 -6 ports/security/openssl/distinfo From owner-cvs-all@FreeBSD.ORG Thu Sep 28 15:37:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A96316A407; Thu, 28 Sep 2006 15:37:00 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D535843D46; Thu, 28 Sep 2006 15:36:59 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFaxqf006831; Thu, 28 Sep 2006 15:36:59 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFaxrT006830; Thu, 28 Sep 2006 15:36:59 GMT (envelope-from bmah) Message-Id: <200609281536.k8SFaxrT006830@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:36:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: 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.5 Precedence: 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, 28 Sep 2006 15:37:00 -0000 bmah 2006-09-28 15:36:59 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes: SA-06:21.gzip, SA-06:23.openssl. Revision Changes Path 1.977 +11 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 15:42:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD00716A40F; Thu, 28 Sep 2006 15:42:03 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6330743D53; Thu, 28 Sep 2006 15:42:03 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFg3WH007092; Thu, 28 Sep 2006 15:42:03 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFg33O007091; Thu, 28 Sep 2006 15:42:03 GMT (envelope-from bmah) Message-Id: <200609281542.k8SFg33O007091@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:42:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: 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.5 Precedence: 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, 28 Sep 2006 15:42:03 -0000 bmah 2006-09-28 15:42:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: SA-06:21.gzip, SA-06:23.openssl. Approved by: re (implicitly) Revision Changes Path 1.883.2.43 +12 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 15:45:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0431F16A407; Thu, 28 Sep 2006 15:45:26 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B17B043D49; Thu, 28 Sep 2006 15:45:25 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFjPpt007275; Thu, 28 Sep 2006 15:45:25 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFjPaR007274; Thu, 28 Sep 2006 15:45:25 GMT (envelope-from bmah) Message-Id: <200609281545.k8SFjPaR007274@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:45:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: 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.5 Precedence: 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, 28 Sep 2006 15:45:26 -0000 bmah 2006-09-28 15:45:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: SA-06:21.gzip, SA-06:23.openssl. Revision Changes Path 1.761.2.69 +11 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 15:49:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00DEE16A403; Thu, 28 Sep 2006 15:49:26 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E4AB43D60; Thu, 28 Sep 2006 15:49:15 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFnFF2007422; Thu, 28 Sep 2006 15:49:15 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFnEOl007421; Thu, 28 Sep 2006 15:49:14 GMT (envelope-from bmah) Message-Id: <200609281549.k8SFnEOl007421@repoman.freebsd.org> From: "Bruce A. Mah" Date: Thu, 28 Sep 2006 15:49:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: 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.5 Precedence: 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, 28 Sep 2006 15:49:26 -0000 bmah 2006-09-28 15:49:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: SA-06:21.gzip, SA-06:23.openssl. Revision Changes Path 1.22.2.438 +11 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 15:57:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 741EC16A4D0; Thu, 28 Sep 2006 15:57:18 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A801F43D7F; Thu, 28 Sep 2006 15:57:10 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SFvAeW007897; Thu, 28 Sep 2006 15:57:10 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SFvAou007896; Thu, 28 Sep 2006 15:57:10 GMT (envelope-from ume) Message-Id: <200609281557.k8SFvAou007896@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 28 Sep 2006 15:57:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/ppp server.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 15:57:18 -0000 ume 2006-09-28 15:57:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/ppp server.c Log: MFC 1.44: Listen to a control socket on an IPv4 as well through an IPv4-mapped IPv6 address. Approved by: re (kensmith) Revision Changes Path 1.43.2.1 +7 -0 src/usr.sbin/ppp/server.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 16:01:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C99B016A47E; Thu, 28 Sep 2006 16:01:53 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 810B943D45; Thu, 28 Sep 2006 16:01:53 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SG1rVU008145; Thu, 28 Sep 2006 16:01:53 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SG1rRN008144; Thu, 28 Sep 2006 16:01:53 GMT (envelope-from ume) Message-Id: <200609281601.k8SG1rRN008144@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 28 Sep 2006 16:01:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/usr.sbin/ppp server.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 16:01:53 -0000 ume 2006-09-28 16:01:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.sbin/ppp server.c Log: MFC 1.44: Listen to a control socket on an IPv4 as well through an IPv4-mapped IPv6 address. Revision Changes Path 1.42.8.2 +7 -0 src/usr.sbin/ppp/server.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 16:02:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EDBA16A492; Thu, 28 Sep 2006 16:02:35 +0000 (UTC) (envelope-from roberto@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 984BD43D46; Thu, 28 Sep 2006 16:02:34 +0000 (GMT) (envelope-from roberto@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SG2YZq008202; Thu, 28 Sep 2006 16:02:34 GMT (envelope-from roberto@repoman.freebsd.org) Received: (from roberto@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SG2YFJ008201; Thu, 28 Sep 2006 16:02:34 GMT (envelope-from roberto) Message-Id: <200609281602.k8SG2YFJ008201@repoman.freebsd.org> From: Ollivier Robert Date: Thu, 28 Sep 2006 16:02:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: DMILLS Cc: Subject: cvs commit: src/contrib/ntp/include ntp_stdlib.h ntpd.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 16:02:35 -0000 roberto 2006-09-28 16:02:34 UTC FreeBSD src repository Modified files: (Branch: DMILLS) contrib/ntp/include ntp_stdlib.h ntpd.h Log: Fix compilation with gcc 4.1. This is imported on the vendor branch as it was applied in the mainstream source and a later complete import of 4.2.2p3 will complete the fix. Submitted by: kan Revision Changes Path 1.1.1.4 +2 -0 src/contrib/ntp/include/ntp_stdlib.h 1.1.1.5 +2 -0 src/contrib/ntp/include/ntpd.h From owner-cvs-all@FreeBSD.ORG Thu Sep 28 16:16:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AC9F16A407; Thu, 28 Sep 2006 16:16:13 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D825643D55; Thu, 28 Sep 2006 16:16:12 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SGGCwC009964; Thu, 28 Sep 2006 16:16:12 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SGGCLP009963; Thu, 28 Sep 2006 16:16:12 GMT (envelope-from pav) Message-Id: <200609281616.k8SGGCLP009963@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 28 Sep 2006 16:16:12 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/platforms/amd64 motherboards.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 16:16:13 -0000 pav 2006-09-28 16:16:12 UTC FreeBSD doc repository Modified files: en/platforms/amd64 motherboards.sgml Log: Add entry for Asus K8N4-E PR: www/103695 Submitted by: Marcin Revision Changes Path 1.97 +9 -1 www/en/platforms/amd64/motherboards.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 16:21:45 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79BD516A403; Thu, 28 Sep 2006 16:21:45 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91CAB43D45; Thu, 28 Sep 2006 16:21:44 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 6E08061DF; Thu, 28 Sep 2006 20:21:43 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 444EC6146; Thu, 28 Sep 2006 20:21:43 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8SGLhKm059707; Thu, 28 Sep 2006 20:21:43 +0400 (MSD) (envelope-from ru) Date: Thu, 28 Sep 2006 20:21:43 +0400 From: Ruslan Ermilov To: John Baldwin Message-ID: <20060928162143.GA59634@rambler-co.ru> References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609271752.57082.jhb@freebsd.org> <20060927221251.GA35467@rambler-co.ru> <200609281056.28105.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline In-Reply-To: <200609281056.28105.jhb@freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 16:21:45 -0000 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 28, 2006 at 10:56:27AM -0400, John Baldwin wrote: > On Wednesday 27 September 2006 18:12, Ruslan Ermilov wrote: > > There are some _IO() ioctls that pass a pointer to variable sized data, > > and their ioctl handlers to uiocopy'ing rather than ioctl(). See > > sys/cam/scsi/scsi_ses.c, SESIOC_* ioctls for one such example. >=20 > I think these are just broken and should be fixed. :) SESIOC_ENCSTAT sho= uld=20 > be IOW(..., ses_encstat) for example. The two troublesome ones GETNOBJ a= nd=20 > GETOBJMAP are broken by design. Somehow they need to tell userland how m= uch=20 > they copied out, and they also need to let userland specify the buffer le= ngth=20 > to avoid buffer overflows. Thus, they need to be using a IOWR with a=20 > structure containing a pointer and length (modify the length on return if= =20 > needed) to avoid problems anyway. I'd be all for just fixing the few tha= t=20 > abuse _IO to treat the arg as anything other than an int and assume _IO m= eans=20 > an int arg for 7.x and future. The solution for 6.x might be uglier, bu= t=20 > for the future we should fix the abusers and avoid adding the _IOWINT hac= k. >=20 > > > If an ioctl doesn't use the arg, then you don't lose anything..=20 > > > do we have any ioctl's that use the arg directly but not as an int? > > >=20 > > Unfortunately yes. >=20 > Are there any others outside of SES? How many? If it's a small list, th= en=20 > let's fix them. The SES ones are broken as an API anyway as mentioned ab= ove,=20 > and if other ioctl's are copying out a variable amount of data w/o allowi= ng=20 > for buffer lengths or telling userland how much it copied, they are also= =20 > fundamentally broken as well. >=20 Some only read from userland, so they aren't broken. I'll compile and send you the list of such ioctls (don't have it saved)... Ah, here's one from memory that isn't broken: SPKRTUNE from sys/dev/speaker/. > > stack (such as i386) this causes return address to be accessed > > instead of the argument value. Ioctls that are "void" should > > either pass "0" or "NULL". >=20 > It will be stack (or register) garbage yes, but unread stack (or register= )=20 > garbage. :) >=20 Yes, you're right. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Nq2Wo0NMKNjxTN9z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFG/aXqRfpzJluFF4RAlooAJ43kHIc7FGIuKmwxZWwDuzbccvlGgCaAj4H u7kXSouLJbXqhnasN5/+vyY= =Qsoa -----END PGP SIGNATURE----- --Nq2Wo0NMKNjxTN9z-- From owner-cvs-all@FreeBSD.ORG Thu Sep 28 16:25:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AFB316A519; Thu, 28 Sep 2006 16:25:10 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 100BD43D49; Thu, 28 Sep 2006 16:25:10 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SGP9iX010469; Thu, 28 Sep 2006 16:25:09 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SGP9x4010468; Thu, 28 Sep 2006 16:25:09 GMT (envelope-from vanilla) Message-Id: <200609281625.k8SGP9x4010468@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 28 Sep 2006 16:25:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/irc/irssi Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 16:25:10 -0000 vanilla 2006-09-28 16:25:09 UTC FreeBSD ports repository Modified files: irc/irssi Makefile Log: set themes option default value. Submitted by: Liuyh Revision Changes Path 1.94 +1 -1 ports/irc/irssi/Makefile From owner-cvs-all@FreeBSD.ORG Thu Sep 28 16:30:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A8BD16A412; Thu, 28 Sep 2006 16:30:37 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1241D43D4C; Thu, 28 Sep 2006 16:30:37 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SGUaJh010797; Thu, 28 Sep 2006 16:30:36 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SGUa5T010796; Thu, 28 Sep 2006 16:30:36 GMT (envelope-from jhb) Message-Id: <200609281630.k8SGUa5T010796@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Sep 2006 16:30:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/i386/btx/btx btx.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 16:30:37 -0000 jhb 2006-09-28 16:30:36 UTC FreeBSD src repository Modified files: sys/boot/i386/btx/btx btx.S Log: A couple of simple tweaks that trim BTX by 6 bytes. Since BTX is 16-byte aligned within boot2 however, this actually trims boot2 by 16 bytes. Revision Changes Path 1.40 +2 -3 src/sys/boot/i386/btx/btx/btx.S From owner-cvs-all@FreeBSD.ORG Thu Sep 28 16:31:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5610A16A584; Thu, 28 Sep 2006 16:31:07 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 116DE43D70; Thu, 28 Sep 2006 16:31:07 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SGV6J5010900; Thu, 28 Sep 2006 16:31:06 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SGV6WD010899; Thu, 28 Sep 2006 16:31:06 GMT (envelope-from pav) Message-Id: <200609281631.k8SGV6WD010899@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 28 Sep 2006 16:31:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/comms/kermit/files patch-ck__crp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 16:31:07 -0000 pav 2006-09-28 16:31:06 UTC FreeBSD ports repository Modified files: comms/kermit/files patch-ck__crp.c Log: - Fix build with gcc41 PR: ports/103748 Submitted by: trasz Revision Changes Path 1.2 +12 -1 ports/comms/kermit/files/patch-ck__crp.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 16:39:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0784116A492; Thu, 28 Sep 2006 16:39:43 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C63D543D53; Thu, 28 Sep 2006 16:39:42 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SGdgO1011415; Thu, 28 Sep 2006 16:39:42 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SGdgiC011414; Thu, 28 Sep 2006 16:39:42 GMT (envelope-from pav) Message-Id: <200609281639.k8SGdgiC011414@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 28 Sep 2006 16:39:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/fusefs-kmod Makefile ports/sysutils/fusefs-kmod/files patch-fuse_module_fuse.c patch-fuse_module_fuse_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 16:39:43 -0000 pav 2006-09-28 16:39:42 UTC FreeBSD ports repository Modified files: sysutils/fusefs-kmod Makefile sysutils/fusefs-kmod/files patch-fuse_module_fuse.c Added files: sysutils/fusefs-kmod/files patch-fuse_module_fuse_subr.c Log: - Fix a bug in the initialization of a debug kernel sysctl. Merge changeset 9131f671c86d from upstream. This should fix problems with errors and truncations during a save. PR: ports/103722 Submitted by: Anish Mistry (maintainer) Revision Changes Path 1.9 +1 -1 ports/sysutils/fusefs-kmod/Makefile 1.4 +32 -17 ports/sysutils/fusefs-kmod/files/patch-fuse_module_fuse.c 1.1 +15 -0 ports/sysutils/fusefs-kmod/files/patch-fuse_module_fuse_subr.c (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 16:46:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A012C16A407; Thu, 28 Sep 2006 16:46:46 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F5BE43D64; Thu, 28 Sep 2006 16:46:46 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 48D1A1A4D88; Thu, 28 Sep 2006 09:46:46 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id A5B1151667; Thu, 28 Sep 2006 12:46:45 -0400 (EDT) Date: Thu, 28 Sep 2006 12:46:45 -0400 From: Kris Kennaway To: Bruce M Simpson Message-ID: <20060928164645.GA96442@xor.obsecurity.org> References: <200609281300.k8SD0pdb092621@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="C7zPtVaVf+AK4Oqc" Content-Disposition: inline In-Reply-To: <200609281300.k8SD0pdb092621@repoman.freebsd.org> User-Agent: Mutt/1.4.2.2i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 16:46:46 -0000 --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 28, 2006 at 01:00:51PM +0000, Bruce M Simpson wrote: > bms 2006-09-28 13:00:51 UTC >=20 > FreeBSD src repository >=20 > Modified files: > . UPDATING=20 > Log: > Note the removal of tcpslice Also add to ObsoleteFiles.inc? Kris --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFG/x1Wry0BWjoQKURAjdpAKDHu2nx4nw19UMoKwda0SliDBz0OwCguXjp zdDNXfpCMl8s3VUCwyqD6O0= =gvCA -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- From owner-cvs-all@FreeBSD.ORG Thu Sep 28 16:50:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D80BD16A407; Thu, 28 Sep 2006 16:50:50 +0000 (UTC) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-0-0-cust107.cdif.cable.ntl.com [81.104.168.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06A6F43D4C; Thu, 28 Sep 2006 16:50:49 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GSz60-000O2G-Oe; Thu, 28 Sep 2006 17:50:48 +0100 Date: Thu, 28 Sep 2006 17:50:48 +0100 From: Ceri Davies To: Kris Kennaway Message-ID: <20060928165048.GD54669@submonkey.net> Mail-Followup-To: Ceri Davies , Kris Kennaway , Bruce M Simpson , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200609281300.k8SD0pdb092621@repoman.freebsd.org> <20060928164645.GA96442@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OrT4iOlIQZp3kw4S" Content-Disposition: inline In-Reply-To: <20060928164645.GA96442@xor.obsecurity.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.13 (2006-08-11) Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Bruce M Simpson , cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 16:50:51 -0000 --OrT4iOlIQZp3kw4S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 28, 2006 at 12:46:45PM -0400, Kris Kennaway wrote: > On Thu, Sep 28, 2006 at 01:00:51PM +0000, Bruce M Simpson wrote: > > bms 2006-09-28 13:00:51 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > . UPDATING=20 > > Log: > > Note the removal of tcpslice >=20 > Also add to ObsoleteFiles.inc? That's already been done. Ceri --=20 That must be wonderful! I don't understand it at all. -- Moliere --OrT4iOlIQZp3kw4S Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFG/1oocfcwTS3JF8RAqOkAJ42Z7BgDs65+jEmog4rHnjfqaZosQCfZX0o lSF0E+bMSeBJVAilv5qhzPw= =5H9h -----END PGP SIGNATURE----- --OrT4iOlIQZp3kw4S-- From owner-cvs-all@FreeBSD.ORG Thu Sep 28 16:51:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AACA16A4DD; Thu, 28 Sep 2006 16:51:05 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5203C43D46; Thu, 28 Sep 2006 16:51:05 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SGp51s020117; Thu, 28 Sep 2006 16:51:05 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SGp5tU020116; Thu, 28 Sep 2006 16:51:05 GMT (envelope-from pav) Message-Id: <200609281651.k8SGp5tU020116@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 28 Sep 2006 16:51:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/zope3 Makefile distinfo pkg-plist ports/www/zope3/files patch-Zope-zopeskel-etc-zdaemon.conf.in patch-Zope-zopeskel-etc-zope.conf.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 16:51:05 -0000 pav 2006-09-28 16:51:05 UTC FreeBSD ports repository Modified files: www/zope3 Makefile distinfo pkg-plist www/zope3/files patch-Zope-zopeskel-etc-zdaemon.conf.in patch-Zope-zopeskel-etc-zope.conf.in Log: - Update to 3.3.0 PR: ports/103737 Submitted by: Denis Shaposhnikov (maintainer) Revision Changes Path 1.5 +1 -1 ports/www/zope3/Makefile 1.4 +3 -3 ports/www/zope3/distinfo 1.2 +9 -37 ports/www/zope3/files/patch-Zope-zopeskel-etc-zdaemon.conf.in 1.2 +3 -13 ports/www/zope3/files/patch-Zope-zopeskel-etc-zope.conf.in 1.4 +1078 -743 ports/www/zope3/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Sep 28 17:01:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A855016A417; Thu, 28 Sep 2006 17:01:46 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 723B843D45; Thu, 28 Sep 2006 17:01:46 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SH1k2r020625; Thu, 28 Sep 2006 17:01:46 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SH1kAv020624; Thu, 28 Sep 2006 17:01:46 GMT (envelope-from pav) Message-Id: <200609281701.k8SH1kAv020624@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 28 Sep 2006 17:01:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-fm/gnome-commander2 Makefile distinfo pkg-plist ports/x11-fm/gnome-commander2/files patch-configure patch-src::gnome-cmd-dir-indicator.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 17:01:46 -0000 pav 2006-09-28 17:01:46 UTC FreeBSD ports repository Modified files: x11-fm/gnome-commander2 Makefile distinfo pkg-plist Removed files: x11-fm/gnome-commander2/files patch-configure patch-src::gnome-cmd-dir-indicator.c Log: - Update to 1.2.0 PR: ports/103642 Submitted by: KATO Tsuguru Revision Changes Path 1.22 +13 -6 ports/x11-fm/gnome-commander2/Makefile 1.7 +3 -3 ports/x11-fm/gnome-commander2/distinfo 1.6 +0 -11 ports/x11-fm/gnome-commander2/files/patch-configure (dead) 1.2 +0 -16 ports/x11-fm/gnome-commander2/files/patch-src::gnome-cmd-dir-indicator.c (dead) 1.5 +53 -4 ports/x11-fm/gnome-commander2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Sep 28 17:12:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C549616A403; Thu, 28 Sep 2006 17:12:19 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D80843D49; Thu, 28 Sep 2006 17:12:19 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SHCJhm022341; Thu, 28 Sep 2006 17:12:19 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SHCJMe022340; Thu, 28 Sep 2006 17:12:19 GMT (envelope-from pav) Message-Id: <200609281712.k8SHCJMe022340@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 28 Sep 2006 17:12:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/cvcl Makefile ports/math/cvcl/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 17:12:19 -0000 pav 2006-09-28 17:12:19 UTC FreeBSD ports repository Modified files: math/cvcl Makefile Added files: math/cvcl/files patch-configure Log: - Fix build on amd64 - Respect CXXFLAGS PR: ports/103768 Submitted by: Li-Wen Hsu (maintainer) Revision Changes Path 1.2 +7 -7 ports/math/cvcl/Makefile 1.1 +11 -0 ports/math/cvcl/files/patch-configure (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 17:21:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3456316A412; Thu, 28 Sep 2006 17:21:01 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95E9543D49; Thu, 28 Sep 2006 17:21:00 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SHL0mk022742; Thu, 28 Sep 2006 17:21:00 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SHL0a6022736; Thu, 28 Sep 2006 17:21:00 GMT (envelope-from pav) Message-Id: <200609281721.k8SHL0a6022736@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 28 Sep 2006 17:20:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/moinmoin Makefile distinfo pkg-plist ports/www/moinmoin/files patch-MoinMoin-request.py X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 17:21:01 -0000 pav 2006-09-28 17:20:59 UTC FreeBSD ports repository Modified files: www/moinmoin Makefile distinfo pkg-plist Added files: www/moinmoin/files patch-MoinMoin-request.py Log: - Update to 1.5.5a - Readd the underlay into the static plist PR: ports/103766 Submitted by: Michael Neumann Revision Changes Path 1.31 +4 -4 ports/www/moinmoin/Makefile 1.18 +3 -3 ports/www/moinmoin/distinfo 1.1 +15 -0 ports/www/moinmoin/files/patch-MoinMoin-request.py (new) 1.15 +684 -3 ports/www/moinmoin/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Sep 28 17:26:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4E7F16A407; Thu, 28 Sep 2006 17:26:30 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 001C343D69; Thu, 28 Sep 2006 17:26:19 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.6) with ESMTP id k8SHQETB018399 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 28 Sep 2006 10:26:16 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <451C05A4.3010605@FreeBSD.org> Date: Thu, 28 Sep 2006 10:25:56 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Robert Watson References: <200609261608.k8QG8TYB044266@repoman.freebsd.org> <200609271117.25831.jhb@freebsd.org> <451A9E1E.30601@samsco.org> <200609271338.22284.jhb@freebsd.org> <20060927230635.D73166@fledge.watson.org> In-Reply-To: <20060927230635.D73166@fledge.watson.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, Scott Long , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, John Baldwin Subject: Re: cvs commit: src/sys/i386/i386 local_apic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 17:26:31 -0000 Robert Watson wrote: > It's pretty clear that if we're going to take the hypervisor + dynamic > reconfiguration thing seriously, we need a structured notion of adding > and removing CPUs from the active CPU pool, including things like event > handlers so that subsystems can shut down operations on the CPU. For > example, UMA needs a chance to drain per-CPU caches of various zones, > services that have pinned threads on the CPU will need to decide how to > deal with that, etc. It's work I'd very much like to see happen, and > until it's done we basically need to make sure that CPUs either exist > from boot and never cease existing, or don't exist at boot and are never > used. I can't agree more. The whole hlt_cpus_mask change leaves taste of the very bad hack. -Maxim From owner-cvs-all@FreeBSD.ORG Thu Sep 28 17:29:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E69616A415; Thu, 28 Sep 2006 17:29:01 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C05CE43D4C; Thu, 28 Sep 2006 17:29:00 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SHT05S023158; Thu, 28 Sep 2006 17:29:00 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SHT0gg023157; Thu, 28 Sep 2006 17:29:00 GMT (envelope-from ariff) Message-Id: <200609281729.k8SHT0gg023157@repoman.freebsd.org> From: Ariff Abdullah Date: Thu, 28 Sep 2006 17:29:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pcm ac97.c ac97_patch.c ac97_patch.h channel.c mixer.c mixer.h sound.h src/sys/dev/sound/usb uaudio_pcm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 17:29:01 -0000 ariff 2006-09-28 17:29:00 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm ac97.c ac97_patch.c ac97_patch.h channel.c mixer.c mixer.h sound.h sys/dev/sound/usb uaudio_pcm.c Log: Various fixups, especially for the upcomming High Definition Audio commit. 1) sys/dev/sound/pcm/sound.h sys/dev/sound/pcm/channel.c * Be more specific: SD_F_SOFTVOL -> SD_F_SOFTPCMVOL 2) sys/dev/sound/pcm/mixer.[ch] * Implement mix_setparentchild() mix_setrealdev() mix_getparent() mix_getchild() The purpose of these functions is implement relative volume adjustment, such as to tie two or more mixer device into a single logical device. Usefull for the upcoming HDA driver and few AC97 codec (such as AD1981B) where the master volume "vol" need to be implemented using this logical manner. 3) sys/dev/sound/pcm/ac97_patch.[ch] * Patch for AD1981B codec to enable (automuting) headphone jack sense. 4) sys/dev/sound/pcm/ac97.c * Implement proper logical master volume for AD9181B codec through various mix_set{parentchild,realdev}(). Tie both "ogain" (headphone volume) and "phone" (speaker/lineout) to a logical "vol". 5) sys/dev/sound/pcm/usb/uaudio_pcm.c * ditto, for "vol" -> { "pcm" }. MFC after: 1 month Revision Changes Path 1.62 +50 -40 src/sys/dev/sound/pcm/ac97.c 1.5 +6 -0 src/sys/dev/sound/pcm/ac97_patch.c 1.5 +1 -0 src/sys/dev/sound/pcm/ac97_patch.h 1.111 +24 -4 src/sys/dev/sound/pcm/channel.c 1.52 +164 -29 src/sys/dev/sound/pcm/mixer.c 1.17 +4 -0 src/sys/dev/sound/pcm/mixer.h 1.72 +1 -1 src/sys/dev/sound/pcm/sound.h 1.19 +14 -6 src/sys/dev/sound/usb/uaudio_pcm.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 18:00:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C10D16A4A0; Thu, 28 Sep 2006 18:00:38 +0000 (UTC) (envelope-from scrappy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55DCE43D77; Thu, 28 Sep 2006 18:00:05 +0000 (GMT) (envelope-from scrappy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SI05IN025598; Thu, 28 Sep 2006 18:00:05 GMT (envelope-from scrappy@repoman.freebsd.org) Received: (from scrappy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SI059I025591; Thu, 28 Sep 2006 18:00:05 GMT (envelope-from scrappy) Message-Id: <200609281800.k8SI059I025591@repoman.freebsd.org> From: "Marc G. Fournier" Date: Thu, 28 Sep 2006 18:00:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/bsdstats Makefile ports/sysutils/bsdstats/files 300.statistics X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 18:00:38 -0000 scrappy 2006-09-28 18:00:04 UTC FreeBSD ports repository Modified files: sysutils/bsdstats Makefile sysutils/bsdstats/files 300.statistics Log: fix the code a bit to allow for setting the checkin_server to something different ... instructions soon to follow on web site as to how to use this to use apache to redirect requests through it as a 'light proxy' Revision Changes Path 1.29 +1 -1 ports/sysutils/bsdstats/Makefile 1.23 +6 -5 ports/sysutils/bsdstats/files/300.statistics From owner-cvs-all@FreeBSD.ORG Thu Sep 28 18:02:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CF1B16A412; Thu, 28 Sep 2006 18:02:47 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC7EC43D55; Thu, 28 Sep 2006 18:02:46 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SI2k2S027576; Thu, 28 Sep 2006 18:02:46 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SI2k9X027575; Thu, 28 Sep 2006 18:02:46 GMT (envelope-from andre) Message-Id: <200609281802.k8SI2k9X027575@repoman.freebsd.org> From: Andre Oppermann Date: Thu, 28 Sep 2006 18:02:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet tcp_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 18:02:47 -0000 andre 2006-09-28 18:02:46 UTC FreeBSD src repository Modified files: sys/netinet tcp_output.c Log: When tcp_output() receives an error upon sending a packet it reverts parts of its internal state to ignore the failed send and try again a bit later. If the error is EPERM the packet got blocked by the local firewall and the revert may cause the session to get stuck and retry indefinitely. This way we treat it like a packet loss and let the retransmit timer and timeouts do their work over time. The correct behavior is to drop a connection that gets an EPERM error. However this _may_ introduce some POLA problems and a two commit approach was chosen. Discussed with: glebius PR: kern/25986 PR: kern/102653 Revision Changes Path 1.120 +15 -2 src/sys/netinet/tcp_output.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 18:05:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5441A16A415; Thu, 28 Sep 2006 18:05:42 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18EEE43D53; Thu, 28 Sep 2006 18:05:41 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id F15801A3C1C; Thu, 28 Sep 2006 11:05:40 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 4B75D51379; Thu, 28 Sep 2006 14:05:40 -0400 (EDT) Date: Thu, 28 Sep 2006 14:05:39 -0400 From: Kris Kennaway To: Ceri Davies , Kris Kennaway , Bruce M Simpson , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20060928180539.GA97755@xor.obsecurity.org> References: <200609281300.k8SD0pdb092621@repoman.freebsd.org> <20060928164645.GA96442@xor.obsecurity.org> <20060928165048.GD54669@submonkey.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vtzGhvizbBRQ85DL" Content-Disposition: inline In-Reply-To: <20060928165048.GD54669@submonkey.net> User-Agent: Mutt/1.4.2.2i Cc: Subject: Re: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 18:05:42 -0000 --vtzGhvizbBRQ85DL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 28, 2006 at 05:50:48PM +0100, Ceri Davies wrote: > On Thu, Sep 28, 2006 at 12:46:45PM -0400, Kris Kennaway wrote: > > On Thu, Sep 28, 2006 at 01:00:51PM +0000, Bruce M Simpson wrote: > > > bms 2006-09-28 13:00:51 UTC > > >=20 > > > FreeBSD src repository > > >=20 > > > Modified files: > > > . UPDATING=20 > > > Log: > > > Note the removal of tcpslice > >=20 > > Also add to ObsoleteFiles.inc? >=20 > That's already been done. Awesome :) Kris --vtzGhvizbBRQ85DL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHA7zWry0BWjoQKURAl43AKDgNxf+g1uZtQZtqwSnTZQXt2JfgQCg3R0v lUkBIkkYkjw6XIZPiOKeAcI= =5SQQ -----END PGP SIGNATURE----- --vtzGhvizbBRQ85DL-- From owner-cvs-all@FreeBSD.ORG Thu Sep 28 18:21:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5BB116A407; Thu, 28 Sep 2006 18:21:51 +0000 (UTC) (envelope-from scrappy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E91B43D46; Thu, 28 Sep 2006 18:21:51 +0000 (GMT) (envelope-from scrappy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SILpKb032869; Thu, 28 Sep 2006 18:21:51 GMT (envelope-from scrappy@repoman.freebsd.org) Received: (from scrappy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SILpUw032868; Thu, 28 Sep 2006 18:21:51 GMT (envelope-from scrappy) Message-Id: <200609281821.k8SILpUw032868@repoman.freebsd.org> From: "Marc G. Fournier" Date: Thu, 28 Sep 2006 18:21:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/bsdstats Makefile ports/sysutils/bsdstats/files 300.statistics X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 18:21:51 -0000 scrappy 2006-09-28 18:21:51 UTC FreeBSD ports repository Modified files: sysutils/bsdstats Makefile sysutils/bsdstats/files 300.statistics Log: Add a network connectivity check using dns Revision Changes Path 1.30 +1 -1 ports/sysutils/bsdstats/Makefile 1.24 +8 -0 ports/sysutils/bsdstats/files/300.statistics From owner-cvs-all@FreeBSD.ORG Thu Sep 28 18:27:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D3DB16A407; Thu, 28 Sep 2006 18:27:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04DF643D45; Thu, 28 Sep 2006 18:27:02 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SIR1ch033066; Thu, 28 Sep 2006 18:27:01 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SIR1lf033065; Thu, 28 Sep 2006 18:27:01 GMT (envelope-from rwatson) Message-Id: <200609281827.k8SIR1lf033065@repoman.freebsd.org> From: Robert Watson Date: Thu, 28 Sep 2006 18:27:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/sys copyright.h src/sys/kern init_main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 18:27:02 -0000 rwatson 2006-09-28 18:27:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys copyright.h sys/kern init_main.c Log: Merge init_main.c:1.266, 1.267, copyright.h:1.22, 1.23 from HEAD to RELENG_6: Add "FreeBSD" trademark statement to copyright section of boot messages. Approved by: core, board at FreeBSDFoundation dot org Approved by: re (bmah) Revision Changes Path 1.256.2.5 +4 -3 src/sys/kern/init_main.c 1.19.2.2 +6 -0 src/sys/sys/copyright.h From owner-cvs-all@FreeBSD.ORG Thu Sep 28 18:35:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC3DD16A407; Thu, 28 Sep 2006 18:35:26 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E4F243D70; Thu, 28 Sep 2006 18:35:26 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SIZQbg033663; Thu, 28 Sep 2006 18:35:26 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SIZQOA033662; Thu, 28 Sep 2006 18:35:26 GMT (envelope-from kensmith) Message-Id: <200609281835.k8SIZQOA033662@repoman.freebsd.org> From: Ken Smith Date: Thu, 28 Sep 2006 18:35:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/pkg_install/add main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 18:35:27 -0000 kensmith 2006-09-28 18:35:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/pkg_install/add main.c Log: Partial MFC of v1.69 - adding info for 5.5-REL. Approved by: re (hrs) Revision Changes Path 1.61.2.8 +1 -0 src/usr.sbin/pkg_install/add/main.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 18:44:38 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23E0616A522; Thu, 28 Sep 2006 18:44:38 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id E149943D69; Thu, 28 Sep 2006 18:44:34 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8SIiQTk006889; Thu, 28 Sep 2006 14:44:32 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ruslan Ermilov Date: Thu, 28 Sep 2006 14:20:53 -0400 User-Agent: KMail/1.9.1 References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609281056.28105.jhb@freebsd.org> <20060928162143.GA59634@rambler-co.ru> In-Reply-To: <20060928162143.GA59634@rambler-co.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609281420.54038.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 28 Sep 2006 14:44:33 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1950/Thu Sep 28 10:11:54 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 18:44:38 -0000 On Thursday 28 September 2006 12:21, Ruslan Ermilov wrote: > > Are there any others outside of SES? How many? If it's a small list, then > > let's fix them. The SES ones are broken as an API anyway as mentioned above, > > and if other ioctl's are copying out a variable amount of data w/o allowing > > for buffer lengths or telling userland how much it copied, they are also > > fundamentally broken as well. > > > Some only read from userland, so they aren't broken. I'll compile and send > you the list of such ioctls (don't have it saved)... Ah, here's one from > memory that isn't broken: SPKRTUNE from sys/dev/speaker/. Scott pointed out one in aac(4) that is required for a binary-only management tool, so it looks like we are stuck _IO being used with pointers. :( -- John Baldwin From owner-cvs-all@FreeBSD.ORG Thu Sep 28 18:58:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C57916A407; Thu, 28 Sep 2006 18:58:14 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 114FE43D5D; Thu, 28 Sep 2006 18:58:14 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SIwDZd034697; Thu, 28 Sep 2006 18:58:13 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SIwD0J034696; Thu, 28 Sep 2006 18:58:13 GMT (envelope-from acm) Message-Id: <200609281858.k8SIwD0J034696@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Thu, 28 Sep 2006 18:58:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/el-data Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 18:58:14 -0000 acm 2006-09-28 18:58:13 UTC FreeBSD ports repository Modified files: games/el-data Makefile distinfo Log: - Update the distinfo file. One file was rerolled because it needs a server section update on el.ini file - Bump PORTREVISION Reported by: kris Obtained from: el team (via email) Revision Changes Path 1.4 +1 -0 ports/games/el-data/Makefile 1.3 +3 -3 ports/games/el-data/distinfo From owner-cvs-all@FreeBSD.ORG Thu Sep 28 19:06:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE6CD16A40F; Thu, 28 Sep 2006 19:06:20 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97B0043D49; Thu, 28 Sep 2006 19:06:20 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJ6K7A036359; Thu, 28 Sep 2006 19:06:20 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJ6KJc036358; Thu, 28 Sep 2006 19:06:20 GMT (envelope-from jhb) Message-Id: <200609281906.k8SJ6KJc036358@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Sep 2006 19:06:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/common merge_help.awk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 19:06:21 -0000 jhb 2006-09-28 19:06:20 UTC FreeBSD src repository Modified files: sys/boot/common merge_help.awk Log: Ignore a sub-topic match if it is inside the command description. Otherwise, merge-help can get confused by a command description that includes a word that starts with a capital S. MFC after: 1 week Revision Changes Path 1.6 +3 -0 src/sys/boot/common/merge_help.awk From owner-cvs-all@FreeBSD.ORG Thu Sep 28 19:07:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 431D516A412; Thu, 28 Sep 2006 19:07:14 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDF0143D53; Thu, 28 Sep 2006 19:07:13 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJ7Duo036445; Thu, 28 Sep 2006 19:07:13 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJ7DJn036444; Thu, 28 Sep 2006 19:07:13 GMT (envelope-from jhb) Message-Id: <200609281907.k8SJ7DJn036444@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Sep 2006 19:07:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/i386/libi386 biossmap.c src/sys/boot/i386/loader help.i386 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 19:07:14 -0000 jhb 2006-09-28 19:07:13 UTC FreeBSD src repository Modified files: sys/boot/i386/libi386 biossmap.c sys/boot/i386/loader help.i386 Log: Add an 'smap' command that dumps out the BIOS SMAP. MFC after: 1 week Revision Changes Path 1.5 +15 -0 src/sys/boot/i386/libi386/biossmap.c 1.10 +7 -0 src/sys/boot/i386/loader/help.i386 From owner-cvs-all@FreeBSD.ORG Thu Sep 28 19:13:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFFF216A40F; Thu, 28 Sep 2006 19:13:27 +0000 (UTC) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BD6843D5F; Thu, 28 Sep 2006 19:13:27 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJDR5M036842; Thu, 28 Sep 2006 19:13:27 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJDRhK036841; Thu, 28 Sep 2006 19:13:27 GMT (envelope-from wilko) Message-Id: <200609281913.k8SJDRhK036841@repoman.freebsd.org> From: Wilko Bulte Date: Thu, 28 Sep 2006 19:13:27 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 19:13:27 -0000 wilko 2006-09-28 19:13:26 UTC FreeBSD doc repository Modified files: en/donations donors.sgml Log: markm has received the Geode based appliance that Paul Ghering shipped him. Revision Changes Path 1.330 +2 -2 www/en/donations/donors.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 19:15:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FCC116A47B; Thu, 28 Sep 2006 19:15:57 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33A4E43D5F; Thu, 28 Sep 2006 19:15:54 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJFs4a037021; Thu, 28 Sep 2006 19:15:54 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJFsI6037020; Thu, 28 Sep 2006 19:15:54 GMT (envelope-from dinoex) Message-Id: <200609281915.k8SJFsI6037020@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Sep 2006 19:15:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/Mk bsd.gnustep.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 19:15:57 -0000 dinoex 2006-09-28 19:15:54 UTC FreeBSD ports repository Modified files: Mk bsd.gnustep.mk Log: - new option USE_GNUSTEP_MAKE=yes for custom build and install targets Revision Changes Path 1.30 +6 -3 ports/Mk/bsd.gnustep.mk From owner-cvs-all@FreeBSD.ORG Thu Sep 28 19:17:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A15D16A40F; Thu, 28 Sep 2006 19:17:57 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5433B43D45; Thu, 28 Sep 2006 19:17:57 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJHvOJ037232; Thu, 28 Sep 2006 19:17:57 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJHvH4037231; Thu, 28 Sep 2006 19:17:57 GMT (envelope-from dinoex) Message-Id: <200609281917.k8SJHvH4037231@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Sep 2006 19:17:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/science Makefile ports/science/paje Makefile distinfo pkg-descr pkg-plist ports/science/paje/files patch-DrawView+Drawing.m X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 19:17:57 -0000 dinoex 2006-09-28 19:17:57 UTC FreeBSD ports repository Modified files: science Makefile Added files: science/paje Makefile distinfo pkg-descr pkg-plist science/paje/files patch-DrawView+Drawing.m Log: Paje is a graphical tool that displays traces produced during the execution of multithreaded programs. Other programs can also generate traces for this tool. PR: 103677 Submitted by: Gürkan Sengün Revision Changes Path 1.105 +1 -0 ports/science/Makefile 1.1 +29 -0 ports/science/paje/Makefile (new) 1.1 +3 -0 ports/science/paje/distinfo (new) 1.1 +14 -0 ports/science/paje/files/patch-DrawView+Drawing.m (new) 1.1 +15 -0 ports/science/paje/pkg-descr (new) 1.1 +201 -0 ports/science/paje/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 19:18:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDCAF16A40F; Thu, 28 Sep 2006 19:18:36 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A937143D4C; Thu, 28 Sep 2006 19:18:36 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJIaN8037293; Thu, 28 Sep 2006 19:18:36 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJIaCO037292; Thu, 28 Sep 2006 19:18:36 GMT (envelope-from dinoex) Message-Id: <200609281918.k8SJIaCO037292@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Sep 2006 19:18:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 19:18:37 -0000 dinoex 2006-09-28 19:18:36 UTC FreeBSD ports repository Modified files: . modules Log: paje --> ports/science/paje Revision Changes Path 1.16296 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Sep 28 19:25:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD4BB16A415; Thu, 28 Sep 2006 19:25:06 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69D8E43D79; Thu, 28 Sep 2006 19:24:34 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJOX0G037667; Thu, 28 Sep 2006 19:24:33 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJOXCB037666; Thu, 28 Sep 2006 19:24:33 GMT (envelope-from simon) Message-Id: <200609281924.k8SJOXCB037666@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Thu, 28 Sep 2006 19:24:33 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/en/donations wantlist.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 19:25:07 -0000 simon 2006-09-28 19:24:33 UTC FreeBSD doc repository Modified files: en/donations wantlist.sgml Log: Remove my request for PC133 memory - lawrance is going to send me some. Revision Changes Path 1.417 +1 -9 www/en/donations/wantlist.sgml From owner-cvs-all@FreeBSD.ORG Thu Sep 28 19:38:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2982716A407; Thu, 28 Sep 2006 19:38:03 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDFC443D4C; Thu, 28 Sep 2006 19:38:02 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJc2kH038373; Thu, 28 Sep 2006 19:38:02 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJc238038372; Thu, 28 Sep 2006 19:38:02 GMT (envelope-from jhb) Message-Id: <200609281938.k8SJc238038372@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Sep 2006 19:38:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/i386/btx/btx btx.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 19:38:03 -0000 jhb 2006-09-28 19:38:02 UTC FreeBSD src repository Modified files: sys/boot/i386/btx/btx btx.S Log: Optimize the int 15/87 handler for space to shave another 16 bytes off of BTX (and thus boot2): - Don't bother saving %eax, %ebx, or %ecx as it is not necessary. - Use a more compact sequence to load the base value out of a GDT entry by loading the contiguous low 24 bits into the upper 24 bits of %eax, loading the high 8 bits into %al, and using a ror to rotate the bits (2 mov's and a ror) rather than loading the pieces in smaller chunks (3 mov's and a shl). - Use movzwl + leal instead of movl + movw + shll + addl. - Use 'xchgl %eax,%foo' rather than 'movl %eax,%foo' for cases where it's ok to trash %eax. xchgl %eax, foo is a 1-byte opcode whereas the mov is a 2-byte opcode. - Use movzwl rather than xorl + movw. MFC after: 1 week Revision Changes Path 1.41 +17 -31 src/sys/boot/i386/btx/btx/btx.S From owner-cvs-all@FreeBSD.ORG Thu Sep 28 19:42:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F1A616A415; Thu, 28 Sep 2006 19:42:11 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18AD743D62; Thu, 28 Sep 2006 19:42:11 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SJgASJ038696; Thu, 28 Sep 2006 19:42:10 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SJgAl3038695; Thu, 28 Sep 2006 19:42:10 GMT (envelope-from jhb) Message-Id: <200609281942.k8SJgAl3038695@repoman.freebsd.org> From: John Baldwin Date: Thu, 28 Sep 2006 19:42:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/i386/btx/btx btx.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 19:42:11 -0000 jhb 2006-09-28 19:42:10 UTC FreeBSD src repository Modified files: sys/boot/i386/btx/btx btx.S Log: Tweak the code to handle intercepting BIOS calls to int 0x15 to shave another 16 bytes off of BTX (and thus boot2): - Compare against the value of %eax that is saved on the stack instead of loading it into %eax (which requires saving the current %eax on the stack). - Use %ch to examine the keyboard flag state in the BIOS to see if Ctrl-Alt-Del is pressed instead of %al so we don't have to save %eax on the stack anymore. MFC after: 1 week Revision Changes Path 1.42 +10 -17 src/sys/boot/i386/btx/btx/btx.S From owner-cvs-all@FreeBSD.ORG Thu Sep 28 20:07:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88E9B16A4C2; Thu, 28 Sep 2006 20:07:07 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE17E43D94; Thu, 28 Sep 2006 20:06:41 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SK6fZK043989; Thu, 28 Sep 2006 20:06:41 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SK6fGS043987; Thu, 28 Sep 2006 20:06:41 GMT (envelope-from dinoex) Message-Id: <200609282006.k8SK6fGS043987@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Sep 2006 20:06:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors Makefile ports/editors/emacs.app Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 20:07:07 -0000 dinoex 2006-09-28 20:06:41 UTC FreeBSD ports repository Modified files: editors Makefile Added files: editors/emacs.app Makefile distinfo pkg-descr pkg-plist Log: This is GNU Emacs ported to OS X and GNUstep, based on the earlier Rhapsody, OPENSTEP, and NeXTSTEP versions. This port offers superior platform support for MacOS X and GNUstep, including full desktop integration (dock, drag/drop, etc.), standard keybindings, use of standard Font, Color, and File open/save panels, and support for Services. Via GNUstep, it provides anti-aliased font rendering on Linux and other Unix systems. This port is based on GNU Emacs 23 from CVS. PR: 103510 Submitted by: Gürkan Sengün Revision Changes Path 1.354 +1 -0 ports/editors/Makefile 1.1 +42 -0 ports/editors/emacs.app/Makefile (new) 1.1 +3 -0 ports/editors/emacs.app/distinfo (new) 1.1 +10 -0 ports/editors/emacs.app/pkg-descr (new) 1.1 +2877 -0 ports/editors/emacs.app/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 20:07:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 863A216A501; Thu, 28 Sep 2006 20:07:31 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B2E143D79; Thu, 28 Sep 2006 20:07:18 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SK7IMU044069; Thu, 28 Sep 2006 20:07:18 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SK7Iig044068; Thu, 28 Sep 2006 20:07:18 GMT (envelope-from dinoex) Message-Id: <200609282007.k8SK7Iig044068@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 28 Sep 2006 20:07:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 20:07:31 -0000 dinoex 2006-09-28 20:07:18 UTC FreeBSD ports repository Modified files: . modules Log: emacs.app --> ports/editors/emacs.app Revision Changes Path 1.16297 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Sep 28 20:37:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC0EC16A407; Thu, 28 Sep 2006 20:37:38 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97A0F43D70; Thu, 28 Sep 2006 20:37:38 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SKbcva045440; Thu, 28 Sep 2006 20:37:38 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SKbcI3045439; Thu, 28 Sep 2006 20:37:38 GMT (envelope-from danger) Message-Id: <200609282037.k8SKbcI3045439@repoman.freebsd.org> From: Daniel Gerzo Date: Thu, 28 Sep 2006 20:37:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/su su.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 20:37:39 -0000 danger 2006-09-28 20:37:38 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6) usr.bin/su su.1 Log: remove reference to nonexistent pam(8) manual page. Approved by: re (bmah), keramida (mentor) Revision Changes Path 1.36.2.2 +1 -2 src/usr.bin/su/su.1 From owner-cvs-all@FreeBSD.ORG Thu Sep 28 20:51:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D9E016A412; Thu, 28 Sep 2006 20:51:01 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD99F43D77; Thu, 28 Sep 2006 20:51:00 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SKp0vD054106; Thu, 28 Sep 2006 20:51:00 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SKp0vw054105; Thu, 28 Sep 2006 20:51:00 GMT (envelope-from danger) Message-Id: <200609282051.k8SKp0vw054105@repoman.freebsd.org> From: Daniel Gerzo Date: Thu, 28 Sep 2006 20:51:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sbin/mount mount.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 20:51:01 -0000 danger 2006-09-28 20:51:00 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6) sbin/mount mount.8 Log: Re-word the description of the "async" flag. Suggested by: Milos Vyletel (mv@rulez.sk) Approved by: re (bmah), keramida (mentor) Revision Changes Path 1.73.2.4 +6 -3 src/sbin/mount/mount.8 From owner-cvs-all@FreeBSD.ORG Thu Sep 28 21:09:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D224D16A518; Thu, 28 Sep 2006 21:09:10 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8090A43D46; Thu, 28 Sep 2006 21:09:10 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SL9AsQ056659; Thu, 28 Sep 2006 21:09:10 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SL9Akv056658; Thu, 28 Sep 2006 21:09:10 GMT (envelope-from julian) Message-Id: <200609282109.k8SL9Akv056658@repoman.freebsd.org> From: Julian Elischer Date: Thu, 28 Sep 2006 21:09:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/tools/tools/tinybsd CHANGES README tinybsd src/tools/tools/tinybsd/conf/bridge TINYBSD tinybsd.basefiles src/tools/tools/tinybsd/conf/bridge/etc fstab rc.conf sysctl.conf src/tools/tools/tinybsd/conf/default TINYBSD tinybsd.basefiles ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 21:09:10 -0000 julian 2006-09-28 21:09:10 UTC FreeBSD src repository Added files: (Branch: RELENG_6) tools/tools/tinybsd CHANGES README tinybsd tools/tools/tinybsd/conf/bridge TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/bridge/etc fstab rc.conf sysctl.conf tools/tools/tinybsd/conf/default TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/default/etc fstab rc.conf tools/tools/tinybsd/conf/firewall TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/firewall/etc fstab natd.conf pf.conf pf.os rc.conf rc.firewall sysctl.conf tools/tools/tinybsd/conf/firewall/etc/authpf authpf.rules tools/tools/tinybsd/conf/minimal TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/minimal/etc fstab rc.conf tools/tools/tinybsd/conf/vpn TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/vpn/etc fstab rc.conf setkey.conf tools/tools/tinybsd/conf/wireless TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/wireless/etc fstab natd.conf pf.conf pf.os rc.conf rc.firewall tools/tools/tinybsd/conf/wireless/etc/authpf authpf.rules tools/tools/tinybsd/conf/wrap TINYBSD tinybsd.basefiles tools/tools/tinybsd/conf/wrap/etc fstab rc.conf ttys Log: MFC: Make the tinybsd framework a peer of nanobsd and picobsd in the tree Some patches to come. Approved by: re (ken) Revision Changes Path 1.1.2.1 +43 -0 src/tools/tools/tinybsd/CHANGES (new) 1.1.2.1 +253 -0 src/tools/tools/tinybsd/README (new) 1.2.2.1 +162 -0 src/tools/tools/tinybsd/conf/bridge/TINYBSD (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/bridge/etc/fstab (new) 1.2.2.1 +17 -0 src/tools/tools/tinybsd/conf/bridge/etc/rc.conf (new) 1.2.2.1 +5 -0 src/tools/tools/tinybsd/conf/bridge/etc/sysctl.conf (new) 1.1.2.1 +242 -0 src/tools/tools/tinybsd/conf/bridge/tinybsd.basefiles (new) 1.2.2.1 +179 -0 src/tools/tools/tinybsd/conf/default/TINYBSD (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/default/etc/fstab (new) 1.2.2.1 +12 -0 src/tools/tools/tinybsd/conf/default/etc/rc.conf (new) 1.1.2.1 +253 -0 src/tools/tools/tinybsd/conf/default/tinybsd.basefiles (new) 1.2.2.1 +175 -0 src/tools/tools/tinybsd/conf/firewall/TINYBSD (new) 1.1.2.1 +1 -0 src/tools/tools/tinybsd/conf/firewall/etc/authpf/authpf.rules (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/firewall/etc/fstab (new) 1.1.2.1 +1 -0 src/tools/tools/tinybsd/conf/firewall/etc/natd.conf (new) 1.1.2.1 +78 -0 src/tools/tools/tinybsd/conf/firewall/etc/pf.conf (new) 1.1.2.1 +549 -0 src/tools/tools/tinybsd/conf/firewall/etc/pf.os (new) 1.2.2.1 +41 -0 src/tools/tools/tinybsd/conf/firewall/etc/rc.conf (new) 1.1.2.1 +302 -0 src/tools/tools/tinybsd/conf/firewall/etc/rc.firewall (new) 1.1.2.1 +5 -0 src/tools/tools/tinybsd/conf/firewall/etc/sysctl.conf (new) 1.1.2.1 +245 -0 src/tools/tools/tinybsd/conf/firewall/tinybsd.basefiles (new) 1.2.2.1 +83 -0 src/tools/tools/tinybsd/conf/minimal/TINYBSD (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/minimal/etc/fstab (new) 1.2.2.1 +12 -0 src/tools/tools/tinybsd/conf/minimal/etc/rc.conf (new) 1.1.2.1 +172 -0 src/tools/tools/tinybsd/conf/minimal/tinybsd.basefiles (new) 1.2.2.1 +162 -0 src/tools/tools/tinybsd/conf/vpn/TINYBSD (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/vpn/etc/fstab (new) 1.2.2.1 +22 -0 src/tools/tools/tinybsd/conf/vpn/etc/rc.conf (new) 1.1.2.1 +1 -0 src/tools/tools/tinybsd/conf/vpn/etc/setkey.conf (new) 1.2.2.1 +227 -0 src/tools/tools/tinybsd/conf/vpn/tinybsd.basefiles (new) 1.2.2.1 +174 -0 src/tools/tools/tinybsd/conf/wireless/TINYBSD (new) 1.1.2.1 +1 -0 src/tools/tools/tinybsd/conf/wireless/etc/authpf/authpf.rules (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/wireless/etc/fstab (new) 1.1.2.1 +1 -0 src/tools/tools/tinybsd/conf/wireless/etc/natd.conf (new) 1.1.2.1 +78 -0 src/tools/tools/tinybsd/conf/wireless/etc/pf.conf (new) 1.1.2.1 +549 -0 src/tools/tools/tinybsd/conf/wireless/etc/pf.os (new) 1.2.2.1 +32 -0 src/tools/tools/tinybsd/conf/wireless/etc/rc.conf (new) 1.1.2.1 +302 -0 src/tools/tools/tinybsd/conf/wireless/etc/rc.firewall (new) 1.1.2.1 +238 -0 src/tools/tools/tinybsd/conf/wireless/tinybsd.basefiles (new) 1.2.2.1 +141 -0 src/tools/tools/tinybsd/conf/wrap/TINYBSD (new) 1.1.2.1 +2 -0 src/tools/tools/tinybsd/conf/wrap/etc/fstab (new) 1.2.2.1 +12 -0 src/tools/tools/tinybsd/conf/wrap/etc/rc.conf (new) 1.1.2.1 +308 -0 src/tools/tools/tinybsd/conf/wrap/etc/ttys (new) 1.1.2.1 +238 -0 src/tools/tools/tinybsd/conf/wrap/tinybsd.basefiles (new) 1.1.2.1 +220 -0 src/tools/tools/tinybsd/tinybsd (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 21:19:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 200EF16A403; Thu, 28 Sep 2006 21:19:51 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC40F43D45; Thu, 28 Sep 2006 21:19:50 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SLJoYQ057152; Thu, 28 Sep 2006 21:19:50 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SLJogU057151; Thu, 28 Sep 2006 21:19:50 GMT (envelope-from bsam) Message-Id: <200609282119.k8SLJogU057151@repoman.freebsd.org> From: Boris Samorodov Date: Thu, 28 Sep 2006 21:19:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/dns/mdnsd Makefile pkg-plist ports/dns/mdnsd/files patch-1035.c patch-Makefile patch-mdnsd.c patch-mhttp.c patch-mquery.c patch-sdtxt.c patch-xht.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 21:19:51 -0000 bsam 2006-09-28 21:19:50 UTC FreeBSD ports repository Modified files: dns/mdnsd Makefile pkg-plist Added files: dns/mdnsd/files patch-1035.c patch-Makefile patch-mdnsd.c patch-mhttp.c patch-mquery.c patch-sdtxt.c patch-xht.c Log: - gcc -Wall cleanup patches, contributed by Pietro Cerutti; [1] - divide proposed files/patch-aa into several files. PR: 103771 [1] Submitted by: Dan Pelleg (maintainer) [1] Revision Changes Path 1.3 +4 -0 ports/dns/mdnsd/Makefile 1.1 +18 -0 ports/dns/mdnsd/files/patch-1035.c (new) 1.1 +16 -0 ports/dns/mdnsd/files/patch-Makefile (new) 1.1 +113 -0 ports/dns/mdnsd/files/patch-mdnsd.c (new) 1.1 +57 -0 ports/dns/mdnsd/files/patch-mhttp.c (new) 1.1 +51 -0 ports/dns/mdnsd/files/patch-mquery.c (new) 1.1 +27 -0 ports/dns/mdnsd/files/patch-sdtxt.c (new) 1.1 +36 -0 ports/dns/mdnsd/files/patch-xht.c (new) 1.2 +0 -2 ports/dns/mdnsd/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Sep 28 21:22:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2902916A407; Thu, 28 Sep 2006 21:22:22 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D76EF43D49; Thu, 28 Sep 2006 21:22:21 +0000 (GMT) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SLMLtG057426; Thu, 28 Sep 2006 21:22:21 GMT (envelope-from matteo@repoman.freebsd.org) Received: (from matteo@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SLMLTK057425; Thu, 28 Sep 2006 21:22:21 GMT (envelope-from matteo) Message-Id: <200609282122.k8SLMLTK057425@repoman.freebsd.org> From: Matteo Riondato Date: Thu, 28 Sep 2006 21:22:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/tftp tftp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 21:22:22 -0000 matteo 2006-09-28 21:22:21 UTC FreeBSD src repository Modified files: usr.bin/tftp tftp.c Log: Set txrx_error to 1 when we reach abort. This makes the program correctly set the exit code. The PR has further details on this. PR: bin/103206 Submitted by: John Hickey MFC after: 3 days Revision Changes Path 1.13 +2 -0 src/usr.bin/tftp/tftp.c From owner-cvs-all@FreeBSD.ORG Thu Sep 28 21:29:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D2C816A40F; Thu, 28 Sep 2006 21:29:11 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1729B43D45; Thu, 28 Sep 2006 21:29:11 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SLTBit057705; Thu, 28 Sep 2006 21:29:11 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SLTA4M057704; Thu, 28 Sep 2006 21:29:10 GMT (envelope-from bms) Message-Id: <200609282129.k8SLTA4M057704@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 28 Sep 2006 21:29:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net Makefile ports/net/mrouted Makefile distinfo pkg-descr ports/net/mrouted/files mrouted.in patch-Makefile patch-main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 21:29:11 -0000 bms 2006-09-28 21:29:10 UTC FreeBSD ports repository (src committer) Modified files: net Makefile Added files: net/mrouted Makefile distinfo pkg-descr net/mrouted/files mrouted.in patch-Makefile patch-main.c Log: Add new port of mrouted, IPv4 DVMRP multicast routing daemon. Revision Changes Path 1.1743 +1 -0 ports/net/Makefile 1.1 +35 -0 ports/net/mrouted/Makefile (new) 1.1 +3 -0 ports/net/mrouted/distinfo (new) 1.1 +21 -0 ports/net/mrouted/files/mrouted.in (new) 1.1 +19 -0 ports/net/mrouted/files/patch-Makefile (new) 1.1 +38 -0 ports/net/mrouted/files/patch-main.c (new) 1.1 +3 -0 ports/net/mrouted/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 21:29:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4061716A591; Thu, 28 Sep 2006 21:29:30 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C77B743D55; Thu, 28 Sep 2006 21:29:29 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SLTTcS057749; Thu, 28 Sep 2006 21:29:29 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SLTT1I057748; Thu, 28 Sep 2006 21:29:29 GMT (envelope-from bms) Message-Id: <200609282129.k8SLTT1I057748@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 28 Sep 2006 21:29:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 21:29:30 -0000 bms 2006-09-28 21:29:29 UTC FreeBSD ports repository (src committer) Modified files: . modules Log: mrouted --> ports/net/mrouted Revision Changes Path 1.16298 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Sep 28 21:44:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57CE816A407; Thu, 28 Sep 2006 21:44:53 +0000 (UTC) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A93743D55; Thu, 28 Sep 2006 21:44:53 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SLiqTJ058641; Thu, 28 Sep 2006 21:44:53 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SLiqkr058640; Thu, 28 Sep 2006 21:44:52 GMT (envelope-from joerg) Message-Id: <200609282144.k8SLiqkr058640@repoman.freebsd.org> From: Joerg Wunsch Date: Thu, 28 Sep 2006 21:44:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/avr-gcc-devel Makefile ports/devel/avr-gcc-devel/files patch-dwarf patch-zz-atmega256x X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 21:44:53 -0000 joerg 2006-09-28 21:44:52 UTC FreeBSD ports repository Modified files: devel/avr-gcc-devel Makefile devel/avr-gcc-devel/files patch-dwarf patch-zz-atmega256x Log: Fix the COMMENT to tell this is GCC 4.x rather than 3.x. Pointed out by Simon Barner. Revert the default debugging format to stabs but offer DWARF-2 as an option (rather than being the default). AVR-GDB currently understands stabs much better than DWARF-2. Fix a bug in patch-zz-atmega256x that caused -fcall-prologues to generate faulty code. This affected libgcc.a as it uses this option. This bug has been originally found and fixed by Wang Guohui but I missed his fix when adding the patch here. Revision Changes Path 1.9 +3 -2 ports/devel/avr-gcc-devel/Makefile 1.2 +2 -1 ports/devel/avr-gcc-devel/files/patch-dwarf 1.2 +1 -1 ports/devel/avr-gcc-devel/files/patch-zz-atmega256x From owner-cvs-all@FreeBSD.ORG Thu Sep 28 21:49:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 850E116A403; Thu, 28 Sep 2006 21:49:57 +0000 (UTC) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D17A43D45; Thu, 28 Sep 2006 21:49:57 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SLnvdR058863; Thu, 28 Sep 2006 21:49:57 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SLnvE5058862; Thu, 28 Sep 2006 21:49:57 GMT (envelope-from joerg) Message-Id: <200609282149.k8SLnvE5058862@repoman.freebsd.org> From: Joerg Wunsch Date: Thu, 28 Sep 2006 21:49:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/avr-binutils Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 21:49:57 -0000 joerg 2006-09-28 21:49:57 UTC FreeBSD ports repository Modified files: devel/avr-binutils Makefile pkg-descr Log: Update the description to match the reality: . we are based on binutils-2.17 now . most of the AVRs are now supported by the stock distribution of binutils now, so update our local additions Revision Changes Path 1.35 +1 -0 ports/devel/avr-binutils/Makefile 1.9 +4 -12 ports/devel/avr-binutils/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Sep 28 21:56:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C15A16A403; Thu, 28 Sep 2006 21:56:02 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA2C843D45; Thu, 28 Sep 2006 21:56:01 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SLu1qI059254; Thu, 28 Sep 2006 21:56:01 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SLu14C059253; Thu, 28 Sep 2006 21:56:01 GMT (envelope-from mezz) Message-Id: <200609282156.k8SLu14C059253@repoman.freebsd.org> From: Jeremy Messenger Date: Thu, 28 Sep 2006 21:56:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/finance/homebank Makefile distinfo pkg-plist ports/finance/homebank/files patch-fix_warnings patch-po_fr.po patch-src__rep_stats.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 21:56:02 -0000 mezz 2006-09-28 21:56:01 UTC FreeBSD ports repository Modified files: finance/homebank Makefile distinfo pkg-plist Added files: finance/homebank/files patch-po_fr.po patch-src__rep_stats.c Removed files: finance/homebank/files patch-fix_warnings Log: Update to 3.2 final. Revision Changes Path 1.5 +3 -6 ports/finance/homebank/Makefile 1.4 +3 -3 ports/finance/homebank/distinfo 1.2 +0 -22 ports/finance/homebank/files/patch-fix_warnings (dead) 1.1 +11 -0 ports/finance/homebank/files/patch-po_fr.po (new) 1.1 +10 -0 ports/finance/homebank/files/patch-src__rep_stats.c (new) 1.4 +4 -0 ports/finance/homebank/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Sep 28 21:56:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D39516A415; Thu, 28 Sep 2006 21:56:28 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA70343D49; Thu, 28 Sep 2006 21:56:27 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SLuRje059300; Thu, 28 Sep 2006 21:56:27 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SLuRII059299; Thu, 28 Sep 2006 21:56:27 GMT (envelope-from mezz) Message-Id: <200609282156.k8SLuRII059299@repoman.freebsd.org> From: Jeremy Messenger Date: Thu, 28 Sep 2006 21:56:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/linuxdcpp Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 21:56:28 -0000 mezz 2006-09-28 21:56:27 UTC FreeBSD ports repository Modified files: net-p2p/linuxdcpp Makefile distinfo Log: Update it to the lastest version of CVS, at 2006-09-27 in changelog. See in the changelog for details: http://tinyurl.com/b3myl Revision Changes Path 1.10 +1 -1 ports/net-p2p/linuxdcpp/Makefile 1.9 +3 -3 ports/net-p2p/linuxdcpp/distinfo From owner-cvs-all@FreeBSD.ORG Thu Sep 28 22:04:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5871416A403; Thu, 28 Sep 2006 22:04:55 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E874443D55; Thu, 28 Sep 2006 22:04:54 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SM4sx4061006; Thu, 28 Sep 2006 22:04:54 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SM4sOW061005; Thu, 28 Sep 2006 22:04:54 GMT (envelope-from bms) Message-Id: <200609282204.k8SM4sOW061005@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 28 Sep 2006 22:04:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-mgmt Makefile ports/net-mgmt/mtrace Makefile distinfo pkg-descr ports/net-mgmt/mtrace/files patch-Makefile patch-mtrace.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 22:04:55 -0000 bms 2006-09-28 22:04:54 UTC FreeBSD ports repository (src committer) Modified files: net-mgmt Makefile Added files: net-mgmt/mtrace Makefile distinfo pkg-descr net-mgmt/mtrace/files patch-Makefile patch-mtrace.c Log: Add new port of mtrace, multicast traceroute for IPv4. Nudged by: fenner Revision Changes Path 1.87 +1 -0 ports/net-mgmt/Makefile 1.1 +27 -0 ports/net-mgmt/mtrace/Makefile (new) 1.1 +3 -0 ports/net-mgmt/mtrace/distinfo (new) 1.1 +10 -0 ports/net-mgmt/mtrace/files/patch-Makefile (new) 1.1 +20 -0 ports/net-mgmt/mtrace/files/patch-mtrace.c (new) 1.1 +2 -0 ports/net-mgmt/mtrace/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 22:05:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 728E316A49E; Thu, 28 Sep 2006 22:05:32 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E4B743D53; Thu, 28 Sep 2006 22:05:32 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SM5W46061091; Thu, 28 Sep 2006 22:05:32 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SM5Wh8061090; Thu, 28 Sep 2006 22:05:32 GMT (envelope-from bms) Message-Id: <200609282205.k8SM5Wh8061090@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 28 Sep 2006 22:05:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 22:05:32 -0000 bms 2006-09-28 22:05:32 UTC FreeBSD ports repository (src committer) Modified files: . modules Log: mtrace --> ports/net-mgmt/mtrace Revision Changes Path 1.16299 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Sep 28 22:13:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16CC016A412; Thu, 28 Sep 2006 22:13:25 +0000 (UTC) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2FA543D45; Thu, 28 Sep 2006 22:13:24 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SMDOBJ061547; Thu, 28 Sep 2006 22:13:24 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SMDOd1061546; Thu, 28 Sep 2006 22:13:24 GMT (envelope-from joerg) Message-Id: <200609282213.k8SMDOd1061546@repoman.freebsd.org> From: Joerg Wunsch Date: Thu, 28 Sep 2006 22:13:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/avr-libc Makefile ports/devel/avr-libc/files patch-binutils2.17 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 22:13:25 -0000 joerg 2006-09-28 22:13:24 UTC FreeBSD ports repository Modified files: devel/avr-libc Makefile Added files: devel/avr-libc/files patch-binutils2.17 Log: Add a workaround for binutils-2.17's pickyness about copying an empty section in [avr-]objcopy, until a new version of avr-libc is going to be released. Revision Changes Path 1.54 +1 -0 ports/devel/avr-libc/Makefile 1.1 +28 -0 ports/devel/avr-libc/files/patch-binutils2.17 (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 22:48:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A00916A407; Thu, 28 Sep 2006 22:48:43 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 140D343D60; Thu, 28 Sep 2006 22:48:43 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SMmgTL073691; Thu, 28 Sep 2006 22:48:42 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SMmgb0073690; Thu, 28 Sep 2006 22:48:42 GMT (envelope-from clsung) Message-Id: <200609282248.k8SMmgb0073690@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 22:48:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/p5-Term-VT102 Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 22:48:43 -0000 clsung 2006-09-28 22:48:42 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Term-VT102 Makefile distinfo pkg-descr pkg-plist Log: Add p5-Term-VT102 0.82, a class to emulate a DEC VT102 terminal. PR: ports/103746 Submitted by: Gea-Suan Lin Revision Changes Path 1.2460 +1 -0 ports/devel/Makefile 1.1 +22 -0 ports/devel/p5-Term-VT102/Makefile (new) 1.1 +3 -0 ports/devel/p5-Term-VT102/distinfo (new) 1.1 +12 -0 ports/devel/p5-Term-VT102/pkg-descr (new) 1.1 +10 -0 ports/devel/p5-Term-VT102/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Sep 28 22:49:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5293416A417; Thu, 28 Sep 2006 22:49:06 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5AE943D90; Thu, 28 Sep 2006 22:49:01 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SMn1Qd073733; Thu, 28 Sep 2006 22:49:01 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SMn190073732; Thu, 28 Sep 2006 22:49:01 GMT (envelope-from clsung) Message-Id: <200609282249.k8SMn190073732@repoman.freebsd.org> From: Cheng-Lung Sung Date: Thu, 28 Sep 2006 22:49:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 22:49:06 -0000 clsung 2006-09-28 22:49:01 UTC FreeBSD ports repository Modified files: . modules Log: p5-Term-VT102 --> ports/devel/p5-Term-VT102 Revision Changes Path 1.16300 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Sep 28 22:58:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAC7216A412; Thu, 28 Sep 2006 22:58:30 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DE8543D76; Thu, 28 Sep 2006 22:58:30 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SMwUg3074214; Thu, 28 Sep 2006 22:58:30 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SMwUH5074213; Thu, 28 Sep 2006 22:58:30 GMT (envelope-from lioux) Message-Id: <200609282258.k8SMwUH5074213@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 28 Sep 2006 22:58:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/mldonkey-devel Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 22:58:30 -0000 lioux 2006-09-28 22:58:30 UTC FreeBSD ports repository Modified files: net-p2p/mldonkey-devel Makefile pkg-plist Log: o Fix graphics/gd dependency o Bump PORTREVISION PR: 103410 Submitted by: Marcin Wisnicki Revision Changes Path 1.81 +9 -8 ports/net-p2p/mldonkey-devel/Makefile 1.10 +0 -2 ports/net-p2p/mldonkey-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Sep 28 23:12:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6290616A403; Thu, 28 Sep 2006 23:12:11 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B161843D68; Thu, 28 Sep 2006 23:11:52 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8SNBqnH076206; Thu, 28 Sep 2006 23:11:52 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8SNBqYb076205; Thu, 28 Sep 2006 23:11:52 GMT (envelope-from lioux) Message-Id: <200609282311.k8SNBqYb076205@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 28 Sep 2006 23:11:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/mldonkey Makefile distinfo pkg-descr pkg-plist ports/net-p2p/mldonkey/files mlnet.in mlnet.sh patch-Makefile patch-fst_hash.c patch-hashes patch-pa_zog.ml patch-src__utils__lib__stubs_c.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 28 Sep 2006 23:12:11 -0000 lioux 2006-09-28 23:11:52 UTC FreeBSD ports repository Modified files: net-p2p/mldonkey Makefile distinfo pkg-descr pkg-plist net-p2p/mldonkey/files patch-Makefile Added files: net-p2p/mldonkey/files mlnet.in patch-src__utils__lib__stubs_c.c Removed files: net-p2p/mldonkey/files mlnet.sh patch-fst_hash.c patch-hashes patch-pa_zog.ml Log: o Take over maintainership o Update to 2.8.1 from port net-p2p/mldonkey-devel Approved by: benlutz@datacomm.ch (previous maintainer) Revision Changes Path 1.39 +106 -36 ports/net-p2p/mldonkey/Makefile 1.13 +3 -3 ports/net-p2p/mldonkey/distinfo 1.1 +69 -0 ports/net-p2p/mldonkey/files/mlnet.in (new) 1.4 +0 -60 ports/net-p2p/mldonkey/files/mlnet.sh (dead) 1.5 +4 -42 ports/net-p2p/mldonkey/files/patch-Makefile 1.2 +0 -17 ports/net-p2p/mldonkey/files/patch-fst_hash.c (dead) 1.3 +0 -154 ports/net-p2p/mldonkey/files/patch-hashes (dead) 1.2 +0 -374 ports/net-p2p/mldonkey/files/patch-pa_zog.ml (dead) 1.1 +23 -0 ports/net-p2p/mldonkey/files/patch-src__utils__lib__stubs_c.c (new) 1.5 +12 -12 ports/net-p2p/mldonkey/pkg-descr 1.7 +3 -4 ports/net-p2p/mldonkey/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Sep 29 00:20:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EA0B16A407; Fri, 29 Sep 2006 00:20:58 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1842743D64; Fri, 29 Sep 2006 00:20:57 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T0KukU080252; Fri, 29 Sep 2006 00:20:56 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T0Kuss080251; Fri, 29 Sep 2006 00:20:56 GMT (envelope-from kensmith) Message-Id: <200609290020.k8T0Kuss080251@repoman.freebsd.org> From: Ken Smith Date: Fri, 29 Sep 2006 00:20:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/vm vm_page.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 00:20:58 -0000 kensmith 2006-09-29 00:20:56 UTC FreeBSD src repository Modified files: sys/vm vm_page.c Log: Fix two minor style(9) nits in v1.313 which were noticed during an MFC review. alc@ will be MFCing V1.313 plus style fix to RELENG_6. Revision Changes Path 1.328 +2 -2 src/sys/vm/vm_page.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 00:38:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BCE016A403; Fri, 29 Sep 2006 00:38:42 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE77D43D5C; Fri, 29 Sep 2006 00:38:41 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T0cfiJ081118; Fri, 29 Sep 2006 00:38:41 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T0cfqA081117; Fri, 29 Sep 2006 00:38:41 GMT (envelope-from clsung) Message-Id: <200609290038.k8T0cfqA081117@repoman.freebsd.org> From: Cheng-Lung Sung Date: Fri, 29 Sep 2006 00:38:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-mgmt Makefile ports/net-mgmt/p5-Net-ACL Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 00:38:42 -0000 clsung 2006-09-29 00:38:41 UTC FreeBSD ports repository Modified files: net-mgmt Makefile Added files: net-mgmt/p5-Net-ACL Makefile distinfo pkg-descr pkg-plist Log: Add p5-Net-ACL 0.07, class representing a generic access-list/route-map. PR: ports/102491 Submitted by: Gea-Suan Lin Revision Changes Path 1.88 +1 -0 ports/net-mgmt/Makefile 1.1 +42 -0 ports/net-mgmt/p5-Net-ACL/Makefile (new) 1.1 +3 -0 ports/net-mgmt/p5-Net-ACL/distinfo (new) 1.1 +4 -0 ports/net-mgmt/p5-Net-ACL/pkg-descr (new) 1.1 +33 -0 ports/net-mgmt/p5-Net-ACL/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Sep 29 00:38:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FFBB16A40F; Fri, 29 Sep 2006 00:38:59 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B68643D55; Fri, 29 Sep 2006 00:38:59 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T0cxjH081197; Fri, 29 Sep 2006 00:38:59 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T0cxpn081196; Fri, 29 Sep 2006 00:38:59 GMT (envelope-from clsung) Message-Id: <200609290038.k8T0cxpn081196@repoman.freebsd.org> From: Cheng-Lung Sung Date: Fri, 29 Sep 2006 00:38:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 00:38:59 -0000 clsung 2006-09-29 00:38:59 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-ACL --> ports/net-mgmt/p5-Net-ACL Revision Changes Path 1.16301 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Sep 29 00:41:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83FEC16A407; Fri, 29 Sep 2006 00:41:23 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 399D743D49; Fri, 29 Sep 2006 00:41:23 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 1EE981A3C1C; Thu, 28 Sep 2006 17:41:23 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1655B514BD; Thu, 28 Sep 2006 20:41:21 -0400 (EDT) Date: Thu, 28 Sep 2006 20:41:21 -0400 From: Kris Kennaway To: Kris Kennaway Message-ID: <20060929004121.GA60887@xor.obsecurity.org> References: <200609250047.k8P0leLL009808@repoman.freebsd.org> <20060925005252.GA50714@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nFreZHaLTZJo0R7j" Content-Disposition: inline In-Reply-To: <20060925005252.GA50714@xor.obsecurity.org> User-Agent: Mutt/1.4.2.2i Cc: shaun@FreeBSD.org, cvs-ports@FreeBSD.org, ports-committers@FreeBSD.org, cvs-all@FreeBSD.org, Mario Sergio Fujikawa Ferreira Subject: Re: cvs commit: ports/multimedia/ffmpeg-devel Makefile ports/multimedia/ffmpeg-devel/files patch-libavcodec_x264.c patch-libavformat_movenc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 00:41:23 -0000 --nFreZHaLTZJo0R7j Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Sep 24, 2006 at 08:52:52PM -0400, Kris Kennaway wrote: > On Mon, Sep 25, 2006 at 12:47:40AM +0000, Mario Sergio Fujikawa Ferreira = wrote: > > lioux 2006-09-25 00:47:40 UTC > >=20 > > FreeBSD ports repository > >=20 > > Modified files: > > multimedia/ffmpeg-devel Makefile=20 > > multimedia/ffmpeg-devel/files patch-libavcodec_x264.c=20 > > Added files: > > multimedia/ffmpeg-devel/files patch-libavformat_movenc.c=20 > > Log: > > Fix build on 4.x: fix devel/sdl header include > > =20 > > PR: 102431 > > Submitted by: Shaun Amott >=20 > Are you sure this is still correct after the recent SDL changes? >=20 > Kris Ping. It appears to be broken. Kris --nFreZHaLTZJo0R7j Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHGuxWry0BWjoQKURAvOkAJ9fulbtsYot3iIuIb7/PZssXw7jzACaAhdI dTQdGCRebBSxuiD1uDfIrEM= =N0ul -----END PGP SIGNATURE----- --nFreZHaLTZJo0R7j-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 00:47:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B074416A412; Fri, 29 Sep 2006 00:47:10 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E51B43D46; Fri, 29 Sep 2006 00:47:10 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T0lAPH089100; Fri, 29 Sep 2006 00:47:10 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T0lAD8089015; Fri, 29 Sep 2006 00:47:10 GMT (envelope-from clsung) Message-Id: <200609290047.k8T0lAD8089015@repoman.freebsd.org> From: Cheng-Lung Sung Date: Fri, 29 Sep 2006 00:47:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/p5-Thread-Apartment Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 00:47:10 -0000 clsung 2006-09-29 00:47:10 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Thread-Apartment Makefile distinfo pkg-descr pkg-plist Log: Add p5-Thread-Apartment 0.51, apartment threading wrapper for Perl objects. PR: ports/102637 Submitted by: Jin-Shan Tseng Revision Changes Path 1.2461 +1 -0 ports/devel/Makefile 1.1 +33 -0 ports/devel/p5-Thread-Apartment/Makefile (new) 1.1 +3 -0 ports/devel/p5-Thread-Apartment/distinfo (new) 1.1 +21 -0 ports/devel/p5-Thread-Apartment/pkg-descr (new) 1.1 +15 -0 ports/devel/p5-Thread-Apartment/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Sep 29 00:47:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8F7616A415; Fri, 29 Sep 2006 00:47:33 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6DA243D49; Fri, 29 Sep 2006 00:47:33 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T0lXkr089727; Fri, 29 Sep 2006 00:47:33 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T0lX4F089726; Fri, 29 Sep 2006 00:47:33 GMT (envelope-from clsung) Message-Id: <200609290047.k8T0lX4F089726@repoman.freebsd.org> From: Cheng-Lung Sung Date: Fri, 29 Sep 2006 00:47:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 00:47:34 -0000 clsung 2006-09-29 00:47:33 UTC FreeBSD ports repository Modified files: . modules Log: p5-Thread-Apartment --> ports/devel/p5-Thread-Apartment Revision Changes Path 1.16302 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Sep 29 00:56:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03A8116A416; Fri, 29 Sep 2006 00:56:19 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF8FC43D49; Fri, 29 Sep 2006 00:56:18 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T0uIeT090202; Fri, 29 Sep 2006 00:56:18 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T0uI0g090201; Fri, 29 Sep 2006 00:56:18 GMT (envelope-from kris) Message-Id: <200609290056.k8T0uI0g090201@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 29 Sep 2006 00:56:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/libdivxdecore Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 00:56:19 -0000 kris 2006-09-29 00:56:18 UTC FreeBSD ports repository Modified files: multimedia/libdivxdecore Makefile Log: Now builds on amd64, assuming it's fixed elsewhere too Revision Changes Path 1.16 +0 -1 ports/multimedia/libdivxdecore/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 01:01:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81A2B16A407; Fri, 29 Sep 2006 01:01:14 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39ADA43D45; Fri, 29 Sep 2006 01:01:14 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T11EYc090455; Fri, 29 Sep 2006 01:01:14 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T11EVI090454; Fri, 29 Sep 2006 01:01:14 GMT (envelope-from clsung) Message-Id: <200609290101.k8T11EVI090454@repoman.freebsd.org> From: Cheng-Lung Sung Date: Fri, 29 Sep 2006 01:01:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/p5-IMAP-Client Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 01:01:14 -0000 clsung 2006-09-29 01:01:13 UTC FreeBSD ports repository Modified files: mail/p5-IMAP-Client Makefile distinfo Log: - Update to 0.13 Revision Changes Path 1.4 +1 -3 ports/mail/p5-IMAP-Client/Makefile 1.3 +3 -3 ports/mail/p5-IMAP-Client/distinfo From owner-cvs-all@FreeBSD.ORG Fri Sep 29 01:05:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8898816A417; Fri, 29 Sep 2006 01:05:59 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4554743D45; Fri, 29 Sep 2006 01:05:59 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T15xWl091858; Fri, 29 Sep 2006 01:05:59 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T15xPw091857; Fri, 29 Sep 2006 01:05:59 GMT (envelope-from kris) Message-Id: <200609290105.k8T15xPw091857@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 29 Sep 2006 01:05:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/bsdbktr_tvtune Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 01:05:59 -0000 kris 2006-09-29 01:05:59 UTC FreeBSD ports repository Modified files: multimedia/bsdbktr_tvtune Makefile Log: Also builds on amd64 Revision Changes Path 1.6 +1 -1 ports/multimedia/bsdbktr_tvtune/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 01:11:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3993216A407; Fri, 29 Sep 2006 01:11:22 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C950B43D49; Fri, 29 Sep 2006 01:11:21 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1BL6A092172; Fri, 29 Sep 2006 01:11:21 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1BLdI092171; Fri, 29 Sep 2006 01:11:21 GMT (envelope-from kris) Message-Id: <200609290111.k8T1BLdI092171@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 29 Sep 2006 01:11:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/camserv Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 01:11:22 -0000 kris 2006-09-29 01:11:21 UTC FreeBSD ports repository Modified files: multimedia/camserv Makefile Log: Builds on amd64, assuming elsewhere too Revision Changes Path 1.25 +0 -2 ports/multimedia/camserv/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 01:13:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F63016A407; Fri, 29 Sep 2006 01:13:53 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 446E543D6A; Fri, 29 Sep 2006 01:13:53 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1DrTB092277; Fri, 29 Sep 2006 01:13:53 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1Dr7J092276; Fri, 29 Sep 2006 01:13:53 GMT (envelope-from kris) Message-Id: <200609290113.k8T1Dr7J092276@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 29 Sep 2006 01:13:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/wavplay Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 01:13:53 -0000 kris 2006-09-29 01:13:52 UTC FreeBSD ports repository Modified files: audio/wavplay Makefile Log: Builds on amd64, assuming elsewhere Revision Changes Path 1.13 +0 -2 ports/audio/wavplay/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 01:30:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3ABC216A412; Fri, 29 Sep 2006 01:30:38 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C10DB43D49; Fri, 29 Sep 2006 01:30:37 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1Ubu9093964; Fri, 29 Sep 2006 01:30:37 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1Ublc093963; Fri, 29 Sep 2006 01:30:37 GMT (envelope-from obrien) Message-Id: <200609290130.k8T1Ublc093963@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 29 Sep 2006 01:30:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/gnu/usr.bin/cc/cc_tools Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 01:30:38 -0000 obrien 2006-09-29 01:30:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/cc/cc_tools Makefile Log: Whitespace sync with HEAD. Approved by: re(ken) Revision Changes Path 1.81.2.1 +2 -3 src/gnu/usr.bin/cc/cc_tools/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 01:30:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3186E16A609; Fri, 29 Sep 2006 01:30:59 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E062443D4C; Fri, 29 Sep 2006 01:30:58 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1Uw97094029; Fri, 29 Sep 2006 01:30:58 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1UwEN094028; Fri, 29 Sep 2006 01:30:58 GMT (envelope-from kris) Message-Id: <200609290130.k8T1UwEN094028@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 29 Sep 2006 01:30:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/dtv Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 01:30:59 -0000 kris 2006-09-29 01:30:58 UTC FreeBSD ports repository Modified files: multimedia/dtv Makefile Log: Flip over to NOT_FOR_ARCHS=sparc64 which does not have bktr support Revision Changes Path 1.8 +1 -1 ports/multimedia/dtv/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 01:34:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC7DD16A416; Fri, 29 Sep 2006 01:34:13 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D1A243D53; Fri, 29 Sep 2006 01:34:13 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1YCBM094274; Fri, 29 Sep 2006 01:34:13 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1YCdd094273; Fri, 29 Sep 2006 01:34:12 GMT (envelope-from kris) Message-Id: <200609290134.k8T1YCdd094273@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 29 Sep 2006 01:34:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/multimedia/nxtvepg Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 01:34:13 -0000 kris 2006-09-29 01:34:12 UTC FreeBSD ports repository Modified files: multimedia/nxtvepg Makefile Log: Flip over to NOT_FOR_ARCHS=sparc64 Revision Changes Path 1.12 +1 -1 ports/multimedia/nxtvepg/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 01:36:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1F5916A415; Fri, 29 Sep 2006 01:36:31 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7186843D55; Fri, 29 Sep 2006 01:36:31 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1aVLc094451; Fri, 29 Sep 2006 01:36:31 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1aVTD094450; Fri, 29 Sep 2006 01:36:31 GMT (envelope-from kris) Message-Id: <200609290136.k8T1aVTD094450@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 29 Sep 2006 01:36:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/md4coll Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 01:36:31 -0000 kris 2006-09-29 01:36:31 UTC FreeBSD ports repository Modified files: security/md4coll Makefile Log: Builds on amd64 Revision Changes Path 1.2 +0 -2 ports/security/md4coll/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 01:44:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 231D616A412; Fri, 29 Sep 2006 01:44:26 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3BAE43D4C; Fri, 29 Sep 2006 01:44:25 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1iPQn094849; Fri, 29 Sep 2006 01:44:25 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1iPBQ094848; Fri, 29 Sep 2006 01:44:25 GMT (envelope-from obrien) Message-Id: <200609290144.k8T1iPBQ094848@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 29 Sep 2006 01:44:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/gnu/usr.bin/cc/cpp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 01:44:26 -0000 obrien 2006-09-29 01:44:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/cc/cpp Makefile Log: MFC: rev 1.25: remove redundant defines alerady set. Approved by: re(KEN) Revision Changes Path 1.24.8.2 +0 -3 src/gnu/usr.bin/cc/cpp/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 01:50:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70ED516A403; Fri, 29 Sep 2006 01:50:04 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E26743D45; Fri, 29 Sep 2006 01:50:04 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1o4xu095184; Fri, 29 Sep 2006 01:50:04 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1o3KJ095183; Fri, 29 Sep 2006 01:50:03 GMT (envelope-from obrien) Message-Id: <200609290150.k8T1o3KJ095183@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 29 Sep 2006 01:50:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/gnu/usr.bin/cc Makefile.tgt src/gnu/usr.bin/cc/cc_int Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 01:50:04 -0000 obrien 2006-09-29 01:50:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/cc Makefile.tgt gnu/usr.bin/cc/cc_int Makefile Log: MFC: default to big endian ARM if "TARGET_BIG_ENDIAN" is defined. Approved by: re(KEN) Revision Changes Path 1.8.8.1 +3 -0 src/gnu/usr.bin/cc/Makefile.tgt 1.45.2.1 +4 -0 src/gnu/usr.bin/cc/cc_int/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 01:54:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFD0516A403; Fri, 29 Sep 2006 01:54:09 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD53143D49; Fri, 29 Sep 2006 01:54:09 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1s907095448; Fri, 29 Sep 2006 01:54:09 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1s90V095447; Fri, 29 Sep 2006 01:54:09 GMT (envelope-from obrien) Message-Id: <200609290154.k8T1s90V095447@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 29 Sep 2006 01:54:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/gnu/usr.bin/cc/cc_tools auto-host.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 01:54:10 -0000 obrien 2006-09-29 01:54:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/cc/cc_tools auto-host.h Log: MFC: rev 1.19: change platform name. Approved by: re(KEN) Revision Changes Path 1.18.8.1 +1 -1 src/gnu/usr.bin/cc/cc_tools/auto-host.h From owner-cvs-all@FreeBSD.ORG Fri Sep 29 01:56:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E473F16A407; Fri, 29 Sep 2006 01:56:01 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A100943D46; Fri, 29 Sep 2006 01:56:01 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T1u1co095588; Fri, 29 Sep 2006 01:56:01 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T1u1vJ095586; Fri, 29 Sep 2006 01:56:01 GMT (envelope-from obrien) Message-Id: <200609290156.k8T1u1vJ095586@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 29 Sep 2006 01:56:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/gnu/usr.bin/cc/cc_tools Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 01:56:02 -0000 obrien 2006-09-29 01:56:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/cc/cc_tools Makefile Log: MFC: add some preliminary ARM support Approved by: re(KEN) Revision Changes Path 1.81.2.2 +10 -0 src/gnu/usr.bin/cc/cc_tools/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 02:00:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 710D716A415; Fri, 29 Sep 2006 02:00:58 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F83343D53; Fri, 29 Sep 2006 02:00:58 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T20wTt095835; Fri, 29 Sep 2006 02:00:58 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T20wB2095834; Fri, 29 Sep 2006 02:00:58 GMT (envelope-from kris) Message-Id: <200609290200.k8T20wB2095834@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 29 Sep 2006 02:00:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/xt Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 02:00:58 -0000 kris 2006-09-29 02:00:57 UTC FreeBSD ports repository Modified files: textproc/xt Makefile Log: Remove ONLY_FOR_ARCHS, let the java ports decide which arches they run on Revision Changes Path 1.22 +0 -1 ports/textproc/xt/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 02:24:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EDBB16A412; Fri, 29 Sep 2006 02:24:56 +0000 (UTC) (envelope-from scrappy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE22543D4C; Fri, 29 Sep 2006 02:24:55 +0000 (GMT) (envelope-from scrappy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T2OtBD098071; Fri, 29 Sep 2006 02:24:55 GMT (envelope-from scrappy@repoman.freebsd.org) Received: (from scrappy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T2Ot4A098070; Fri, 29 Sep 2006 02:24:55 GMT (envelope-from scrappy) Message-Id: <200609290224.k8T2Ot4A098070@repoman.freebsd.org> From: "Marc G. Fournier" Date: Fri, 29 Sep 2006 02:24:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/bsdstats Makefile ports/sysutils/bsdstats/files 300.statistics X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 02:24:56 -0000 scrappy 2006-09-29 02:24:55 UTC FreeBSD ports repository Modified files: sysutils/bsdstats Makefile sysutils/bsdstats/files 300.statistics Log: Various changes to address some major issues ... See -questions for more details ... Revision Changes Path 1.31 +1 -1 ports/sysutils/bsdstats/Makefile 1.25 +18 -2 ports/sysutils/bsdstats/files/300.statistics From owner-cvs-all@FreeBSD.ORG Fri Sep 29 02:32:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBDFA16A407; Fri, 29 Sep 2006 02:32:36 +0000 (UTC) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A7AE43D45; Fri, 29 Sep 2006 02:32:36 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T2Wanm098453; Fri, 29 Sep 2006 02:32:36 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T2WaAM098452; Fri, 29 Sep 2006 02:32:36 GMT (envelope-from ijliao) Message-Id: <200609290232.k8T2WaAM098452@repoman.freebsd.org> From: Ying-Chieh Liao Date: Fri, 29 Sep 2006 02:32:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/stlport Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 02:32:36 -0000 ijliao 2006-09-29 02:32:36 UTC FreeBSD ports repository Modified files: devel/stlport Makefile Log: add more master sites Revision Changes Path 1.40 +2 -1 ports/devel/stlport/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 03:07:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58D5616A403; Fri, 29 Sep 2006 03:07:43 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D4CE43D45; Fri, 29 Sep 2006 03:07:43 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T37hon001568; Fri, 29 Sep 2006 03:07:43 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T37g6s001567; Fri, 29 Sep 2006 03:07:42 GMT (envelope-from brooks) Message-Id: <200609290307.k8T37g6s001567@repoman.freebsd.org> From: Brooks Davis Date: Fri, 29 Sep 2006 03:07:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sbin/dhclient bpf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 03:07:43 -0000 brooks 2006-09-29 03:07:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/dhclient bpf.c Log: MFC rev 1.7 It is possible for bpf to return a length such that: length != BPF_WORDALIGN(length) This meeans that it is possible for this to be true: interface->rbuf_offset > interface->rbuf_len Handle this case in the test for running out of packets. While OpenBSD's solution of setting interface->rbuf_len to BPF_WORDALIGN(length) is safe due to the size of the buffer, I think this solution results in less hidden assumptions. This should fix the problem of dhclient running away and consuming 100% CPU. PR: bin/102226 Submitted by: Joost Bekkers Approved by: re (ken) Revision Changes Path 1.2.2.4 +1 -1 src/sbin/dhclient/bpf.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 03:45:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A23F616A40F; Fri, 29 Sep 2006 03:45:40 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60E7843D53; Fri, 29 Sep 2006 03:45:40 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T3je8k003628; Fri, 29 Sep 2006 03:45:40 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T3jeIP003627; Fri, 29 Sep 2006 03:45:40 GMT (envelope-from clsung) Message-Id: <200609290345.k8T3jeIP003627@repoman.freebsd.org> From: Cheng-Lung Sung Date: Fri, 29 Sep 2006 03:45:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/mailrep Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 03:45:40 -0000 clsung 2006-09-29 03:45:40 UTC FreeBSD ports repository Modified files: mail/mailrep Makefile Log: - change MASTER_SITE PR: ports/103796 Submitted by: maintainer (Marcelo Araujo) Revision Changes Path 1.3 +1 -1 ports/mail/mailrep/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 04:00:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88EB816A403; Fri, 29 Sep 2006 04:00:30 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CFD043D46; Fri, 29 Sep 2006 04:00:30 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T40TuY004452; Fri, 29 Sep 2006 04:00:30 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T40TPJ004451; Fri, 29 Sep 2006 04:00:29 GMT (envelope-from julian) Message-Id: <200609290400.k8T40TPJ004451@repoman.freebsd.org> From: Julian Elischer Date: Fri, 29 Sep 2006 04:00:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/bin/cp cp.1 cp.c extern.h utils.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 04:00:31 -0000 julian 2006-09-29 04:00:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) bin/cp cp.1 cp.c extern.h utils.c Log: MFC: cp.1 1.34,1.35 MFC: utils.c 1.47,1.48,1.49 MFC: extern.h 1.21 MFC: cp.c 1.54 Add an option to allow copying of a hierarchy while linking the regular files. Bikeshedded to death on: hackers Submitted by:andersonatcenttech.com Approved by: re (ken) Revision Changes Path 1.33.2.1 +5 -3 src/bin/cp/cp.1 1.51.2.2 +8 -2 src/bin/cp/cp.c 1.19.8.2 +1 -1 src/bin/cp/extern.h 1.45.2.2 +92 -77 src/bin/cp/utils.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 04:05:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0E8916A412; Fri, 29 Sep 2006 04:05:55 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACEF543D4C; Fri, 29 Sep 2006 04:05:55 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T45tuC006780; Fri, 29 Sep 2006 04:05:55 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T45tkA006779; Fri, 29 Sep 2006 04:05:55 GMT (envelope-from clsung) Message-Id: <200609290405.k8T45tkA006779@repoman.freebsd.org> From: Cheng-Lung Sung Date: Fri, 29 Sep 2006 04:05:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/biology Makefile ports/biology/gmap Makefile distinfo pkg-descr pkg-plist ports/biology/gmap/files extra-patch-src-genome.c extra-patch-src-indexdb.c patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 04:05:56 -0000 clsung 2006-09-29 04:05:55 UTC FreeBSD ports repository Modified files: biology Makefile Added files: biology/gmap Makefile distinfo pkg-descr pkg-plist biology/gmap/files extra-patch-src-genome.c extra-patch-src-indexdb.c patch-configure Log: Add gmap 2006.04.21, a Genomic Mapping and Alignment Program for mRNA and EST Sequences. PR: ports/103651 Submitted by: Bob Zimmermann Revision Changes Path 1.88 +1 -0 ports/biology/Makefile 1.1 +32 -0 ports/biology/gmap/Makefile (new) 1.1 +3 -0 ports/biology/gmap/distinfo (new) 1.1 +17 -0 ports/biology/gmap/files/extra-patch-src-genome.c (new) 1.1 +17 -0 ports/biology/gmap/files/extra-patch-src-indexdb.c (new) 1.1 +11 -0 ports/biology/gmap/files/patch-configure (new) 1.1 +12 -0 ports/biology/gmap/pkg-descr (new) 1.1 +12 -0 ports/biology/gmap/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Sep 29 04:06:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F7E516A415; Fri, 29 Sep 2006 04:06:11 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30FA343D46; Fri, 29 Sep 2006 04:06:11 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T46BIf006854; Fri, 29 Sep 2006 04:06:11 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T46BuT006853; Fri, 29 Sep 2006 04:06:11 GMT (envelope-from clsung) Message-Id: <200609290406.k8T46BuT006853@repoman.freebsd.org> From: Cheng-Lung Sung Date: Fri, 29 Sep 2006 04:06:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 04:06:11 -0000 clsung 2006-09-29 04:06:11 UTC FreeBSD ports repository Modified files: . modules Log: gmap --> ports/biology/gmap Revision Changes Path 1.16303 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Sep 29 04:16:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18A9116A40F; Fri, 29 Sep 2006 04:16:20 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C76FF43D49; Fri, 29 Sep 2006 04:16:19 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T4GJvw007330; Fri, 29 Sep 2006 04:16:19 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T4GJAT007329; Fri, 29 Sep 2006 04:16:19 GMT (envelope-from kris) Message-Id: <200609290416.k8T4GJAT007329@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 29 Sep 2006 04:16:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/instant-workstation Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 04:16:20 -0000 kris 2006-09-29 04:16:19 UTC FreeBSD ports repository Modified files: misc/instant-workstation Makefile Log: Switch to emacs21 which is buildable on amd64 Revision Changes Path 1.31 +1 -1 ports/misc/instant-workstation/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 04:22:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D66016A40F; Fri, 29 Sep 2006 04:22:39 +0000 (UTC) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 025F143D45; Fri, 29 Sep 2006 04:22:39 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T4MclL007769; Fri, 29 Sep 2006 04:22:38 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T4McYR007768; Fri, 29 Sep 2006 04:22:38 GMT (envelope-from suz) Message-Id: <200609290422.k8T4McYR007768@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Fri, 29 Sep 2006 04:22:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet6 in6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 04:22:39 -0000 suz 2006-09-29 04:22:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet6 in6.c Log: MFC Rev. 1.64 (fixed a bug that IPv6 packets arriving to stf are not accepted) Approved by: re (kensmith) Revision Changes Path 1.51.2.10 +6 -2 src/sys/netinet6/in6.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 04:24:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF8CE16A403; Fri, 29 Sep 2006 04:24:50 +0000 (UTC) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A007843D45; Fri, 29 Sep 2006 04:24:50 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T4OoMT007836; Fri, 29 Sep 2006 04:24:50 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T4Ool3007835; Fri, 29 Sep 2006 04:24:50 GMT (envelope-from suz) Message-Id: <200609290424.k8T4Ool3007835@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Fri, 29 Sep 2006 04:24:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net if_loop.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 04:24:51 -0000 suz 2006-09-29 04:24:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_loop.c Log: MFC Rev 1.111 (fixed a bug that local IPv6 traffic (to an address configured on an interface other than lo0) does not show up properly on any bpf.) Approved by: re (kensmith) Revision Changes Path 1.106.2.2 +25 -9 src/sys/net/if_loop.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 04:37:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8073D16A407; Fri, 29 Sep 2006 04:37:23 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FCF243D49; Fri, 29 Sep 2006 04:37:23 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T4bNwc008425; Fri, 29 Sep 2006 04:37:23 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T4bNcT008424; Fri, 29 Sep 2006 04:37:23 GMT (envelope-from alc) Message-Id: <200609290437.k8T4bNcT008424@repoman.freebsd.org> From: Alan Cox Date: Fri, 29 Sep 2006 04:37:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/vm vm_object.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 04:37:23 -0000 alc 2006-09-29 04:37:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/vm vm_object.c Log: MFC revision 1.358: Lock the vm_object while checking its type to see if it is a vnode-backed object that requires Giant in vm_object_deallocate(). This is somewhat hairy in that if we can't obtain Giant directly, we have to drop the object lock, then lock Giant, then relock the object lock and verify that we still need Giant. If we don't (because the object changed to OBJT_DEAD for example), then we drop Giant before continuing. Approved by: re Revision Changes Path 1.349.2.6 +25 -11 src/sys/vm/vm_object.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 04:41:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC7B416A40F; Fri, 29 Sep 2006 04:41:37 +0000 (UTC) (envelope-from luoqi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D79F43D49; Fri, 29 Sep 2006 04:41:37 +0000 (GMT) (envelope-from luoqi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T4fbGM008708; Fri, 29 Sep 2006 04:41:37 GMT (envelope-from luoqi@repoman.freebsd.org) Received: (from luoqi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T4fbIE008707; Fri, 29 Sep 2006 04:41:37 GMT (envelope-from luoqi) Message-Id: <200609290441.k8T4fbIE008707@repoman.freebsd.org> From: Luoqi Chen Date: Fri, 29 Sep 2006 04:41:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/su su.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 04:41:37 -0000 luoqi 2006-09-29 04:41:37 UTC FreeBSD src repository Modified files: usr.bin/su su.c Log: Do not chdir(2) until after setuid(2), otherwise "su - username" would fail when root doesn't have the permission to enter target user's home directory. If set, PAM environment variable HOME will be used in chdir(2) instead of pwd->pw_dir, this allows pam_chroot module to continue to function. Revision Changes Path 1.81 +4 -6 src/usr.bin/su/su.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 04:51:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F263616A416; Fri, 29 Sep 2006 04:51:16 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89E7843D55; Fri, 29 Sep 2006 04:51:16 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T4pGfI017180; Fri, 29 Sep 2006 04:51:16 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T4pG6Z017179; Fri, 29 Sep 2006 04:51:16 GMT (envelope-from alc) Message-Id: <200609290451.k8T4pG6Z017179@repoman.freebsd.org> From: Alan Cox Date: Fri, 29 Sep 2006 04:51:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/vm vm_page.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 04:51:17 -0000 alc 2006-09-29 04:51:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/vm vm_page.c Log: MFC revisions 1.313 and 1.328: When the VM needs to allocated physical memory pages (for non interrupt use) and it has not plenty of free pages it tries to free pages in the cache queue. Unfortunately freeing a cached page requires the locking of the object that owns the page. However in the context of allocating pages we may not be able to lock the object and thus can only TRY to lock the object. If the locking try fails the cache page can not be freed and is activated to move it out of the way so that we may try to free other cache pages. If all pages in the cache belong to objects that are currently locked the cache queue can be emptied without freeing a single page. This scenario caused two problems: 1) vm_page_alloc always failed allocation when it tried freeing pages from the cache queue and failed to do so. However if there are more than cnt.v_interrupt_free_min pages on the free list it should return pages when requested with priority VM_ALLOC_SYSTEM. Failure to do so can cause resource exhaustion deadlocks. 2) Threads than need to allocate pages spend a lot of time cleaning up the page queue without really getting anything done while the pagedaemon needs to work overtime to refill the cache. This change fixes the first problem. (1) Approved by: re (kensmith) Revision Changes Path 1.304.2.5 +13 -3 src/sys/vm/vm_page.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 05:40:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9300016A40F; Fri, 29 Sep 2006 05:40:01 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 419BC43D4C; Fri, 29 Sep 2006 05:40:01 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T5e1il020688; Fri, 29 Sep 2006 05:40:01 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T5e1Hd020687; Fri, 29 Sep 2006 05:40:01 GMT (envelope-from kris) Message-Id: <200609290540.k8T5e1Hd020687@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 29 Sep 2006 05:40:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/instant-workstation Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 05:40:01 -0000 kris 2006-09-29 05:40:00 UTC FreeBSD ports repository Modified files: misc/instant-workstation Makefile Log: Correct emacs dependency Pointy hat to: kris Submitted by: cperciva Revision Changes Path 1.32 +1 -1 ports/misc/instant-workstation/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 06:06:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 376BB16A403; Fri, 29 Sep 2006 06:06:40 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECBB843D49; Fri, 29 Sep 2006 06:06:39 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T66dLw028061; Fri, 29 Sep 2006 06:06:39 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T66d4I028060; Fri, 29 Sep 2006 06:06:39 GMT (envelope-from ru) Message-Id: <200609290606.k8T66d4I028060@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 06:06:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/cp cp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 06:06:40 -0000 ru 2006-09-29 06:06:39 UTC FreeBSD src repository Modified files: bin/cp cp.c Log: Move the -l option processing to where it belongs. Overall still not kosher but better matches style(9). Revision Changes Path 1.55 +4 -4 src/bin/cp/cp.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 06:12:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89B9716A403; Fri, 29 Sep 2006 06:12:18 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45ACE43D4C; Fri, 29 Sep 2006 06:12:18 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T6CIox031849; Fri, 29 Sep 2006 06:12:18 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T6CIee031848; Fri, 29 Sep 2006 06:12:18 GMT (envelope-from delphij) Message-Id: <200609290612.k8T6CIee031848@repoman.freebsd.org> From: Xin LI Date: Fri, 29 Sep 2006 06:12:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sbin/newfs mkfs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 06:12:18 -0000 delphij 2006-09-29 06:12:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/newfs mkfs.c Log: MFC 1.90-1.91: Don't treat failure to find the operator GID as a fatal error; this made it impossible to use newfs (and mdmfs) when /etc/group is missing and /etc is read-only. Approved by: re (kensmith) Revision Changes Path 1.89.2.1 +9 -4 src/sbin/newfs/mkfs.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 06:13:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35ABC16A403; Fri, 29 Sep 2006 06:13:21 +0000 (UTC) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC82043D4C; Fri, 29 Sep 2006 06:13:20 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T6DKH1031918; Fri, 29 Sep 2006 06:13:20 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T6DKoL031917; Fri, 29 Sep 2006 06:13:20 GMT (envelope-from marck) Message-Id: <200609290613.k8T6DKoL031917@repoman.freebsd.org> From: Dmitry Morozovsky Date: Fri, 29 Sep 2006 06:13:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/chpass chpass.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 06:13:21 -0000 marck 2006-09-29 06:13:20 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6) usr.bin/chpass chpass.c Log: MFC rev 1.28: Fix bug introduced in rev 1.23: pw_equal does not check crypted password field, so one cannot change crypted password keeping other fields intact. Approved by: re (kensmith) Revision Changes Path 1.27.8.1 +6 -1 src/usr.bin/chpass/chpass.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 06:17:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B61A916A403; Fri, 29 Sep 2006 06:17:51 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7677243D49; Fri, 29 Sep 2006 06:17:51 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T6HpRY032103; Fri, 29 Sep 2006 06:17:51 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T6Hp9O032102; Fri, 29 Sep 2006 06:17:51 GMT (envelope-from delphij) Message-Id: <200609290617.k8T6Hp9O032102@repoman.freebsd.org> From: Xin LI Date: Fri, 29 Sep 2006 06:17:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 06:17:51 -0000 delphij 2006-09-29 06:17:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . ObsoleteFiles.inc Log: MFC 1.52: Remove 120.clean-kvmdb. Approved by: re (kensmith) Revision Changes Path 1.25.2.6 +2 -0 src/ObsoleteFiles.inc From owner-cvs-all@FreeBSD.ORG Fri Sep 29 06:24:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBB5516A40F; Fri, 29 Sep 2006 06:24:26 +0000 (UTC) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A985B43D49; Fri, 29 Sep 2006 06:24:26 +0000 (GMT) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T6OQ94032482; Fri, 29 Sep 2006 06:24:26 GMT (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T6OQ44032481; Fri, 29 Sep 2006 06:24:26 GMT (envelope-from silby) Message-Id: <200609290624.k8T6OQ44032481@repoman.freebsd.org> From: Mike Silbersack Date: Fri, 29 Sep 2006 06:24:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet tcp_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 06:24:27 -0000 silby 2006-09-29 06:24:26 UTC FreeBSD src repository Modified files: sys/netinet tcp_subr.c Log: Rather than autoscaling the number of TIME_WAIT sockets to maxsockets / 5, scale it to min(ephemeral port range / 2, maxsockets / 5) so that people with large gobs of memory and/or large maxsockets settings will not exhaust their entire ephemeral port range with sockets in the TIME_WAIT state during periods of heavy load. Those who wish to tweak the size of the TIME_WAIT zone can still do so with net.inet.tcp.maxtcptw. Reviewed by: glebius, ru Revision Changes Path 1.263 +24 -8 src/sys/netinet/tcp_subr.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 06:46:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1362E16A407; Fri, 29 Sep 2006 06:46:32 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C66B143D46; Fri, 29 Sep 2006 06:46:31 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T6kVcO033589; Fri, 29 Sep 2006 06:46:31 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T6kVTx033588; Fri, 29 Sep 2006 06:46:31 GMT (envelope-from maxim) Message-Id: <200609290646.k8T6kVTx033588@repoman.freebsd.org> From: Maxim Konovalov Date: Fri, 29 Sep 2006 06:46:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet tcp_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 06:46:32 -0000 maxim 2006-09-29 06:46:31 UTC FreeBSD src repository Modified files: sys/netinet tcp_subr.c Log: o Convert w/spaces to tabs in the previous commit. Revision Changes Path 1.264 +3 -3 src/sys/netinet/tcp_subr.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 06:57:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CB5316A412 for ; Fri, 29 Sep 2006 06:57:20 +0000 (UTC) (envelope-from mike@silbersack.org) Received: from relay03.pair.com (relay03.pair.com [209.68.5.17]) by mx1.FreeBSD.org (Postfix) with SMTP id 48F3443D55 for ; Fri, 29 Sep 2006 06:57:18 +0000 (GMT) (envelope-from mike@silbersack.org) Received: (qmail 77459 invoked from network); 29 Sep 2006 06:57:17 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 29 Sep 2006 06:57:17 -0000 X-pair-Authenticated: 209.68.2.70 Date: Fri, 29 Sep 2006 01:57:45 -0500 (CDT) From: Mike Silbersack X-X-Sender: silby@odysseus.silby.com To: Maxim Konovalov In-Reply-To: <200609290646.k8T6kVTx033588@repoman.freebsd.org> Message-ID: <20060929015701.S13056@odysseus.silby.com> References: <200609290646.k8T6kVTx033588@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 06:57:20 -0000 Gah, they have me using spaces at my new job, so I keep switching back and forth at inopportune times. Good catch... kinda scary that you noticed so quickly, though... Mike "Silby" Silbersack On Fri, 29 Sep 2006, Maxim Konovalov wrote: > maxim 2006-09-29 06:46:31 UTC > > FreeBSD src repository > > Modified files: > sys/netinet tcp_subr.c > Log: > o Convert w/spaces to tabs in the previous commit. > > Revision Changes Path > 1.264 +3 -3 src/sys/netinet/tcp_subr.c > From owner-cvs-all@FreeBSD.ORG Fri Sep 29 07:00:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CFB816A407; Fri, 29 Sep 2006 07:00:42 +0000 (UTC) (envelope-from maxim@macomnet.ru) Received: from mp2.macomnet.net (mp2.macomnet.net [195.128.64.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADAA143D45; Fri, 29 Sep 2006 07:00:41 +0000 (GMT) (envelope-from maxim@macomnet.ru) Received: from localhost (localhost.int.ru [127.0.0.1] (may be forged)) by mp2.macomnet.net (8.13.7/8.13.3) with ESMTP id k8T70d5N030293; Fri, 29 Sep 2006 11:00:39 +0400 (MSD) (envelope-from maxim@macomnet.ru) Date: Fri, 29 Sep 2006 11:00:39 +0400 (MSD) From: Maxim Konovalov To: Mike Silbersack In-Reply-To: <20060929015701.S13056@odysseus.silby.com> Message-ID: <20060929105925.S30248@mp2.macomnet.net> References: <200609290646.k8T6kVTx033588@repoman.freebsd.org> <20060929015701.S13056@odysseus.silby.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/netinet tcp_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 07:00:42 -0000 On Fri, 29 Sep 2006, 01:57-0500, Mike Silbersack wrote: > > Gah, they have me using spaces at my new job, so I keep switching back and > forth at inopportune times. > > Good catch... kinda scary that you noticed so quickly, though... You know - big brother is watching you, Mike :-) -- Maxim Konovalov From owner-cvs-all@FreeBSD.ORG Fri Sep 29 07:02:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A89116A407; Fri, 29 Sep 2006 07:02:24 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D94A43D78; Fri, 29 Sep 2006 07:02:22 +0000 (GMT) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T72MNs034344; Fri, 29 Sep 2006 07:02:22 GMT (envelope-from matteo@repoman.freebsd.org) Received: (from matteo@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T72M4p034343; Fri, 29 Sep 2006 07:02:22 GMT (envelope-from matteo) Message-Id: <200609290702.k8T72M4p034343@repoman.freebsd.org> From: Matteo Riondato Date: Fri, 29 Sep 2006 07:02:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libpcap Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 07:02:24 -0000 matteo 2006-09-29 07:02:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libpcap Makefile Log: MFC rev. 1.38 Place shared libpcap library under /lib, currently needed by /sbin/ipf and /sbin/pflogd. Reviewed by: ru@ Approved by: re@ (kensmith@) Revision Changes Path 1.36.2.1 +2 -0 src/lib/libpcap/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 07:04:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10E9016A403; Fri, 29 Sep 2006 07:04:18 +0000 (UTC) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1EAA43D4C; Fri, 29 Sep 2006 07:04:17 +0000 (GMT) (envelope-from matteo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T74HKu035614; Fri, 29 Sep 2006 07:04:17 GMT (envelope-from matteo@repoman.freebsd.org) Received: (from matteo@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T74HVP035613; Fri, 29 Sep 2006 07:04:17 GMT (envelope-from matteo) Message-Id: <200609290704.k8T74HVP035613@repoman.freebsd.org> From: Matteo Riondato Date: Fri, 29 Sep 2006 07:04:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libpthread Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 07:04:18 -0000 matteo 2006-09-29 07:04:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libpthread Makefile Log: MFC rev. 1.58: Install shared libpthread library into /lib; needed by some /sbin programs. PR: bin/88404 Reviewed by: ru@ Approved by: re@ (kensmith@) Revision Changes Path 1.53.2.2 +1 -0 src/lib/libpthread/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 07:34:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90E6816A40F; Fri, 29 Sep 2006 07:34:52 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E712B43D46; Fri, 29 Sep 2006 07:33:56 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T7Xu6u037077; Fri, 29 Sep 2006 07:33:56 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T7Xu5f037076; Fri, 29 Sep 2006 07:33:56 GMT (envelope-from mbr) Message-Id: <200609290733.k8T7Xu5f037076@repoman.freebsd.org> From: Martin Blapp Date: Fri, 29 Sep 2006 07:33:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern tty_tty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 07:34:52 -0000 mbr 2006-09-29 07:33:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern tty_tty.c Log: MFC rev. 1.58, 1.59 If /dev/tty gets opened after your controlling terminal has been revoked you can't call tty_clone afterwords. This can be done in ctty_clone by returning with *dev = ctty. Reviewed by: jhb Approved by: re Revision Changes Path 1.56.2.2 +5 -1 src/sys/kern/tty_tty.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 07:41:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C151516A416; Fri, 29 Sep 2006 07:41:29 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A519043D76; Fri, 29 Sep 2006 07:41:25 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T7fPcb037486; Fri, 29 Sep 2006 07:41:25 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T7fP6d037485; Fri, 29 Sep 2006 07:41:25 GMT (envelope-from mbr) Message-Id: <200609290741.k8T7fP6d037485@repoman.freebsd.org> From: Martin Blapp Date: Fri, 29 Sep 2006 07:41:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern kern_proc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 07:41:29 -0000 mbr 2006-09-29 07:41:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern kern_proc.c Log: MFC rev. 1.241, 1.242, 1.243 Add some Giant locks to protect against races between tty and sessrele(), doenterpgrp(), leavepgrp(), pgdelete() and enterpgrp(). The tty code is still under giant lock, but the session/pgrp release code just used proctree_locks. P_CONTROLT isn't really fully locked too in enterpgrp(). Reviewed by: jhb Approved by: re Revision Changes Path 1.230.2.5 +9 -0 src/sys/kern/kern_proc.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 07:44:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45B1F16A417; Fri, 29 Sep 2006 07:44:54 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0774043D4C; Fri, 29 Sep 2006 07:44:54 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T7ir8C037684; Fri, 29 Sep 2006 07:44:53 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T7irbY037683; Fri, 29 Sep 2006 07:44:53 GMT (envelope-from clsung) Message-Id: <200609290744.k8T7irbY037683@repoman.freebsd.org> From: Cheng-Lung Sung Date: Fri, 29 Sep 2006 07:44:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www Makefile ports/www/p5-HTML-FromANSI Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 07:44:54 -0000 clsung 2006-09-29 07:44:53 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/p5-HTML-FromANSI Makefile distinfo pkg-descr pkg-plist Log: Add p5-HTML-FromANSI 1.01, mark up ANSI sequences as HTML. PR: ports/103747 Submitted by: Gea-Suan Lin Revision Changes Path 1.1576 +1 -0 ports/www/Makefile 1.1 +32 -0 ports/www/p5-HTML-FromANSI/Makefile (new) 1.1 +3 -0 ports/www/p5-HTML-FromANSI/distinfo (new) 1.1 +7 -0 ports/www/p5-HTML-FromANSI/pkg-descr (new) 1.1 +7 -0 ports/www/p5-HTML-FromANSI/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Sep 29 07:45:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38BBF16A4C2; Fri, 29 Sep 2006 07:45:31 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E37AA43D58; Fri, 29 Sep 2006 07:45:27 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T7jRn0037760; Fri, 29 Sep 2006 07:45:27 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T7jRuH037759; Fri, 29 Sep 2006 07:45:27 GMT (envelope-from clsung) Message-Id: <200609290745.k8T7jRuH037759@repoman.freebsd.org> From: Cheng-Lung Sung Date: Fri, 29 Sep 2006 07:45:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 07:45:31 -0000 clsung 2006-09-29 07:45:27 UTC FreeBSD ports repository Modified files: . modules Log: p5-HTML-FromANSI --> ports/www/p5-HTML-FromANSI Revision Changes Path 1.16304 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Sep 29 08:00:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B33F16A4EB; Fri, 29 Sep 2006 08:00:41 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED50F43D46; Fri, 29 Sep 2006 08:00:40 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T80ekw038635; Fri, 29 Sep 2006 08:00:40 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T80e26038634; Fri, 29 Sep 2006 08:00:40 GMT (envelope-from maxim) Message-Id: <200609290800.k8T80e26038634@repoman.freebsd.org> From: Maxim Konovalov Date: Fri, 29 Sep 2006 08:00:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/ipfw ipfw2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 08:00:41 -0000 maxim 2006-09-29 08:00:40 UTC FreeBSD src repository Modified files: sbin/ipfw ipfw2.c Log: o Check for a required "pathname" argument presence. PR: bin/95146 Submitted by: candy-sendpr@kgc.co.jp MFC after: 3 weeks Revision Changes Path 1.99 +2 -0 src/sbin/ipfw/ipfw2.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 08:07:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61CC216A412; Fri, 29 Sep 2006 08:07:20 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D760843D58; Fri, 29 Sep 2006 08:07:19 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T87Jwr040135; Fri, 29 Sep 2006 08:07:19 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T87JaW040134; Fri, 29 Sep 2006 08:07:19 GMT (envelope-from ru) Message-Id: <200609290807.k8T87JaW040134@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 08:07:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/tools/tools/find-sb Makefile find-sb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 08:07:20 -0000 ru 2006-09-29 08:07:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) tools/tools/find-sb Makefile find-sb.c Log: MFC: - Use SBLOCK_UFS2 instead of SBLOCK_UFS1 to calculate likely start of the UFS2 partition from the beginning of disk. - Initialize the "offset" variable and bump WARNS that made this visible. Approved by: re (kensmith) Revision Changes Path 1.2.2.1 +2 -0 src/tools/tools/find-sb/Makefile 1.1.14.2 +2 -1 src/tools/tools/find-sb/find-sb.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 08:20:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8125416A412; Fri, 29 Sep 2006 08:20:26 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1B6E43D45; Fri, 29 Sep 2006 08:20:24 +0000 (GMT) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T8KOVT041999; Fri, 29 Sep 2006 08:20:24 GMT (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T8KODc041997; Fri, 29 Sep 2006 08:20:24 GMT (envelope-from olgeni) Message-Id: <200609290820.k8T8KODc041997@repoman.freebsd.org> From: Jimmy Olgeni Date: Fri, 29 Sep 2006 08:20:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/webmin Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 08:20:26 -0000 olgeni 2006-09-29 08:20:24 UTC FreeBSD ports repository Modified files: sysutils/webmin Makefile distinfo Log: Update modules: apache-1.300-1, dhcpd-1.300-1, postfix-1.300-3, sendmail-1.300-1. Revision Changes Path 1.261 +5 -1 ports/sysutils/webmin/Makefile 1.216 +12 -0 ports/sysutils/webmin/distinfo From owner-cvs-all@FreeBSD.ORG Fri Sep 29 08:20:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1002516A403; Fri, 29 Sep 2006 08:20:27 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1CE443D4C; Fri, 29 Sep 2006 08:20:24 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T8KOWj042000; Fri, 29 Sep 2006 08:20:24 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T8KOO8041998; Fri, 29 Sep 2006 08:20:24 GMT (envelope-from sat) Message-Id: <200609290820.k8T8KOO8041998@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 29 Sep 2006 08:20:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/xpi-autobrowse Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 08:20:27 -0000 sat 2006-09-29 08:20:24 UTC FreeBSD ports repository Modified files: www/xpi-autobrowse Makefile distinfo Log: - Update to 0.5 Revision Changes Path 1.2 +1 -1 ports/www/xpi-autobrowse/Makefile 1.2 +3 -3 ports/www/xpi-autobrowse/distinfo From owner-cvs-all@FreeBSD.ORG Fri Sep 29 08:35:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 015E316A494; Fri, 29 Sep 2006 08:35:21 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3DFC43D5E; Fri, 29 Sep 2006 08:35:20 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T8ZKJ6042875; Fri, 29 Sep 2006 08:35:20 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T8ZKVE042874; Fri, 29 Sep 2006 08:35:20 GMT (envelope-from skv) Message-Id: <200609290835.k8T8ZKVE042874@repoman.freebsd.org> From: Sergey Skvortsov Date: Fri, 29 Sep 2006 08:35:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-XML-LibXML Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 08:35:22 -0000 skv 2006-09-29 08:35:20 UTC FreeBSD ports repository Modified files: textproc/p5-XML-LibXML Makefile pkg-plist Log: * fix plist * add conflict with p5-XML-LibXML-XPathContext (because it was merged into p5-XML-LibXML) Revision Changes Path 1.27 +3 -0 ports/textproc/p5-XML-LibXML/Makefile 1.12 +2 -0 ports/textproc/p5-XML-LibXML/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Sep 29 09:10:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09B0616A407; Fri, 29 Sep 2006 09:10:55 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FD0743D46; Fri, 29 Sep 2006 09:10:54 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T9AssH052730; Fri, 29 Sep 2006 09:10:54 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T9AspR052729; Fri, 29 Sep 2006 09:10:54 GMT (envelope-from ru) Message-Id: <200609290910.k8T9AspR052729@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 09:10:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pcm dsp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 09:10:55 -0000 ru 2006-09-29 09:10:54 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm dsp.c Log: The SNDCTL_DSP_NONBLOCK ioctl doesn't take an argument, from what I can tell by browsing the Internet (Linux, OSS, etc.). Revision Changes Path 1.97 +3 -3 src/sys/dev/sound/pcm/dsp.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 09:28:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A340316A540; Fri, 29 Sep 2006 09:28:23 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6135C43D46; Fri, 29 Sep 2006 09:28:23 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T9SNnj053068; Fri, 29 Sep 2006 09:28:23 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T9SM4n053067; Fri, 29 Sep 2006 09:28:22 GMT (envelope-from ru) Message-Id: <200609290928.k8T9SM4n053067@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 09:28:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/midi sequencer.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 09:28:23 -0000 ru 2006-09-29 09:28:22 UTC FreeBSD src repository Modified files: sys/dev/sound/midi sequencer.c Log: SNDCTL_TMR_{START,STOP,CONTINUE} don't take an argument. Revision Changes Path 1.22 +8 -4 src/sys/dev/sound/midi/sequencer.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 09:39:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71DAD16A403; Fri, 29 Sep 2006 09:39:46 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from out1.smtp.messagingengine.com (out1.smtp.messagingengine.com [66.111.4.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7157243D7B; Fri, 29 Sep 2006 09:39:42 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id A0C8ADADE26; Fri, 29 Sep 2006 05:39:41 -0400 (EDT) Received: from heartbeat2.internal ([10.202.2.161]) by frontend3.internal (MEProxy); Fri, 29 Sep 2006 05:39:44 -0400 X-Sasl-enc: D0l4wPhii0VA9xVYL8vbrVsWbeLh1DYYyOoIecmK4Jmg 1159522783 Received: from [192.168.123.18] (82-35-112-254.cable.ubr07.dals.blueyonder.co.uk [82.35.112.254]) by mail.messagingengine.com (Postfix) with ESMTP id 8450ACBD8; Fri, 29 Sep 2006 05:39:43 -0400 (EDT) Message-ID: <451CE9DC.7070703@FreeBSD.org> Date: Fri, 29 Sep 2006 10:39:40 +0100 From: "Bruce M. Simpson" User-Agent: Thunderbird 1.5.0.5 (X11/20060825) MIME-Version: 1.0 To: SUZUKI Shinsuke References: <200609290424.k8T4Ool3007835@repoman.freebsd.org> In-Reply-To: <200609290424.k8T4Ool3007835@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_loop.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 09:39:46 -0000 SUZUKI Shinsuke wrote: > suz 2006-09-29 04:24:50 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/net if_loop.c > Log: > MFC Rev 1.111 > (fixed a bug that local IPv6 traffic (to an address configured on an > interface other than lo0) does not show up properly on any bpf.) > Nice catch! BMS From owner-cvs-all@FreeBSD.ORG Fri Sep 29 09:51:08 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A429C16A412; Fri, 29 Sep 2006 09:51:08 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CE1143D49; Fri, 29 Sep 2006 09:51:08 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 0BDAD60CC; Fri, 29 Sep 2006 13:51:07 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id DC7F85F0B; Fri, 29 Sep 2006 13:51:06 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8T9p7sC003569; Fri, 29 Sep 2006 13:51:07 +0400 (MSD) (envelope-from ru) Date: Fri, 29 Sep 2006 13:51:07 +0400 From: Ruslan Ermilov To: John Baldwin , Scott Long Message-ID: <20060929095107.GI86237@rambler-co.ru> References: <200609271957.k8RJv25Z028902@repoman.freebsd.org> <200609281056.28105.jhb@freebsd.org> <20060928162143.GA59634@rambler-co.ru> <200609281420.54038.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dCSxeJc5W8HZXZrD" Content-Disposition: inline In-Reply-To: <200609281420.54038.jhb@freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/atkbdc atkbd.c src/sys/dev/digi digi.c src/sys/dev/kbdmux kbdmux.c src/sys/dev/syscons scvidctl.c syscons.c src/sys/dev/uart uart_kbd_sun.c src/sys/dev/usb ukbd.c src/sys/dev/vkbd vkbd.c src/sys/fs/procfs procfs_ioctl.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 09:51:08 -0000 --dCSxeJc5W8HZXZrD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 28, 2006 at 02:20:53PM -0400, John Baldwin wrote: > On Thursday 28 September 2006 12:21, Ruslan Ermilov wrote: > > > Are there any others outside of SES? How many? If it's a small list= , then=20 > > > let's fix them. The SES ones are broken as an API anyway as mentione= d above,=20 > > > and if other ioctl's are copying out a variable amount of data w/o al= lowing=20 > > > for buffer lengths or telling userland how much it copied, they are a= lso=20 > > > fundamentally broken as well. > > >=20 > > Some only read from userland, so they aren't broken. I'll compile and = send > > you the list of such ioctls (don't have it saved)... Ah, here's one fr= om > > memory that isn't broken: SPKRTUNE from sys/dev/speaker/. >=20 > Scott pointed out one in aac(4) that is required for a binary-only > management tool, so it looks like we are stuck _IO being used with > pointers. :( >=20 Here's the full list: : ./dev/ofw/openpromio.h:#define OPROMNEXT _IO('O', 1) : ./dev/ofw/openpromio.h:#define OPROMCHILD _IO('O', 2) : ./dev/ofw/openpromio.h:#define OPROMGETPROP _IO('O', 3) : ./dev/ofw/openpromio.h:#define OPROMNXTPROP _IO('O', 4) :=20 : ./dev/speaker/speaker.h:#define SPKRTUNE _IO('S', 2) /= * emit tone sequence*/ Some of the below. These are used by the binary-only available tool from ports/sysutils/aaccli. : ./sys/aac_ioctl.h:#define FSACTL_SENDFIB _IO('8', 2) : ./sys/aac_ioctl.h:#define FSACTL_GET_COMM_PERF_DATA _IO('8', 36) : ./sys/aac_ioctl.h:#define FSACTL_OPENCLS_COMM_PERF_DATA _IO('8', 37) : ./sys/aac_ioctl.h:#define FSACTL_OPEN_GET_ADAPTER_FIB _IO('8', 52) : ./sys/aac_ioctl.h:#define FSACTL_GET_NEXT_ADAPTER_FIB _IO('8', 53) : ./sys/aac_ioctl.h:#define FSACTL_CLOSE_GET_ADAPTER_FIB _IO('8', 54) : ./sys/aac_ioctl.h:#define FSACTL_CLOSE_ADAPTER_CONFIG _IO('8', 56) : ./sys/aac_ioctl.h:#define FSACTL_OPEN_ADAPTER_CONFIG _IO('8', 57) : ./sys/aac_ioctl.h:#define FSACTL_MINIPORT_REV_CHECK _IO('8', 59) : ./sys/aac_ioctl.h:#define FSACTL_QUERY_ADAPTER_CONFIG _IO('8', 65) : ./sys/aac_ioctl.h:#define FSACTL_GET_PCI_INFO _IO('8', 71) : ./sys/aac_ioctl.h:#define FSACTL_FORCE_DELETE_DISK _IO('8', 72) : ./sys/aac_ioctl.h:#define FSACTL_AIF_THREAD _IO('8', 79) : ./sys/aac_ioctl.h:#define FSACTL_NULL_IO_TEST _IO('8', 67) : ./sys/aac_ioctl.h:#define FSACTL_SIM_IO_TEST _IO('8', 83) : ./sys/aac_ioctl.h:#define FSACTL_DOWNLOAD _IO('8', 131) : ./sys/aac_ioctl.h:#define FSACTL_GET_VAR _IO('8', 147) : ./sys/aac_ioctl.h:#define FSACTL_SET_VAR _IO('8', 163) : ./sys/aac_ioctl.h:#define FSACTL_GET_FIBTIMES _IO('8', 179) : ./sys/aac_ioctl.h:#define FSACTL_ZERO_FIBTIMES _IO('8', 195) : ./sys/aac_ioctl.h:#define FSACTL_DELETE_DISK _IO('8', 99) : ./sys/aac_ioctl.h:#define FSACTL_QUERY_DISK _IO('9', 115) : ./sys/aac_ioctl.h:#define FSACTL_PROBE_CONTAINERS _IO('9', 83) /* Just g= uessing */ Do we have a consensus now, as I'm going to send a patch for RELENG_6 to re@ soon? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --dCSxeJc5W8HZXZrD Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHOyLqRfpzJluFF4RAqLcAJwN3Glwg6anSwiEB8AOPLK0FdoEtQCfZ2KQ wj7PuxsQK7MTAW5lcgcMcvk= =+SrL -----END PGP SIGNATURE----- --dCSxeJc5W8HZXZrD-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 09:52:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2233616A407; Fri, 29 Sep 2006 09:52:58 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D26EA43D53; Fri, 29 Sep 2006 09:52:57 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T9qvBT053567; Fri, 29 Sep 2006 09:52:57 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T9qvcU053566; Fri, 29 Sep 2006 09:52:57 GMT (envelope-from mbr) Message-Id: <200609290952.k8T9qvcU053566@repoman.freebsd.org> From: Martin Blapp Date: Fri, 29 Sep 2006 09:52:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 09:52:58 -0000 mbr 2006-09-29 09:52:57 UTC FreeBSD src repository Modified files: sys/kern tty_pty.c Log: Free tty struct after last close. This should fix the pty-leak by numbers. Remove workarounds for tty_refcount beeing 0, this will be fixed differently later. Back out rev 1.145 since we initialize the tty struct from scratch and bad things can't happen anymore. Revision Changes Path 1.148 +17 -12 src/sys/kern/tty_pty.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 09:53:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AFB616A416; Fri, 29 Sep 2006 09:53:20 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1B4243D6B; Fri, 29 Sep 2006 09:53:19 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8T9rJ4E053603; Fri, 29 Sep 2006 09:53:19 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8T9rJTb053602; Fri, 29 Sep 2006 09:53:19 GMT (envelope-from mbr) Message-Id: <200609290953.k8T9rJTb053602@repoman.freebsd.org> From: Martin Blapp Date: Fri, 29 Sep 2006 09:53:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern tty_pts.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 09:53:20 -0000 mbr 2006-09-29 09:53:19 UTC FreeBSD src repository Modified files: sys/kern tty_pts.c Log: Free tty struct after last close. This should fix the pty-leak by numbers. Remove workarounds for tty_refcount beeing 0, this will be fixed differently later. Revision Changes Path 1.10 +15 -1 src/sys/kern/tty_pts.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 10:14:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F35DC16A416; Fri, 29 Sep 2006 10:14:37 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7447743D46; Fri, 29 Sep 2006 10:14:37 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TAEbLF055283; Fri, 29 Sep 2006 10:14:37 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TAEbKl055282; Fri, 29 Sep 2006 10:14:37 GMT (envelope-from ru) Message-Id: <200609291014.k8TAEbKl055282@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 10:14:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 10:14:38 -0000 ru 2006-09-29 10:14:37 UTC FreeBSD src repository Modified files: . UPDATING Log: Belatedly document the size change of "struct x?tcpcb". Revision Changes Path 1.458 +5 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Fri Sep 29 10:15:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D2E516A407; Fri, 29 Sep 2006 10:15:52 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28BDA43D53; Fri, 29 Sep 2006 10:15:52 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TAFqP9055418; Fri, 29 Sep 2006 10:15:52 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TAFp9D055417; Fri, 29 Sep 2006 10:15:51 GMT (envelope-from maho) Message-Id: <200609291015.k8TAFp9D055417@repoman.freebsd.org> From: Maho Nakata Date: Fri, 29 Sep 2006 10:15:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/openoffice.org-2.0 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 10:15:52 -0000 maho 2006-09-29 10:15:51 UTC FreeBSD ports repository Modified files: editors/openoffice.org-2.0 Makefile distinfo Log: Update to 2.0.4rc3 Revision Changes Path 1.258 +4 -4 ports/editors/openoffice.org-2.0/Makefile 1.94 +3 -3 ports/editors/openoffice.org-2.0/distinfo From owner-cvs-all@FreeBSD.ORG Fri Sep 29 10:18:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B80116A416; Fri, 29 Sep 2006 10:18:34 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBEC443D46; Fri, 29 Sep 2006 10:18:33 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TAIXIf055607; Fri, 29 Sep 2006 10:18:33 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TAIXM1055606; Fri, 29 Sep 2006 10:18:33 GMT (envelope-from miwi) Message-Id: <200609291018.k8TAIXM1055606@repoman.freebsd.org> From: Martin Wilke Date: Fri, 29 Sep 2006 10:18:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/ftp/ncftpd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 10:18:34 -0000 miwi 2006-09-29 10:18:33 UTC FreeBSD ports repository Modified files: ftp/ncftpd Makefile Log: - Fix Backup mirror Submitted by: pointyhat via kris Revision Changes Path 1.14 +2 -3 ports/ftp/ncftpd/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 10:22:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B393C16A49E; Fri, 29 Sep 2006 10:22:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from unixfreunde.net (unixfreunde.de [85.214.35.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4659243D49; Fri, 29 Sep 2006 10:22:35 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: by unixfreunde.net (Postfix, from userid 65534) id 05FC550A17; Fri, 29 Sep 2006 12:22:34 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.1.3-gr1 (2006-06-01) on unixfreunde.de X-Spam-Level: * X-Spam-Status: No, score=1.5 required=5.0 tests=AWL, BAYES_00, FORGED_RCVD_HELO, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.1.3-gr1 Received: from mwilke.ath.cx (dslb-082-083-128-141.pools.arcor-ip.net [82.83.128.141]) by unixfreunde.net (Postfix) with ESMTP id 8E6AC509E4; Fri, 29 Sep 2006 12:22:33 +0200 (CEST) Date: Fri, 29 Sep 2006 12:22:33 +0200 From: Martin Wilke To: Martin Wilke Message-ID: <20060929122233.1471ef42@mwilke.ath.cx> In-Reply-To: <200609291018.k8TAIXM1055606@repoman.freebsd.org> References: <200609291018.k8TAIXM1055606@repoman.freebsd.org> X-Mailer: Sylpheed-Claws 2.5.2 (GTK+ 2.10.4; i386-portbld-freebsd7.0) User-Agent: miwi@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/ftp/ncftpd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 10:22:35 -0000 On Fri, 29 Sep 2006 10:18:33 +0000 (UTC) Martin Wilke wrote: Sorry, the problem is distfile mistake, i fix this. > miwi 2006-09-29 10:18:33 UTC > > FreeBSD ports repository > > Modified files: > ftp/ncftpd Makefile > Log: > - Fix Backup mirror > > Submitted by: pointyhat via kris > > Revision Changes Path > 1.14 +2 -3 ports/ftp/ncftpd/Makefile > _______________________________________________ > cvs-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-ports > To unsubscribe, send any mail to "cvs-ports-unsubscribe@freebsd.org" -- Martin Wilke | irc.unixfreunde.de #bsd miwi@FreeBSD.org | miwi@unixfreunde.de FreeBSD Commiter | Power to Serve From owner-cvs-all@FreeBSD.ORG Fri Sep 29 10:27:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9960A16A403; Fri, 29 Sep 2006 10:27:17 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5616643D45; Fri, 29 Sep 2006 10:27:17 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TARH2P056047; Fri, 29 Sep 2006 10:27:17 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TARH3h056046; Fri, 29 Sep 2006 10:27:17 GMT (envelope-from sat) Message-Id: <200609291027.k8TARH3h056046@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 29 Sep 2006 10:27:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/p5-Net-Packet Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 10:27:17 -0000 sat 2006-09-29 10:27:17 UTC FreeBSD ports repository Modified files: net/p5-Net-Packet Makefile Log: - amd64 and alpha are now claimed to be supported, but not big endian archs just yet Inspired by: kris Revision Changes Path 1.5 +2 -1 ports/net/p5-Net-Packet/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 10:30:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72E5D16A416; Fri, 29 Sep 2006 10:30:16 +0000 (UTC) (envelope-from anholt@FreeBSD.org) Received: from vonnegut.anholt.net (69-30-77-85.dq1sn.easystreet.com [69.30.77.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9320B43D46; Fri, 29 Sep 2006 10:30:15 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by vonnegut.anholt.net (8.13.6/8.13.6) with ESMTP id k8SHwvfK006676; Thu, 28 Sep 2006 10:59:12 -0700 (PDT) (envelope-from anholt@FreeBSD.org) From: Eric Anholt To: Joel Dahl In-Reply-To: <1159428160.671.35.camel@localhost> References: <200609270638.k8R6csJ0044991@repoman.freebsd.org> <1159423952.671.11.camel@localhost> <1159428160.671.35.camel@localhost> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-+33X+IFlYHGitWJswzD6" Date: Thu, 28 Sep 2006 00:32:18 -0700 Message-Id: <1159428738.960.1.camel@vonnegut> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci agp_i810.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 10:30:16 -0000 --=-+33X+IFlYHGitWJswzD6 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2006-09-28 at 09:22 +0200, Joel Dahl wrote: > On Thu, 2006-09-28 at 08:12 +0200, Joel Dahl wrote: > > On Wed, 2006-09-27 at 06:38 +0000, Eric Anholt wrote: > > > anholt 2006-09-27 06:38:54 UTC > > >=20 > > > FreeBSD src repository > > >=20 > > > Modified files: > > > sys/pci agp_i810.c=20 > > > Log: > > > Add support for 945G/GM AGP chipsets. > > > =20 > > > The key problem was that the aperture size detection using the MSAC= bit > > > doesn't work -- the bit appears to be set even when it shouldn't be= . Linux > > > takes a different approach, testing for a bit of the GMADR (PCIR_BA= R(2)) being > > > set. However, as I don't think that's a safe way to test aperture = size, we > > > just allocate the resource and check its size. This also pointed o= ut that > > > agp_generic_attach hadn't been allocating our aperture resource, wh= ich may > > > have caused problems in some cases. > > > =20 > > > Also corrected is a minor copy-and-pasteo in an error case. > >=20 > > Hmm, I have a HP NX7400 laptop with an Intel i945 chipset, and it's > > running a very fresh current (GENERIC, no changes made whatsoever). > > However, I see the following in my dmesg when I start X (I *think* it > > started appearing just after your commit to agp_i810.c): >=20 > Ok, I can confirm that reverting back to revision 1.38 of agp_i810.c > fixes the problem. Right, with no AGP support, you don't get DRM support, so you don't hit the path in the DRM with the witness warning. I'm not sure what to do about that warning yet :/ --=20 Eric Anholt anholt@FreeBSD.org eric@anholt.net eric.anholt@intel.com --=-+33X+IFlYHGitWJswzD6 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQBFG3qBHUdvYGzw6vcRAs+EAJ0QzZj1/rONCxSJSKaHLjEIayYh6wCeO/bk FA8jEcWebTovnDdGztIz5C4= =zON5 -----END PGP SIGNATURE----- --=-+33X+IFlYHGitWJswzD6-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 10:39:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F85116A407; Fri, 29 Sep 2006 10:39:24 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C38D943D4C; Fri, 29 Sep 2006 10:39:23 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TAdN21056690; Fri, 29 Sep 2006 10:39:23 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TAdNTa056689; Fri, 29 Sep 2006 10:39:23 GMT (envelope-from bms) Message-Id: <200609291039.k8TAdNTa056689@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 29 Sep 2006 10:39:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src ObsoleteFiles.inc UPDATING src/usr.sbin Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 10:39:24 -0000 bms 2006-09-29 10:39:23 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc UPDATING usr.sbin Makefile Log: Remove mrouted and its utilities from the base system. They may now be obtained from ports. Discussed with: fenner, net@ Revision Changes Path 1.53 +9 -0 src/ObsoleteFiles.inc 1.459 +3 -0 src/UPDATING 1.361 +0 -1 src/usr.sbin/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 10:40:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2161516A49E; Fri, 29 Sep 2006 10:40:54 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 594EA43D5E; Fri, 29 Sep 2006 10:40:53 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TAerQf057047; Fri, 29 Sep 2006 10:40:53 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TAerBu057046; Fri, 29 Sep 2006 10:40:53 GMT (envelope-from bms) Message-Id: <200609291040.k8TAerBu057046@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 29 Sep 2006 10:40:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE VERSION callout.c cfparse.y config.c defs.h dvmrp.h icmp.c igmp.c igmpv2.h inet.c ipip.c kern.c main.c map-mbone.8 mapper.c mrinfo.8 mrinfo.c mrouted.8 mrouted.conf mtrace.8 mtrace.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 10:40:54 -0000 bms 2006-09-29 10:40:53 UTC FreeBSD src repository Removed files: usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE VERSION callout.c cfparse.y config.c defs.h dvmrp.h icmp.c igmp.c igmpv2.h inet.c ipip.c kern.c main.c map-mbone.8 mapper.c mrinfo.8 mrinfo.c mrouted.8 mrouted.conf mtrace.8 mtrace.c mtrace.h pathnames.h prune.c prune.h route.c route.h rsrr.c rsrr.h rsrr_var.h vif.c vif.h usr.sbin/mrouted/common Makefile usr.sbin/mrouted/map-mbone Makefile usr.sbin/mrouted/mrinfo Makefile usr.sbin/mrouted/mrouted Makefile usr.sbin/mrouted/mtrace Makefile usr.sbin/mrouted/testrsrr Makefile testrsrr.c Log: Remove mrouted from -CURRENT. Discussed with: fenner, net@ Revision Changes Path 1.2 +0 -48 src/usr.sbin/mrouted/LICENSE (dead) 1.6 +0 -5 src/usr.sbin/mrouted/Makefile (dead) 1.9 +0 -7 src/usr.sbin/mrouted/Makefile.inc (dead) 1.4 +0 -493 src/usr.sbin/mrouted/RELEASE (dead) 1.2 +0 -1 src/usr.sbin/mrouted/VERSION (dead) 1.13 +0 -250 src/usr.sbin/mrouted/callout.c (dead) 1.15 +0 -927 src/usr.sbin/mrouted/cfparse.y (dead) 1.9 +0 -12 src/usr.sbin/mrouted/common/Makefile (dead) 1.17 +0 -127 src/usr.sbin/mrouted/config.c (dead) 1.15 +0 -365 src/usr.sbin/mrouted/defs.h (dead) 1.10 +0 -172 src/usr.sbin/mrouted/dvmrp.h (dead) 1.2 +0 -225 src/usr.sbin/mrouted/icmp.c (dead) 1.17 +0 -447 src/usr.sbin/mrouted/igmp.c (dead) 1.2 +0 -42 src/usr.sbin/mrouted/igmpv2.h (dead) 1.12 +0 -235 src/usr.sbin/mrouted/inet.c (dead) 1.2 +0 -145 src/usr.sbin/mrouted/ipip.c (dead) 1.13 +0 -344 src/usr.sbin/mrouted/kern.c (dead) 1.22 +0 -1064 src/usr.sbin/mrouted/main.c (dead) 1.12 +0 -96 src/usr.sbin/mrouted/map-mbone.8 (dead) 1.14 +0 -15 src/usr.sbin/mrouted/map-mbone/Makefile (dead) 1.17 +0 -1048 src/usr.sbin/mrouted/mapper.c (dead) 1.16 +0 -91 src/usr.sbin/mrouted/mrinfo.8 (dead) 1.19 +0 -636 src/usr.sbin/mrouted/mrinfo.c (dead) 1.18 +0 -16 src/usr.sbin/mrouted/mrinfo/Makefile (dead) 1.33 +0 -665 src/usr.sbin/mrouted/mrouted.8 (dead) 1.10 +0 -44 src/usr.sbin/mrouted/mrouted.conf (dead) 1.17 +0 -19 src/usr.sbin/mrouted/mrouted/Makefile (dead) 1.25 +0 -589 src/usr.sbin/mrouted/mtrace.8 (dead) 1.22 +0 -3177 src/usr.sbin/mrouted/mtrace.c (dead) 1.2 +0 -87 src/usr.sbin/mrouted/mtrace.h (dead) 1.15 +0 -13 src/usr.sbin/mrouted/mtrace/Makefile (dead) 1.8 +0 -26 src/usr.sbin/mrouted/pathnames.h (dead) 1.19 +0 -2619 src/usr.sbin/mrouted/prune.c (dead) 1.11 +0 -152 src/usr.sbin/mrouted/prune.h (dead) 1.13 +0 -1475 src/usr.sbin/mrouted/route.c (dead) 1.10 +0 -53 src/usr.sbin/mrouted/route.h (dead) 1.10 +0 -485 src/usr.sbin/mrouted/rsrr.c (dead) 1.4 +0 -139 src/usr.sbin/mrouted/rsrr.h (dead) 1.2 +0 -41 src/usr.sbin/mrouted/rsrr_var.h (dead) 1.9 +0 -13 src/usr.sbin/mrouted/testrsrr/Makefile (dead) 1.6 +0 -125 src/usr.sbin/mrouted/testrsrr/testrsrr.c (dead) 1.16 +0 -1862 src/usr.sbin/mrouted/vif.c (dead) 1.11 +0 -237 src/usr.sbin/mrouted/vif.h (dead) From owner-cvs-all@FreeBSD.ORG Fri Sep 29 10:48:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58DC416A4B3; Fri, 29 Sep 2006 10:48:25 +0000 (UTC) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C41AE43D5F; Fri, 29 Sep 2006 10:48:23 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TAmIBl057409; Fri, 29 Sep 2006 10:48:18 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TAmISP057408; Fri, 29 Sep 2006 10:48:18 GMT (envelope-from lioux) Message-Id: <200609291048.k8TAmISP057408@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Fri, 29 Sep 2006 10:48:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net-p2p/mldonkey Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 10:48:25 -0000 lioux 2006-09-29 10:48:18 UTC FreeBSD ports repository Modified files: net-p2p/mldonkey Makefile Log: o Remove PKGNAMESUFFIX=-devel o Bump PORTREVISION Submitted by: ale Revision Changes Path 1.40 +3 -2 ports/net-p2p/mldonkey/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 11:02:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24F0D16A407; Fri, 29 Sep 2006 11:02:08 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3FFF43D46; Fri, 29 Sep 2006 11:02:07 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TB27tk058069; Fri, 29 Sep 2006 11:02:07 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TB27LK058068; Fri, 29 Sep 2006 11:02:07 GMT (envelope-from sat) Message-Id: <200609291102.k8TB27LK058068@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 29 Sep 2006 11:02:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/eyeos Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 11:02:08 -0000 sat 2006-09-29 11:02:07 UTC FreeBSD ports repository Modified files: www/eyeos Makefile distinfo pkg-plist Log: - Update to 0.9.1-1 Revision Changes Path 1.6 +1 -1 ports/www/eyeos/Makefile 1.6 +3 -3 ports/www/eyeos/distinfo 1.6 +0 -1 ports/www/eyeos/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Sep 29 11:05:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F63D16A40F; Fri, 29 Sep 2006 11:05:41 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBB8A43D49; Fri, 29 Sep 2006 11:05:40 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TB5eIh059421; Fri, 29 Sep 2006 11:05:40 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TB5esf059420; Fri, 29 Sep 2006 11:05:40 GMT (envelope-from maho) Message-Id: <200609291105.k8TB5esf059420@repoman.freebsd.org> From: Maho Nakata Date: Fri, 29 Sep 2006 11:05:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/ooo-build Makefile ports/editors/openoffice.org-2.0 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 11:05:41 -0000 maho 2006-09-29 11:05:40 UTC FreeBSD ports repository Modified files: editors/ooo-build Makefile editors/openoffice.org-2.0 Makefile Log: Build fix for when ooo-build and openoffice.org-2.0 ports expect different source tarball. Generally both port expect the same tarball, but for RCs, they can be different. This fix is bit more flexible than hardcoding. Revision Changes Path 1.19 +1 -0 ports/editors/ooo-build/Makefile 1.259 +3 -5 ports/editors/openoffice.org-2.0/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 11:07:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEC5216A403; Fri, 29 Sep 2006 11:07:56 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB46E43D46; Fri, 29 Sep 2006 11:07:56 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TB7uKF059534; Fri, 29 Sep 2006 11:07:56 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TB7urI059533; Fri, 29 Sep 2006 11:07:56 GMT (envelope-from maho) Message-Id: <200609291107.k8TB7urI059533@repoman.freebsd.org> From: Maho Nakata Date: Fri, 29 Sep 2006 11:07:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/ooo-build Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 11:07:57 -0000 maho 2006-09-29 11:07:56 UTC FreeBSD ports repository Modified files: editors/ooo-build Makefile Log: Another fix.. OOOTAG must also be specified. Pointy hat to: myself Revision Changes Path 1.20 +1 -0 ports/editors/ooo-build/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 11:14:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9535416A407; Fri, 29 Sep 2006 11:14:14 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A4B643D5E; Fri, 29 Sep 2006 11:14:06 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TBE6PN059935; Fri, 29 Sep 2006 11:14:06 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TBE6vZ059934; Fri, 29 Sep 2006 11:14:06 GMT (envelope-from bms) Message-Id: <200609291114.k8TBE6vZ059934@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 29 Sep 2006 11:14:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net Makefile ports/net/pimdd Makefile distinfo pkg-descr pkg-plist ports/net/pimdd/files patch-Makefile patch-config.c patch-debug.c patch-pim.c patch-pimdd.h patch-trace.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 11:14:14 -0000 bms 2006-09-29 11:14:06 UTC FreeBSD ports repository (src committer) Modified files: net Makefile Added files: net/pimdd Makefile distinfo pkg-descr pkg-plist net/pimdd/files patch-Makefile patch-config.c patch-debug.c patch-pim.c patch-pimdd.h patch-trace.c Log: Add new port for UOregon's PIM dense-mode multicast routing daemon for IPv4. Revision Changes Path 1.1744 +1 -0 ports/net/Makefile 1.1 +34 -0 ports/net/pimdd/Makefile (new) 1.1 +3 -0 ports/net/pimdd/distinfo (new) 1.1 +11 -0 ports/net/pimdd/files/patch-Makefile (new) 1.1 +20 -0 ports/net/pimdd/files/patch-config.c (new) 1.1 +28 -0 ports/net/pimdd/files/patch-debug.c (new) 1.1 +18 -0 ports/net/pimdd/files/patch-pim.c (new) 1.1 +19 -0 ports/net/pimdd/files/patch-pimdd.h (new) 1.1 +20 -0 ports/net/pimdd/files/patch-trace.c (new) 1.1 +5 -0 ports/net/pimdd/pkg-descr (new) 1.1 +7 -0 ports/net/pimdd/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Sep 29 11:14:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50BF316A597; Fri, 29 Sep 2006 11:14:20 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 017A343D46; Fri, 29 Sep 2006 11:14:15 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TBEF7h059987; Fri, 29 Sep 2006 11:14:15 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TBEFx4059986; Fri, 29 Sep 2006 11:14:15 GMT (envelope-from bms) Message-Id: <200609291114.k8TBEFx4059986@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 29 Sep 2006 11:14:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 11:14:20 -0000 bms 2006-09-29 11:14:15 UTC FreeBSD ports repository (src committer) Modified files: . modules Log: pimdd --> ports/net/pimdd Revision Changes Path 1.16305 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Sep 29 11:18:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B91AF16A403; Fri, 29 Sep 2006 11:18:01 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7613843D46; Fri, 29 Sep 2006 11:18:01 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TBI1Ft060143; Fri, 29 Sep 2006 11:18:01 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TBI1ak060141; Fri, 29 Sep 2006 11:18:01 GMT (envelope-from maho) Message-Id: <200609291118.k8TBI1ak060141@repoman.freebsd.org> From: Maho Nakata Date: Fri, 29 Sep 2006 11:18:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/ooo-build Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 11:18:01 -0000 maho 2006-09-29 11:18:01 UTC FreeBSD ports repository Modified files: editors/ooo-build Makefile Log: Another mistake... Pointy hat to: myself Revision Changes Path 1.21 +1 -1 ports/editors/ooo-build/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 11:23:02 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A344A16A47E for ; Fri, 29 Sep 2006 11:23:02 +0000 (UTC) (envelope-from buhnux@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCDFE43D49 for ; Fri, 29 Sep 2006 11:22:59 +0000 (GMT) (envelope-from buhnux@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so1143156pye for ; Fri, 29 Sep 2006 04:22:59 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=LJPWDVeLE7GQAIkk8kPt9q3qHkbJLzqbl7TrVHxDaJGVho8I+76L2icLlqhQ0t/zTr/CER2Sr2dNTs2TAmpoCUTH2CSjpE75yDquUaD+MkwxteqfMdAs8nIiC/IHizkVYw3LrWhiI7eR7ATfXd3KrWKwWULeiOgQLIXbHh3ZG5k= Received: by 10.35.103.1 with SMTP id f1mr214505pym; Fri, 29 Sep 2006 04:22:59 -0700 (PDT) Received: by 10.35.91.20 with HTTP; Fri, 29 Sep 2006 04:22:58 -0700 (PDT) Message-ID: Date: Fri, 29 Sep 2006 07:22:58 -0400 From: "Michael Johnson" Sender: buhnux@gmail.com To: "Kris Kennaway" In-Reply-To: <20060929004121.GA60887@xor.obsecurity.org> MIME-Version: 1.0 References: <200609250047.k8P0leLL009808@repoman.freebsd.org> <20060925005252.GA50714@xor.obsecurity.org> <20060929004121.GA60887@xor.obsecurity.org> X-Google-Sender-Auth: 3f3cefd178a5d3fa Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: cvs-ports@freebsd.org, ports-committers@freebsd.org, shaun@freebsd.org, cvs-all@freebsd.org, Mario Sergio Fujikawa Ferreira Subject: Re: cvs commit: ports/multimedia/ffmpeg-devel Makefile ports/multimedia/ffmpeg-devel/files patch-libavcodec_x264.c patch-libavformat_movenc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 11:23:02 -0000 On 9/28/06, Kris Kennaway wrote: > > On Sun, Sep 24, 2006 at 08:52:52PM -0400, Kris Kennaway wrote: > > On Mon, Sep 25, 2006 at 12:47:40AM +0000, Mario Sergio Fujikawa Ferreira > wrote: > > > lioux 2006-09-25 00:47:40 UTC > > > > > > FreeBSD ports repository > > > > > > Modified files: > > > multimedia/ffmpeg-devel Makefile > > > multimedia/ffmpeg-devel/files patch-libavcodec_x264.c > > > Added files: > > > multimedia/ffmpeg-devel/files patch-libavformat_movenc.c > > > Log: > > > Fix build on 4.x: fix devel/sdl header include > > > > > > PR: 102431 > > > Submitted by: Shaun Amott > > > > Are you sure this is still correct after the recent SDL changes? > > > > Kris > > Ping. It appears to be broken. > > Kris > > From owner-cvs-all@FreeBSD.ORG Fri Sep 29 11:23:51 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B9F216A415 for ; Fri, 29 Sep 2006 11:23:51 +0000 (UTC) (envelope-from buhnux@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id E726043D45 for ; Fri, 29 Sep 2006 11:23:46 +0000 (GMT) (envelope-from buhnux@gmail.com) Received: by py-out-1112.google.com with SMTP id c63so1111710pyc for ; Fri, 29 Sep 2006 04:23:46 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=HtuR/dsdY1jgwEamVR6nzjpN0mtPq3neEnq7qdse9yiJZSmRfKzjT4E+q1gwXLJ+qgclJKbcp4FeHLI8aIiflnzyXOAk0S1jtCKONvg+5esrsrmFjd6SGl8dOgJaTsv7hctUtFo8HigPyiSAjv6SN8p0XiIPp9wnLNrxWLJVSYc= Received: by 10.35.60.16 with SMTP id n16mr213597pyk; Fri, 29 Sep 2006 04:23:46 -0700 (PDT) Received: by 10.35.91.20 with HTTP; Fri, 29 Sep 2006 04:23:46 -0700 (PDT) Message-ID: Date: Fri, 29 Sep 2006 07:23:46 -0400 From: "Michael Johnson" Sender: buhnux@gmail.com To: "Kris Kennaway" In-Reply-To: MIME-Version: 1.0 References: <200609250047.k8P0leLL009808@repoman.freebsd.org> <20060925005252.GA50714@xor.obsecurity.org> <20060929004121.GA60887@xor.obsecurity.org> X-Google-Sender-Auth: beb8b0992c57ba9d Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: cvs-ports@freebsd.org, ports-committers@freebsd.org, shaun@freebsd.org, cvs-all@freebsd.org, Mario Sergio Fujikawa Ferreira Subject: Re: cvs commit: ports/multimedia/ffmpeg-devel Makefile ports/multimedia/ffmpeg-devel/files patch-libavcodec_x264.c patch-libavformat_movenc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 11:23:51 -0000 On 9/29/06, Michael Johnson wrote: > > > > On 9/28/06, Kris Kennaway wrote: > > > > On Sun, Sep 24, 2006 at 08:52:52PM -0400, Kris Kennaway wrote: > > > On Mon, Sep 25, 2006 at 12:47:40AM +0000, Mario Sergio Fujikawa > > Ferreira wrote: > > > > lioux 2006-09-25 00:47:40 UTC > > > > > > > > FreeBSD ports repository > > > > > > > > Modified files: > > > > multimedia/ffmpeg-devel Makefile > > > > multimedia/ffmpeg-devel/files patch-libavcodec_x264.c > > > > Added files: > > > > multimedia/ffmpeg-devel/files patch-libavformat_movenc.c > > > > Log: > > > > Fix build on 4.x: fix devel/sdl header include > > > > > > > > PR: 102431 > > > > Submitted by: Shaun Amott > > > > > > Are you sure this is still correct after the recent SDL changes? > > > > > > Kris > > > > Ping. It appears to be broken. > > patch-libavcodec_x264.c needs to be readded. It's there but it's empty. Kris > > > > > From owner-cvs-all@FreeBSD.ORG Fri Sep 29 11:39:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9999516A407; Fri, 29 Sep 2006 11:39:48 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D64F43D58; Fri, 29 Sep 2006 11:39:48 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TBdmeY061128; Fri, 29 Sep 2006 11:39:48 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TBdmTL061127; Fri, 29 Sep 2006 11:39:48 GMT (envelope-from sat) Message-Id: <200609291139.k8TBdmTL061127@repoman.freebsd.org> From: Andrew Pantyukhin Date: Fri, 29 Sep 2006 11:39:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/eyeos-themes Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 11:39:48 -0000 sat 2006-09-29 11:39:48 UTC FreeBSD ports repository Modified files: www/eyeos-themes Makefile distinfo pkg-plist Log: - Add a new theme (fromX) - Add create-plist target Revision Changes Path 1.4 +20 -1 ports/www/eyeos-themes/Makefile 1.4 +3 -0 ports/www/eyeos-themes/distinfo 1.4 +78 -0 ports/www/eyeos-themes/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Sep 29 12:58:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02F9016A40F; Fri, 29 Sep 2006 12:58:49 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C302143D46; Fri, 29 Sep 2006 12:58:48 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TCwmkp075362; Fri, 29 Sep 2006 12:58:48 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TCwmME075361; Fri, 29 Sep 2006 12:58:48 GMT (envelope-from rafan) Message-Id: <200609291258.k8TCwmME075361@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 29 Sep 2006 12:58:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/guichan Makefile distinfo pkg-plist ports/devel/guichan/files patch-configure patch-include__guichan__sdl__Makefile.in patch-src__sdl__sdlimageloader.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 12:58:49 -0000 rafan 2006-09-29 12:58:48 UTC FreeBSD ports repository Modified files: devel/guichan Makefile distinfo pkg-plist Removed files: devel/guichan/files patch-configure patch-include__guichan__sdl__Makefile.in patch-src__sdl__sdlimageloader.cpp Log: - Update to 0.5.0 - OPTIONS'ify PR: ports/103710 Submitted by: Marcus von Appen (maintainer) Revision Changes Path 1.9 +50 -18 ports/devel/guichan/Makefile 1.3 +3 -3 ports/devel/guichan/distinfo 1.2 +0 -40 ports/devel/guichan/files/patch-configure (dead) 1.2 +0 -12 ports/devel/guichan/files/patch-include__guichan__sdl__Makefile.in (dead) 1.2 +0 -11 ports/devel/guichan/files/patch-src__sdl__sdlimageloader.cpp (dead) 1.5 +35 -17 ports/devel/guichan/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Sep 29 12:59:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FBBD16A40F; Fri, 29 Sep 2006 12:59:40 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAD8F43D46; Fri, 29 Sep 2006 12:59:39 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TCxd9W075429; Fri, 29 Sep 2006 12:59:39 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TCxdj3075428; Fri, 29 Sep 2006 12:59:39 GMT (envelope-from rafan) Message-Id: <200609291259.k8TCxdj3075428@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 29 Sep 2006 12:59:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/diameter Makefile ports/games/diameter/files patch-src-gra-2d-gui.cpp patch-src-gra-2d-gui.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 12:59:40 -0000 rafan 2006-09-29 12:59:39 UTC FreeBSD ports repository Modified files: games/diameter Makefile Added files: games/diameter/files patch-src-gra-2d-gui.cpp patch-src-gra-2d-gui.h Log: - Chase devel/guichan 0.5.0 update PR: ports/103686 Submitted by: Dmitry Marakasov (maintainer) Revision Changes Path 1.3 +3 -1 ports/games/diameter/Makefile 1.1 +25 -0 ports/games/diameter/files/patch-src-gra-2d-gui.cpp (new) 1.1 +19 -0 ports/games/diameter/files/patch-src-gra-2d-gui.h (new) From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:00:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF75016A492; Fri, 29 Sep 2006 13:00:45 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78CEC43D46; Fri, 29 Sep 2006 13:00:45 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TD0jaJ075557; Fri, 29 Sep 2006 13:00:45 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TD0jVv075556; Fri, 29 Sep 2006 13:00:45 GMT (envelope-from rafan) Message-Id: <200609291300.k8TD0jVv075556@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 29 Sep 2006 13:00:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/tmw Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:00:45 -0000 rafan 2006-09-29 13:00:45 UTC FreeBSD ports repository Modified files: games/tmw Makefile distinfo pkg-plist Log: - Update to 0.0.21 - Require devel/guichan >= 0.5.0 - Unbreak on 4.x PR: ports/103709 Submitted by: Marcus von Appen (maintainer) Revision Changes Path 1.8 +11 -11 ports/games/tmw/Makefile 1.5 +3 -3 ports/games/tmw/distinfo 1.4 +141 -1 ports/games/tmw/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:12:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 221BA16A40F; Fri, 29 Sep 2006 13:12:40 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F64943D53; Fri, 29 Sep 2006 13:12:39 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDCd78077351; Fri, 29 Sep 2006 13:12:39 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDCdsM077350; Fri, 29 Sep 2006 13:12:39 GMT (envelope-from andre) Message-Id: <200609291312.k8TDCdsM077350@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 13:12:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:12:40 -0000 andre 2006-09-29 13:12:38 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Handle all error cases from bus_dmamap_load_mbuf_sg(). Those are: - EFBIG means the mbuf chain was too long and bus_dma ran out of segments. Defragment the mbuf chain and try again. (Already existed, not changed.) - ENOMEM means bus_dma could not obtain enough bounce buffers at this point in time. Defer sending and try again later. - All other errors, in particular EINVAL, are fatal and prevent the mbuf chain from ever going through. Drop it and report error. - Checking (nsegs == 0) is unnecessary as bus_dmamap_load_mbuf_sg() always reports an error if it is < 1. This prevents broken packets from clogging the interface queue indefinately. Discussed with: scottl Reviewed by: jfv Revision Changes Path 1.148 +21 -5 src/sys/dev/em/if_em.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:17:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C6D916A412; Fri, 29 Sep 2006 13:17:17 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59D8A43D66; Fri, 29 Sep 2006 13:17:16 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDHGI9077629; Fri, 29 Sep 2006 13:17:16 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDHGRq077628; Fri, 29 Sep 2006 13:17:16 GMT (envelope-from andre) Message-Id: <200609291317.k8TDHGRq077628@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 13:17:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:17:17 -0000 andre 2006-09-29 13:17:16 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Only advertize IFCAP_TSO4 capabilities. IPv6 is not yet supported. Reviewed by: jfv Revision Changes Path 1.149 +4 -4 src/sys/dev/em/if_em.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:17:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6B1A16A4C2; Fri, 29 Sep 2006 13:17:27 +0000 (UTC) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 542B343D5A; Fri, 29 Sep 2006 13:17:27 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDHR7u077682; Fri, 29 Sep 2006 13:17:27 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDHRAj077681; Fri, 29 Sep 2006 13:17:27 GMT (envelope-from roam) Message-Id: <200609291317.k8TDHRAj077681@repoman.freebsd.org> From: Peter Pentchev Date: Fri, 29 Sep 2006 13:17:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/audio/p5-Net-FreeDB Makefile distinfo ports/audio/p5-Net-FreeDB/files perl-5005.patch X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:17:28 -0000 roam 2006-09-29 13:17:27 UTC FreeBSD ports repository Modified files: audio/p5-Net-FreeDB Makefile distinfo Removed files: audio/p5-Net-FreeDB/files perl-5005.patch Log: Update to Net::FreeDB 0.08 - a fully official release this time, after David Shultz kindly added me to PAUSE as a module co-maintainer. Since this port depends on File::Temp now, drop all vestiges of support for Perl 5.005. Revision Changes Path 1.5 +5 -4 ports/audio/p5-Net-FreeDB/Makefile 1.5 +3 -3 ports/audio/p5-Net-FreeDB/distinfo 1.3 +0 -80 ports/audio/p5-Net-FreeDB/files/perl-5005.patch (dead) From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:26:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C74916A40F; Fri, 29 Sep 2006 13:26:09 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2ECE43D49; Fri, 29 Sep 2006 13:26:08 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 7037046B82; Fri, 29 Sep 2006 09:26:08 -0400 (EDT) Date: Fri, 29 Sep 2006 14:26:08 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Bruce M Simpson In-Reply-To: <200609291040.k8TAerBu057046@repoman.freebsd.org> Message-ID: <20060929142230.B70454@fledge.watson.org> References: <200609291040.k8TAerBu057046@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE VERSION callout.c cfparse.y config.c defs.h dvmrp.h icmp.c igmp.c igmpv2.h inet.c ipip.c kern.c main.c map-mbone.8 mapper.c mrinfo.8 mrinfo.c mrouted.8 mrouted.conf mtrace.8 mtrace.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:26:09 -0000 On Fri, 29 Sep 2006, Bruce M Simpson wrote: ... > Remove mrouted and its utilities from the base system. > They may now be obtained from ports. > > Discussed with: fenner, net@ ... > Removed files: > usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE > VERSION callout.c cfparse.y config.c > defs.h dvmrp.h icmp.c igmp.c igmpv2.h > inet.c ipip.c kern.c main.c map-mbone.8 > mapper.c mrinfo.8 mrinfo.c mrouted.8 > mrouted.conf mtrace.8 mtrace.c mtrace.h > pathnames.h prune.c prune.h route.c > route.h rsrr.c rsrr.h rsrr_var.h vif.c > vif.h > usr.sbin/mrouted/common Makefile > usr.sbin/mrouted/map-mbone Makefile > usr.sbin/mrouted/mrinfo Makefile > usr.sbin/mrouted/mrouted Makefile > usr.sbin/mrouted/mtrace Makefile > usr.sbin/mrouted/testrsrr Makefile testrsrr.c > Log: > Remove mrouted from -CURRENT. > > Discussed with: fenner, net@ When you say "Discussed with: net@", you mean "posted, then waited 24 hours", right? And which port is mrouted in? Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:33:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C120016A403; Fri, 29 Sep 2006 13:33:09 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7A4943D4C; Fri, 29 Sep 2006 13:32:55 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 969085E4B; Fri, 29 Sep 2006 17:32:53 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 742455E11; Fri, 29 Sep 2006 17:32:53 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8TDWsqi004852; Fri, 29 Sep 2006 17:32:54 +0400 (MSD) (envelope-from ru) Date: Fri, 29 Sep 2006 17:32:54 +0400 From: Ruslan Ermilov To: Bruce M Simpson Message-ID: <20060929133254.GA4776@rambler-co.ru> References: <200609291040.k8TAerBu057046@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dDRMvlgZJXvWKvBx" Content-Disposition: inline In-Reply-To: <200609291040.k8TAerBu057046@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE VERSION callout.c cfparse.y config.c defs.h dvmrp.h icmp.c igmp.c igmpv2.h inet.c ipip.c kern.c main.c map-mbone.8 mapper.c mrinfo.8 mrinfo.c mrouted.8 mrouted.conf mtrace.8 mtrace.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:33:09 -0000 --dDRMvlgZJXvWKvBx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 10:40:53AM +0000, Bruce M Simpson wrote: > bms 2006-09-29 10:40:53 UTC >=20 > FreeBSD src repository >=20 > Removed files: > usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE=20 > VERSION callout.c cfparse.y config.c=20 > defs.h dvmrp.h icmp.c igmp.c igmpv2.h=20 > inet.c ipip.c kern.c main.c map-mbone.8=20 > mapper.c mrinfo.8 mrinfo.c mrouted.8=20 > mrouted.conf mtrace.8 mtrace.c mtrace.h=20 > pathnames.h prune.c prune.h route.c=20 > route.h rsrr.c rsrr.h rsrr_var.h vif.c=20 > vif.h=20 > usr.sbin/mrouted/common Makefile=20 > usr.sbin/mrouted/map-mbone Makefile=20 > usr.sbin/mrouted/mrinfo Makefile=20 > usr.sbin/mrouted/mrouted Makefile=20 > usr.sbin/mrouted/mtrace Makefile=20 > usr.sbin/mrouted/testrsrr Makefile testrsrr.c=20 > Log: > Remove mrouted from -CURRENT. > =20 > Discussed with: fenner, net@ > =20 "mrouted" is still known to these files: etc/netstart etc/defaults/rc.conf etc/rc.d/Makefile etc/rc.d/NETWORKING etc/rc.d/mrouted share/man/man4/ip6.4 share/man/man4/man4.i386/wl.4 share/man/man5/rc.conf.5 sys/conf/NOTES sys/dev/wl/if_wl.c sys/netinet/ip_mroute.c sys/netinet/ip_mroute.h sys/netinet6/ip6_mroute.h usr.bin/netstat/mroute.c usr.bin/netstat/mroute6.c usr.sbin/Makefile usr.sbin/crunch/examples/really-big.conf Not all of them should be tweaked, but certainly most of them. Don't underestimate the power of grep(1)! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --dDRMvlgZJXvWKvBx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHSCGqRfpzJluFF4RAu5PAKCeZu8luitBXbg3bGuYjLr4dNfmSgCfbdje GOgi1pcdfJRngePVqsvk0Ds= =Qw7a -----END PGP SIGNATURE----- --dDRMvlgZJXvWKvBx-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:33:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0E9316A40F; Fri, 29 Sep 2006 13:33:34 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 237C643D45; Fri, 29 Sep 2006 13:33:31 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDXV2l078688; Fri, 29 Sep 2006 13:33:31 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDXUnJ078687; Fri, 29 Sep 2006 13:33:30 GMT (envelope-from andre) Message-Id: <200609291333.k8TDXUnJ078687@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 13:33:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:33:34 -0000 andre 2006-09-29 13:33:30 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Change em_tso_setup() to deal with already inserted vlan headers, IP options and add skeleton IPv6 support. The new code structure can also be easily enhanced to support new/more protocols (SCTP) and IP fragmentation in the future. In em_encap() only try to do TSO if 'dotso' is true. Reviewed by: jfv Revision Changes Path 1.150 +120 -36 src/sys/dev/em/if_em.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:39:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2899C16A40F; Fri, 29 Sep 2006 13:39:55 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C587743E3E; Fri, 29 Sep 2006 13:38:13 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDbQIt078875; Fri, 29 Sep 2006 13:37:26 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDbQpW078874; Fri, 29 Sep 2006 13:37:26 GMT (envelope-from andre) Message-Id: <200609291337.k8TDbQpW078874@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 13:37:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:39:55 -0000 andre 2006-09-29 13:37:26 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Change em_transmit_checksum_setup() to deal with already inserted vlan headers, IP options and add skeleton IPv6 support. The new code structure can also be easily enhanced to support new/more protocols (SCTP) in the future. Reviewed by: jfv Revision Changes Path 1.151 +108 -48 src/sys/dev/em/if_em.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:45:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9934F16A412; Fri, 29 Sep 2006 13:45:35 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from out1.smtp.messagingengine.com (out1.smtp.messagingengine.com [66.111.4.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77F2043D5D; Fri, 29 Sep 2006 13:41:16 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id EB92DDADBFF; Fri, 29 Sep 2006 09:40:52 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Fri, 29 Sep 2006 09:40:55 -0400 X-Sasl-enc: 0sLv37Scp/B7QPE0Up6R1yX4nrxYOGA6IhHxV1/oTR9O 1159537254 Received: from [192.168.123.18] (82-35-112-254.cable.ubr07.dals.blueyonder.co.uk [82.35.112.254]) by mail.messagingengine.com (Postfix) with ESMTP id A1850173B6; Fri, 29 Sep 2006 09:40:53 -0400 (EDT) Message-ID: <451D2261.6010001@FreeBSD.org> Date: Fri, 29 Sep 2006 14:40:49 +0100 From: "Bruce M. Simpson" User-Agent: Thunderbird 1.5.0.5 (X11/20060825) MIME-Version: 1.0 To: Ruslan Ermilov References: <200609291040.k8TAerBu057046@repoman.freebsd.org> <20060929133254.GA4776@rambler-co.ru> In-Reply-To: <20060929133254.GA4776@rambler-co.ru> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/mrouted LICENSE Makefile Makefile.inc RELEASE VERSION callout.c cfparse.y config.c defs.h dvmrp.h icmp.c igmp.c igmpv2.h inet.c ipip.c kern.c main.c map-mbone.8 mapper.c mrinfo.8 mrinfo.c mrouted.8 mrouted.conf mtrace.8 mtrace.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:45:35 -0000 Ruslan Ermilov wrote: > ... > Not all of them should be tweaked, but certainly most of them. > Don't underestimate the power of grep(1)! > I'm on it. mrouted may now be obtained from ports/net/mrouted. All the best, BMS From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:46:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAFEB16A5C7; Fri, 29 Sep 2006 13:46:32 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC52743DD4; Fri, 29 Sep 2006 13:44:10 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDi3Uh079290; Fri, 29 Sep 2006 13:44:03 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDi3F4079289; Fri, 29 Sep 2006 13:44:03 GMT (envelope-from cperciva) Message-Id: <200609291344.k8TDi3F4079289@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:44:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/crypto/openssl/crypto/dh dh_key.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:46:32 -0000 cperciva 2006-09-29 13:44:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) crypto/openssl/crypto/dh dh_key.c Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: re (kensmith) Revision Changes Path 1.1.1.9.2.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:47:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B50A816A4AB; Fri, 29 Sep 2006 13:47:02 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B2C443DCD; Fri, 29 Sep 2006 13:44:33 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDiVEk079377; Fri, 29 Sep 2006 13:44:31 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDiVQl079376; Fri, 29 Sep 2006 13:44:31 GMT (envelope-from cperciva) Message-Id: <200609291344.k8TDiVQl079376@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:44:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_1 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/dh dh_key.c src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:47:02 -0000 cperciva 2006-09-29 13:44:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_1) . UPDATING crypto/openssl/crypto/dh dh_key.c sys/conf newvers.sh Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.416.2.22.2.11 +4 -0 src/UPDATING 1.1.1.9.6.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c 1.69.2.11.2.11 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:47:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3964E16A620; Fri, 29 Sep 2006 13:47:04 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E02943E11; Fri, 29 Sep 2006 13:44:45 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDijiT079453; Fri, 29 Sep 2006 13:44:45 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDijRO079452; Fri, 29 Sep 2006 13:44:45 GMT (envelope-from cperciva) Message-Id: <200609291344.k8TDijRO079452@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:44:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/dh dh_key.c src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:47:04 -0000 cperciva 2006-09-29 13:44:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) . UPDATING crypto/openssl/crypto/dh dh_key.c sys/conf newvers.sh Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.416.2.3.2.19 +4 -0 src/UPDATING 1.1.1.9.4.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c 1.69.2.8.2.15 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:47:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7D8016A61D; Fri, 29 Sep 2006 13:47:28 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA0F043D6B; Fri, 29 Sep 2006 13:45:02 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDj2ZI079504; Fri, 29 Sep 2006 13:45:02 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDj1a4079503; Fri, 29 Sep 2006 13:45:01 GMT (envelope-from cperciva) Message-Id: <200609291345.k8TDj1a4079503@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:45:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/crypto/openssl/crypto/dh dh_key.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:47:29 -0000 cperciva 2006-09-29 13:45:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) crypto/openssl/crypto/dh dh_key.c Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Revision Changes Path 1.1.1.8.4.3 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:47:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7216F16A616; Fri, 29 Sep 2006 13:47:41 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFA4E43DAD; Fri, 29 Sep 2006 13:45:43 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDjhZ1079618; Fri, 29 Sep 2006 13:45:43 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDjhpk079617; Fri, 29 Sep 2006 13:45:43 GMT (envelope-from cperciva) Message-Id: <200609291345.k8TDjhpk079617@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:45:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_5 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/dh dh_key.c src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:47:41 -0000 cperciva 2006-09-29 13:45:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_5) . UPDATING crypto/openssl/crypto/dh dh_key.c sys/conf newvers.sh Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.342.2.35.2.7 +4 -0 src/UPDATING 1.1.1.8.4.1.4.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c 1.62.2.21.2.9 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:47:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED1EC16A51F; Fri, 29 Sep 2006 13:47:48 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 683F643E54; Fri, 29 Sep 2006 13:45:59 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDjx9r079690; Fri, 29 Sep 2006 13:45:59 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDjxc8079689; Fri, 29 Sep 2006 13:45:59 GMT (envelope-from cperciva) Message-Id: <200609291345.k8TDjxc8079689@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:45:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_4 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/dh dh_key.c src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:47:49 -0000 cperciva 2006-09-29 13:45:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_4) . UPDATING crypto/openssl/crypto/dh dh_key.c sys/conf newvers.sh Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.342.2.24.2.30 +4 -0 src/UPDATING 1.1.1.8.4.1.2.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c 1.62.2.18.2.26 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:48:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD2F616A97D; Fri, 29 Sep 2006 13:48:15 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94FCB43E8A; Fri, 29 Sep 2006 13:46:11 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDkBSs079771; Fri, 29 Sep 2006 13:46:11 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDkBsd079770; Fri, 29 Sep 2006 13:46:11 GMT (envelope-from cperciva) Message-Id: <200609291346.k8TDkBsd079770@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:46:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_3 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/dh dh_key.c src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:48:16 -0000 cperciva 2006-09-29 13:46:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_3) . UPDATING crypto/openssl/crypto/dh dh_key.c sys/conf newvers.sh Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.342.2.13.2.39 +4 -0 src/UPDATING 1.1.1.8.6.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c 1.62.2.15.2.41 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:48:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D58E16A989; Fri, 29 Sep 2006 13:48:16 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E676B43E36; Fri, 29 Sep 2006 13:46:23 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDkNcR079808; Fri, 29 Sep 2006 13:46:23 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDkNhr079807; Fri, 29 Sep 2006 13:46:23 GMT (envelope-from cperciva) Message-Id: <200609291346.k8TDkNhr079807@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:46:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: Subject: cvs commit: src/crypto/openssl/crypto/dh dh_key.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:48:16 -0000 cperciva 2006-09-29 13:46:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) crypto/openssl/crypto/dh dh_key.c Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Revision Changes Path 1.1.1.1.2.9 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:48:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0D0016A6AF; Fri, 29 Sep 2006 13:48:41 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E3D143E2D; Fri, 29 Sep 2006 13:46:41 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDkfPm079885; Fri, 29 Sep 2006 13:46:41 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDkfdx079884; Fri, 29 Sep 2006 13:46:41 GMT (envelope-from cperciva) Message-Id: <200609291346.k8TDkfdx079884@repoman.freebsd.org> From: Colin Percival Date: Fri, 29 Sep 2006 13:46:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_11 Cc: Subject: cvs commit: src UPDATING src/crypto/openssl/crypto/dh dh_key.c src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:48:42 -0000 cperciva 2006-09-29 13:46:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_4_11) . UPDATING crypto/openssl/crypto/dh dh_key.c sys/conf newvers.sh Log: Correct problem in the 2006-09-28 patch concerning the handling of excessively large DH moduli. Reported by: Steve Kiernan (Juniper SIRT) Security: FreeBSD-SA-06:23.openssl Approved by: so (cperciva) Revision Changes Path 1.73.2.91.2.25 +4 -0 src/UPDATING 1.1.1.1.2.7.6.2 +1 -1 src/crypto/openssl/crypto/dh/dh_key.c 1.44.2.39.2.28 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:49:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE32216A720; Fri, 29 Sep 2006 13:49:01 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7A4243DE4; Fri, 29 Sep 2006 13:47:39 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDld9S079957; Fri, 29 Sep 2006 13:47:39 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDld9N079956; Fri, 29 Sep 2006 13:47:39 GMT (envelope-from andre) Message-Id: <200609291347.k8TDld9N079956@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 13:47:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:49:02 -0000 andre 2006-09-29 13:47:39 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Remove manual vlan header insertion in em_encap(). It is unnecessary as the generic vlan_start() takes care of it when vlan hardware insertion is disabled. In em_set_promisc() add a note that BPF may also be enabled without going into promisc mode. Reviewed by: jfv Revision Changes Path 1.152 +5 -36 src/sys/dev/em/if_em.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 13:56:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB84516A403; Fri, 29 Sep 2006 13:56:47 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B1CB43D8B; Fri, 29 Sep 2006 13:54:07 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TDs4CL080409; Fri, 29 Sep 2006 13:54:04 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TDs42v080408; Fri, 29 Sep 2006 13:54:04 GMT (envelope-from andre) Message-Id: <200609291354.k8TDs42v080408@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 13:54:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 13:56:48 -0000 andre 2006-09-29 13:54:04 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Small style and comment adjustments. Reviewed by: jfv Revision Changes Path 1.153 +6 -4 src/sys/dev/em/if_em.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 14:08:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 326F116A415; Fri, 29 Sep 2006 14:08:54 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9826943D7B; Fri, 29 Sep 2006 14:08:53 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TE8rsO082667; Fri, 29 Sep 2006 14:08:53 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TE8rdE082665; Fri, 29 Sep 2006 14:08:53 GMT (envelope-from ariff) Message-Id: <200609291408.k8TE8rdE082665@repoman.freebsd.org> From: Ariff Abdullah Date: Fri, 29 Sep 2006 14:08:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pcm mixer.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 14:08:54 -0000 ariff 2006-09-29 14:08:53 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm mixer.c Log: Fix pointer dereference before NULL pointer checking. Noticed by: netchild CID: 243889 Found by: Coverity Prevent (TM) Revision Changes Path 1.53 +3 -1 src/sys/dev/sound/pcm/mixer.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 14:44:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5006F16A47B; Fri, 29 Sep 2006 14:44:32 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ACAB43D46; Fri, 29 Sep 2006 14:44:32 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TEiVOY084584; Fri, 29 Sep 2006 14:44:31 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TEiVdJ084583; Fri, 29 Sep 2006 14:44:31 GMT (envelope-from tobez) Message-Id: <200609291444.k8TEiVdJ084583@repoman.freebsd.org> From: Anton Berezin Date: Fri, 29 Sep 2006 14:44:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/p5-Jifty-DBI Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 14:44:32 -0000 tobez 2006-09-29 14:44:31 UTC FreeBSD ports repository Modified files: databases/p5-Jifty-DBI Makefile distinfo pkg-plist Log: Update to 0.25. Revision Changes Path 1.11 +3 -1 ports/databases/p5-Jifty-DBI/Makefile 1.10 +3 -3 ports/databases/p5-Jifty-DBI/distinfo 1.5 +2 -0 ports/databases/p5-Jifty-DBI/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Sep 29 15:20:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4AAB16A40F; Fri, 29 Sep 2006 15:20:51 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4839343D6A; Fri, 29 Sep 2006 15:20:49 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TFKn1W087772; Fri, 29 Sep 2006 15:20:49 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TFKnUJ087771; Fri, 29 Sep 2006 15:20:49 GMT (envelope-from ru) Message-Id: <200609291520.k8TFKnUJ087771@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 15:20:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/du du.1 src/usr.bin/file magic.5 src/usr.bin/find find.1 src/usr.bin/locate/locate locate.1 src/usr.bin/logger logger.1 src/usr.bin/login login.1 src/usr.bin/lorder lorder.1 src/usr.bin/make make.1 ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 15:20:51 -0000 ru 2006-09-29 15:20:48 UTC FreeBSD src repository Modified files: usr.bin/du du.1 usr.bin/file magic.5 usr.bin/find find.1 usr.bin/locate/locate locate.1 usr.bin/logger logger.1 usr.bin/login login.1 usr.bin/lorder lorder.1 usr.bin/make make.1 usr.bin/mktemp mktemp.1 usr.bin/mkuzip mkuzip.8 usr.bin/netstat netstat.1 usr.bin/split split.1 usr.bin/su su.1 usr.bin/time time.1 usr.bin/truncate truncate.1 usr.bin/truss truss.1 usr.bin/vmstat vmstat.8 usr.bin/whois whois.1 usr.bin/xargs xargs.1 usr.bin/xinstall install.1 Log: Markup fixes. Revision Changes Path 1.32 +5 -1 src/usr.bin/du/du.1 1.27 +1 -6 src/usr.bin/file/magic.5 1.79 +2 -1 src/usr.bin/find/find.1 1.34 +8 -6 src/usr.bin/locate/locate/locate.1 1.19 +2 -1 src/usr.bin/logger/logger.1 1.32 +2 -2 src/usr.bin/login/login.1 1.9 +3 -3 src/usr.bin/lorder/lorder.1 1.98 +1 -1 src/usr.bin/make/make.1 1.21 +1 -1 src/usr.bin/mktemp/mktemp.1 1.7 +5 -1 src/usr.bin/mkuzip/mkuzip.8 1.57 +7 -6 src/usr.bin/netstat/netstat.1 1.21 +9 -3 src/usr.bin/split/split.1 1.39 +3 -3 src/usr.bin/su/su.1 1.26 +1 -1 src/usr.bin/time/time.1 1.14 +1 -1 src/usr.bin/truncate/truncate.1 1.21 +2 -2 src/usr.bin/truss/truss.1 1.34 +1 -1 src/usr.bin/vmstat/vmstat.8 1.36 +3 -2 src/usr.bin/whois/whois.1 1.37 +3 -3 src/usr.bin/xargs/xargs.1 1.35 +6 -4 src/usr.bin/xinstall/install.1 From owner-cvs-all@FreeBSD.ORG Fri Sep 29 15:36:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96B0C16A403; Fri, 29 Sep 2006 15:36:20 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 413DF43D96; Fri, 29 Sep 2006 15:36:20 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TFaKKN088738; Fri, 29 Sep 2006 15:36:20 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TFaKd7088737; Fri, 29 Sep 2006 15:36:20 GMT (envelope-from ru) Message-Id: <200609291536.k8TFaKd7088737@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 15:36:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/mk bsd.info.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 15:36:20 -0000 ru 2006-09-29 15:36:19 UTC FreeBSD src repository Modified files: share/mk bsd.info.mk Log: Don't run install-info under lockf if not installing in parallel. Requested by: rwatson Revision Changes Path 1.74 +7 -0 src/share/mk/bsd.info.mk From owner-cvs-all@FreeBSD.ORG Fri Sep 29 15:45:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6794416A417; Fri, 29 Sep 2006 15:45:14 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BA3443D5F; Fri, 29 Sep 2006 15:45:12 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TFjCo0089317; Fri, 29 Sep 2006 15:45:12 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TFjBDL089313; Fri, 29 Sep 2006 15:45:11 GMT (envelope-from bms) Message-Id: <200609291545.k8TFjBDL089313@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 29 Sep 2006 15:45:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc/defaults rc.conf src/etc/rc.d mrouted src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.4 src/share/man/man5 rc.conf.5 src/sys/netinet ip_mroute.c ip_mroute.h src/sys/netinet6 ip6_mroute.h src/usr.bin/netstat ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 15:45:14 -0000 bms 2006-09-29 15:45:11 UTC FreeBSD src repository Modified files: etc/defaults rc.conf etc/rc.d mrouted share/man/man4 ip6.4 share/man/man4/man4.i386 wl.4 share/man/man5 rc.conf.5 sys/netinet ip_mroute.c ip_mroute.h sys/netinet6 ip6_mroute.h usr.bin/netstat mroute.c mroute6.c usr.sbin/crunch/examples really-big.conf Log: Push removal of mrouted down to the rest of the tree. Revision Changes Path 1.297 +5 -1 src/etc/defaults/rc.conf 1.10 +1 -1 src/etc/rc.d/mrouted 1.21 +2 -3 src/share/man/man4/ip6.4 1.21 +2 -3 src/share/man/man4/man4.i386/wl.4 1.307 +7 -4 src/share/man/man5/rc.conf.5 1.120 +1 -1 src/sys/netinet/ip_mroute.c 1.27 +1 -1 src/sys/netinet/ip_mroute.h 1.8 +1 -1 src/sys/netinet6/ip6_mroute.h 1.25 +1 -1 src/usr.bin/netstat/mroute.c 1.17 +1 -1 src/usr.bin/netstat/mroute6.c 1.6 +2 -2 src/usr.sbin/crunch/examples/really-big.conf From owner-cvs-all@FreeBSD.ORG Fri Sep 29 15:51:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C90CF16A407; Fri, 29 Sep 2006 15:51:29 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA2AC43D77; Fri, 29 Sep 2006 15:51:28 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.4/8.13.3) with ESMTP id k8TFpQRV092009 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 29 Sep 2006 19:51:27 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k8TFpQDH092008; Fri, 29 Sep 2006 19:51:26 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Fri, 29 Sep 2006 19:51:26 +0400 From: Gleb Smirnoff To: Bruce M Simpson Message-ID: <20060929155126.GT59833@FreeBSD.org> References: <200609291545.k8TFjBDL089313@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200609291545.k8TFjBDL089313@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/rc.d mrouted src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.4 src/share/man/man5 rc.conf.5 src/sys/netinet ip_mroute.c ip_mroute.h src/sys/netinet6 ip6_mroute.h src/usr.bin/netstat ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 15:51:29 -0000 On Fri, Sep 29, 2006 at 03:45:11PM +0000, Bruce M Simpson wrote: B> bms 2006-09-29 15:45:11 UTC B> B> FreeBSD src repository B> B> Modified files: B> etc/defaults rc.conf B> etc/rc.d mrouted B> share/man/man4 ip6.4 B> share/man/man4/man4.i386 wl.4 B> share/man/man5 rc.conf.5 B> sys/netinet ip_mroute.c ip_mroute.h B> sys/netinet6 ip6_mroute.h B> usr.bin/netstat mroute.c mroute6.c B> usr.sbin/crunch/examples really-big.conf B> Log: B> Push removal of mrouted down to the rest of the tree. B> B> Revision Changes Path B> 1.297 +5 -1 src/etc/defaults/rc.conf B> 1.10 +1 -1 src/etc/rc.d/mrouted B> 1.21 +2 -3 src/share/man/man4/ip6.4 B> 1.21 +2 -3 src/share/man/man4/man4.i386/wl.4 B> 1.307 +7 -4 src/share/man/man5/rc.conf.5 B> 1.120 +1 -1 src/sys/netinet/ip_mroute.c B> 1.27 +1 -1 src/sys/netinet/ip_mroute.h B> 1.8 +1 -1 src/sys/netinet6/ip6_mroute.h B> 1.25 +1 -1 src/usr.bin/netstat/mroute.c B> 1.17 +1 -1 src/usr.bin/netstat/mroute6.c B> 1.6 +2 -2 src/usr.sbin/crunch/examples/really-big.conf Afaik, /etc/rc.d/mrouted must be deleted and the port should install their own /usr/local/etc/rc.d/mrouted. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Fri Sep 29 16:07:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E22016A403; Fri, 29 Sep 2006 16:07:49 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1424743D77; Fri, 29 Sep 2006 16:07:45 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TG7ixB091571; Fri, 29 Sep 2006 16:07:44 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TG7iW1091570; Fri, 29 Sep 2006 16:07:44 GMT (envelope-from ru) Message-Id: <200609291607.k8TG7iW1091570@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 16:07:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/arp arp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 16:07:49 -0000 ru 2006-09-29 16:07:44 UTC FreeBSD src repository Modified files: usr.sbin/arp arp.c Log: Sync utility's usage() with manpage's SYNOPSIS. Revision Changes Path 1.63 +2 -2 src/usr.sbin/arp/arp.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 16:10:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78C5616A403; Fri, 29 Sep 2006 16:10:29 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36D6443D5E; Fri, 29 Sep 2006 16:10:29 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TGATCH091756; Fri, 29 Sep 2006 16:10:29 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TGATfD091752; Fri, 29 Sep 2006 16:10:29 GMT (envelope-from ru) Message-Id: <200609291610.k8TGATfD091752@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 16:10:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/asf asf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 16:10:29 -0000 ru 2006-09-29 16:10:28 UTC FreeBSD src repository Modified files: usr.sbin/asf asf.c Log: Whitespace nit. Revision Changes Path 1.11 +1 -1 src/usr.sbin/asf/asf.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 16:12:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E943C16A407; Fri, 29 Sep 2006 16:12:51 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from out1.smtp.messagingengine.com (out1.smtp.messagingengine.com [66.111.4.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 587DD43D66; Fri, 29 Sep 2006 16:12:51 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 08E8EDAEBD7; Fri, 29 Sep 2006 12:12:50 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Fri, 29 Sep 2006 12:12:52 -0400 X-Sasl-enc: DBaQ2uAG1Tv69vHV0yCRbzNGnYNhHbSi1Ykx5ASQEkqA 1159546372 Received: from [192.168.123.18] (82-35-112-254.cable.ubr07.dals.blueyonder.co.uk [82.35.112.254]) by mail.messagingengine.com (Postfix) with ESMTP id D1DA511348; Fri, 29 Sep 2006 12:12:51 -0400 (EDT) Message-ID: <451D4600.30503@FreeBSD.org> Date: Fri, 29 Sep 2006 17:12:48 +0100 From: "Bruce M. Simpson" User-Agent: Thunderbird 1.5.0.5 (X11/20060825) MIME-Version: 1.0 To: Gleb Smirnoff References: <200609291545.k8TFjBDL089313@repoman.freebsd.org> <20060929155126.GT59833@FreeBSD.org> In-Reply-To: <20060929155126.GT59833@FreeBSD.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/rc.d mrouted src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.4 src/share/man/man5 rc.conf.5 src/sys/netinet ip_mroute.c ip_mroute.h src/sys/netinet6 ip6_mroute.h src/usr.bin/netstat ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 16:12:52 -0000 Gleb Smirnoff wrote: > Afaik, /etc/rc.d/mrouted must be deleted and the port should install > their own /usr/local/etc/rc.d/mrouted. > This would be inconsistent with mroute6d, therefore I have left it there for the time being. Regards, BMS From owner-cvs-all@FreeBSD.ORG Fri Sep 29 16:16:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C719F16A412; Fri, 29 Sep 2006 16:16:42 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5944C43D77; Fri, 29 Sep 2006 16:16:42 +0000 (GMT) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TGGgPd092163; Fri, 29 Sep 2006 16:16:42 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TGGgNs092162; Fri, 29 Sep 2006 16:16:42 GMT (envelope-from bms) Message-Id: <200609291616.k8TGGgNs092162@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 29 Sep 2006 16:16:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/netstat mroute.c mroute6.c src/sys/netinet ip_mroute.h src/sys/netinet6 ip6_mroute.h src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 16:16:42 -0000 bms 2006-09-29 16:16:41 UTC FreeBSD src repository Modified files: usr.bin/netstat mroute6.c mroute.c sys/netinet ip_mroute.h sys/netinet6 ip6_mroute.h share/man/man4 ip6.4 share/man/man4/man4.i386 wl.4 Log: Nits. Submitted by: ru Revision Changes Path 1.22 +2 -1 src/share/man/man4/ip6.4 1.22 +2 -1 src/share/man/man4/man4.i386/wl.4 1.28 +1 -1 src/sys/netinet/ip_mroute.h 1.9 +1 -1 src/sys/netinet6/ip6_mroute.h 1.26 +1 -1 src/usr.bin/netstat/mroute.c 1.18 +1 -1 src/usr.bin/netstat/mroute6.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 16:29:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7151216A417; Fri, 29 Sep 2006 16:29:48 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FAB543DA4; Fri, 29 Sep 2006 16:28:51 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 5BCD846CEF; Fri, 29 Sep 2006 12:28:30 -0400 (EDT) Date: Fri, 29 Sep 2006 17:28:30 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Ruslan Ermilov In-Reply-To: <200609291536.k8TFaKd7088737@repoman.freebsd.org> Message-ID: <20060929172814.D74256@fledge.watson.org> References: <200609291536.k8TFaKd7088737@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.info.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 16:29:48 -0000 On Fri, 29 Sep 2006, Ruslan Ermilov wrote: > ru 2006-09-29 15:36:19 UTC > > FreeBSD src repository > > Modified files: > share/mk bsd.info.mk > Log: > Don't run install-info under lockf if not installing in parallel. > > Requested by: rwatson > > Revision Changes Path > 1.74 +7 -0 src/share/mk/bsd.info.mk Thanks. Do you plan to MFC this in a few days, also? Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-all@FreeBSD.ORG Fri Sep 29 16:50:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A454F16A4F8; Fri, 29 Sep 2006 16:50:28 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB38B43F92; Fri, 29 Sep 2006 16:38:47 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.4/8.13.3) with ESMTP id k8TGcORp092395 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 29 Sep 2006 20:38:25 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.4/8.13.1/Submit) id k8TGcO1M092394; Fri, 29 Sep 2006 20:38:24 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Fri, 29 Sep 2006 20:38:24 +0400 From: Gleb Smirnoff To: "Bruce M. Simpson" Message-ID: <20060929163824.GV59833@FreeBSD.org> References: <200609291545.k8TFjBDL089313@repoman.freebsd.org> <20060929155126.GT59833@FreeBSD.org> <451D4600.30503@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <451D4600.30503@FreeBSD.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/rc.d mrouted src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.4 src/share/man/man5 rc.conf.5 src/sys/netinet ip_mroute.c ip_mroute.h src/sys/netinet6 ip6_mroute.h src/usr.bin/netstat ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 16:50:28 -0000 On Fri, Sep 29, 2006 at 05:12:48PM +0100, Bruce M. Simpson wrote: B> >Afaik, /etc/rc.d/mrouted must be deleted and the port should install B> >their own /usr/local/etc/rc.d/mrouted. B> > B> This would be inconsistent with mroute6d, therefore I have left it there B> for the time being. Not sure that mroute6d rc script is in its place. Anyway, let's leave this to rc gurus. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Fri Sep 29 16:55:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13DFA16A412; Fri, 29 Sep 2006 16:55:17 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BEC64423D; Fri, 29 Sep 2006 16:46:05 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TGikX6014214; Fri, 29 Sep 2006 16:44:46 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TGikZv014207; Fri, 29 Sep 2006 16:44:46 GMT (envelope-from andre) Message-Id: <200609291644.k8TGikZv014207@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 16:44:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 16:55:17 -0000 andre 2006-09-29 16:44:46 UTC FreeBSD src repository Modified files: sys/netinet ip_output.c Log: Remove stone-aged and irrelevant "#ifndef notdef". Revision Changes Path 1.266 +2 -2 src/sys/netinet/ip_output.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 16:55:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 644B116A5D5; Fri, 29 Sep 2006 16:55:33 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51F9044272; Fri, 29 Sep 2006 16:46:27 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TGk1Tk016277; Fri, 29 Sep 2006 16:46:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TGk1DX016276; Fri, 29 Sep 2006 16:46:01 GMT (envelope-from ru) Message-Id: <200609291646.k8TGk1DX016276@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 16:46:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/devinfo devinfo.8 devinfo.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 16:55:33 -0000 ru 2006-09-29 16:46:01 UTC FreeBSD src repository Modified files: usr.sbin/devinfo devinfo.8 devinfo.c Log: Sync usage() and SYNOPSIS. Revision Changes Path 1.9 +1 -1 src/usr.sbin/devinfo/devinfo.8 1.6 +5 -1 src/usr.sbin/devinfo/devinfo.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 16:56:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CD1F16A77C; Fri, 29 Sep 2006 16:56:10 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7F8B43E3F; Fri, 29 Sep 2006 16:51:30 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TGpUp6026354; Fri, 29 Sep 2006 16:51:30 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TGpUkk026353; Fri, 29 Sep 2006 16:51:30 GMT (envelope-from ru) Message-Id: <200609291651.k8TGpUkk026353@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 16:51:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/gstat gstat.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 16:56:10 -0000 ru 2006-09-29 16:51:29 UTC FreeBSD src repository Modified files: usr.sbin/gstat gstat.8 Log: Language tweak. Revision Changes Path 1.9 +1 -1 src/usr.sbin/gstat/gstat.8 From owner-cvs-all@FreeBSD.ORG Fri Sep 29 16:57:00 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E754316A4E0; Fri, 29 Sep 2006 16:57:00 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from sccmmhc91.asp.att.net (sccmmhc91.asp.att.net [204.127.203.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9BBD43E8B; Fri, 29 Sep 2006 16:54:43 +0000 (GMT) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net ([12.207.12.9]) by sccmmhc91.asp.att.net (sccmmhc91) with ESMTP id <20060929165442m9100slgdje>; Fri, 29 Sep 2006 16:54:43 +0000 Received: from lor.one-eyed-alien.net (localhost [127.0.0.1]) by lor.one-eyed-alien.net (8.13.8/8.13.8) with ESMTP id k8TGseYt093771; Fri, 29 Sep 2006 11:54:41 -0500 (CDT) (envelope-from brooks@lor.one-eyed-alien.net) Received: (from brooks@localhost) by lor.one-eyed-alien.net (8.13.8/8.13.8/Submit) id k8TGsdrF093770; Fri, 29 Sep 2006 11:54:39 -0500 (CDT) (envelope-from brooks) Date: Fri, 29 Sep 2006 11:54:39 -0500 From: Brooks Davis To: Gleb Smirnoff Message-ID: <20060929165439.GA93639@lor.one-eyed-alien.net> References: <200609291545.k8TFjBDL089313@repoman.freebsd.org> <20060929155126.GT59833@FreeBSD.org> <451D4600.30503@FreeBSD.org> <20060929163824.GV59833@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BOKacYhQ+x31HxR3" Content-Disposition: inline In-Reply-To: <20060929163824.GV59833@FreeBSD.org> User-Agent: Mutt/1.5.11 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, "Bruce M. Simpson" , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf src/etc/rc.d mrouted src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.4 src/share/man/man5 rc.conf.5 src/sys/netinet ip_mroute.c ip_mroute.h src/sys/netinet6 ip6_mroute.h src/usr.bin/netstat ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 16:57:01 -0000 --BOKacYhQ+x31HxR3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 08:38:24PM +0400, Gleb Smirnoff wrote: > On Fri, Sep 29, 2006 at 05:12:48PM +0100, Bruce M. Simpson wrote: > B> >Afaik, /etc/rc.d/mrouted must be deleted and the port should install > B> >their own /usr/local/etc/rc.d/mrouted. > B> > =20 > B> This would be inconsistent with mroute6d, therefore I have left it the= re=20 > B> for the time being. >=20 > Not sure that mroute6d rc script is in its place. Anyway, let's leave thi= s to > rc gurus. IMO, it's OK if rc scripts in the base support ports as an alternative to something in the base (for example the sshd script), but we shouldn't have scripts in the base that don't have anything to start without ports. -- Brooks --BOKacYhQ+x31HxR3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHU/PXY6L6fI4GtQRAvyIAJ9Ke30Ko1vK9Re1EiZE02JDqtcFVgCg1HFm dza9zFqJgewyLAmVKO5AiKo= =HH0h -----END PGP SIGNATURE----- --BOKacYhQ+x31HxR3-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 17:04:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0923F16A412; Fri, 29 Sep 2006 17:04:08 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CC6943D6D; Fri, 29 Sep 2006 17:04:03 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TH43Gi028051; Fri, 29 Sep 2006 17:04:03 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TH43Gd028050; Fri, 29 Sep 2006 17:04:03 GMT (envelope-from ru) Message-Id: <200609291704.k8TH43Gd028050@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 17:04:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/jexec jexec.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 17:04:08 -0000 ru 2006-09-29 17:04:03 UTC FreeBSD src repository Modified files: usr.sbin/jexec jexec.c Log: Sync usage() with manpage's SYNOPSIS. Revision Changes Path 1.4 +1 -1 src/usr.sbin/jexec/jexec.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 17:17:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A9FC16A415; Fri, 29 Sep 2006 17:17:54 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14EA543D77; Fri, 29 Sep 2006 17:17:53 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8THHrIc028766; Fri, 29 Sep 2006 17:17:53 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8THHr2v028765; Fri, 29 Sep 2006 17:17:53 GMT (envelope-from ru) Message-Id: <200609291717.k8THHr2v028765@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 17:17:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/pkg_install/add main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 17:17:54 -0000 ru 2006-09-29 17:17:53 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/add main.c Log: Sync usage() with manpage's SYNOPSIS. Revision Changes Path 1.70 +1 -1 src/usr.sbin/pkg_install/add/main.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 17:23:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4D7A16A40F; Fri, 29 Sep 2006 17:23:20 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9F9E43D77; Fri, 29 Sep 2006 17:23:14 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8THNES7029086; Fri, 29 Sep 2006 17:23:14 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8THNEU3029085; Fri, 29 Sep 2006 17:23:14 GMT (envelope-from ru) Message-Id: <200609291723.k8THNEU3029085@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 17:23:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/pkg_install/create main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 17:23:20 -0000 ru 2006-09-29 17:23:14 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/create main.c Log: Fix usage(). Revision Changes Path 1.40 +6 -6 src/usr.sbin/pkg_install/create/main.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 17:28:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9636316A403; Fri, 29 Sep 2006 17:28:05 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1A5A43D68; Fri, 29 Sep 2006 17:28:01 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8THS1VL029317; Fri, 29 Sep 2006 17:28:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8THS1dW029316; Fri, 29 Sep 2006 17:28:01 GMT (envelope-from ru) Message-Id: <200609291728.k8THS1dW029316@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 17:28:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/pmcstat pmcstat.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 17:28:05 -0000 ru 2006-09-29 17:28:01 UTC FreeBSD src repository Modified files: usr.sbin/pmcstat pmcstat.c Log: Line up usage output. Revision Changes Path 1.14 +1 -1 src/usr.sbin/pmcstat/pmcstat.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 17:28:46 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49D4116A412; Fri, 29 Sep 2006 17:28:46 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id A220343D67; Fri, 29 Sep 2006 17:28:36 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 1493D1A4DA3; Fri, 29 Sep 2006 10:28:36 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D1D12514B1; Fri, 29 Sep 2006 13:28:34 -0400 (EDT) Date: Fri, 29 Sep 2006 13:28:34 -0400 From: Kris Kennaway To: Michael Johnson Message-ID: <20060929172834.GB31887@xor.obsecurity.org> References: <200609250047.k8P0leLL009808@repoman.freebsd.org> <20060925005252.GA50714@xor.obsecurity.org> <20060929004121.GA60887@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tjCHc7DPkfUGtrlw" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Cc: Kris Kennaway , cvs-all@freebsd.org, ports-committers@freebsd.org, shaun@freebsd.org, cvs-ports@freebsd.org, Mario Sergio Fujikawa Ferreira Subject: Re: cvs commit: ports/multimedia/ffmpeg-devel Makefile ports/multimedia/ffmpeg-devel/files patch-libavcodec_x264.c patch-libavformat_movenc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 17:28:46 -0000 --tjCHc7DPkfUGtrlw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Sep 29, 2006 at 07:23:46AM -0400, Michael Johnson wrote: > On 9/29/06, Michael Johnson wrote: > > > > > > > >On 9/28/06, Kris Kennaway wrote: > >> > >> On Sun, Sep 24, 2006 at 08:52:52PM -0400, Kris Kennaway wrote: > >> > On Mon, Sep 25, 2006 at 12:47:40AM +0000, Mario Sergio Fujikawa > >> Ferreira wrote: > >> > > lioux 2006-09-25 00:47:40 UTC > >> > > > >> > > FreeBSD ports repository > >> > > > >> > > Modified files: > >> > > multimedia/ffmpeg-devel Makefile > >> > > multimedia/ffmpeg-devel/files patch-libavcodec_x264.c > >> > > Added files: > >> > > multimedia/ffmpeg-devel/files patch-libavformat_movenc.c > >> > > Log: > >> > > Fix build on 4.x: fix devel/sdl header include > >> > > > >> > > PR: 102431 > >> > > Submitted by: Shaun Amott > >> > > >> > Are you sure this is still correct after the recent SDL changes? > >> > > >> > Kris > >> > >> Ping. It appears to be broken. > > > > > patch-libavcodec_x264.c needs to be readded. It's there but it's empty. Maybe so, but the Makefile also explicitly patches it to #include too, which is the wrongness I was referring to (SDL headers are now in . Kris --tjCHc7DPkfUGtrlw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHVfCWry0BWjoQKURAgjQAKDFt6XnEKNa1E/d4BLTRCevWm9TaACgxLNE XiYnooNbqBugjJZW4U+pdLk= =EicU -----END PGP SIGNATURE----- --tjCHc7DPkfUGtrlw-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 17:36:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A05916A412; Fri, 29 Sep 2006 17:36:40 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AE4543D5F; Fri, 29 Sep 2006 17:36:39 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8THadP3029787; Fri, 29 Sep 2006 17:36:39 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8THadbR029786; Fri, 29 Sep 2006 17:36:39 GMT (envelope-from ru) Message-Id: <200609291736.k8THadbR029786@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 17:36:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/syslogd syslogd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 17:36:40 -0000 ru 2006-09-29 17:36:39 UTC FreeBSD src repository Modified files: usr.sbin/syslogd syslogd.c Log: Sync usage() with manpage's SYNOPSIS. Revision Changes Path 1.152 +2 -2 src/usr.sbin/syslogd/syslogd.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 17:57:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 285E616A412; Fri, 29 Sep 2006 17:57:09 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26A0F43D77; Fri, 29 Sep 2006 17:57:05 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8THv5X4031087; Fri, 29 Sep 2006 17:57:05 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8THv4sw031086; Fri, 29 Sep 2006 17:57:04 GMT (envelope-from ru) Message-Id: <200609291757.k8THv4sw031086@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 17:57:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/adduser adduser.8 src/usr.sbin/arp arp.4 src/usr.sbin/asf asf.8 src/usr.sbin/crunch/crunchgen crunchgen.1 src/usr.sbin/iostat iostat.8 src/usr.sbin/jail jail.8 src/usr.sbin/jexec jexec.8 src/usr.sbin/kbdcontrol kbdcontrol.1 ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 17:57:09 -0000 ru 2006-09-29 17:57:04 UTC FreeBSD src repository Modified files: usr.sbin/adduser adduser.8 usr.sbin/arp arp.4 usr.sbin/asf asf.8 usr.sbin/crunch/crunchgen crunchgen.1 usr.sbin/iostat iostat.8 usr.sbin/jail jail.8 usr.sbin/jexec jexec.8 usr.sbin/kbdcontrol kbdcontrol.1 usr.sbin/mailwrapper mailwrapper.8 usr.sbin/moused moused.8 usr.sbin/mtree mtree.8 usr.sbin/newsyslog newsyslog.conf.5 usr.sbin/ntp/doc ntp.conf.5 ntpd.8 ntpdc.8 ntpq.8 usr.sbin/pkg_install/info pkg_info.1 usr.sbin/pmcstat pmcstat.8 usr.sbin/portsnap/portsnap portsnap.8 usr.sbin/syslogd syslog.conf.5 usr.sbin/watchdogd watchdog.8 watchdogd.8 usr.sbin/wpa/hostapd hostapd.conf.5 usr.sbin/wpa/ndis_events ndis_events.8 Log: Markup fixes. Revision Changes Path 1.57 +2 -2 src/usr.sbin/adduser/adduser.8 1.23 +10 -13 src/usr.sbin/arp/arp.4 1.9 +3 -3 src/usr.sbin/asf/asf.8 1.31 +3 -2 src/usr.sbin/crunch/crunchgen/crunchgen.1 1.29 +1 -1 src/usr.sbin/iostat/iostat.8 1.81 +11 -9 src/usr.sbin/jail/jail.8 1.4 +1 -0 src/usr.sbin/jexec/jexec.8 1.40 +8 -11 src/usr.sbin/kbdcontrol/kbdcontrol.1 1.14 +1 -3 src/usr.sbin/mailwrapper/mailwrapper.8 1.60 +22 -17 src/usr.sbin/moused/moused.8 1.55 +1 -1 src/usr.sbin/mtree/mtree.8 1.6 +1 -1 src/usr.sbin/newsyslog/newsyslog.conf.5 1.21 +333 -171 src/usr.sbin/ntp/doc/ntp.conf.5 1.13 +6 -3 src/usr.sbin/ntp/doc/ntpd.8 1.15 +12 -7 src/usr.sbin/ntp/doc/ntpdc.8 1.19 +73 -36 src/usr.sbin/ntp/doc/ntpq.8 1.57 +1 -1 src/usr.sbin/pkg_install/info/pkg_info.1 1.10 +5 -4 src/usr.sbin/pmcstat/pmcstat.8 1.10 +12 -12 src/usr.sbin/portsnap/portsnap/portsnap.8 1.43 +3 -2 src/usr.sbin/syslogd/syslog.conf.5 1.8 +1 -1 src/usr.sbin/watchdogd/watchdog.8 1.7 +1 -1 src/usr.sbin/watchdogd/watchdogd.8 1.4 +4 -3 src/usr.sbin/wpa/hostapd/hostapd.conf.5 1.5 +16 -9 src/usr.sbin/wpa/ndis_events/ndis_events.8 From owner-cvs-all@FreeBSD.ORG Fri Sep 29 18:06:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D183216A403; Fri, 29 Sep 2006 18:06:00 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B88D43D58; Fri, 29 Sep 2006 18:05:59 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 2BF436138; Fri, 29 Sep 2006 22:05:58 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 086DF606F; Fri, 29 Sep 2006 22:05:58 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8TI5x6H037761; Fri, 29 Sep 2006 22:05:59 +0400 (MSD) (envelope-from ru) Date: Fri, 29 Sep 2006 22:05:59 +0400 From: Ruslan Ermilov To: Robert Watson Message-ID: <20060929180559.GA37741@rambler-co.ru> References: <200609291536.k8TFaKd7088737@repoman.freebsd.org> <20060929172814.D74256@fledge.watson.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZPt4rx8FFjLCG7dd" Content-Disposition: inline In-Reply-To: <20060929172814.D74256@fledge.watson.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.info.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 18:06:00 -0000 --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 05:28:30PM +0100, Robert Watson wrote: >=20 > On Fri, 29 Sep 2006, Ruslan Ermilov wrote: >=20 > >ru 2006-09-29 15:36:19 UTC > > > > FreeBSD src repository > > > > Modified files: > > share/mk bsd.info.mk > > Log: > > Don't run install-info under lockf if not installing in parallel. > > > > Requested by: rwatson > > > > Revision Changes Path > > 1.74 +7 -0 src/share/mk/bsd.info.mk >=20 > Thanks. Do you plan to MFC this in a few days, also? >=20 OK, will do. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --ZPt4rx8FFjLCG7dd Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHWCHqRfpzJluFF4RAmJxAJ9oRGNl4+LekPUBM0w5+oPVP8tHmwCgmnGe ick02FbZkmp1lpmXlMArf5g= =C0ws -----END PGP SIGNATURE----- --ZPt4rx8FFjLCG7dd-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 18:10:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4B1416A522; Fri, 29 Sep 2006 18:10:16 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 959E343D53; Fri, 29 Sep 2006 18:10:15 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id B110C60D4; Fri, 29 Sep 2006 22:10:14 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id A6E2860C1; Fri, 29 Sep 2006 22:10:14 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8TIAGNX037865; Fri, 29 Sep 2006 22:10:16 +0400 (MSD) (envelope-from ru) Date: Fri, 29 Sep 2006 22:10:16 +0400 From: Ruslan Ermilov To: Bruce M Simpson Message-ID: <20060929181016.GD37741@rambler-co.ru> References: <200609291616.k8TGGgNs092162@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GyRA7555PLgSTuth" Content-Disposition: inline In-Reply-To: <200609291616.k8TGGgNs092162@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/netstat mroute.c mroute6.c src/sys/netinet ip_mroute.h src/sys/netinet6 ip6_mroute.h src/share/man/man4 ip6.4 src/share/man/man4/man4.i386 wl.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 18:10:16 -0000 --GyRA7555PLgSTuth Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 04:16:42PM +0000, Bruce M Simpson wrote: > bms 2006-09-29 16:16:41 UTC >=20 > FreeBSD src repository >=20 > Modified files: > usr.bin/netstat mroute6.c mroute.c=20 > sys/netinet ip_mroute.h=20 > sys/netinet6 ip6_mroute.h=20 > share/man/man4 ip6.4=20 > share/man/man4/man4.i386 wl.4=20 > Log: > Nits. > =20 > Submitted by: ru > =20 > Revision Changes Path > 1.22 +2 -1 src/share/man/man4/ip6.4 > 1.22 +2 -1 src/share/man/man4/man4.i386/wl.4 > 1.28 +1 -1 src/sys/netinet/ip_mroute.h > 1.9 +1 -1 src/sys/netinet6/ip6_mroute.h > 1.26 +1 -1 src/usr.bin/netstat/mroute.c > 1.18 +1 -1 src/usr.bin/netstat/mroute6.c >=20 Thanks! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --GyRA7555PLgSTuth Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHWGIqRfpzJluFF4RAga2AJ9MZw4Fryg8+cD66oAody4UxZEnzgCePt9i 7u9FypZSma7MPFNCd1Lxr2Y= =/2jX -----END PGP SIGNATURE----- --GyRA7555PLgSTuth-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 18:23:58 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A54BD16A415; Fri, 29 Sep 2006 18:23:58 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8773043D7D; Fri, 29 Sep 2006 18:23:51 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8TINmeS017072; Fri, 29 Sep 2006 14:23:48 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Andre Oppermann Date: Fri, 29 Sep 2006 14:23:46 -0400 User-Agent: KMail/1.9.1 References: <200609291347.k8TDld9N079956@repoman.freebsd.org> In-Reply-To: <200609291347.k8TDld9N079956@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609291423.46738.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Fri, 29 Sep 2006 14:23:48 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1950/Thu Sep 28 10:11:54 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 18:23:58 -0000 On Friday 29 September 2006 09:47, Andre Oppermann wrote: > andre 2006-09-29 13:47:39 UTC > > FreeBSD src repository > > Modified files: > sys/dev/em if_em.c > Log: > Remove manual vlan header insertion in em_encap(). It is unnecessary as the > generic vlan_start() takes care of it when vlan hardware insertion is disabled. > > In em_set_promisc() add a note that BPF may also be enabled without going into > promisc mode. > > Reviewed by: jfv Umm, you just broke things. You are still disabling vlan header insertion in hardware but you haven't turned off the capability (which you can't do safely anyway since you still might have packets in flight that have a vlan tag after you turn off the capability) so the generic vlan layer is going to keep sending packets with vlan tags. The more complete patch I had sent to Prafulla, Jack, and others stopped disabling vlan tagging in hardware altogether and instead is going to require the other parts of the stack (like bpf) to handle vlan tags that are in mtag (or in 7.x, in the mbuf header) rather than inline in the packet data. -- John Baldwin From owner-cvs-all@FreeBSD.ORG Fri Sep 29 18:26:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D83AB16A412; Fri, 29 Sep 2006 18:26:52 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1F9943D77; Fri, 29 Sep 2006 18:26:44 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8TIQeav028670; Fri, 29 Sep 2006 20:26:42 +0200 (CEST) (envelope-from mb@imp.ch) Date: Fri, 29 Sep 2006 20:26:40 +0200 (CEST) From: Martin Blapp To: Martin Blapp In-Reply-To: <200609290952.k8T9qvcU053566@repoman.freebsd.org> Message-ID: <20060929202338.W91466@godot.imp.ch> References: <200609290952.k8T9qvcU053566@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 18:26:53 -0000 Hi all, > Free tty struct after last close. This should fix the pty-leak by numbers. > Remove workarounds for tty_refcount beeing 0, this will be fixed differently > later. > > Back out rev 1.145 since we initialize the tty struct from scratch and bad > things can't happen anymore. > Sigh. Peter Holmes stress tests did show that we still have problems. With the beckout of rev. 1.145 we get again the same panics as the pty_pts code does. This is deep somewhere in the devfs code. It does happen with/without freeing struct tty. Memory modified after free 0xc45b7d00(252) val=deadc0dd @ 0xc45b7d70 panic: Most recently used by DEVFS1 cpuid = 3 KDB: enter: panic [thread pid 1025 tid 100131 ] Stopped at kdb_enter+0x2b: nop db> where Tracing pid 1025 tid 100131 td 0xc44c71b0 kdb_enter(c091cc03) at kdb_enter+0x2b panic(c09385bd,c0914676,c093858e,c45b7d00,fc,...) at panic+0x14b mtrash_ctor(c45b7d00,100,0,502) at mtrash_ctor+0x4d uma_zalloc_arg(c186d1e0,0,502) at uma_zalloc_arg+0x10f malloc(d8,c09bd120,502,e679c8f0,c0670c4c,...) at malloc+0xb2 devfs_alloc(c45a3400,c45a3400,c4599c00,e679c918,c0670d5d,...) at devfs_alloc+0x17 make_dev_credv(c09cce00,d,c4341480,0,0,...) at make_dev_credv+0x34 make_dev_cred(c09cce00,d,c4341480,0,0,...) at make_dev_cred+0x21 pty_create_slave(c4341480,c45a3400,d) at pty_create_slave+0x53 ptcopen(c4599c00,3,2000,c44c71b0,c0a0bd28,0,c0918871,f1) at ptcopen+0x61 giant_open(c4599c00,3,2000,c44c71b0) at giant_open+0x30 devfs_open(e679ca14) at devfs_open+0x1e7 VOP_OPEN_APV(c09bd620,e679ca14) at VOP_OPEN_APV+0x9b vn_open_cred(e679cb7c,e679cc7c,0,c4341480,3,...) at vn_open_cred+0x41e vn_open(e679cb7c,e679cc7c,0,3) at vn_open+0x1e kern_open(c44c71b0,bfbfe410,0,3,0,...) at kern_open+0xb9 open(c44c71b0,e679cd04) at open+0x18 syscall(3b,3b,bfbf003b,bfbfe41b,ffffffff,...) at syscall+0x256 Xint0x80_syscall() at Xint0x80_syscall+0x1f From owner-cvs-all@FreeBSD.ORG Fri Sep 29 18:31:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2296C16A51C; Fri, 29 Sep 2006 18:31:00 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48C7643D72; Fri, 29 Sep 2006 18:30:49 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TIUnHf033869; Fri, 29 Sep 2006 18:30:49 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TIUnC2033868; Fri, 29 Sep 2006 18:30:49 GMT (envelope-from jmg) Message-Id: <200609291830.k8TIUnC2033868@repoman.freebsd.org> From: John-Mark Gurney Date: Fri, 29 Sep 2006 18:30:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern kern_descrip.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 18:31:00 -0000 jmg 2006-09-29 18:30:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern kern_descrip.c Log: MFC: v1.298 kern_descript.c > return EBADF instead of successfully attaching (and then panicing) when > an fd is dieing.. Approved by: re (kensmith) CVn: ---------------------------------------------------------------------- Revision Changes Path 1.279.2.9 +1 -1 src/sys/kern/kern_descrip.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 18:32:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1CAF16A417; Fri, 29 Sep 2006 18:32:13 +0000 (UTC) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F9E743D5C; Fri, 29 Sep 2006 18:32:07 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TIW7jd033992; Fri, 29 Sep 2006 18:32:07 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TIW76b033991; Fri, 29 Sep 2006 18:32:07 GMT (envelope-from jmg) Message-Id: <200609291832.k8TIW76b033991@repoman.freebsd.org> From: John-Mark Gurney Date: Fri, 29 Sep 2006 18:32:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/sys msgbuf.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 18:32:14 -0000 jmg 2006-09-29 18:32:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys msgbuf.h Log: MFC: v1.28 msgbuf.h default to 64k msgbuf Approved by: re (kensmith) Revision Changes Path 1.27.2.1 +0 -4 src/sys/sys/msgbuf.h From owner-cvs-all@FreeBSD.ORG Fri Sep 29 18:33:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A902D16A492; Fri, 29 Sep 2006 18:33:31 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17C7F43D6D; Fri, 29 Sep 2006 18:33:23 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (critter.freebsd.dk [192.168.48.2]) by phk.freebsd.dk (Postfix) with ESMTP id 975EE170C7; Fri, 29 Sep 2006 18:33:21 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.8/8.13.8) with ESMTP id k8TIXFKb007510; Fri, 29 Sep 2006 18:33:16 GMT (envelope-from phk@critter.freebsd.dk) To: Martin Blapp From: "Poul-Henning Kamp" In-Reply-To: Your message of "Fri, 29 Sep 2006 20:26:40 +0200." <20060929202338.W91466@godot.imp.ch> Date: Fri, 29 Sep 2006 18:33:15 +0000 Message-ID: <7509.1159554795@critter.freebsd.dk> Sender: phk@critter.freebsd.dk Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 18:33:31 -0000 In message <20060929202338.W91466@godot.imp.ch>, Martin Blapp writes: >Memory modified after free 0xc45b7d00(252) val=deadc0dd @ 0xc45b7d70 >panic: Most recently used by DEVFS1 Try zeroing all points to the cdev when you relinguish it, it's clearly a late access -- 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 Fri Sep 29 18:36:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D16AB16A417; Fri, 29 Sep 2006 18:36:05 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 381C343D6A; Fri, 29 Sep 2006 18:36:04 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8TIa1MD041351; Fri, 29 Sep 2006 20:36:02 +0200 (CEST) (envelope-from mb@imp.ch) Date: Fri, 29 Sep 2006 20:36:01 +0200 (CEST) From: Martin Blapp To: Poul-Henning Kamp In-Reply-To: <7509.1159554795@critter.freebsd.dk> Message-ID: <20060929203541.C91466@godot.imp.ch> References: <7509.1159554795@critter.freebsd.dk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 18:36:06 -0000 Hi, > > Try zeroing all points to the cdev when you relinguish it, it's > clearly a late access Will try ! Thanks for the pointer ! Martin From owner-cvs-all@FreeBSD.ORG Fri Sep 29 18:43:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CED5D16A415; Fri, 29 Sep 2006 18:43:42 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F90F43D8A; Fri, 29 Sep 2006 18:43:31 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id C3FA61A3C1C; Fri, 29 Sep 2006 11:43:31 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 48664514F7; Fri, 29 Sep 2006 14:43:31 -0400 (EDT) Date: Fri, 29 Sep 2006 14:43:31 -0400 From: Kris Kennaway To: Martin Blapp Message-ID: <20060929184331.GA33567@xor.obsecurity.org> References: <200609290952.k8T9qvcU053566@repoman.freebsd.org> <20060929202338.W91466@godot.imp.ch> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UlVJffcvxoiEqYs2" Content-Disposition: inline In-Reply-To: <20060929202338.W91466@godot.imp.ch> User-Agent: Mutt/1.4.2.2i Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 18:43:42 -0000 --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 08:26:40PM +0200, Martin Blapp wrote: >=20 > Hi all, >=20 > > Free tty struct after last close. This should fix the pty-leak by numbe= rs. > > Remove workarounds for tty_refcount beeing 0, this will be fixed=20 > > differently > > later. > > > > Back out rev 1.145 since we initialize the tty struct from scratch and = bad > > things can't happen anymore. > > >=20 > Sigh. Peter Holmes stress tests did show that we still have problems. Wit= h=20 > the beckout of rev. 1.145 we get again the same panics as the pty_pts cod= e=20 > does. > This is deep somewhere in the devfs code. It does happen with/without=20 > freeing > struct tty. >=20 > Memory modified after free 0xc45b7d00(252) val=3Ddeadc0dd @ 0xc45b7d70 > panic: Most recently used by DEVFS1 You can identify precisely where the use-after-free occurs by configuring DEBUG_MEMGUARD; I posted a trace of what is probably the same bug once to current@ once but don't have it to hand. Kris --UlVJffcvxoiEqYs2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHWlSWry0BWjoQKURAssEAKC8bfc+yWoVzhbfYEu5QWV4jH0dCwCgjRGa zZ1q4iYI3I+xgsk4hEgiB9c= =hKEa -----END PGP SIGNATURE----- --UlVJffcvxoiEqYs2-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 18:58:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 034BE16A407; Fri, 29 Sep 2006 18:58:21 +0000 (UTC) (envelope-from scrappy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86CFA43D4C; Fri, 29 Sep 2006 18:58:20 +0000 (GMT) (envelope-from scrappy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TIwKAb035366; Fri, 29 Sep 2006 18:58:20 GMT (envelope-from scrappy@repoman.freebsd.org) Received: (from scrappy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TIwKuQ035365; Fri, 29 Sep 2006 18:58:20 GMT (envelope-from scrappy) Message-Id: <200609291858.k8TIwKuQ035365@repoman.freebsd.org> From: "Marc G. Fournier" Date: Fri, 29 Sep 2006 18:58:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/bsdstats Makefile ports/sysutils/bsdstats/files 300.statistics X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 18:58:21 -0000 scrappy 2006-09-29 18:58:20 UTC FreeBSD ports repository Modified files: sysutils/bsdstats Makefile sysutils/bsdstats/files 300.statistics Log: slight change to the when the sleeps happen ... Revision Changes Path 1.32 +1 -1 ports/sysutils/bsdstats/Makefile 1.26 +2 -4 ports/sysutils/bsdstats/files/300.statistics From owner-cvs-all@FreeBSD.ORG Fri Sep 29 18:59:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F168616A40F; Fri, 29 Sep 2006 18:59:28 +0000 (UTC) (envelope-from scrappy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A90BF43D45; Fri, 29 Sep 2006 18:59:28 +0000 (GMT) (envelope-from scrappy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TIxSXt035440; Fri, 29 Sep 2006 18:59:28 GMT (envelope-from scrappy@repoman.freebsd.org) Received: (from scrappy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TIxS3S035439; Fri, 29 Sep 2006 18:59:28 GMT (envelope-from scrappy) Message-Id: <200609291859.k8TIxS3S035439@repoman.freebsd.org> From: "Marc G. Fournier" Date: Fri, 29 Sep 2006 18:59:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/bsdstats Makefile ports/sysutils/bsdstats/files 300.statistics X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 18:59:29 -0000 scrappy 2006-09-29 18:59:28 UTC FreeBSD ports repository Modified files: sysutils/bsdstats Makefile sysutils/bsdstats/files 300.statistics Log: since we're removing a bunch of the sleep(s), let's increase the couple that remain so that we have pretty much the same overall 'randomness' for reporting systems ... Revision Changes Path 1.33 +1 -1 ports/sysutils/bsdstats/Makefile 1.27 +2 -2 ports/sysutils/bsdstats/files/300.statistics From owner-cvs-all@FreeBSD.ORG Fri Sep 29 19:00:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACC3E16A494; Fri, 29 Sep 2006 19:00:46 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4284E43D67; Fri, 29 Sep 2006 19:00:45 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TJ0jh1035591; Fri, 29 Sep 2006 19:00:45 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TJ0jgq035580; Fri, 29 Sep 2006 19:00:45 GMT (envelope-from netchild) Message-Id: <200609291900.k8TJ0jgq035580@repoman.freebsd.org> From: Alexander Leidinger Date: Fri, 29 Sep 2006 19:00:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/i386/linux linux_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 19:00:46 -0000 netchild 2006-09-29 19:00:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/i386/linux linux_machdep.c Log: MFC rev 1.56: Bring the i386 linux mmap code more into line with how linux (2.4.x) behaves. This fixes a lot of test which failed before. Submitted by: Marcin Cieslak (minor fixups by myself) Tested with: LTP Approved by: re Revision Changes Path 1.48.2.2 +42 -2 src/sys/i386/linux/linux_machdep.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 19:05:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D66ED16A4AB; Fri, 29 Sep 2006 19:05:29 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A236843D6A; Fri, 29 Sep 2006 19:05:25 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TJ5PX6037001; Fri, 29 Sep 2006 19:05:25 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TJ5PJ5037000; Fri, 29 Sep 2006 19:05:25 GMT (envelope-from netchild) Message-Id: <200609291905.k8TJ5PJ5037000@repoman.freebsd.org> From: Alexander Leidinger Date: Fri, 29 Sep 2006 19:05:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/i386/linux linux_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 19:05:30 -0000 netchild 2006-09-29 19:05:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/i386/linux linux_machdep.c Log: MFC rev 1.57: style(9) Noticed by: ssouhlal Approved by: re Revision Changes Path 1.48.2.3 +4 -4 src/sys/i386/linux/linux_machdep.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 19:11:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0107216A403; Fri, 29 Sep 2006 19:11:41 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFA8B43D53; Fri, 29 Sep 2006 19:11:40 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TJBefA037672; Fri, 29 Sep 2006 19:11:40 GMT (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TJBeJ7037671; Fri, 29 Sep 2006 19:11:40 GMT (envelope-from ale) Message-Id: <200609291911.k8TJBeJ7037671@repoman.freebsd.org> From: Alex Dupre Date: Fri, 29 Sep 2006 19:11:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/php4 Makefile distinfo pkg-plist ports/lang/php5 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 19:11:41 -0000 ale 2006-09-29 19:11:40 UTC FreeBSD ports repository Modified files: lang/php4 Makefile distinfo pkg-plist lang/php5 Makefile distinfo pkg-plist Log: Update suhosin patch to 0.9.5 release. Revision Changes Path 1.105 +1 -1 ports/lang/php4/Makefile 1.25 +3 -3 ports/lang/php4/distinfo 1.24 +1 -0 ports/lang/php4/pkg-plist 1.101 +1 -1 ports/lang/php5/Makefile 1.27 +3 -3 ports/lang/php5/distinfo 1.24 +1 -0 ports/lang/php5/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Sep 29 19:12:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE80916A40F; Fri, 29 Sep 2006 19:12:17 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E1EC43D62; Fri, 29 Sep 2006 19:12:16 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TJCGQt037734; Fri, 29 Sep 2006 19:12:16 GMT (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TJCGI6037733; Fri, 29 Sep 2006 19:12:16 GMT (envelope-from ale) Message-Id: <200609291912.k8TJCGI6037733@repoman.freebsd.org> From: Alex Dupre Date: Fri, 29 Sep 2006 19:12:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/php-suhosin Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 19:12:17 -0000 ale 2006-09-29 19:12:16 UTC FreeBSD ports repository Modified files: security/php-suhosin Makefile distinfo Log: Update to 0.9.5 release. Revision Changes Path 1.3 +1 -5 ports/security/php-suhosin/Makefile 1.3 +3 -3 ports/security/php-suhosin/distinfo From owner-cvs-all@FreeBSD.ORG Fri Sep 29 19:28:27 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E63A16A47C; Fri, 29 Sep 2006 19:28:27 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id C072A43D5A; Fri, 29 Sep 2006 19:28:17 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id A72B41A4DA1; Fri, 29 Sep 2006 12:28:17 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1326A51282; Fri, 29 Sep 2006 15:28:17 -0400 (EDT) Date: Fri, 29 Sep 2006 15:28:16 -0400 From: Kris Kennaway To: Stanislav Sedov Message-ID: <20060929192816.GA34619@xor.obsecurity.org> References: <200609250047.k8P0leLL009808@repoman.freebsd.org> <20060925005252.GA50714@xor.obsecurity.org> <20060929004121.GA60887@xor.obsecurity.org> <20060929172834.GB31887@xor.obsecurity.org> <20060929232451.5781ed0c@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="jI8keyz6grp/JLjh" Content-Disposition: inline In-Reply-To: <20060929232451.5781ed0c@localhost> User-Agent: Mutt/1.4.2.2i Cc: Michael Johnson , shaun@freebsd.org, cvs-all@freebsd.org, Mario Sergio Fujikawa Ferreira , Kris Kennaway , cvs-ports@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/multimedia/ffmpeg-devel Makefile ports/multimedia/ffmpeg-devel/files patch-libavcodec_x264.c patch-libavformat_movenc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 19:28:27 -0000 --jI8keyz6grp/JLjh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 11:24:51PM +0400, Stanislav Sedov wrote: > On Fri, 29 Sep 2006 13:28:34 -0400 > Kris Kennaway mentioned: >=20 > > On Fri, Sep 29, 2006 at 07:23:46AM -0400, Michael Johnson wrote: > > > On 9/29/06, Michael Johnson wrote: > > > > > > > > > > > > > > > >On 9/28/06, Kris Kennaway wrote: > > > >> > > > >> On Sun, Sep 24, 2006 at 08:52:52PM -0400, Kris Kennaway wrote: > > > >> > On Mon, Sep 25, 2006 at 12:47:40AM +0000, Mario Sergio Fujikawa > > > >> Ferreira wrote: > > > >> > > lioux 2006-09-25 00:47:40 UTC > > > >> > > > > > >> > > FreeBSD ports repository > > > >> > > > > > >> > > Modified files: > > > >> > > multimedia/ffmpeg-devel Makefile > > > >> > > multimedia/ffmpeg-devel/files patch-libavcodec_x264.c > > > >> > > Added files: > > > >> > > multimedia/ffmpeg-devel/files patch-libavformat_movenc.c > > > >> > > Log: > > > >> > > Fix build on 4.x: fix devel/sdl header include > > > >> > > > > > >> > > PR: 102431 > > > >> > > Submitted by: Shaun Amott > > > >> > > > > >> > Are you sure this is still correct after the recent SDL changes? > > > >> > > > > >> > Kris > > > >> > > > >> Ping. It appears to be broken. > > > > > > > > > > > patch-libavcodec_x264.c needs to be readded. It's there but it's empt= y. > >=20 > > Maybe so, but the Makefile also explicitly patches it to #include > > too, which is the wrongness I was referring to (SDL > > headers are now in . > >=20 > > Kris >=20 > It seems to me I've eliminated these strings in my mega SDL patch > and 1.94 builds successfully for me. Why it was introduced again in > 1.95? Yes, that's the error. Kris --jI8keyz6grp/JLjh Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHXPQWry0BWjoQKURAhXwAKCvJYbC1R0TUiXK/ct1UdAqiyNTlgCfahY5 KwekNLcekQaTjBSbYGtNa54= =CaMx -----END PGP SIGNATURE----- --jI8keyz6grp/JLjh-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 19:31:21 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 374A116A40F; Fri, 29 Sep 2006 19:31:21 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from dione.picobyte.net (host-212-158-207-124.bulldogdsl.com [212.158.207.124]) by mx1.FreeBSD.org (Postfix) with SMTP id 47BDB43D77; Fri, 29 Sep 2006 19:31:16 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from charon.picobyte.net (charon.picobyte.net [IPv6:2001:4bd0:201e::fe03]) by dione.picobyte.net (Postfix) with ESMTP; Fri, 29 Sep 2006 20:31:13 +0100 (BST) Date: Fri, 29 Sep 2006 20:31:13 +0100 From: Shaun Amott To: Kris Kennaway Message-ID: <20060929193113.GA2184@picobyte.net> References: <200609250047.k8P0leLL009808@repoman.freebsd.org> <20060925005252.GA50714@xor.obsecurity.org> <20060929004121.GA60887@xor.obsecurity.org> <20060929172834.GB31887@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OXfL5xGRrasGEqWY" Content-Disposition: inline In-Reply-To: <20060929172834.GB31887@xor.obsecurity.org> User-Agent: Mutt/1.5.11 (FreeBSD i386) Cc: cvs-ports@freebsd.org, Michael Johnson , ports-committers@freebsd.org, cvs-all@freebsd.org, Mario Sergio Fujikawa Ferreira Subject: Re: cvs commit: ports/multimedia/ffmpeg-devel Makefile ports/multimedia/ffmpeg-devel/files patch-libavcodec_x264.c patch-libavformat_movenc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 19:31:21 -0000 --OXfL5xGRrasGEqWY Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 01:28:34PM -0400, Kris Kennaway wrote: > On Fri, Sep 29, 2006 at 07:23:46AM -0400, Michael Johnson wrote: > > On 9/29/06, Michael Johnson wrote: > > > > > > > > > > > >On 9/28/06, Kris Kennaway wrote: > > >> > > >> On Sun, Sep 24, 2006 at 08:52:52PM -0400, Kris Kennaway wrote: > > >> > On Mon, Sep 25, 2006 at 12:47:40AM +0000, Mario Sergio Fujikawa > > >> Ferreira wrote: > > >> > > lioux 2006-09-25 00:47:40 UTC > > >> > > > > >> > > FreeBSD ports repository > > >> > > > > >> > > Modified files: > > >> > > multimedia/ffmpeg-devel Makefile > > >> > > multimedia/ffmpeg-devel/files patch-libavcodec_x264.c > > >> > > Added files: > > >> > > multimedia/ffmpeg-devel/files patch-libavformat_movenc.c > > >> > > Log: > > >> > > Fix build on 4.x: fix devel/sdl header include > > >> > > > > >> > > PR: 102431 > > >> > > Submitted by: Shaun Amott > > >> > > > >> > Are you sure this is still correct after the recent SDL changes? > > >> > > > >> > Kris > > >> > > >> Ping. It appears to be broken. > > > > > > > > patch-libavcodec_x264.c needs to be readded. It's there but it's empty. >=20 > Maybe so, but the Makefile also explicitly patches it to #include > too, which is the wrongness I was referring to (SDL > headers are now in . >=20 Yes, this is wrong. This change was not part of my patch, even though I seem to have been credited for it. --=20 Shaun Amott // PGP: 0x6B387A9A "A foolish consistency is the hobgoblin of little minds." - Ralph Waldo Emerson --OXfL5xGRrasGEqWY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFFHXSBkmhdCGs4epoRAj/2AJ9Sy9DNBrpcfnt9jGVmtp4X/VOGMQCglo/n 0Qm1yMmcNbziYPmwDrDPzIk= =+M0c -----END PGP SIGNATURE----- --OXfL5xGRrasGEqWY-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 19:31:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48AD216A416; Fri, 29 Sep 2006 19:31:22 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5E9A43D58; Fri, 29 Sep 2006 19:31:21 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TJVLS3038561; Fri, 29 Sep 2006 19:31:21 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TJVLsW038560; Fri, 29 Sep 2006 19:31:21 GMT (envelope-from ru) Message-Id: <200609291931.k8TJVLsW038560@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 19:31:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libc_r Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 19:31:22 -0000 ru 2006-09-29 19:31:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc_r Makefile Log: On alpha and sparc64, install shared libc_r into /lib because it's aliased to libpthread and some /sbin tools need it. This is pseudo-MFC because in HEAD libthr is aliased to libpthread on sparc64 (and was on alpha). Approved by: re (kensmith) Revision Changes Path 1.41.2.2 +2 -1 src/lib/libc_r/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 19:34:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8261216A416; Fri, 29 Sep 2006 19:34:40 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5105643D5D; Fri, 29 Sep 2006 19:34:38 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TJYc8D038708; Fri, 29 Sep 2006 19:34:38 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TJYcXo038707; Fri, 29 Sep 2006 19:34:38 GMT (envelope-from ru) Message-Id: <200609291934.k8TJYcXo038707@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 19:34:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 19:34:40 -0000 ru 2006-09-29 19:34:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . ObsoleteFiles.inc Log: Shared pcap and pthread (libc_r on alpha and sparc64) libraries moved to /lib. Approved by: re (kensmith) Revision Changes Path 1.25.2.7 +8 -0 src/ObsoleteFiles.inc From owner-cvs-all@FreeBSD.ORG Fri Sep 29 19:54:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B96116A412; Fri, 29 Sep 2006 19:54:04 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2-3.pacific.net.au [61.8.2.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96CFB43D45; Fri, 29 Sep 2006 19:54:03 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.2.163]) by mailout2.pacific.net.au (Postfix) with ESMTP id 2D24F10B2F1; Sat, 30 Sep 2006 05:54:02 +1000 (EST) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy2.pacific.net.au (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k8TJrxKt009619; Sat, 30 Sep 2006 05:54:00 +1000 Date: Sat, 30 Sep 2006 05:53:58 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Martin Blapp In-Reply-To: <20060929202338.W91466@godot.imp.ch> Message-ID: <20060930044711.H96144@delplex.bde.org> References: <200609290952.k8T9qvcU053566@repoman.freebsd.org> <20060929202338.W91466@godot.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 19:54:04 -0000 On Fri, 29 Sep 2006, Martin Blapp wrote: >> Free tty struct after last close. This should fix the pty-leak by numbers. >> Remove workarounds for tty_refcount beeing 0, this will be fixed >> differently >> later. >> >> Back out rev 1.145 since we initialize the tty struct from scratch and bad >> things can't happen anymore. > > Sigh. Peter Holmes stress tests did show that we still have problems. With > the beckout of rev. 1.145 we get again the same panics as the pty_pts code > does. > This is deep somewhere in the devfs code. It does happen with/without freeing > struct tty. > > Memory modified after free 0xc45b7d00(252) val=deadc0dd @ 0xc45b7d70 > panic: Most recently used by DEVFS1 > ... I think I found the bug while looking for problems near vgonel(). We're nowhere near ready to free devices in in last-close, since vgonel() doesn't do anything to evict processes from device functions before it forces the device closed. Drivers must be aware of the problem. The tty driver already is. See the comments about t_gen near tty_close() and ttysleep(). t_gen must live across close so that any processes in device functions can check it after they wake up, and the tty and device data structures must live across last- close to hold t_gen and anything else needed for the device functions to return. Sleeping device functions normally wake up after last-close returns. Bruce From owner-cvs-all@FreeBSD.ORG Fri Sep 29 20:07:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBCEA16A47C; Fri, 29 Sep 2006 20:07:16 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B6A43D46; Fri, 29 Sep 2006 20:07:16 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TK7GUa041398; Fri, 29 Sep 2006 20:07:16 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TK7G3E041397; Fri, 29 Sep 2006 20:07:16 GMT (envelope-from jhb) Message-Id: <200609292007.k8TK7G3E041397@repoman.freebsd.org> From: John Baldwin Date: Fri, 29 Sep 2006 20:07:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/i386/libi386 biossmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 20:07:17 -0000 jhb 2006-09-29 20:07:16 UTC FreeBSD src repository Modified files: sys/boot/i386/libi386 biossmap.c Log: Oops, add return values for the smap command function. We must have the warnings set weird or something because gcc didn't warn about this at all. Submitted by: ru Revision Changes Path 1.6 +2 -1 src/sys/boot/i386/libi386/biossmap.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 20:13:48 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F323F16A54B; Fri, 29 Sep 2006 20:13:47 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id F11B343D55; Fri, 29 Sep 2006 20:13:46 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id AAE1D5F4C; Sat, 30 Sep 2006 00:13:45 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 87E305F46; Sat, 30 Sep 2006 00:13:45 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id k8TKDlj9044887; Sat, 30 Sep 2006 00:13:47 +0400 (MSD) (envelope-from ru) Date: Sat, 30 Sep 2006 00:13:47 +0400 From: Ruslan Ermilov To: John Baldwin Message-ID: <20060929201347.GA44840@rambler-co.ru> References: <200609292007.k8TK7G3E041397@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Kj7319i9nmIyA2yE" Content-Disposition: inline In-Reply-To: <200609292007.k8TK7G3E041397@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/boot/i386/libi386 biossmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 20:13:48 -0000 --Kj7319i9nmIyA2yE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 29, 2006 at 08:07:16PM +0000, John Baldwin wrote: > jhb 2006-09-29 20:07:16 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/boot/i386/libi386 biossmap.c=20 > Log: > Oops, add return values for the smap command function. We must have the > warnings set weird or something because gcc didn't warn about this at a= ll. > =20 > Submitted by: ru > =20 > Revision Changes Path > 1.6 +2 -1 src/sys/boot/i386/libi386/biossmap.c >=20 WARNS are simply not set at all in sys/boot/. We might add some and fix some bugs? :-) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Kj7319i9nmIyA2yE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHX57qRfpzJluFF4RAieOAJ9q8BBV4692S5CWNkVBkKYNhbrwMwCfYMv7 JXNQiS9GUljamlwlks3SMfg= =anSN -----END PGP SIGNATURE----- --Kj7319i9nmIyA2yE-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 20:14:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C61B16A403; Fri, 29 Sep 2006 20:14:32 +0000 (UTC) (envelope-from xride@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E641843D66; Fri, 29 Sep 2006 20:14:31 +0000 (GMT) (envelope-from xride@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TKEV7k041750; Fri, 29 Sep 2006 20:14:31 GMT (envelope-from xride@repoman.freebsd.org) Received: (from xride@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TKEV98041749; Fri, 29 Sep 2006 20:14:31 GMT (envelope-from xride) Message-Id: <200609292014.k8TKEV98041749@repoman.freebsd.org> From: Soeren Staarup Date: Fri, 29 Sep 2006 20:14:31 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml news.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 20:14:32 -0000 xride 2006-09-29 20:14:31 UTC FreeBSD doc repository (ports committer) Modified files: share/sgml news.xml Log: Add myself as a new ports committer to news. Approved by: tmclaugh Revision Changes Path 1.11 +8 -1 www/share/sgml/news.xml From owner-cvs-all@FreeBSD.ORG Fri Sep 29 20:27:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58CA216A47C; Fri, 29 Sep 2006 20:27:42 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1363343D5E; Fri, 29 Sep 2006 20:27:42 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TKRfiB042363; Fri, 29 Sep 2006 20:27:41 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TKRfpv042362; Fri, 29 Sep 2006 20:27:41 GMT (envelope-from ru) Message-Id: <200609292027.k8TKRfpv042362@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 20:27:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/i386/libi386 biospci.c bootinfo64.c elf64_freebsd.c libi386.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 20:27:42 -0000 ru 2006-09-29 20:27:41 UTC FreeBSD src repository Modified files: sys/boot/i386/libi386 biospci.c bootinfo64.c elf64_freebsd.c libi386.h Log: Fix most of the WARNS=2 warnings. Revision Changes Path 1.6 +1 -0 src/sys/boot/i386/libi386/biospci.c 1.37 +1 -3 src/sys/boot/i386/libi386/bootinfo64.c 1.16 +1 -1 src/sys/boot/i386/libi386/elf64_freebsd.c 1.26 +2 -2 src/sys/boot/i386/libi386/libi386.h From owner-cvs-all@FreeBSD.ORG Fri Sep 29 20:32:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68E5D16A412; Fri, 29 Sep 2006 20:32:47 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23DC443D45; Fri, 29 Sep 2006 20:32:47 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TKWlmD042684; Fri, 29 Sep 2006 20:32:47 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TKWlfp042683; Fri, 29 Sep 2006 20:32:47 GMT (envelope-from thierry) Message-Id: <200609292032.k8TKWlfp042683@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 29 Sep 2006 20:32:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/digitizer Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 20:32:47 -0000 thierry 2006-09-29 20:32:46 UTC FreeBSD ports repository Modified files: math/digitizer Makefile distinfo pkg-plist Log: Upgrade to 3.0. Changelog at . Revision Changes Path 1.3 +1 -1 ports/math/digitizer/Makefile 1.3 +3 -3 ports/math/digitizer/distinfo 1.3 +7 -0 ports/math/digitizer/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Sep 29 20:58:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3D2F16A416; Fri, 29 Sep 2006 20:58:09 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA44943D9E; Fri, 29 Sep 2006 20:57:48 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TKvc0t051745; Fri, 29 Sep 2006 20:57:38 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TKvcaD051744; Fri, 29 Sep 2006 20:57:38 GMT (envelope-from ru) Message-Id: <200609292057.k8TKvcaD051744@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 20:57:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/common panic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 20:58:09 -0000 ru 2006-09-29 20:57:38 UTC FreeBSD src repository Modified files: sys/boot/common panic.c Log: Fix WARNS=2 warnings. Revision Changes Path 1.8 +2 -0 src/sys/boot/common/panic.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 20:58:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95E7616A415; Fri, 29 Sep 2006 20:58:25 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA78943DAB; Fri, 29 Sep 2006 20:58:00 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TKvv3M051782; Fri, 29 Sep 2006 20:57:57 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TKvv8h051781; Fri, 29 Sep 2006 20:57:57 GMT (envelope-from ahze) Message-Id: <200609292057.k8TKvv8h051781@repoman.freebsd.org> From: Michael Johnson Date: Fri, 29 Sep 2006 20:57:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/glibmm Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 20:58:25 -0000 ahze 2006-09-29 20:57:57 UTC FreeBSD ports repository Modified files: devel/glibmm Makefile distinfo Log: - Update to 2.10.7 Revision Changes Path 1.23 +1 -1 ports/devel/glibmm/Makefile 1.16 +3 -3 ports/devel/glibmm/distinfo From owner-cvs-all@FreeBSD.ORG Fri Sep 29 20:59:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DC0016A403; Fri, 29 Sep 2006 20:59:06 +0000 (UTC) (envelope-from xride@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B058443D73; Fri, 29 Sep 2006 20:58:53 +0000 (GMT) (envelope-from xride@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TKwr2D051898; Fri, 29 Sep 2006 20:58:53 GMT (envelope-from xride@repoman.freebsd.org) Received: (from xride@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TKwrQ6051897; Fri, 29 Sep 2006 20:58:53 GMT (envelope-from xride) Message-Id: <200609292058.k8TKwrQ6051897@repoman.freebsd.org> From: Soeren Staarup Date: Fri, 29 Sep 2006 20:58:53 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/share/pgpkeys pgpkeys-developers.sgml pgpkeys.ent xride.key doc/en_US.ISO8859-1/share/sgml authors.ent doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml contrib.committers.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 20:59:06 -0000 xride 2006-09-29 20:58:53 UTC FreeBSD doc repository (ports committer) Modified files: share/pgpkeys pgpkeys-developers.sgml pgpkeys.ent en_US.ISO8859-1/share/sgml authors.ent en_US.ISO8859-1/articles/contributors contrib.additional.sgml contrib.committers.sgml Added files: share/pgpkeys xride.key Log: Adding myself as a new committer and adding my PGP key information. Approved by: tmclaugh Revision Changes Path 1.610 +0 -5 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml 1.154 +4 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml 1.399 +2 -0 doc/en_US.ISO8859-1/share/sgml/authors.ent 1.31 +5 -0 doc/share/pgpkeys/pgpkeys-developers.sgml 1.121 +1 -0 doc/share/pgpkeys/pgpkeys.ent 1.1 +48 -0 doc/share/pgpkeys/xride.key (new) From owner-cvs-all@FreeBSD.ORG Fri Sep 29 20:59:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4B1116A407; Fri, 29 Sep 2006 20:59:59 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 602C743D46; Fri, 29 Sep 2006 20:59:59 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TKxxI8051966; Fri, 29 Sep 2006 20:59:59 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TKxxBY051965; Fri, 29 Sep 2006 20:59:59 GMT (envelope-from pav) Message-Id: <200609292059.k8TKxxBY051965@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 29 Sep 2006 20:59:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/palm/jpilot Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 20:59:59 -0000 pav 2006-09-29 20:59:59 UTC FreeBSD ports repository Modified files: palm/jpilot Makefile pkg-plist Log: - Fix plist Reported by: krismail Revision Changes Path 1.57 +1 -1 ports/palm/jpilot/Makefile 1.19 +2 -0 ports/palm/jpilot/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Sep 29 21:09:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C12F16A407; Fri, 29 Sep 2006 21:09:55 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EC3843D6B; Fri, 29 Sep 2006 21:09:29 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8TL9M9U032814; Fri, 29 Sep 2006 23:09:25 +0200 (CEST) (envelope-from mb@imp.ch) Date: Fri, 29 Sep 2006 23:09:22 +0200 (CEST) From: Martin Blapp To: Bruce Evans In-Reply-To: <20060930044711.H96144@delplex.bde.org> Message-ID: <20060929230809.Q91466@godot.imp.ch> References: <200609290952.k8T9qvcU053566@repoman.freebsd.org> <20060929202338.W91466@godot.imp.ch> <20060930044711.H96144@delplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 21:09:55 -0000 Hi, > I think I found the bug while looking for problems near vgonel(). We're > nowhere near ready to free devices in in last-close, since vgonel() doesn't > do anything to evict processes from device functions before it forces the > device closed. Drivers must be aware of the problem. The tty driver > already is. See the comments about t_gen near tty_close() and ttysleep(). > t_gen must live across close so that any processes in device functions can > check it after they wake up, and the tty and device data structures must > live across last- close to hold t_gen and anything else needed for the > device functions to return. Sleeping device functions normally wake up > after last-close returns. So what can we do to destroy devices after last close ? Mark them with some flag and handle this during device operations ? Martin From owner-cvs-all@FreeBSD.ORG Fri Sep 29 21:17:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DEA916A40F; Fri, 29 Sep 2006 21:17:11 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3150743D53; Fri, 29 Sep 2006 21:17:11 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TLHAco054839; Fri, 29 Sep 2006 21:17:10 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TLHA4r054838; Fri, 29 Sep 2006 21:17:10 GMT (envelope-from ru) Message-Id: <200609292117.k8TLHA4r054838@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 21:17:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/make make.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 21:17:11 -0000 ru 2006-09-29 21:17:10 UTC FreeBSD src repository Modified files: usr.bin/make make.1 Log: Markup nit. Revision Changes Path 1.99 +1 -1 src/usr.bin/make/make.1 From owner-cvs-all@FreeBSD.ORG Fri Sep 29 21:19:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC93D16A407; Fri, 29 Sep 2006 21:19:09 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1EB743D5E; Fri, 29 Sep 2006 21:19:08 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (critter.freebsd.dk [192.168.48.2]) by phk.freebsd.dk (Postfix) with ESMTP id 90436170C5; Fri, 29 Sep 2006 21:19:05 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.8/8.13.8) with ESMTP id k8TLIvuN008210; Fri, 29 Sep 2006 21:18:57 GMT (envelope-from phk@critter.freebsd.dk) To: Martin Blapp From: "Poul-Henning Kamp" In-Reply-To: Your message of "Fri, 29 Sep 2006 23:09:22 +0200." <20060929230809.Q91466@godot.imp.ch> Date: Fri, 29 Sep 2006 21:18:57 +0000 Message-ID: <8209.1159564737@critter.freebsd.dk> Sender: phk@critter.freebsd.dk Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, Bruce Evans , src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 21:19:09 -0000 In message <20060929230809.Q91466@godot.imp.ch>, Martin Blapp writes: >So what can we do to destroy devices after last close ? Mark them with some >flag and handle this during device operations ? DEVFS has an eviction feature which, at this point, is only used in UFS I belive. -- 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 Fri Sep 29 21:21:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9721716A47E; Fri, 29 Sep 2006 21:21:58 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9BC543D83; Fri, 29 Sep 2006 21:21:53 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TLLrJh055289; Fri, 29 Sep 2006 21:21:53 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TLLr8D055288; Fri, 29 Sep 2006 21:21:53 GMT (envelope-from jhb) Message-Id: <200609292121.k8TLLr8D055288@repoman.freebsd.org> From: John Baldwin Date: Fri, 29 Sep 2006 21:21:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/amd64/conf NOTES src/sys/conf files.amd64 files.i386 src/sys/dev/ipmi ipmi.c ipmi_acpi.c ipmi_isa.c ipmi_kcs.c ipmi_pci.c ipmi_smbios.c ipmi_smbus.c ipmi_smic.c ipmi_ssif.c ipmivars.h src/sys/i386/conf NOTES ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 21:21:58 -0000 jhb 2006-09-29 21:21:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/conf NOTES sys/conf files.amd64 files.i386 sys/dev/ipmi ipmi.c ipmi_pci.c ipmi_smbios.c ipmivars.h sys/i386/conf NOTES sys/modules/ipmi Makefile sys/sys ipmi.h Added files: (Branch: RELENG_6) sys/dev/ipmi ipmi_acpi.c ipmi_isa.c ipmi_kcs.c ipmi_smbus.c ipmi_smic.c ipmi_ssif.c Log: MFC: Update to the ipmi(4) driver to add more attachments as well as SSIF support and make it MPSAFE. Approved by: re (kensmith) Revision Changes Path 1.36.2.11 +2 -0 src/sys/amd64/conf/NOTES 1.71.2.10 +7 -1 src/sys/conf/files.amd64 1.538.2.12 +7 -1 src/sys/conf/files.i386 1.3.2.2 +676 -773 src/sys/dev/ipmi/ipmi.c 1.1.2.1 +210 -0 src/sys/dev/ipmi/ipmi_acpi.c (new) 1.1.2.1 +209 -0 src/sys/dev/ipmi/ipmi_isa.c (new) 1.1.2.1 +607 -0 src/sys/dev/ipmi/ipmi_kcs.c (new) 1.1.2.2 +203 -217 src/sys/dev/ipmi/ipmi_pci.c 1.1.2.2 +143 -367 src/sys/dev/ipmi/ipmi_smbios.c 1.1.2.1 +131 -0 src/sys/dev/ipmi/ipmi_smbus.c (new) 1.1.2.1 +361 -0 src/sys/dev/ipmi/ipmi_smic.c (new) 1.1.2.1 +375 -0 src/sys/dev/ipmi/ipmi_ssif.c (new) 1.1.2.2 +170 -42 src/sys/dev/ipmi/ipmivars.h 1.1202.2.12 +4 -2 src/sys/i386/conf/NOTES 1.1.2.2 +6 -2 src/sys/modules/ipmi/Makefile 1.1.2.2 +36 -0 src/sys/sys/ipmi.h From owner-cvs-all@FreeBSD.ORG Fri Sep 29 21:24:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA11F16A412; Fri, 29 Sep 2006 21:24:19 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95C0A43D4C; Fri, 29 Sep 2006 21:24:19 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TLOJOW055400; Fri, 29 Sep 2006 21:24:19 GMT (envelope-from danger@repoman.freebsd.org) Received: (from danger@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TLOJCc055399; Fri, 29 Sep 2006 21:24:19 GMT (envelope-from danger) Message-Id: <200609292124.k8TLOJCc055399@repoman.freebsd.org> From: Daniel Gerzo Date: Fri, 29 Sep 2006 21:24:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/share/man/man8 picobsd.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 21:24:20 -0000 danger 2006-09-29 21:24:19 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6) share/man/man8 picobsd.8 Log: - remove reference to vnconfig(8) as this is linked to mdconfig(8), which is referenced too - markup fixes Approved by: re (bmah), keramida (mentor) Revision Changes Path 1.26.2.2 +4 -4 src/share/man/man8/picobsd.8 From owner-cvs-all@FreeBSD.ORG Fri Sep 29 21:24:27 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A760F16A722; Fri, 29 Sep 2006 21:24:27 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2B0D43D4C; Fri, 29 Sep 2006 21:24:26 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k8TLOFdX018701; Fri, 29 Sep 2006 17:24:24 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Ruslan Ermilov Date: Fri, 29 Sep 2006 16:17:17 -0400 User-Agent: KMail/1.9.1 References: <200609292007.k8TK7G3E041397@repoman.freebsd.org> <20060929201347.GA44840@rambler-co.ru> In-Reply-To: <20060929201347.GA44840@rambler-co.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609291617.18245.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Fri, 29 Sep 2006 17:24:24 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1950/Thu Sep 28 10:11:54 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/boot/i386/libi386 biossmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 21:24:28 -0000 On Friday 29 September 2006 16:13, Ruslan Ermilov wrote: > On Fri, Sep 29, 2006 at 08:07:16PM +0000, John Baldwin wrote: > > jhb 2006-09-29 20:07:16 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/boot/i386/libi386 biossmap.c > > Log: > > Oops, add return values for the smap command function. We must have the > > warnings set weird or something because gcc didn't warn about this at all. > > > > Submitted by: ru > > > > Revision Changes Path > > 1.6 +2 -1 src/sys/boot/i386/libi386/biossmap.c > > > WARNS are simply not set at all in sys/boot/. We might add some > and fix some bugs? :-) Heh, probably. -- John Baldwin From owner-cvs-all@FreeBSD.ORG Fri Sep 29 21:38:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B085316A547; Fri, 29 Sep 2006 21:38:14 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4326343D55; Fri, 29 Sep 2006 21:38:13 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TLcDBc056184; Fri, 29 Sep 2006 21:38:13 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TLcDqP056183; Fri, 29 Sep 2006 21:38:13 GMT (envelope-from andre) Message-Id: <200609292138.k8TLcDqP056183@repoman.freebsd.org> From: Andre Oppermann Date: Fri, 29 Sep 2006 21:38:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 21:38:14 -0000 andre 2006-09-29 21:38:13 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Back out rev. 1.152 as it was breaking vlan tag insertion when vlan tag stripping was disabled due to being in promisc mode. This is a hardware bug. Update comment to explicitly state the reason the manual vlan tag insertion in this case. See rev. 1.53 for further information as well. Noticed by: jhb Revision Changes Path 1.154 +39 -0 src/sys/dev/em/if_em.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 22:01:24 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4953416A407; Fri, 29 Sep 2006 22:01:24 +0000 (UTC) (envelope-from xride@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCF4F43D5F; Fri, 29 Sep 2006 22:01:23 +0000 (GMT) (envelope-from xride@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TM1N89058006; Fri, 29 Sep 2006 22:01:23 GMT (envelope-from xride@repoman.freebsd.org) Received: (from xride@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TM1Nbb058002; Fri, 29 Sep 2006 22:01:23 GMT (envelope-from xride) Message-Id: <200609292201.k8TM1Nbb058002@repoman.freebsd.org> From: Soeren Staarup Date: Fri, 29 Sep 2006 22:01:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/astro/phoon Makefile ports/audio/dream Makefile ports/audio/gnump3d Makefile ports/audio/py-ao Makefile ports/audio/py-ogg Makefile ports/audio/py-vorbis Makefile ports/comms/gpsk31 Makefile ports/comms/linpsk Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 22:01:24 -0000 xride 2006-09-29 22:01:23 UTC FreeBSD ports repository Modified files: astro/phoon Makefile audio/dream Makefile audio/gnump3d Makefile audio/py-ao Makefile audio/py-ogg Makefile audio/py-vorbis Makefile comms/gpsk31 Makefile comms/linpsk Makefile comms/twpsk Makefile comms/xnecview Makefile databases/pydbdesigner Makefile devel/picp Makefile devel/py-ciphon Makefile devel/py-log4py Makefile devel/py-simpy Makefile graphics/py-graphviz Makefile mail/spamoracle Makefile net/libosip2 Makefile net/wmnetmon Makefile sysutils/roottail Makefile sysutils/wmcpuload Makefile sysutils/wmmemload Makefile textproc/py-rdflib Makefile www/py-jonpy Makefile x11/wdm Makefile x11-clocks/wmclockmon Makefile x11-clocks/wmitime Makefile Log: Change my MAINTAINER email to be my @FreeBSD email Approved by: tmclaugh Revision Changes Path 1.9 +1 -1 ports/astro/phoon/Makefile 1.5 +1 -1 ports/audio/dream/Makefile 1.46 +1 -1 ports/audio/gnump3d/Makefile 1.13 +1 -1 ports/audio/py-ao/Makefile 1.10 +1 -1 ports/audio/py-ogg/Makefile 1.10 +1 -1 ports/audio/py-vorbis/Makefile 1.7 +1 -1 ports/comms/gpsk31/Makefile 1.9 +1 -1 ports/comms/linpsk/Makefile 1.5 +1 -1 ports/comms/twpsk/Makefile 1.6 +1 -1 ports/comms/xnecview/Makefile 1.15 +1 -1 ports/databases/pydbdesigner/Makefile 1.8 +1 -1 ports/devel/picp/Makefile 1.8 +1 -1 ports/devel/py-ciphon/Makefile 1.7 +1 -1 ports/devel/py-log4py/Makefile 1.6 +1 -1 ports/devel/py-simpy/Makefile 1.14 +1 -1 ports/graphics/py-graphviz/Makefile 1.11 +1 -1 ports/mail/spamoracle/Makefile 1.29 +1 -1 ports/net/libosip2/Makefile 1.8 +1 -1 ports/net/wmnetmon/Makefile 1.16 +1 -1 ports/sysutils/roottail/Makefile 1.21 +1 -1 ports/sysutils/wmcpuload/Makefile 1.8 +1 -1 ports/sysutils/wmmemload/Makefile 1.10 +1 -1 ports/textproc/py-rdflib/Makefile 1.2 +1 -1 ports/www/py-jonpy/Makefile 1.19 +1 -1 ports/x11-clocks/wmclockmon/Makefile 1.15 +1 -1 ports/x11-clocks/wmitime/Makefile 1.74 +1 -1 ports/x11/wdm/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 22:41:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B08716A415; Fri, 29 Sep 2006 22:41:56 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 078B643D5D; Fri, 29 Sep 2006 22:41:56 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMftrd061332; Fri, 29 Sep 2006 22:41:55 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMftvE061331; Fri, 29 Sep 2006 22:41:55 GMT (envelope-from rwatson) Message-Id: <200609292241.k8TMftvE061331@repoman.freebsd.org> From: Robert Watson Date: Fri, 29 Sep 2006 22:41:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/contrib/openbsm HISTORY TODO VERSION configure configure.ac src/contrib/openbsm/bin/audit audit.c src/contrib/openbsm/bin/auditd audit_warn.c auditd.8 auditd.c auditd.h src/contrib/openbsm/bin/auditreduce auditreduce.1 ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 22:41:56 -0000 rwatson 2006-09-29 22:41:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) contrib/openbsm HISTORY TODO VERSION configure configure.ac contrib/openbsm/bin/audit audit.c contrib/openbsm/bin/auditd audit_warn.c auditd.8 auditd.c auditd.h contrib/openbsm/bin/auditreduce auditreduce.1 auditreduce.c auditreduce.h contrib/openbsm/bsm libbsm.h contrib/openbsm/config config.h config.h.in contrib/openbsm/etc audit_control audit_event contrib/openbsm/libbsm au_control.3 au_open.3 bsm_control.c bsm_io.c bsm_token.c libbsm.3 contrib/openbsm/man audit_control.5 auditon.2 contrib/openbsm/tools audump.c Added files: (Branch: RELENG_6) contrib/openbsm/compat strlcat.h contrib/openbsm/test/reference arg32_record arg32_token data_record data_token file_record file_token header32_token in_addr_record in_addr_token ip_record ip_token ipc_record ipc_token iport_record iport_token opaque_record opaque_token path_record path_token process32_record process32_token process32ex_record process32ex_token return32_record return32_token seq_record seq_token subject32_record subject32_token subject32ex_record subject32ex_token-IPv4 subject32ex_token-IPv6 text_record text_token trailer_token contrib/openbsm/test/samples execve-long-args.trail Log: Merge OpenBSM 1.0 alpha 12 from HEAD to RELENG_6, which includes a broad range of bug fixes made as a result of reports on 6.x, as well as some minor enhancements: OpenBSM 1.0 alpha 12 - Correct bug in auditreduce which prevented the -c option from working correctly when the user specifies to process successful or failed events. The problem stemmed from not having access to the return token at the time the initial preselection occurred, but now a second preselection process occurs while processing the return token. - getacfilesz(3) API added to read new audit_control(5) filesz setting, which auditd(8) now sets the kernel audit trail rotation size to. - auditreduce(1) now uses stdin if no file names are specified on the command line; this was the documented behavior previously, but it was not implemented. Be more specific in auditreduce(1)'s examples section about what might be done with the output of auditreduce. - Add audit_warn(5) closefile event so that administrators can hook termination of an audit trail file. For example, this might be used to compress the trail file after it is closed. - auditreduce(1) now uses regular expressions for pathname matching. Users can now supply one or more (comma delimited) regular expressions for searching the pathnames. If one of the regular expressions is prefixed with a tilde (~), and a path matches, it will be excluded from the search results. OpenBSM 1.0 alpha 11 - Reclassify certain read/write operations as having no class rather than the fr/fw class; our default classes audit intent (open) not operations (read, write). - Introduce AUE_SYSCTL_WRITE event so that BSD/Darwin systems can audit reads and writes of sysctls as separate events. Add additional kernel environment and jail events for FreeBSD. - Break AUDIT_TRIGGER_OPEN_NEW into two events, AUDIT_TRIGGER_ROTATE_USER (issued by the user audit(8) tool) and AUDIT_TRIGGER_ROTATE_KERNEL (issued by the kernel audit implementation) so that they can be distinguished. - Disable rate limiting of rotate requests; as the kernel doesn't retransmit a dropped request, the log file will otherwise grow indefinitely if the trigger is dropped. - Improve auditd debugging output. - Fix a number of threading related bugs in audit_control file reading routines. - Add APIs au_poltostr() and au_strtopol() to convert between text representations of audit_control policy flags and the flags passed to auditon(A_SETPOLICY) and retrieved from auditon(A_GETPOLICY). - Add API getacpol() to return the 'policy:' entry from audit_control, an extension to the Solaris file format to allow specification of policy persistent flags. - Update audump to print the audit_control policy field. - Update auditd to read the audit_control policy field and set the kernel policy to match it when configuring/reconfiguring. Remove the -s and -h arguments as these policies are now set via the configuration file. If a policy line is not found in the configuration file, continue with the current default of setting AUDIT_CNT. - Fix bugs in the parsing of large execve(2) arguments and environmental variable tokens; increase maximum parsed argument and variable count. - configure now detects strlcat(), used by policy-related functions. - Reference token and record sample files added to test tree. Approved by: re (kensmith) Revision Changes Path 1.1.1.5.2.2 +56 -1 src/contrib/openbsm/HISTORY 1.1.1.3.2.2 +3 -1 src/contrib/openbsm/TODO 1.1.1.6.2.2 +1 -1 src/contrib/openbsm/VERSION 1.1.1.4.2.2 +2 -2 src/contrib/openbsm/bin/audit/audit.c 1.1.1.2.2.2 +16 -1 src/contrib/openbsm/bin/auditd/audit_warn.c 1.1.1.2.2.2 +14 -8 src/contrib/openbsm/bin/auditd/auditd.8 1.1.1.7.2.2 +101 -42 src/contrib/openbsm/bin/auditd/auditd.c 1.1.1.2.2.2 +4 -2 src/contrib/openbsm/bin/auditd/auditd.h 1.1.1.3.2.2 +36 -7 src/contrib/openbsm/bin/auditreduce/auditreduce.1 1.1.1.3.2.2 +103 -17 src/contrib/openbsm/bin/auditreduce/auditreduce.c 1.1.1.1.2.2 +8 -1 src/contrib/openbsm/bin/auditreduce/auditreduce.h 1.1.1.6.2.2 +22 -7 src/contrib/openbsm/bsm/libbsm.h 1.1.1.1.2.1 +66 -0 src/contrib/openbsm/compat/strlcat.h (new) 1.3.2.2 +7 -4 src/contrib/openbsm/config/config.h 1.1.1.3.2.2 +3 -0 src/contrib/openbsm/config/config.h.in 1.1.1.5.2.2 +13 -12 src/contrib/openbsm/configure 1.1.1.5.2.2 +3 -3 src/contrib/openbsm/configure.ac 1.2.2.2 +4 -2 src/contrib/openbsm/etc/audit_control 1.4.2.2 +14 -7 src/contrib/openbsm/etc/audit_event 1.1.1.2.2.2 +47 -4 src/contrib/openbsm/libbsm/au_control.3 1.1.1.1.2.2 +6 -4 src/contrib/openbsm/libbsm/au_open.3 1.1.1.1.2.2 +310 -69 src/contrib/openbsm/libbsm/bsm_control.c 1.1.1.4.2.2 +10 -4 src/contrib/openbsm/libbsm/bsm_io.c 1.1.1.7.2.2 +1 -2 src/contrib/openbsm/libbsm/bsm_token.c 1.1.1.3.2.2 +12 -4 src/contrib/openbsm/libbsm/libbsm.3 1.1.1.2.2.2 +69 -2 src/contrib/openbsm/man/audit_control.5 1.1.1.2.2.2 +2 -2 src/contrib/openbsm/man/auditon.2 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/arg32_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/arg32_token (new) 1.1.1.1.2.1 +3 -0 src/contrib/openbsm/test/reference/data_record (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/data_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/file_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/file_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/header32_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/in_addr_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/in_addr_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/ip_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/ip_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/ipc_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/ipc_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/iport_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/iport_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/opaque_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/opaque_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/path_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/path_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/process32_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/process32_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/process32ex_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/process32ex_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/return32_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/return32_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/seq_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/seq_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/subject32_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/subject32_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/subject32ex_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/subject32ex_token-IPv4 (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/subject32ex_token-IPv6 (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/reference/text_record (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/text_token (new) 1.1.1.1.2.1 +1 -0 src/contrib/openbsm/test/reference/trailer_token (new) 1.1.1.1.2.1 +2 -0 src/contrib/openbsm/test/samples/execve-long-args.trail (new) 1.1.1.2.2.2 +13 -3 src/contrib/openbsm/tools/audump.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 22:43:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9938A16A40F; Fri, 29 Sep 2006 22:43:32 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D81B543D70; Fri, 29 Sep 2006 22:43:30 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMhU0W061415; Fri, 29 Sep 2006 22:43:30 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMhUAq061414; Fri, 29 Sep 2006 22:43:30 GMT (envelope-from rwatson) Message-Id: <200609292243.k8TMhUAq061414@repoman.freebsd.org> From: Robert Watson Date: Fri, 29 Sep 2006 22:43:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/bsm audit.h audit_internal.h audit_kevents.h audit_record.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 22:43:32 -0000 rwatson 2006-09-29 22:43:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/bsm audit.h audit_internal.h audit_kevents.h audit_record.h Log: Merge OpenBSM 1.0 alpha 11 + 12 into src/sys/bsm; cleanup of trigger types, some defines, and some new record types. Approved by: re (kensmith) Obtained from: TrustedBSD Project Revision Changes Path 1.1.2.2 +12 -16 src/sys/bsm/audit.h 1.4.2.2 +1 -1 src/sys/bsm/audit_internal.h 1.2.2.2 +8 -1 src/sys/bsm/audit_kevents.h 1.5.2.2 +1 -1 src/sys/bsm/audit_record.h From owner-cvs-all@FreeBSD.ORG Fri Sep 29 22:45:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E19216A5E0; Fri, 29 Sep 2006 22:45:50 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 212FE43D64; Fri, 29 Sep 2006 22:45:50 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMjolH061714; Fri, 29 Sep 2006 22:45:50 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMjnlw061713; Fri, 29 Sep 2006 22:45:49 GMT (envelope-from rwatson) Message-Id: <200609292245.k8TMjnlw061713@repoman.freebsd.org> From: Robert Watson Date: Fri, 29 Sep 2006 22:45:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/security/audit audit_worker.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 22:45:51 -0000 rwatson 2006-09-29 22:45:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/security/audit audit_worker.c Log: Update kernel audit implementation for OpenBSM 1.0 alpha 12: use new trigger name for kernel-generated audit rotation events. Approved by: re (kensmith) Obtained from: TrustedBSD Project Revision Changes Path 1.9.2.4 +1 -1 src/sys/security/audit/audit_worker.c From owner-cvs-all@FreeBSD.ORG Fri Sep 29 22:46:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87A3916A407; Fri, 29 Sep 2006 22:46:55 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CA4843D77; Fri, 29 Sep 2006 22:46:53 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMkr0t061794; Fri, 29 Sep 2006 22:46:53 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMkraS061793; Fri, 29 Sep 2006 22:46:53 GMT (envelope-from rwatson) Message-Id: <200609292246.k8TMkraS061793@repoman.freebsd.org> From: Robert Watson Date: Fri, 29 Sep 2006 22:46:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/auditreduce Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 22:46:55 -0000 rwatson 2006-09-29 22:46:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/auditreduce Makefile Log: Merge Makefile:1.2 from HEAD to RELENG_6: auditreduce now requires OpenBSM's config/config.h, so add that to the build include path. Obtained from: TrustedBSD Project Approved by: re (kensmith) Revision Changes Path 1.1.2.2 +2 -0 src/usr.sbin/auditreduce/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 22:47:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E64C316A412; Fri, 29 Sep 2006 22:47:55 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB2B343D80; Fri, 29 Sep 2006 22:47:50 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMloD0061845; Fri, 29 Sep 2006 22:47:50 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMlobr061844; Fri, 29 Sep 2006 22:47:50 GMT (envelope-from rwatson) Message-Id: <200609292247.k8TMlobr061844@repoman.freebsd.org> From: Robert Watson Date: Fri, 29 Sep 2006 22:47:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libbsm Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 22:47:56 -0000 rwatson 2006-09-29 22:47:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libbsm Makefile Log: Merge Makefile:1.5 from HEAD to RELENG_6: Hook up additional OpenBSM man page aliases following OpenBSM 1.0 alpha 12 import. Most of these should have existed previously, but didn't. Obtained from: TrustedBSD Project Approved by: re (kensmith) Revision Changes Path 1.3.2.3 +20 -11 src/lib/libbsm/Makefile From owner-cvs-all@FreeBSD.ORG Fri Sep 29 22:51:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5570416A407; Fri, 29 Sep 2006 22:51:05 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13D0443D6E; Fri, 29 Sep 2006 22:51:05 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMp4k9062072; Fri, 29 Sep 2006 22:51:04 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMp4Rk062071; Fri, 29 Sep 2006 22:51:04 GMT (envelope-from ru) Message-Id: <200609292251.k8TMp4Rk062071@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 22:51:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 bge.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 22:51:05 -0000 ru 2006-09-29 22:51:04 UTC FreeBSD src repository Modified files: share/man/man4 bge.4 Log: Spelling. Revision Changes Path 1.29 +1 -1 src/share/man/man4/bge.4 From owner-cvs-all@FreeBSD.ORG Fri Sep 29 22:51:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A8FC16A518; Fri, 29 Sep 2006 22:51:30 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A724A43D49; Fri, 29 Sep 2006 22:51:29 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMpTZ0062133; Fri, 29 Sep 2006 22:51:29 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMpTnu062132; Fri, 29 Sep 2006 22:51:29 GMT (envelope-from ru) Message-Id: <200609292251.k8TMpTnu062132@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 22:51:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/contrib/telnet/telnet telnet.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 22:51:30 -0000 ru 2006-09-29 22:51:29 UTC FreeBSD src repository Modified files: contrib/telnet/telnet telnet.1 Log: Markup nits. Revision Changes Path 1.20 +2 -2 src/contrib/telnet/telnet/telnet.1 From owner-cvs-all@FreeBSD.ORG Fri Sep 29 22:57:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C9C916A492; Fri, 29 Sep 2006 22:57:23 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1515243D45; Fri, 29 Sep 2006 22:57:23 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8TMvMxl062358; Fri, 29 Sep 2006 22:57:22 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8TMvMA4062357; Fri, 29 Sep 2006 22:57:22 GMT (envelope-from ru) Message-Id: <200609292257.k8TMvMA4062357@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 29 Sep 2006 22:57:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/gen err.3 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 22:57:23 -0000 ru 2006-09-29 22:57:22 UTC FreeBSD src repository Modified files: lib/libc/gen err.3 Log: Markup nit. Revision Changes Path 1.21 +1 -1 src/lib/libc/gen/err.3 From owner-cvs-all@FreeBSD.ORG Fri Sep 29 19:26:00 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C140A16A4F3; Fri, 29 Sep 2006 19:26:00 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from com1.ht-systems.ru (com1.ht-systems.ru [83.97.104.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 513E643E09; Fri, 29 Sep 2006 19:25:20 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from [213.87.86.58] (helo=fonon.realnet) by com1.ht-systems.ru with esmtpa (Exim 4.62) (envelope-from ) id 1GTNy7-0003Ao-LB; Fri, 29 Sep 2006 23:24:22 +0400 Received: from localhost (localhost [127.0.0.1]) by fonon.realnet (Postfix) with ESMTP id 0CF1D1146F; Fri, 29 Sep 2006 23:24:56 +0400 (MSD) Date: Fri, 29 Sep 2006 23:24:51 +0400 From: Stanislav Sedov To: Kris Kennaway Message-ID: <20060929232451.5781ed0c@localhost> In-Reply-To: <20060929172834.GB31887@xor.obsecurity.org> References: <200609250047.k8P0leLL009808@repoman.freebsd.org> <20060925005252.GA50714@xor.obsecurity.org> <20060929004121.GA60887@xor.obsecurity.org> <20060929172834.GB31887@xor.obsecurity.org> Organization: The FreeBSD Project X-Operating-System: FreeBSD X-Mailer: carrier-pigeon Mime-Version: 1.0 Content-Type: multipart/signed; boundary=Sig_MCf9i4uuw2RrsPUHehpS.2_; protocol="application/pgp-signature"; micalg=PGP-SHA1 X-Spam-Flag: SKIP X-Spam-Yversion: Spamooborona 1.6.0 X-Mailman-Approved-At: Fri, 29 Sep 2006 23:16:22 +0000 Cc: Michael Johnson , shaun@freebsd.org, cvs-all@freebsd.org, Mario Sergio Fujikawa Ferreira , Kris Kennaway , cvs-ports@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/multimedia/ffmpeg-devel Makefile ports/multimedia/ffmpeg-devel/files patch-libavcodec_x264.c patch-libavformat_movenc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 19:26:00 -0000 --Sig_MCf9i4uuw2RrsPUHehpS.2_ Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable On Fri, 29 Sep 2006 13:28:34 -0400 Kris Kennaway mentioned: > On Fri, Sep 29, 2006 at 07:23:46AM -0400, Michael Johnson wrote: > > On 9/29/06, Michael Johnson wrote: > > > > > > > > > > > >On 9/28/06, Kris Kennaway wrote: > > >> > > >> On Sun, Sep 24, 2006 at 08:52:52PM -0400, Kris Kennaway wrote: > > >> > On Mon, Sep 25, 2006 at 12:47:40AM +0000, Mario Sergio Fujikawa > > >> Ferreira wrote: > > >> > > lioux 2006-09-25 00:47:40 UTC > > >> > > > > >> > > FreeBSD ports repository > > >> > > > > >> > > Modified files: > > >> > > multimedia/ffmpeg-devel Makefile > > >> > > multimedia/ffmpeg-devel/files patch-libavcodec_x264.c > > >> > > Added files: > > >> > > multimedia/ffmpeg-devel/files patch-libavformat_movenc.c > > >> > > Log: > > >> > > Fix build on 4.x: fix devel/sdl header include > > >> > > > > >> > > PR: 102431 > > >> > > Submitted by: Shaun Amott > > >> > > > >> > Are you sure this is still correct after the recent SDL changes? > > >> > > > >> > Kris > > >> > > >> Ping. It appears to be broken. > > > > > > > > patch-libavcodec_x264.c needs to be readded. It's there but it's empty. >=20 > Maybe so, but the Makefile also explicitly patches it to #include > too, which is the wrongness I was referring to (SDL > headers are now in . >=20 > Kris It seems to me I've eliminated these strings in my mega SDL patch and 1.94 = builds successfully for me. Why it was introduced again in 1.95? --=20 Stanislav Sedov [[=F2=CF=D3=D3=C9= =D1, =ED=CF=D3=CB=D7=C1]] PGP id: 0xEB269581 http://people.freebsd.org/~stas/stas.key.asc --Sig_MCf9i4uuw2RrsPUHehpS.2_ Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHXMHK/VZk+smlYERAvarAJ4iNxwld4wR80VuQ5htRj3kRY608wCfQohO ClW3OOfi45NUmVme9WGcAvE= =SEYd -----END PGP SIGNATURE----- --Sig_MCf9i4uuw2RrsPUHehpS.2_-- From owner-cvs-all@FreeBSD.ORG Fri Sep 29 23:34:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE17516A53D; Fri, 29 Sep 2006 23:34:21 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id B621243DE3; Fri, 29 Sep 2006 23:33:14 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8TNX7YP087280; Sat, 30 Sep 2006 01:33:09 +0200 (CEST) (envelope-from mb@imp.ch) Date: Sat, 30 Sep 2006 01:33:07 +0200 (CEST) From: Martin Blapp To: Poul-Henning Kamp In-Reply-To: <8209.1159564737@critter.freebsd.dk> Message-ID: <20060930012958.C91466@godot.imp.ch> References: <8209.1159564737@critter.freebsd.dk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@FreeBSD.org, Martin Blapp , cvs-all@FreeBSD.org, Bruce Evans , src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 23:34:22 -0000 What's the best to do now ? Back out again the last commit and that destroy slave can be called, make tty_pts.c as broken ? Or will you or Bruce fix the underlaying problem ? It's far beyond my horizont ... Martin >> So what can we do to destroy devices after last close ? Mark them with some >> flag and handle this during device operations ? > > DEVFS has an eviction feature which, at this point, is only used > in UFS I belive. > > -- > 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 Sep 30 00:09:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC46316A403; Sat, 30 Sep 2006 00:09:44 +0000 (UTC) (envelope-from Tor.Egge@cvsup.no.freebsd.org) Received: from pil.idi.ntnu.no (pil.idi.ntnu.no [129.241.107.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id 157B443D46; Sat, 30 Sep 2006 00:09:43 +0000 (GMT) (envelope-from Tor.Egge@cvsup.no.freebsd.org) Received: from cvsup.no.freebsd.org (c2h5oh.idi.ntnu.no [129.241.103.69]) by pil.idi.ntnu.no (8.13.6/8.13.1) with ESMTP id k8U09fNV012648 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 30 Sep 2006 02:09:42 +0200 (MEST) Received: from localhost (localhost [127.0.0.1]) by cvsup.no.freebsd.org (8.13.4/8.13.4) with ESMTP id k8U09fkP000337; Sat, 30 Sep 2006 00:09:41 GMT (envelope-from Tor.Egge@cvsup.no.freebsd.org) Date: Sat, 30 Sep 2006 00:09:40 +0000 (UTC) Message-Id: <20060930.000940.74656199.Tor.Egge@cvsup.no.freebsd.org> To: netchild@FreeBSD.org From: Tor Egge In-Reply-To: <200609232045.k8NKjljR016351@repoman.freebsd.org> References: <200609232045.k8NKjljR016351@repoman.freebsd.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned-By: mimedefang.idi.ntnu.no, using CLAMD X-SMTP-From: Sender=, Relay/Client=c2h5oh.idi.ntnu.no [129.241.103.69], EHLO=cvsup.no.freebsd.org X-Scanned-By: MIMEDefang 2.48 on 129.241.107.38 X-Scanned-By: mimedefang.idi.ntnu.no, using MIMEDefang 2.48 with local filter 16.42-idi X-Filter-Time: 1 seconds Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys param.h soundcard.h src/sys/dev/sound/pcm buffer.c buffer.h channel.c channel.h channel_if.m dsp.c dsp.h mixer.c mixer.h sound.c sound.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 00:09:44 -0000 > netchild 2006-09-23 20:45:47 UTC > > FreeBSD src repository > > Modified files: > sys/sys soundcard.h param.h > sys/dev/sound/pcm buffer.c buffer.h channel.c channel.h > channel_if.m dsp.c dsp.h mixer.c mixer.h > sound.c sound.h > Log: > MFp4 the sound Google Summer of Code project: This commit caused a panic on my development machine during boot. The value of the MIXER_SIZE macro is too low (OSSV4_EXPERIMENT is not defined). At boot time, mix_setrecdevs() wrote beyond the end of the allocated memory. Later, mtrash_ctor() for the next memory block (1K blocks) found that memory had been modified after free. - Tor Egge From owner-cvs-all@FreeBSD.ORG Sat Sep 30 00:35:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 397C516A407; Sat, 30 Sep 2006 00:35:38 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E575643D49; Sat, 30 Sep 2006 00:35:37 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from misaki (root@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with SMTP id k8U0ZYYr056264; Sat, 30 Sep 2006 00:35:36 GMT (envelope-from ariff@FreeBSD.org) Date: Sat, 30 Sep 2006 08:33:55 +0800 From: Ariff Abdullah To: Tor Egge Message-Id: <20060930083355.187c0545.ariff@FreeBSD.org> In-Reply-To: <20060930.000940.74656199.Tor.Egge@cvsup.no.freebsd.org> References: <200609232045.k8NKjljR016351@repoman.freebsd.org> <20060930.000940.74656199.Tor.Egge@cvsup.no.freebsd.org> Organization: FreeBSD X-Mailer: /usr/local/lib/ruby/1.8/net/smtp.rb Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Sat__30_Sep_2006_08_33_55_+0800_Dxu0zMdSKD9gU27T" Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, netchild@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys param.h soundcard.h src/sys/dev/sound/pcm buffer.c buffer.h channel.c channel.h channel_if.m dsp.c dsp.h mixer.c mixer.h sound.c sound.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 00:35:38 -0000 --Signature=_Sat__30_Sep_2006_08_33_55_+0800_Dxu0zMdSKD9gU27T Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, 30 Sep 2006 00:09:40 +0000 (UTC) Tor Egge wrote: > > netchild 2006-09-23 20:45:47 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > sys/sys soundcard.h param.h=20 > > sys/dev/sound/pcm buffer.c buffer.h channel.c channel.h=20 > > channel_if.m dsp.c dsp.h mixer.c mixer.h=20 > > sound.c sound.h=20 > > Log: > > MFp4 the sound Google Summer of Code project: >=20 > This commit caused a panic on my development machine during boot. >=20 > The value of the MIXER_SIZE macro is too low (OSSV4_EXPERIMENT is > not defined). >=20 > At boot time, mix_setrecdevs() wrote beyond the end of the allocated > memory. >=20 > Later, mtrash_ctor() for the next memory block (1K blocks) found > that memory had been modified after free. >=20 My mistake. I'll commit the fix shortly. -- Ariff Abdullah FreeBSD ... Recording in stereo is obviously too advanced and confusing for us idiot ***** users :P ........ --Signature=_Sat__30_Sep_2006_08_33_55_+0800_Dxu0zMdSKD9gU27T Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFHbt4lr+deMUwTNoRAgoJAJ9rQ9d/hu+2fa0Cm7O1CxmcD6aNkgCeK4pE SLel91DV5Mj8nily6gMYiFY= =S4CI -----END PGP SIGNATURE----- --Signature=_Sat__30_Sep_2006_08_33_55_+0800_Dxu0zMdSKD9gU27T-- From owner-cvs-all@FreeBSD.ORG Sat Sep 30 00:49:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E4D516A415; Sat, 30 Sep 2006 00:49:31 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28CAA43D45; Sat, 30 Sep 2006 00:49:31 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U0nV40079681; Sat, 30 Sep 2006 00:49:31 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U0nVtV079680; Sat, 30 Sep 2006 00:49:31 GMT (envelope-from mezz) Message-Id: <200609300049.k8U0nVtV079680@repoman.freebsd.org> From: Jeremy Messenger Date: Sat, 30 Sep 2006 00:49:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-themes/gtk-smooth-engine Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 00:49:31 -0000 mezz 2006-09-30 00:49:30 UTC FreeBSD ports repository Modified files: x11-themes/gtk-smooth-engine Makefile pkg-plist Log: Bring the new GTK2_VERSION macro back in to fix the future upgrade of GTK2/GNOME2. Found by: pointyhat testing Revision Changes Path 1.14 +0 -1 ports/x11-themes/gtk-smooth-engine/Makefile 1.6 +2 -2 ports/x11-themes/gtk-smooth-engine/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Sep 30 01:01:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77BAC16A407; Sat, 30 Sep 2006 01:01:19 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 352BE43D49; Sat, 30 Sep 2006 01:01:19 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U11Jt5080306; Sat, 30 Sep 2006 01:01:19 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U11JgC080303; Sat, 30 Sep 2006 01:01:19 GMT (envelope-from ariff) Message-Id: <200609300101.k8U11JgC080303@repoman.freebsd.org> From: Ariff Abdullah Date: Sat, 30 Sep 2006 01:01:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pcm mixer.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 01:01:19 -0000 ariff 2006-09-30 01:01:18 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm mixer.c Log: The addition of few more 32bit integer into struct snd_mixer causing an accidental MIXER_SIZE overflow. Use 8bit integer instead of 32bit to reduce the kludge size. Noticed by: tegge Revision Changes Path 1.54 +2 -2 src/sys/dev/sound/pcm/mixer.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 01:24:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA97E16A403; Sat, 30 Sep 2006 01:24:22 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9578543D45; Sat, 30 Sep 2006 01:24:22 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U1OMRG085217; Sat, 30 Sep 2006 01:24:22 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U1OMBs085216; Sat, 30 Sep 2006 01:24:22 GMT (envelope-from ariff) Message-Id: <200609300124.k8U1OMBs085216@repoman.freebsd.org> From: Ariff Abdullah Date: Sat, 30 Sep 2006 01:24:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pcm mixer.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 01:24:23 -0000 ariff 2006-09-30 01:24:22 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm mixer.h Log: Nuke OSSV4_EXPERIMENT ifdefs from kludgy MIXER_SIZE definition since the exclusion of sizeof(oss_mixer_enuminfo) is the real cause of overflow (worth of +3000 bytes). Noticed by: tegge Revision Changes Path 1.18 +0 -4 src/sys/dev/sound/pcm/mixer.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 03:10:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E08216A47C; Sat, 30 Sep 2006 03:10:47 +0000 (UTC) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB82943D46; Sat, 30 Sep 2006 03:10:46 +0000 (GMT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U3Akkb094351; Sat, 30 Sep 2006 03:10:46 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U3AkKt094350; Sat, 30 Sep 2006 03:10:46 GMT (envelope-from leeym) Message-Id: <200609300310.k8U3AkKt094350@repoman.freebsd.org> From: Yen-Ming Lee Date: Sat, 30 Sep 2006 03:10:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/repeater Makefile ports/net/repeater/files patch-repeater.cpp repeater.in repeater.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 03:10:47 -0000 leeym 2006-09-30 03:10:46 UTC FreeBSD ports repository Modified files: net/repeater Makefile net/repeater/files patch-repeater.cpp Added files: net/repeater/files repeater.in Removed files: net/repeater/files repeater.sh Log: - utilize USR_RC_SUBR for new start script - handle version-dependent patch better - bump PORTREVISION Revision Changes Path 1.5 +4 -14 ports/net/repeater/Makefile 1.2 +10 -4 ports/net/repeater/files/patch-repeater.cpp 1.1 +29 -0 ports/net/repeater/files/repeater.in (new) 1.5 +0 -29 ports/net/repeater/files/repeater.sh (dead) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 03:22:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1568616A407; Sat, 30 Sep 2006 03:22:43 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8A5B43D45; Sat, 30 Sep 2006 03:22:42 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U3MgEZ094933; Sat, 30 Sep 2006 03:22:42 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U3MgFX094932; Sat, 30 Sep 2006 03:22:42 GMT (envelope-from csjp) Message-Id: <200609300322.k8U3MgFX094932@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Sat, 30 Sep 2006 03:22:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/su su.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 03:22:43 -0000 csjp 2006-09-30 03:22:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/su su.c Log: Fix mis-merge Noticed by: Pawel Worach Approved by: re@ (kensmith) Revision Changes Path 1.76.2.2 +0 -1 src/usr.bin/su/su.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 03:27:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FF2216A417; Sat, 30 Sep 2006 03:27:40 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1CA343D49; Sat, 30 Sep 2006 03:27:39 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U3RdjT095119; Sat, 30 Sep 2006 03:27:39 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U3Rd7P095110; Sat, 30 Sep 2006 03:27:39 GMT (envelope-from delphij) Message-Id: <200609300327.k8U3Rd7P095110@repoman.freebsd.org> From: Xin LI Date: Sat, 30 Sep 2006 03:27:38 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/x11 chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 03:27:40 -0000 delphij 2006-09-30 03:27:38 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/x11 chapter.sgml Log: Fix some style issues in previous commit. Pointed out by: blackend Pointy hat to: delphij Revision Changes Path 1.175 +23 -22 doc/en_US.ISO8859-1/books/handbook/x11/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Sep 30 03:56:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A44F516A40F; Sat, 30 Sep 2006 03:56:32 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58E7A43D49; Sat, 30 Sep 2006 03:56:32 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U3uWN8096746; Sat, 30 Sep 2006 03:56:32 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U3uWID096745; Sat, 30 Sep 2006 03:56:32 GMT (envelope-from clsung) Message-Id: <200609300356.k8U3uWID096745@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 30 Sep 2006 03:56:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/p5-Object-Array Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 03:56:32 -0000 clsung 2006-09-30 03:56:32 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Object-Array Makefile distinfo pkg-descr pkg-plist Log: Add p5-Object-Array 0.060, array references with accessors. PR: ports/102681 Submitted by: Gea-Suan Lin Revision Changes Path 1.2462 +1 -0 ports/devel/Makefile 1.1 +35 -0 ports/devel/p5-Object-Array/Makefile (new) 1.1 +3 -0 ports/devel/p5-Object-Array/distinfo (new) 1.1 +9 -0 ports/devel/p5-Object-Array/pkg-descr (new) 1.1 +10 -0 ports/devel/p5-Object-Array/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 03:56:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F042616A40F; Sat, 30 Sep 2006 03:56:44 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF53443D46; Sat, 30 Sep 2006 03:56:44 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U3uiCf096784; Sat, 30 Sep 2006 03:56:44 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U3uiYI096783; Sat, 30 Sep 2006 03:56:44 GMT (envelope-from clsung) Message-Id: <200609300356.k8U3uiYI096783@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 30 Sep 2006 03:56:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 03:56:45 -0000 clsung 2006-09-30 03:56:44 UTC FreeBSD ports repository Modified files: . modules Log: p5-Object-Array --> ports/devel/p5-Object-Array Revision Changes Path 1.16306 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 04:52:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFA9A16A403; Sat, 30 Sep 2006 04:52:40 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C16443D49; Sat, 30 Sep 2006 04:52:40 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U4qe6P008743; Sat, 30 Sep 2006 04:52:40 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U4qe2E008742; Sat, 30 Sep 2006 04:52:40 GMT (envelope-from ahze) Message-Id: <200609300452.k8U4qe2E008742@repoman.freebsd.org> From: Michael Johnson Date: Sat, 30 Sep 2006 04:52:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics Makefile ports/graphics/poppler-data Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 04:52:40 -0000 ahze 2006-09-30 04:52:39 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/poppler-data Makefile distinfo pkg-descr pkg-plist Log: - Add poppler-data Poppler encoding data WWW: http://poppler.freedesktop.org/ Revision Changes Path 1.989 +1 -0 ports/graphics/Makefile 1.1 +21 -0 ports/graphics/poppler-data/Makefile (new) 1.1 +3 -0 ports/graphics/poppler-data/distinfo (new) 1.1 +3 -0 ports/graphics/poppler-data/pkg-descr (new) 1.1 +182 -0 ports/graphics/poppler-data/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 04:53:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72B5716A407; Sat, 30 Sep 2006 04:53:10 +0000 (UTC) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1812C43D53; Sat, 30 Sep 2006 04:53:10 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U4r9Y8008785; Sat, 30 Sep 2006 04:53:09 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U4r9Np008784; Sat, 30 Sep 2006 04:53:09 GMT (envelope-from ahze) Message-Id: <200609300453.k8U4r9Np008784@repoman.freebsd.org> From: Michael Johnson Date: Sat, 30 Sep 2006 04:53:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 04:53:10 -0000 ahze 2006-09-30 04:53:09 UTC FreeBSD ports repository Modified files: . modules Log: poppler-data --> ports/graphics/poppler-data Revision Changes Path 1.16307 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 04:55:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E4C816A407; Sat, 30 Sep 2006 04:55:39 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 848A943D68; Sat, 30 Sep 2006 04:55:37 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U4tbAP008947; Sat, 30 Sep 2006 04:55:37 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U4tbgK008946; Sat, 30 Sep 2006 04:55:37 GMT (envelope-from clsung) Message-Id: <200609300455.k8U4tbgK008946@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 30 Sep 2006 04:55:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/dns/p5-Net-DNS-Codes Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 04:55:39 -0000 clsung 2006-09-30 04:55:36 UTC FreeBSD ports repository Modified files: dns/p5-Net-DNS-Codes Makefile distinfo Log: - Update to 0.09 Revision Changes Path 1.2 +1 -1 ports/dns/p5-Net-DNS-Codes/Makefile 1.2 +3 -3 ports/dns/p5-Net-DNS-Codes/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 04:59:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA06516A407; Sat, 30 Sep 2006 04:59:34 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E51F843D69; Sat, 30 Sep 2006 04:59:30 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U4xS9O009091; Sat, 30 Sep 2006 04:59:28 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U4xSoo009090; Sat, 30 Sep 2006 04:59:28 GMT (envelope-from clsung) Message-Id: <200609300459.k8U4xSoo009090@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 30 Sep 2006 04:59:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/p5-Compress-LZF Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 04:59:35 -0000 clsung 2006-09-30 04:59:28 UTC FreeBSD ports repository Modified files: archivers/p5-Compress-LZF Makefile distinfo Log: - Update to 1.70 - from Changes - fix buffer overflows in decompress header. Revision Changes Path 1.2 +2 -1 ports/archivers/p5-Compress-LZF/Makefile 1.2 +3 -3 ports/archivers/p5-Compress-LZF/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 05:07:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 213FE16A407; Sat, 30 Sep 2006 05:07:00 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4E6C43D49; Sat, 30 Sep 2006 05:06:59 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U56xLJ010697; Sat, 30 Sep 2006 05:06:59 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U56xx1010696; Sat, 30 Sep 2006 05:06:59 GMT (envelope-from clsung) Message-Id: <200609300506.k8U56xx1010696@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 30 Sep 2006 05:06:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/dokuwiki-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 05:07:00 -0000 clsung 2006-09-30 05:06:59 UTC FreeBSD ports repository Modified files: www/dokuwiki-devel Makefile Log: - Fix security issue(Codeinjection in fetch.php) - bump PORTREVISION - Make portlint more happy. PR: ports/103797 Submitted by: maintainer (chinsan) Security: http://bugs.splitbrain.org/?do=details&id=926 Revision Changes Path 1.26 +4 -10 ports/www/dokuwiki-devel/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 05:10:57 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D273A16A403; Sat, 30 Sep 2006 05:10:57 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92A3043D4C; Sat, 30 Sep 2006 05:10:57 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U5AvmL010895; Sat, 30 Sep 2006 05:10:57 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U5Av80010894; Sat, 30 Sep 2006 05:10:57 GMT (envelope-from clsung) Message-Id: <200609300510.k8U5Av80010894@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 30 Sep 2006 05:10:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/ask Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 05:10:57 -0000 clsung 2006-09-30 05:10:57 UTC FreeBSD ports repository Modified files: mail/ask Makefile Log: - change maintainer's email PR: ports/103839 Submitted by: maintainer (Marcelo Araujo) Revision Changes Path 1.4 +1 -1 ports/mail/ask/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 05:36:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AACE616A47B; Sat, 30 Sep 2006 05:36:26 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66CA043D4C; Sat, 30 Sep 2006 05:36:26 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U5aQeL012136; Sat, 30 Sep 2006 05:36:26 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U5aQ68012135; Sat, 30 Sep 2006 05:36:26 GMT (envelope-from clsung) Message-Id: <200609300536.k8U5aQ68012135@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 30 Sep 2006 05:36:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/dokuwiki Makefile ports/www/dokuwiki/files patch-lib-exe-fetch.php X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 05:36:26 -0000 clsung 2006-09-30 05:36:26 UTC FreeBSD ports repository Modified files: www/dokuwiki Makefile Added files: www/dokuwiki/files patch-lib-exe-fetch.php Log: - Fix security issue(Image resize DOS-Attack in fetch.php) - bump PORTREVISION PR: ports/103798 Security: http://bugs.splitbrain.org/?do=details&id=924 Revision Changes Path 1.25 +4 -1 ports/www/dokuwiki/Makefile 1.1 +24 -0 ports/www/dokuwiki/files/patch-lib-exe-fetch.php (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 07:30:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 643B016A492; Sat, 30 Sep 2006 07:30:22 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D895F43D53; Sat, 30 Sep 2006 07:30:18 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7UIc8019329; Sat, 30 Sep 2006 07:30:18 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7UIW7019328; Sat, 30 Sep 2006 07:30:18 GMT (envelope-from miwi) Message-Id: <200609300730.k8U7UIW7019328@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 07:30:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security Makefile ports/security/pbnj Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 07:30:22 -0000 miwi 2006-09-30 07:30:18 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/pbnj Makefile distinfo pkg-descr pkg-plist Log: PBNJ is a network suite to monitor changes that occur on a network over time. It does this by checking for changes on the target machine(s), which includes the details about the services running on them as well as the service state. PBNJ parses the data from a scan and stores it in a database. PBNJ uses Nmap to perform scans. WWW: http://www.sf.net/projects/pbnj PR: ports/100904 Submitted by: Joshua D. Abraham Revision Changes Path 1.820 +1 -0 ports/security/Makefile 1.1 +36 -0 ports/security/pbnj/Makefile (new) 1.1 +3 -0 ports/security/pbnj/distinfo (new) 1.1 +8 -0 ports/security/pbnj/pkg-descr (new) 1.1 +5 -0 ports/security/pbnj/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 07:30:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D23E416A403; Sat, 30 Sep 2006 07:30:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 925BC43D45; Sat, 30 Sep 2006 07:30:59 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7UxLQ019502; Sat, 30 Sep 2006 07:30:59 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7UxK3019501; Sat, 30 Sep 2006 07:30:59 GMT (envelope-from miwi) Message-Id: <200609300730.k8U7UxK3019501@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 07:30:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 07:30:59 -0000 miwi 2006-09-30 07:30:59 UTC FreeBSD ports repository Modified files: . modules Log: pbnj --> ports/security/pbnj Revision Changes Path 1.16308 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 07:34:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 256A516A40F; Sat, 30 Sep 2006 07:34:25 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D5C643D68; Sat, 30 Sep 2006 07:34:21 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7YKMn019654; Sat, 30 Sep 2006 07:34:20 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7YKmF019653; Sat, 30 Sep 2006 07:34:20 GMT (envelope-from maxim) Message-Id: <200609300734.k8U7YKmF019653@repoman.freebsd.org> From: Maxim Konovalov Date: Sat, 30 Sep 2006 07:34:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/quot quot.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 07:34:25 -0000 maxim 2006-09-30 07:34:20 UTC FreeBSD src repository Modified files: usr.sbin/quot quot.c Log: o Check we have a non-NULL pointer to a super block before dereference it. PR: misc/103822 Submitted by: Dmitry Stefankov MFC after: 2 weeks Revision Changes Path 1.25 +1 -1 src/usr.sbin/quot/quot.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 07:38:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D78916A407; Sat, 30 Sep 2006 07:38:01 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08E5B43D49; Sat, 30 Sep 2006 07:38:01 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7c0N0019856; Sat, 30 Sep 2006 07:38:00 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7c0Gx019855; Sat, 30 Sep 2006 07:38:00 GMT (envelope-from miwi) Message-Id: <200609300738.k8U7c0Gx019855@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 07:38:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/sword Makefile distinfo pkg-descr pkg-plist ports/misc/sword/files pkg-message.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 07:38:01 -0000 miwi 2006-09-30 07:38:00 UTC FreeBSD ports repository Modified files: misc/sword Makefile distinfo pkg-descr pkg-plist misc/sword/files pkg-message.in Log: - Update to 1.5.9 PR: ports/103734 Submitted by: Thomas Abthorpe (maintainer) Revision Changes Path 1.22 +4 -6 ports/misc/sword/Makefile 1.9 +3 -3 ports/misc/sword/distinfo 1.2 +7 -6 ports/misc/sword/files/pkg-message.in 1.4 +3 -3 ports/misc/sword/pkg-descr 1.8 +13 -3 ports/misc/sword/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Sep 30 07:40:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BD9D16A4A7; Sat, 30 Sep 2006 07:40:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4622343D55; Sat, 30 Sep 2006 07:40:31 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7eVNH020034; Sat, 30 Sep 2006 07:40:31 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7eVxI020033; Sat, 30 Sep 2006 07:40:31 GMT (envelope-from miwi) Message-Id: <200609300740.k8U7eVxI020033@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 07:40:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/misc/bibletime Makefile distinfo pkg-plist ports/misc/bibletime/files patch-Makefile.am patch-Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 07:40:31 -0000 miwi 2006-09-30 07:40:30 UTC FreeBSD ports repository Modified files: misc/bibletime Makefile distinfo pkg-plist misc/bibletime/files patch-Makefile.am patch-Makefile.in Log: - Update to 1.6 PR: ports/103735 Submitted by: Thomas Abthorpe (maintainer) Revision Changes Path 1.18 +6 -2 ports/misc/bibletime/Makefile 1.7 +3 -3 ports/misc/bibletime/distinfo 1.5 +5 -5 ports/misc/bibletime/files/patch-Makefile.am 1.5 +5 -5 ports/misc/bibletime/files/patch-Makefile.in 1.6 +6 -3 ports/misc/bibletime/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Sep 30 07:42:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18D4116A407; Sat, 30 Sep 2006 07:42:56 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4167343D70; Sat, 30 Sep 2006 07:42:49 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7gmAE020192; Sat, 30 Sep 2006 07:42:48 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7gmpO020191; Sat, 30 Sep 2006 07:42:48 GMT (envelope-from miwi) Message-Id: <200609300742.k8U7gmpO020191@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 07:42:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/roundcube Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 07:42:56 -0000 miwi 2006-09-30 07:42:48 UTC FreeBSD ports repository Modified files: mail/roundcube Makefile distinfo pkg-plist Log: - Update to 20060928 CHANGES: - Added spellchecker plugin to TinyMCE configuration - Fixed HTML/Plain toggle labels - Partial client re-write with a common list class - Re-enabled multi select of contacts (Bug #1484017) - Enable contact editing right after creation (Bug #1459641) - Updated Hungarian, Estonian and Traditional Chinese localization PR: ports/103738 Submitted by: Babak Farrokhi (maintainer) Revision Changes Path 1.17 +1 -1 ports/mail/roundcube/Makefile 1.12 +3 -3 ports/mail/roundcube/distinfo 1.11 +19 -0 ports/mail/roundcube/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Sep 30 07:47:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F77116A40F; Sat, 30 Sep 2006 07:47:26 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A73B43D5C; Sat, 30 Sep 2006 07:47:26 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7lQAi020449; Sat, 30 Sep 2006 07:47:26 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7lQ6N020448; Sat, 30 Sep 2006 07:47:26 GMT (envelope-from miwi) Message-Id: <200609300747.k8U7lQ6N020448@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 07:47:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/graphics/libx3dtk Makefile ports/graphics/libx3dtk/files patch-examples-infoReader-Date.cpp patch-examples-infoReader-Date.h patch-src-X3DLoader-X3D_Creator.cpp patch-src-kernel-base-SFVec3f.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 07:47:26 -0000 miwi 2006-09-30 07:47:25 UTC FreeBSD ports repository Modified files: graphics/libx3dtk Makefile Added files: graphics/libx3dtk/files patch-examples-infoReader-Date.cpp patch-examples-infoReader-Date.h patch-src-X3DLoader-X3D_Creator.cpp patch-src-kernel-base-SFVec3f.cpp Log: - Unbreak for 6.2 PR: ports/103752 Submitted by: German Tischler (maintainer) Revision Changes Path 1.2 +2 -2 ports/graphics/libx3dtk/Makefile 1.1 +19 -0 ports/graphics/libx3dtk/files/patch-examples-infoReader-Date.cpp (new) 1.1 +19 -0 ports/graphics/libx3dtk/files/patch-examples-infoReader-Date.h (new) 1.1 +19 -0 ports/graphics/libx3dtk/files/patch-src-X3DLoader-X3D_Creator.cpp (new) 1.1 +117 -0 ports/graphics/libx3dtk/files/patch-src-kernel-base-SFVec3f.cpp (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 07:48:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EBC016A40F; Sat, 30 Sep 2006 07:48:25 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BEC643D46; Sat, 30 Sep 2006 07:48:25 +0000 (GMT) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7mOwj020573; Sat, 30 Sep 2006 07:48:24 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7mO6h020572; Sat, 30 Sep 2006 07:48:24 GMT (envelope-from rafan) Message-Id: <200609300748.k8U7mO6h020572@repoman.freebsd.org> From: Rong-En Fan Date: Sat, 30 Sep 2006 07:48:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/openvpn Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 07:48:25 -0000 rafan 2006-09-30 07:48:24 UTC FreeBSD ports repository Modified files: security/openvpn Makefile pkg-plist Log: - Install additional auth-pam plugin PR: ports/103833 Submitted by: Matthias Andree (maintainer) Suggested by: Michael Helmeste Tested by: Michael Helmeste Revision Changes Path 1.29 +6 -5 ports/security/openvpn/Makefile 1.9 +2 -0 ports/security/openvpn/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Sep 30 07:48:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2754B16A40F; Sat, 30 Sep 2006 07:48:50 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB6DD43D46; Sat, 30 Sep 2006 07:48:49 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7mnfM020613; Sat, 30 Sep 2006 07:48:49 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7mn11020612; Sat, 30 Sep 2006 07:48:49 GMT (envelope-from simon) Message-Id: <200609300748.k8U7mn11020612@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 07:48:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 07:48:50 -0000 simon 2006-09-30 07:48:49 UTC FreeBSD ports repository Modified files: . modules Log: Rename mrouted module to ports_mrouted to avoid conflict with the mrouted module entry from src. Revision Changes Path 1.16309 +1 -1 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 07:50:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03CDE16A4C2; Sat, 30 Sep 2006 07:50:07 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D92343D67; Sat, 30 Sep 2006 07:50:07 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7o7Xq020769; Sat, 30 Sep 2006 07:50:07 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7o7p1020764; Sat, 30 Sep 2006 07:50:07 GMT (envelope-from miwi) Message-Id: <200609300750.k8U7o7p1020764@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 07:50:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases/adodb Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 07:50:08 -0000 miwi 2006-09-30 07:50:07 UTC FreeBSD ports repository Modified files: databases/adodb Makefile distinfo pkg-plist Log: - Update to 4.92 PR: ports/103754 Submitted by: Martin Matuska (maintainer) Revision Changes Path 1.44 +2 -2 ports/databases/adodb/Makefile 1.29 +3 -3 ports/databases/adodb/distinfo 1.28 +8 -1 ports/databases/adodb/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Sep 30 07:54:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA45416A417; Sat, 30 Sep 2006 07:54:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23A4743D73; Sat, 30 Sep 2006 07:54:32 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7sWWY022548; Sat, 30 Sep 2006 07:54:32 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7sVZd022547; Sat, 30 Sep 2006 07:54:31 GMT (envelope-from miwi) Message-Id: <200609300754.k8U7sVZd022547@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 07:54:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/smake Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 07:54:34 -0000 miwi 2006-09-30 07:54:31 UTC FreeBSD ports repository Modified files: devel/smake Makefile distinfo Log: - Update to 1.2.a.38 PR: ports/103755 Submitted by: Martin Matuska (maintainer) Revision Changes Path 1.8 +1 -1 ports/devel/smake/Makefile 1.8 +3 -3 ports/devel/smake/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 07:57:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7182416A416; Sat, 30 Sep 2006 07:57:22 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1847543D4C; Sat, 30 Sep 2006 07:57:22 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U7vL8M022711; Sat, 30 Sep 2006 07:57:21 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U7vLlp022710; Sat, 30 Sep 2006 07:57:21 GMT (envelope-from clsung) Message-Id: <200609300757.k8U7vLlp022710@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 30 Sep 2006 07:57:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/tor Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 07:57:22 -0000 clsung 2006-09-30 07:57:21 UTC FreeBSD ports repository Modified files: security/tor Makefile distinfo Log: - Update to 0.1.1.24 PR: ports/103843 Submitted by: maintainer (Peter Thoenen) Revision Changes Path 1.23 +1 -1 ports/security/tor/Makefile 1.17 +3 -3 ports/security/tor/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 08:01:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE07F16A47B; Sat, 30 Sep 2006 08:01:12 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4811043D4C; Sat, 30 Sep 2006 08:01:12 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U81CEu022965; Sat, 30 Sep 2006 08:01:12 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U81CqQ022964; Sat, 30 Sep 2006 08:01:12 GMT (envelope-from pjd) Message-Id: <200609300801.k8U81CqQ022964@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 08:01:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom/raid3 g_raid3.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 08:01:12 -0000 pjd 2006-09-30 08:01:12 UTC FreeBSD src repository Modified files: sys/geom/raid3 g_raid3.c Log: Remove trailing spaces. Revision Changes Path 1.75 +16 -16 src/sys/geom/raid3/g_raid3.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 08:02:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47C3416A407; Sat, 30 Sep 2006 08:02:20 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95A0F43D6A; Sat, 30 Sep 2006 08:02:15 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U82FOp023066; Sat, 30 Sep 2006 08:02:15 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U82Fdb023065; Sat, 30 Sep 2006 08:02:15 GMT (envelope-from miwi) Message-Id: <200609300802.k8U82Fdb023065@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 08:02:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils Makefile ports/sysutils/dvdisaster Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 08:02:20 -0000 miwi 2006-09-30 08:02:15 UTC FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/dvdisaster Makefile distinfo pkg-descr pkg-plist Log: The dvdisaster project: dvdisaster provides a margin of safety against data loss on CD and DVD media caused by aging or scratches. * dvdisaster creates error correction data to compensate read errors which are not correctable in the CD/DVD drive. * dvdisaster tries to read as much data as possible from defective media. Afterwards unreadable sectors are recovered using the previously created error correction data. The maximum error correction capacity is user-selectable. * dvdisaster operates at the image level and does not depend on the file system. If you create the error correction data in time and keep it at a safe place, you have a good chance of recovering the medium contents from typical read errors and to transfer your complete data onto a new medium. WWW: http://www.dvdisaster.com/ PR: ports/103772 Submitted by: Heiner Revision Changes Path 1.837 +1 -0 ports/sysutils/Makefile 1.1 +53 -0 ports/sysutils/dvdisaster/Makefile (new) 1.1 +3 -0 ports/sysutils/dvdisaster/distinfo (new) 1.1 +20 -0 ports/sysutils/dvdisaster/pkg-descr (new) 1.1 +261 -0 ports/sysutils/dvdisaster/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 08:02:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DA4516A501; Sat, 30 Sep 2006 08:02:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1D3243D46; Sat, 30 Sep 2006 08:02:46 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U82kgV023118; Sat, 30 Sep 2006 08:02:46 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U82kEJ023117; Sat, 30 Sep 2006 08:02:46 GMT (envelope-from miwi) Message-Id: <200609300802.k8U82kEJ023117@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 08:02:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 08:02:47 -0000 miwi 2006-09-30 08:02:46 UTC FreeBSD ports repository Modified files: . modules Log: dvdisaster --> ports/sysutils/dvdisaster Revision Changes Path 1.16310 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 08:06:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17A2216A407; Sat, 30 Sep 2006 08:06:20 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBA9F43D46; Sat, 30 Sep 2006 08:06:19 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U86JYE024520; Sat, 30 Sep 2006 08:06:19 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U86JA4024519; Sat, 30 Sep 2006 08:06:19 GMT (envelope-from miwi) Message-Id: <200609300806.k8U86JA4024519@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 08:06:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/mimetex Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 08:06:20 -0000 miwi 2006-09-30 08:06:19 UTC FreeBSD ports repository Modified files: www/mimetex Makefile distinfo Log: - Update to 20060925.1.64 PR: ports/103773 Submitted by: nivit@email.it (Nicola Vitale) (maintainer) Revision Changes Path 1.6 +1 -1 ports/www/mimetex/Makefile 1.5 +3 -3 ports/www/mimetex/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 08:08:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26A4C16A403; Sat, 30 Sep 2006 08:08:29 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBBD943D46; Sat, 30 Sep 2006 08:08:28 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U88SIl024754; Sat, 30 Sep 2006 08:08:28 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U88SDQ024753; Sat, 30 Sep 2006 08:08:28 GMT (envelope-from clsung) Message-Id: <200609300808.k8U88SDQ024753@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 30 Sep 2006 08:08:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/benchmarks Makefile ports/benchmarks/p5-Benchmark-Stopwatch Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 08:08:29 -0000 clsung 2006-09-30 08:08:28 UTC FreeBSD ports repository Modified files: benchmarks Makefile Added files: benchmarks/p5-Benchmark-Stopwatch Makefile distinfo pkg-descr pkg-plist Log: Add p5-Benchmark-Stopwatch 0.03, simple timing of stages of your code. PR: ports/102468 Submitted by: Gea-Suan Lin Revision Changes Path 1.52 +1 -0 ports/benchmarks/Makefile 1.1 +37 -0 ports/benchmarks/p5-Benchmark-Stopwatch/Makefile (new) 1.1 +3 -0 ports/benchmarks/p5-Benchmark-Stopwatch/distinfo (new) 1.1 +18 -0 ports/benchmarks/p5-Benchmark-Stopwatch/pkg-descr (new) 1.1 +3 -0 ports/benchmarks/p5-Benchmark-Stopwatch/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 08:08:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2823516A40F; Sat, 30 Sep 2006 08:08:41 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC46F43D45; Sat, 30 Sep 2006 08:08:40 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U88eMn024816; Sat, 30 Sep 2006 08:08:40 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U88e4d024815; Sat, 30 Sep 2006 08:08:40 GMT (envelope-from clsung) Message-Id: <200609300808.k8U88e4d024815@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 30 Sep 2006 08:08:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 08:08:41 -0000 clsung 2006-09-30 08:08:40 UTC FreeBSD ports repository Modified files: . modules Log: p5-Benchmark-Stopwatch --> ports/benchmarks/p5-Benchmark-Stopwatch Revision Changes Path 1.16311 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 08:11:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA73A16A40F; Sat, 30 Sep 2006 08:11:53 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79B2843D49; Sat, 30 Sep 2006 08:11:52 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U8BqT1025098; Sat, 30 Sep 2006 08:11:52 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U8Bqlk025097; Sat, 30 Sep 2006 08:11:52 GMT (envelope-from mbr) Message-Id: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> From: Martin Blapp Date: Sat, 30 Sep 2006 08:11:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern tty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 08:11:54 -0000 mbr 2006-09-30 08:11:52 UTC FreeBSD src repository Modified files: sys/kern tty.c Log: Any call of tty_close() with a tty refcount of <= 1 is wrong and we will free the tty in this case. This is a workaround until the underlaying devfs/tty problems are fixed. MFC after: 1 day Revision Changes Path 1.261 +9 -6 src/sys/kern/tty.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 08:16:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1597F16A47C; Sat, 30 Sep 2006 08:16:12 +0000 (UTC) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8C7A43D46; Sat, 30 Sep 2006 08:16:11 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U8GBIU025396; Sat, 30 Sep 2006 08:16:11 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U8GBjV025395; Sat, 30 Sep 2006 08:16:11 GMT (envelope-from clsung) Message-Id: <200609300816.k8U8GBjV025395@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sat, 30 Sep 2006 08:16:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/nltk Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 08:16:12 -0000 clsung 2006-09-30 08:16:11 UTC FreeBSD ports repository Modified files: textproc/nltk Makefile Log: - fix pkg-plist Revision Changes Path 1.12 +1 -3 ports/textproc/nltk/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 08:16:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0C1116A492; Sat, 30 Sep 2006 08:16:50 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 109E243D5D; Sat, 30 Sep 2006 08:16:50 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U8GnHk025486; Sat, 30 Sep 2006 08:16:49 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U8GnLN025485; Sat, 30 Sep 2006 08:16:49 GMT (envelope-from pjd) Message-Id: <200609300816.k8U8GnLN025485@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 08:16:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom/eli g_eli.c g_eli_ctl.c src/sys/geom/label g_label_msdosfs.c g_label_msdosfs.h src/sys/geom/nop g_nop.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 08:16:51 -0000 pjd 2006-09-30 08:16:49 UTC FreeBSD src repository Modified files: sys/geom/eli g_eli.c g_eli_ctl.c sys/geom/label g_label_msdosfs.c g_label_msdosfs.h sys/geom/nop g_nop.h Log: Remove trailing spaces. Revision Changes Path 1.30 +1 -1 src/sys/geom/eli/g_eli.c 1.11 +1 -1 src/sys/geom/eli/g_eli_ctl.c 1.6 +1 -1 src/sys/geom/label/g_label_msdosfs.c 1.2 +3 -3 src/sys/geom/label/g_label_msdosfs.h 1.7 +1 -1 src/sys/geom/nop/g_nop.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 08:23:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC12C16A415; Sat, 30 Sep 2006 08:23:07 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C6B843D46; Sat, 30 Sep 2006 08:23:07 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U8N7Dq025911; Sat, 30 Sep 2006 08:23:07 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U8N7H5025910; Sat, 30 Sep 2006 08:23:07 GMT (envelope-from pjd) Message-Id: <200609300823.k8U8N7H5025910@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 08:23:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom/raid3 g_raid3.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 08:23:07 -0000 pjd 2006-09-30 08:23:07 UTC FreeBSD src repository Modified files: sys/geom/raid3 g_raid3.c Log: One more white space fix. Revision Changes Path 1.76 +1 -1 src/sys/geom/raid3/g_raid3.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 08:45:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9902816A415; Sat, 30 Sep 2006 08:45:39 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C3C443D46; Sat, 30 Sep 2006 08:45:39 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U8jdpx027117; Sat, 30 Sep 2006 08:45:39 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U8jdU8027116; Sat, 30 Sep 2006 08:45:39 GMT (envelope-from tobez) Message-Id: <200609300845.k8U8jdU8027116@repoman.freebsd.org> From: Anton Berezin Date: Sat, 30 Sep 2006 08:45:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p5-Time-HiRes Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 08:45:39 -0000 tobez 2006-09-30 08:45:39 UTC FreeBSD ports repository Modified files: devel/p5-Time-HiRes Makefile distinfo Log: Update to 1.91. Revision Changes Path 1.37 +1 -1 ports/devel/p5-Time-HiRes/Makefile 1.30 +3 -3 ports/devel/p5-Time-HiRes/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 08:50:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07C4816A415; Sat, 30 Sep 2006 08:50:55 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8D6943D4C; Sat, 30 Sep 2006 08:50:54 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U8osuc035362; Sat, 30 Sep 2006 08:50:54 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U8osSl035361; Sat, 30 Sep 2006 08:50:54 GMT (envelope-from tobez) Message-Id: <200609300850.k8U8osSl035361@repoman.freebsd.org> From: Anton Berezin Date: Sat, 30 Sep 2006 08:50:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/p5-CGI.pm Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 08:50:55 -0000 tobez 2006-09-30 08:50:54 UTC FreeBSD ports repository Modified files: www/p5-CGI.pm Makefile distinfo Log: Update to 3.25. Revision Changes Path 1.29 +1 -1 ports/www/p5-CGI.pm/Makefile 1.23 +3 -3 ports/www/p5-CGI.pm/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 09:02:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D47616A40F; Sat, 30 Sep 2006 09:02:39 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C7FD43D45; Sat, 30 Sep 2006 09:02:39 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U92cSV036170; Sat, 30 Sep 2006 09:02:38 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U92cVP036169; Sat, 30 Sep 2006 09:02:38 GMT (envelope-from ru) Message-Id: <200609300902.k8U92cVP036169@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 09:02:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/etc/mtree BSD.usr.dist src/usr.sbin/nvram Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 09:02:39 -0000 ru 2006-09-30 09:02:38 UTC FreeBSD src repository Modified files: etc/mtree BSD.usr.dist usr.sbin/nvram Makefile Log: Create section 8 man subdirectories for PowerPC. Revision Changes Path 1.321 +6 -0 src/etc/mtree/BSD.usr.dist 1.2 +1 -0 src/usr.sbin/nvram/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 09:10:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FAAC16A415; Sat, 30 Sep 2006 09:10:15 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CFBC43D45; Sat, 30 Sep 2006 09:10:15 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U9AEY8038064; Sat, 30 Sep 2006 09:10:14 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U9AEnX038063; Sat, 30 Sep 2006 09:10:14 GMT (envelope-from sat) Message-Id: <200609300910.k8U9AEnX038063@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 30 Sep 2006 09:10:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 09:10:15 -0000 sat 2006-09-30 09:10:14 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Document NULL byte injection vulnerability in punbb Revision Changes Path 1.1153 +33 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sat Sep 30 09:30:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78B7B16A403; Sat, 30 Sep 2006 09:30:20 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BC6443D45; Sat, 30 Sep 2006 09:30:20 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U9UJYm039007; Sat, 30 Sep 2006 09:30:19 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U9UJms039006; Sat, 30 Sep 2006 09:30:19 GMT (envelope-from stas) Message-Id: <200609300930.k8U9UJms039006@repoman.freebsd.org> From: Stanislav Sedov Date: Sat, 30 Sep 2006 09:30:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/fxt Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 09:30:20 -0000 stas 2006-09-30 09:30:19 UTC FreeBSD ports repository Modified files: math/fxt Makefile distinfo Added files: math/fxt pkg-plist Log: - Update to 2006.09.24 - Add pkg-plist - Add pkg-plist creation target Approved by: sem (mentor) Revision Changes Path 1.19 +52 -27 ports/math/fxt/Makefile 1.15 +3 -3 ports/math/fxt/distinfo 1.11 +880 -0 ports/math/fxt/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 09:36:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 498B116A417; Sat, 30 Sep 2006 09:36:45 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0953D43D45; Sat, 30 Sep 2006 09:36:45 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U9aivv039395; Sat, 30 Sep 2006 09:36:44 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U9aidw039394; Sat, 30 Sep 2006 09:36:44 GMT (envelope-from sat) Message-Id: <200609300936.k8U9aidw039394@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 30 Sep 2006 09:36:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 09:36:45 -0000 sat 2006-09-30 09:36:44 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Document multiple vulnerabilities in tikiwiki Revision Changes Path 1.1154 +47 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sat Sep 30 09:41:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8A3616A415; Sat, 30 Sep 2006 09:41:07 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76A9343D45; Sat, 30 Sep 2006 09:41:07 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U9f7EO039774; Sat, 30 Sep 2006 09:41:07 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U9f75v039773; Sat, 30 Sep 2006 09:41:07 GMT (envelope-from stas) Message-Id: <200609300941.k8U9f75v039773@repoman.freebsd.org> From: Stanislav Sedov Date: Sat, 30 Sep 2006 09:41:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/cad Makefile ports/cad/electric-ng Makefile distinfo pkg-descr ports/cad/electric-ng/files electric-ng.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 09:41:07 -0000 stas 2006-09-30 09:41:07 UTC FreeBSD ports repository Modified files: cad Makefile Added files: cad/electric-ng Makefile distinfo pkg-descr cad/electric-ng/files electric-ng.in Log: Electric is a sophisticated electrical CAD system that can handle many forms of circuit design, including: - Custom IC layout (ASICs) - Schematic drawing - Hardware description language specifications Author: Static Free Software & Sun Microsystems, Inc. WWW: http://www.staticfreesoft.com/ PR: ports/100355 Submitted by: me (stas) Approved by: sem (mentor) Revision Changes Path 1.92 +1 -0 ports/cad/Makefile 1.1 +49 -0 ports/cad/electric-ng/Makefile (new) 1.1 +3 -0 ports/cad/electric-ng/distinfo (new) 1.1 +18 -0 ports/cad/electric-ng/files/electric-ng.in (new) 1.1 +31 -0 ports/cad/electric-ng/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 09:41:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC60516A49E; Sat, 30 Sep 2006 09:41:52 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BEBB43D70; Sat, 30 Sep 2006 09:41:52 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U9fqmx039852; Sat, 30 Sep 2006 09:41:52 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U9fqkH039851; Sat, 30 Sep 2006 09:41:52 GMT (envelope-from stas) Message-Id: <200609300941.k8U9fqkH039851@repoman.freebsd.org> From: Stanislav Sedov Date: Sat, 30 Sep 2006 09:41:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 09:41:53 -0000 stas 2006-09-30 09:41:52 UTC FreeBSD ports repository Modified files: . modules Log: electric-ng --> ports/cad/electric-ng Revision Changes Path 1.16312 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 09:44:59 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01F3B16A415; Sat, 30 Sep 2006 09:44:59 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE54743D49; Sat, 30 Sep 2006 09:44:58 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8U9iwxU039974; Sat, 30 Sep 2006 09:44:58 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8U9iwDt039973; Sat, 30 Sep 2006 09:44:58 GMT (envelope-from delphij) Message-Id: <200609300944.k8U9iwDt039973@repoman.freebsd.org> From: Xin LI Date: Sat, 30 Sep 2006 09:44:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF,HEAD Cc: Subject: cvs commit: src ObsoleteFiles.inc src/contrib/libstdc++/include/ext demangle.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 09:44:59 -0000 delphij 2006-09-30 09:44:58 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Removed files: (Branch: FSF) contrib/libstdc++/include/ext demangle.h Log: MFS: Remove file that was disappeared from gcc distribution. While I'm there, add the file into ObsoleteFiles.inc. Approved by: maintainer (kan) Revision Changes Path 1.54 +2 -0 src/ObsoleteFiles.inc 1.1.1.2 +0 -2789 src/contrib/libstdc++/include/ext/demangle.h (dead) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 10:05:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DC0816A40F; Sat, 30 Sep 2006 10:05:01 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1AB443D45; Sat, 30 Sep 2006 10:05:00 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UA50wB042231; Sat, 30 Sep 2006 10:05:00 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UA50FP042230; Sat, 30 Sep 2006 10:05:00 GMT (envelope-from stas) Message-Id: <200609301005.k8UA50FP042230@repoman.freebsd.org> From: Stanislav Sedov Date: Sat, 30 Sep 2006 10:05:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/rubygem-rake Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 10:05:01 -0000 stas 2006-09-30 10:05:00 UTC FreeBSD ports repository Modified files: devel/rubygem-rake Makefile pkg-plist Log: - Install manpage into the appropriate place PR: ports/100493 Submitted by: me (stas) Approved by: maintainer timeout, sem (mentor) Revision Changes Path 1.9 +10 -0 ports/devel/rubygem-rake/Makefile 1.6 +0 -1 ports/devel/rubygem-rake/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Sep 30 10:05:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55C9516A494; Sat, 30 Sep 2006 10:05:33 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2436B43D45; Sat, 30 Sep 2006 10:05:33 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UA5WvB042329; Sat, 30 Sep 2006 10:05:33 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UA5Wsd042328; Sat, 30 Sep 2006 10:05:32 GMT (envelope-from maho) Message-Id: <200609301005.k8UA5Wsd042328@repoman.freebsd.org> From: Maho Nakata Date: Sat, 30 Sep 2006 10:05:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/editors/openoffice.org-2.0-devel Makefile distinfo ports/editors/openoffice.org-2.0-devel/files patch-i69469 patch-i69994 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 10:05:33 -0000 maho 2006-09-30 10:05:32 UTC FreeBSD ports repository Modified files: editors/openoffice.org-2.0-devel Makefile distinfo Added files: editors/openoffice.org-2.0-devel/files patch-i69994 Removed files: editors/openoffice.org-2.0-devel/files patch-i69469 Log: Update to SRC680_m186. Build verified on i386 (601105) and amd64 (6.1-RELEASE). Revision Changes Path 1.277 +5 -7 ports/editors/openoffice.org-2.0-devel/Makefile 1.116 +3 -3 ports/editors/openoffice.org-2.0-devel/distinfo 1.3 +0 -45 ports/editors/openoffice.org-2.0-devel/files/patch-i69469 (dead) 1.1 +747 -0 ports/editors/openoffice.org-2.0-devel/files/patch-i69994 (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 10:08:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07C6116A403; Sat, 30 Sep 2006 10:08:10 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7D5343D45; Sat, 30 Sep 2006 10:08:09 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UA898b042477; Sat, 30 Sep 2006 10:08:09 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UA89L0042476; Sat, 30 Sep 2006 10:08:09 GMT (envelope-from phk) Message-Id: <200609301008.k8UA89L0042476@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 30 Sep 2006 10:08:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/i386 machdep.c src/sys/pc98/pc98 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 10:08:10 -0000 phk 2006-09-30 10:08:09 UTC FreeBSD src repository Modified files: sys/i386/i386 machdep.c sys/pc98/pc98 machdep.c Log: Remove the no longer relevant or correct bootinfo sysctls. Revision Changes Path 1.635 +0 -3 src/sys/i386/i386/machdep.c 1.378 +0 -3 src/sys/pc98/pc98/machdep.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 10:24:01 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78E7016A403; Sat, 30 Sep 2006 10:24:01 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A59F43D46; Sat, 30 Sep 2006 10:24:01 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UAO1pr043308; Sat, 30 Sep 2006 10:24:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UAO1xa043307; Sat, 30 Sep 2006 10:24:01 GMT (envelope-from ru) Message-Id: <200609301024.k8UAO1xa043307@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 10:24:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys abort2.2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 10:24:01 -0000 ru 2006-09-30 10:24:00 UTC FreeBSD src repository Modified files: lib/libc/sys abort2.2 Log: Fix markup, language, function prototype, and example code. Revision Changes Path 1.2 +49 -35 src/lib/libc/sys/abort2.2 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 10:25:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7BA816A403; Sat, 30 Sep 2006 10:25:33 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F289243D4C; Sat, 30 Sep 2006 10:25:32 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UAPW4k043422; Sat, 30 Sep 2006 10:25:32 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UAPWUR043421; Sat, 30 Sep 2006 10:25:32 GMT (envelope-from sat) Message-Id: <200609301025.k8UAPWUR043421@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 30 Sep 2006 10:25:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 10:25:33 -0000 sat 2006-09-30 10:25:32 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Document multiple vulnerabilities in dokuwiki Revision Changes Path 1.1155 +95 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sat Sep 30 10:29:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE3AC16A407; Sat, 30 Sep 2006 10:29:44 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DFE243D45; Sat, 30 Sep 2006 10:29:44 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UATiLG043592; Sat, 30 Sep 2006 10:29:44 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UATiOU043591; Sat, 30 Sep 2006 10:29:44 GMT (envelope-from ru) Message-Id: <200609301029.k8UATiOU043591@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 10:29:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/posix1e mac_is_present.3 src/lib/libc/stdlib a64l.3 posix_memalign.3 strtonum.3 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 10:29:44 -0000 ru 2006-09-30 10:29:43 UTC FreeBSD src repository Modified files: lib/libc/posix1e mac_is_present.3 lib/libc/stdlib a64l.3 posix_memalign.3 strtonum.3 Log: Revise markup in recently added manpages. Revision Changes Path 1.9 +3 -3 src/lib/libc/posix1e/mac_is_present.3 1.3 +27 -26 src/lib/libc/stdlib/a64l.3 1.2 +6 -4 src/lib/libc/stdlib/posix_memalign.3 1.5 +15 -13 src/lib/libc/stdlib/strtonum.3 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 10:34:14 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43ABC16A47C; Sat, 30 Sep 2006 10:34:14 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03A7243D46; Sat, 30 Sep 2006 10:34:14 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UAYDo0043899; Sat, 30 Sep 2006 10:34:13 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UAYDCe043898; Sat, 30 Sep 2006 10:34:13 GMT (envelope-from ru) Message-Id: <200609301034.k8UAYDCe043898@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 10:34:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libutil kld.3 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 10:34:14 -0000 ru 2006-09-30 10:34:13 UTC FreeBSD src repository Modified files: lib/libutil kld.3 Log: Revise markup in recently added manpages. Revision Changes Path 1.3 +4 -10 src/lib/libutil/kld.3 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 10:56:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1758116A415; Sat, 30 Sep 2006 10:56:37 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3D6A43D53; Sat, 30 Sep 2006 10:56:36 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UAuajK044891; Sat, 30 Sep 2006 10:56:36 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UAuajq044890; Sat, 30 Sep 2006 10:56:36 GMT (envelope-from miwi) Message-Id: <200609301056.k8UAuajq044890@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 10:56:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/math/jsmath Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 10:56:37 -0000 miwi 2006-09-30 10:56:36 UTC FreeBSD ports repository Modified files: math/jsmath Makefile distinfo pkg-plist Log: - Update to 3.3e PR: ports/103774 Submitted by: nivit@email.it (Nicola Vitale) (maintainer) Revision Changes Path 1.5 +1 -1 ports/math/jsmath/Makefile 1.4 +3 -3 ports/math/jsmath/distinfo 1.3 +2 -1 ports/math/jsmath/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Sep 30 10:57:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 696A516A403; Sat, 30 Sep 2006 10:57:56 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 261BA43D49; Sat, 30 Sep 2006 10:57:56 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UAvued044976; Sat, 30 Sep 2006 10:57:56 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UAvuWn044975; Sat, 30 Sep 2006 10:57:56 GMT (envelope-from miwi) Message-Id: <200609301057.k8UAvuWn044975@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 10:57:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/getmail Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 10:57:56 -0000 miwi 2006-09-30 10:57:55 UTC FreeBSD ports repository Modified files: mail/getmail Makefile distinfo Log: - Update to 4.6.4 PR: ports/103775 Submitted by: Linh Pham (maintainer) Revision Changes Path 1.67 +1 -1 ports/mail/getmail/Makefile 1.55 +3 -3 ports/mail/getmail/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:00:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D928916A4A7; Sat, 30 Sep 2006 11:00:33 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1177443D55; Sat, 30 Sep 2006 11:00:21 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UB0KSG045076; Sat, 30 Sep 2006 11:00:20 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UB0KcF045075; Sat, 30 Sep 2006 11:00:20 GMT (envelope-from miwi) Message-Id: <200609301100.k8UB0KcF045075@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 11:00:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/stratagus Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:00:34 -0000 miwi 2006-09-30 11:00:20 UTC FreeBSD ports repository Modified files: games/stratagus Makefile Log: - Fix compile time errors PR: ports/103795 Submitted by: Iasen Kostof Approved by: Travis Poppe (maintainer) Revision Changes Path 1.9 +4 -3 ports/games/stratagus/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:01:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C12A516A47E; Sat, 30 Sep 2006 11:01:46 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E519543D53; Sat, 30 Sep 2006 11:01:42 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UB1g0f045252; Sat, 30 Sep 2006 11:01:42 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UB1g4f045251; Sat, 30 Sep 2006 11:01:42 GMT (envelope-from miwi) Message-Id: <200609301101.k8UB1g4f045251@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 11:01:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/x11-wm/dwm Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:01:46 -0000 miwi 2006-09-30 11:01:42 UTC FreeBSD ports repository Modified files: x11-wm/dwm Makefile distinfo Log: - Update to 1.7.1 PR: ports/103806 Submitted by: Jeroen Schot (maintainer) Revision Changes Path 1.9 +2 -2 ports/x11-wm/dwm/Makefile 1.9 +3 -3 ports/x11-wm/dwm/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:02:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FB1416A47C; Sat, 30 Sep 2006 11:02:21 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E761243D76; Sat, 30 Sep 2006 11:02:17 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UB2Hpc045295; Sat, 30 Sep 2006 11:02:17 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UB2H2o045294; Sat, 30 Sep 2006 11:02:17 GMT (envelope-from ru) Message-Id: <200609301102.k8UB2H2o045294@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 11:02:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/gvinum gvinum.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:02:21 -0000 ru 2006-09-30 11:02:17 UTC FreeBSD src repository Modified files: sbin/gvinum gvinum.8 Log: Revise markup. Revision Changes Path 1.4 +111 -182 src/sbin/gvinum/gvinum.8 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:04:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9219216A403; Sat, 30 Sep 2006 11:04:42 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 436B043D4C; Sat, 30 Sep 2006 11:04:42 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UB4gYn046577; Sat, 30 Sep 2006 11:04:42 GMT (envelope-from stas@repoman.freebsd.org) Received: (from stas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UB4gWw046576; Sat, 30 Sep 2006 11:04:42 GMT (envelope-from stas) Message-Id: <200609301104.k8UB4gWw046576@repoman.freebsd.org> From: Stanislav Sedov Date: Sat, 30 Sep 2006 11:04:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/rubygem-rake Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:04:42 -0000 stas 2006-09-30 11:04:42 UTC FreeBSD ports repository Modified files: devel/rubygem-rake Makefile Log: - Replace spaces with tabs. Reported by: miwi Approved by: sem (mentor) Revision Changes Path 1.10 +2 -2 ports/devel/rubygem-rake/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:07:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2ED7816A403; Sat, 30 Sep 2006 11:07:11 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFA8243D49; Sat, 30 Sep 2006 11:07:10 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UB7AvB046727; Sat, 30 Sep 2006 11:07:10 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UB7ATp046726; Sat, 30 Sep 2006 11:07:10 GMT (envelope-from des) Message-Id: <200609301107.k8UB7ATp046726@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 11:07:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libpam/modules/pam_opie pam_opie.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:07:11 -0000 des 2006-09-30 11:07:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libpam/modules/pam_opie pam_opie.c Log: MFC: (1.26) reject usernames that are longer than OPIE can handle. Approved by: re (kensmith) Revision Changes Path 1.25.10.1 +13 -4 src/lib/libpam/modules/pam_opie/pam_opie.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:07:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C1BD16A40F; Sat, 30 Sep 2006 11:07:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0421E43D49; Sat, 30 Sep 2006 11:07:43 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UB7g7K046784; Sat, 30 Sep 2006 11:07:42 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UB7ghl046783; Sat, 30 Sep 2006 11:07:42 GMT (envelope-from miwi) Message-Id: <200609301107.k8UB7ghl046783@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 11:07:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/sysutils/pkgfe Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:07:43 -0000 miwi 2006-09-30 11:07:42 UTC FreeBSD ports repository Modified files: sysutils/pkgfe Makefile distinfo Log: - Update to 20060929 PR: ports/103809 Submitted by: Sulev-Madis Silber (maintainer) Revision Changes Path 1.5 +2 -2 ports/sysutils/pkgfe/Makefile 1.5 +3 -3 ports/sysutils/pkgfe/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:12:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C24CF16A407; Sat, 30 Sep 2006 11:12:34 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C4A743D49; Sat, 30 Sep 2006 11:12:34 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBCYtT047140; Sat, 30 Sep 2006 11:12:34 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBCYdU047139; Sat, 30 Sep 2006 11:12:34 GMT (envelope-from bsam) Message-Id: <200609301112.k8UBCYdU047139@repoman.freebsd.org> From: Boris Samorodov Date: Sat, 30 Sep 2006 11:12:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net Makefile ports/net/asterisk-app-ldap Makefile distinfo pkg-descr pkg-plist ports/net/asterisk-app-ldap/files patch-Makefile patch-app_ldap.c patch-cflags.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:12:34 -0000 bsam 2006-09-30 11:12:34 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/asterisk-app-ldap Makefile distinfo pkg-descr pkg-plist net/asterisk-app-ldap/files patch-Makefile patch-app_ldap.c patch-cflags.sh Log: LDAPget is an Asterisk application for data retrieval from LDAP directories (e.g. OpenLDAP or ActiveDirectory). WWW: http://www.mezzo.net/asterisk/app_ldap.html PR: ports/101050 Submitted by: Matthias Fechner Revision Changes Path 1.1745 +1 -0 ports/net/Makefile 1.1 +24 -0 ports/net/asterisk-app-ldap/Makefile (new) 1.1 +3 -0 ports/net/asterisk-app-ldap/distinfo (new) 1.1 +34 -0 ports/net/asterisk-app-ldap/files/patch-Makefile (new) 1.1 +436 -0 ports/net/asterisk-app-ldap/files/patch-app_ldap.c (new) 1.1 +19 -0 ports/net/asterisk-app-ldap/files/patch-cflags.sh (new) 1.1 +4 -0 ports/net/asterisk-app-ldap/pkg-descr (new) 1.1 +2 -0 ports/net/asterisk-app-ldap/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:12:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23E6916A40F; Sat, 30 Sep 2006 11:12:37 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D69F743D49; Sat, 30 Sep 2006 11:12:36 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBCajr047170; Sat, 30 Sep 2006 11:12:36 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBCaLZ047169; Sat, 30 Sep 2006 11:12:36 GMT (envelope-from ru) Message-Id: <200609301112.k8UBCaLZ047169@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 11:12:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/mca mca.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:12:37 -0000 ru 2006-09-30 11:12:36 UTC FreeBSD src repository Modified files: sbin/mca mca.8 Log: Markup nit. Revision Changes Path 1.3 +1 -1 src/sbin/mca/mca.8 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:13:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA87216A403; Sat, 30 Sep 2006 11:13:27 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7688E43D58; Sat, 30 Sep 2006 11:13:24 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBDOp9047238; Sat, 30 Sep 2006 11:13:24 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBDOU1047237; Sat, 30 Sep 2006 11:13:24 GMT (envelope-from bsam) Message-Id: <200609301113.k8UBDOU1047237@repoman.freebsd.org> From: Boris Samorodov Date: Sat, 30 Sep 2006 11:13:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:13:28 -0000 bsam 2006-09-30 11:13:24 UTC FreeBSD ports repository Modified files: . modules Log: asterisk-app-ldap --> ports/net/asterisk-app-ldap Revision Changes Path 1.16313 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:14:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AEBA16A416; Sat, 30 Sep 2006 11:14:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88A3143D78; Sat, 30 Sep 2006 11:14:14 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBEEPw047293; Sat, 30 Sep 2006 11:14:14 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBEEsw047292; Sat, 30 Sep 2006 11:14:14 GMT (envelope-from miwi) Message-Id: <200609301114.k8UBEEsw047292@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 11:14:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/log4sh Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:14:17 -0000 miwi 2006-09-30 11:14:14 UTC FreeBSD ports repository Modified files: devel/log4sh Makefile distinfo Log: - Update to 1.3.6 PR: ports/103816 Submitted by: David Thiel (maintainer) Revision Changes Path 1.7 +1 -1 ports/devel/log4sh/Makefile 1.7 +3 -3 ports/devel/log4sh/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:18:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C01416A403; Sat, 30 Sep 2006 11:18:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF96A43D45; Sat, 30 Sep 2006 11:18:08 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBI85X047469; Sat, 30 Sep 2006 11:18:08 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBI8ta047468; Sat, 30 Sep 2006 11:18:08 GMT (envelope-from miwi) Message-Id: <200609301118.k8UBI8ta047468@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 11:18:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/stroq Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:18:09 -0000 miwi 2006-09-30 11:18:08 UTC FreeBSD ports repository Modified files: games/stroq Makefile Log: - Fix build with gcc4.1 PR: ports/103818 Submitted by: Dmitry Marakasov (maintainer) Revision Changes Path 1.3 +7 -1 ports/games/stroq/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:19:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD14B16A403; Sat, 30 Sep 2006 11:19:40 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B47343D53; Sat, 30 Sep 2006 11:19:40 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBJe0o047551; Sat, 30 Sep 2006 11:19:40 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBJeXN047550; Sat, 30 Sep 2006 11:19:40 GMT (envelope-from miwi) Message-Id: <200609301119.k8UBJeXN047550@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 11:19:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/connectfive Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:19:41 -0000 miwi 2006-09-30 11:19:40 UTC FreeBSD ports repository Modified files: games/connectfive Makefile Log: - Fix build with gcc4.1 PR: ports/103819 Submitted by: Dmitry Marakasov (maintainer) Revision Changes Path 1.4 +1 -0 ports/games/connectfive/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:21:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBE0116A407; Sat, 30 Sep 2006 11:21:10 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99C6E43D49; Sat, 30 Sep 2006 11:21:10 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBLAR6047738; Sat, 30 Sep 2006 11:21:10 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBLA03047728; Sat, 30 Sep 2006 11:21:10 GMT (envelope-from miwi) Message-Id: <200609301121.k8UBLA03047728@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 11:21:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/ivan Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:21:11 -0000 miwi 2006-09-30 11:21:10 UTC FreeBSD ports repository Modified files: games/ivan Makefile Log: - Fix build with gcc4.1 PR: ports/103820 Submitted by: Dmitry Marakasov (maintainer) Revision Changes Path 1.4 +4 -0 ports/games/ivan/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:22:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D07F116A40F; Sat, 30 Sep 2006 11:22:27 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40A8E43D46; Sat, 30 Sep 2006 11:22:27 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBMRDW048024; Sat, 30 Sep 2006 11:22:27 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBMRRI048023; Sat, 30 Sep 2006 11:22:27 GMT (envelope-from ru) Message-Id: <200609301122.k8UBMRRI048023@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 11:22:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man3 pthread.3 pthread_attr.3 pthread_attr_get_np.3 pthread_attr_setcreatesuspend_np.3 pthread_cancel.3 pthread_cleanup_pop.3 pthread_cleanup_push.3 pthread_cond_broadcast.3 pthread_cond_destroy.3 pthread_cond_init.3 pthread_cond_signal.3 ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:22:27 -0000 ru 2006-09-30 11:22:27 UTC FreeBSD src repository Modified files: share/man/man3 pthread.3 pthread_attr.3 pthread_attr_get_np.3 pthread_attr_setcreatesuspend_np.3 pthread_cancel.3 pthread_cleanup_pop.3 pthread_cleanup_push.3 pthread_cond_broadcast.3 pthread_cond_destroy.3 pthread_cond_init.3 pthread_cond_signal.3 pthread_cond_timedwait.3 pthread_cond_wait.3 pthread_condattr.3 pthread_create.3 pthread_detach.3 pthread_equal.3 pthread_exit.3 pthread_getconcurrency.3 pthread_getspecific.3 pthread_join.3 pthread_key_create.3 pthread_key_delete.3 pthread_kill.3 pthread_main_np.3 pthread_multi_np.3 pthread_mutex_destroy.3 pthread_mutex_init.3 pthread_mutex_lock.3 pthread_mutex_trylock.3 pthread_mutex_unlock.3 pthread_mutexattr.3 pthread_mutexattr_getkind_np.3 pthread_once.3 pthread_resume_all_np.3 pthread_resume_np.3 pthread_rwlock_destroy.3 pthread_rwlock_init.3 pthread_rwlock_rdlock.3 pthread_rwlock_unlock.3 pthread_rwlock_wrlock.3 pthread_rwlockattr_destroy.3 pthread_rwlockattr_getpshared.3 pthread_rwlockattr_init.3 pthread_rwlockattr_setpshared.3 pthread_schedparam.3 pthread_self.3 pthread_set_name_np.3 pthread_setspecific.3 pthread_sigmask.3 pthread_suspend_all_np.3 pthread_suspend_np.3 pthread_switch_add_np.3 pthread_testcancel.3 Log: Remove mentions of libc_r. Revision Changes Path 1.29 +1 -3 src/share/man/man3/pthread.3 1.17 +0 -1 src/share/man/man3/pthread_attr.3 1.13 +0 -1 src/share/man/man3/pthread_attr_get_np.3 1.6 +0 -1 src/share/man/man3/pthread_attr_setcreatesuspend_np.3 1.12 +0 -1 src/share/man/man3/pthread_cancel.3 1.13 +0 -1 src/share/man/man3/pthread_cleanup_pop.3 1.14 +0 -1 src/share/man/man3/pthread_cleanup_push.3 1.14 +0 -1 src/share/man/man3/pthread_cond_broadcast.3 1.15 +0 -1 src/share/man/man3/pthread_cond_destroy.3 1.16 +0 -1 src/share/man/man3/pthread_cond_init.3 1.14 +0 -1 src/share/man/man3/pthread_cond_signal.3 1.19 +0 -1 src/share/man/man3/pthread_cond_timedwait.3 1.20 +0 -1 src/share/man/man3/pthread_cond_wait.3 1.14 +0 -1 src/share/man/man3/pthread_condattr.3 1.20 +0 -1 src/share/man/man3/pthread_create.3 1.17 +0 -1 src/share/man/man3/pthread_detach.3 1.14 +0 -1 src/share/man/man3/pthread_equal.3 1.20 +0 -1 src/share/man/man3/pthread_exit.3 1.5 +0 -1 src/share/man/man3/pthread_getconcurrency.3 1.14 +0 -1 src/share/man/man3/pthread_getspecific.3 1.17 +0 -1 src/share/man/man3/pthread_join.3 1.15 +0 -1 src/share/man/man3/pthread_key_create.3 1.15 +0 -1 src/share/man/man3/pthread_key_delete.3 1.12 +0 -1 src/share/man/man3/pthread_kill.3 1.5 +0 -1 src/share/man/man3/pthread_main_np.3 1.5 +0 -3 src/share/man/man3/pthread_multi_np.3 1.14 +0 -1 src/share/man/man3/pthread_mutex_destroy.3 1.16 +0 -1 src/share/man/man3/pthread_mutex_init.3 1.17 +0 -1 src/share/man/man3/pthread_mutex_lock.3 1.14 +0 -1 src/share/man/man3/pthread_mutex_trylock.3 1.15 +0 -1 src/share/man/man3/pthread_mutex_unlock.3 1.12 +0 -1 src/share/man/man3/pthread_mutexattr.3 1.6 +0 -1 src/share/man/man3/pthread_mutexattr_getkind_np.3 1.20 +0 -1 src/share/man/man3/pthread_once.3 1.5 +0 -1 src/share/man/man3/pthread_resume_all_np.3 1.5 +0 -1 src/share/man/man3/pthread_resume_np.3 1.11 +0 -1 src/share/man/man3/pthread_rwlock_destroy.3 1.10 +0 -1 src/share/man/man3/pthread_rwlock_init.3 1.9 +0 -1 src/share/man/man3/pthread_rwlock_rdlock.3 1.9 +0 -1 src/share/man/man3/pthread_rwlock_unlock.3 1.10 +0 -1 src/share/man/man3/pthread_rwlock_wrlock.3 1.12 +0 -1 src/share/man/man3/pthread_rwlockattr_destroy.3 1.14 +0 -1 src/share/man/man3/pthread_rwlockattr_getpshared.3 1.12 +0 -1 src/share/man/man3/pthread_rwlockattr_init.3 1.14 +0 -1 src/share/man/man3/pthread_rwlockattr_setpshared.3 1.10 +0 -1 src/share/man/man3/pthread_schedparam.3 1.13 +0 -1 src/share/man/man3/pthread_self.3 1.5 +0 -1 src/share/man/man3/pthread_set_name_np.3 1.16 +0 -1 src/share/man/man3/pthread_setspecific.3 1.13 +0 -1 src/share/man/man3/pthread_sigmask.3 1.6 +0 -1 src/share/man/man3/pthread_suspend_all_np.3 1.6 +0 -1 src/share/man/man3/pthread_suspend_np.3 1.4 +2 -1 src/share/man/man3/pthread_switch_add_np.3 1.14 +0 -1 src/share/man/man3/pthread_testcancel.3 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:23:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DBBF16A416; Sat, 30 Sep 2006 11:23:18 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A0A143D6B; Sat, 30 Sep 2006 11:23:16 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBNGHT048092; Sat, 30 Sep 2006 11:23:16 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBNGcV048091; Sat, 30 Sep 2006 11:23:16 GMT (envelope-from tobez) Message-Id: <200609301123.k8UBNGcV048091@repoman.freebsd.org> From: Anton Berezin Date: Sat, 30 Sep 2006 11:23:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc Makefile ports/textproc/p5-Pod-WSDL Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:23:18 -0000 tobez 2006-09-30 11:23:16 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Pod-WSDL Makefile distinfo pkg-descr pkg-plist Log: Add p5-Pod-WSDL 0.04, a Perl module to create WSDL documents from extended pod. Revision Changes Path 1.1065 +1 -0 ports/textproc/Makefile 1.1 +43 -0 ports/textproc/p5-Pod-WSDL/Makefile (new) 1.1 +3 -0 ports/textproc/p5-Pod-WSDL/distinfo (new) 1.1 +16 -0 ports/textproc/p5-Pod-WSDL/pkg-descr (new) 1.1 +16 -0 ports/textproc/p5-Pod-WSDL/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:23:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA90316A407; Sat, 30 Sep 2006 11:23:38 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2150043D73; Sat, 30 Sep 2006 11:23:36 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBNaeT048154; Sat, 30 Sep 2006 11:23:36 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBNZB7048153; Sat, 30 Sep 2006 11:23:35 GMT (envelope-from tobez) Message-Id: <200609301123.k8UBNZB7048153@repoman.freebsd.org> From: Anton Berezin Date: Sat, 30 Sep 2006 11:23:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:23:39 -0000 tobez 2006-09-30 11:23:35 UTC FreeBSD ports repository Modified files: . modules Log: p5-Pod-WSDL --> ports/textproc/p5-Pod-WSDL Revision Changes Path 1.16314 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:25:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B87016A403; Sat, 30 Sep 2006 11:25:32 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFE8743D45; Sat, 30 Sep 2006 11:25:31 +0000 (GMT) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id D3ED9208D; Sat, 30 Sep 2006 13:25:25 +0200 (CEST) X-Spam-Tests: AWL X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on tim.des.no Received: from dwp.des.no (des.no [80.203.243.180]) by tim.des.no (Postfix) with ESMTP id C2ED9208C; Sat, 30 Sep 2006 13:25:25 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 1001) id 1BDD9B80E; Sat, 30 Sep 2006 13:25:24 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Luoqi Chen References: <200609290441.k8T4fbIE008707@repoman.freebsd.org> Date: Sat, 30 Sep 2006 13:25:24 +0200 In-Reply-To: <200609290441.k8T4fbIE008707@repoman.freebsd.org> (Luoqi Chen's message of "Fri, 29 Sep 2006 04:41:37 +0000 (UTC)") Message-ID: <86d59dlhp7.fsf@dwp.des.no> User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/su su.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:25:32 -0000 Luoqi Chen writes: > Log: > Do not chdir(2) until after setuid(2), otherwise "su - username" would = fail > when root doesn't have the permission to enter target user's home direc= tory. > If set, PAM environment variable HOME will be used in chdir(2) instead = of > pwd->pw_dir, this allows pam_chroot module to continue to function. Thank you. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:26:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 998A716A415; Sat, 30 Sep 2006 11:26:47 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5068043D4C; Sat, 30 Sep 2006 11:26:47 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBQlYw048354; Sat, 30 Sep 2006 11:26:47 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBQl5J048353; Sat, 30 Sep 2006 11:26:47 GMT (envelope-from bsam) Message-Id: <200609301126.k8UBQl5J048353@repoman.freebsd.org> From: Boris Samorodov Date: Sat, 30 Sep 2006 11:26:46 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:26:47 -0000 bsam 2006-09-30 11:26:46 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Submitter added: [new port] net/asterisk-app-ldap PR: 101050 Submitted by: Matthias Fechner Revision Changes Path 1.611 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:29:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA4B216A407; Sat, 30 Sep 2006 11:29:10 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8640943D46; Sat, 30 Sep 2006 11:29:10 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBTAJq048456; Sat, 30 Sep 2006 11:29:10 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBT97P048455; Sat, 30 Sep 2006 11:29:09 GMT (envelope-from tobez) Message-Id: <200609301129.k8UBT97P048455@repoman.freebsd.org> From: Anton Berezin Date: Sat, 30 Sep 2006 11:29:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:29:10 -0000 tobez 2006-09-30 11:29:09 UTC FreeBSD src repository Modified files: . access Log: Remove myself from src access, since I barely ever commit there. The CVS scripts tells me it wants "Approved by: core". I doubt that it is correct, but let's hope the robot can be fooled by this commit message. Reminded by: grimreaper Revision Changes Path 1.790 +0 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:32:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FB8416A407; Sat, 30 Sep 2006 11:32:47 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C90143D49; Sat, 30 Sep 2006 11:32:47 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBWknh048748; Sat, 30 Sep 2006 11:32:46 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBWkOF048747; Sat, 30 Sep 2006 11:32:46 GMT (envelope-from ru) Message-Id: <200609301132.k8UBWkOF048747@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 11:32:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/tools/build/options WITHOUT_LIBC_R src/lib Makefile src/share/man/man3 Makefile src/share/mk bsd.compat.mk bsd.libnames.mk bsd.own.mk src/tools/build/mk OptionalObsoleteFiles.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:32:47 -0000 ru 2006-09-30 11:32:46 UTC FreeBSD src repository Modified files: lib Makefile share/man/man3 Makefile share/mk bsd.compat.mk bsd.libnames.mk bsd.own.mk tools/build/mk OptionalObsoleteFiles.inc Removed files: tools/build/options WITHOUT_LIBC_R Log: Removed libc_r build support. Revision Changes Path 1.218 +1 -6 src/lib/Makefile 1.43 +1 -1 src/share/man/man3/Makefile 1.21 +0 -1 src/share/mk/bsd.compat.mk 1.99 +0 -1 src/share/mk/bsd.libnames.mk 1.57 +0 -2 src/share/mk/bsd.own.mk 1.5 +0 -4 src/tools/build/mk/OptionalObsoleteFiles.inc 1.2 +0 -5 src/tools/build/options/WITHOUT_LIBC_R (dead) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:34:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A9A316A415; Sat, 30 Sep 2006 11:34:23 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC0BD43D46; Sat, 30 Sep 2006 11:34:22 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBYMQp048853; Sat, 30 Sep 2006 11:34:22 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBYMil048852; Sat, 30 Sep 2006 11:34:22 GMT (envelope-from ru) Message-Id: <200609301134.k8UBYMil048852@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 11:34:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man5 src.conf.5 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:34:23 -0000 ru 2006-09-30 11:34:22 UTC FreeBSD src repository Modified files: share/man/man5 src.conf.5 Log: Regen (removal of WITHOUT_LIBC_R). Revision Changes Path 1.8 +1 -7 src/share/man/man5/src.conf.5 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 11:48:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8DF516A412; Sat, 30 Sep 2006 11:48:13 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0954A43D5C; Sat, 30 Sep 2006 11:48:13 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UBmCOc049452; Sat, 30 Sep 2006 11:48:12 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UBmCb6049451; Sat, 30 Sep 2006 11:48:12 GMT (envelope-from ru) Message-Id: <200609301148.k8UBmCb6049451@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 11:48:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man3 siginfo.3 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 11:48:13 -0000 ru 2006-09-30 11:48:12 UTC FreeBSD src repository Modified files: share/man/man3 siginfo.3 Log: Revise markup. Revision Changes Path 1.3 +5 -6 src/share/man/man3/siginfo.3 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:10:22 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BA4F16A47E; Sat, 30 Sep 2006 12:10:22 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout1.pacific.net.au (mailout1-3.pacific.net.au [61.8.2.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C7FA43D5C; Sat, 30 Sep 2006 12:10:17 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.2.162]) by mailout1.pacific.net.au (Postfix) with ESMTP id 13D9B61FFF1; Sat, 30 Sep 2006 22:10:16 +1000 (EST) Received: from epsplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k8UCAE1l021247; Sat, 30 Sep 2006 22:10:15 +1000 Date: Sat, 30 Sep 2006 22:10:13 +1000 (EST) From: Bruce Evans X-X-Sender: bde@epsplex.bde.org To: Martin Blapp In-Reply-To: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> Message-ID: <20060930215621.J1683@epsplex.bde.org> References: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:10:22 -0000 On Sat, 30 Sep 2006, Martin Blapp wrote: > mbr 2006-09-30 08:11:52 UTC > > FreeBSD src repository > > Modified files: > sys/kern tty.c > Log: > Any call of tty_close() with a tty refcount of <= 1 is wrong and we will > free the tty in this case. This is a workaround until the underlaying > devfs/tty problems are fixed. Actually mainly old vfs bugs and complications near revoke() that bite harder now. Bruce From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:10:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F17316A4A7; Sat, 30 Sep 2006 12:10:22 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68FE743D5F; Sat, 30 Sep 2006 12:10:21 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCALm9051683; Sat, 30 Sep 2006 12:10:21 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCALEH051673; Sat, 30 Sep 2006 12:10:21 GMT (envelope-from miwi) Message-Id: <200609301210.k8UCALEH051673@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 12:10:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/py-twistedWeb2 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:10:22 -0000 miwi 2006-09-30 12:10:21 UTC FreeBSD ports repository Modified files: www/py-twistedWeb2 Makefile distinfo pkg-plist Log: - Update to 0.2.0 Changes to the port: * Remove stale master site. * Bump minimum Python version to 2.3. * Remove no-longer-necessary _version.py hack. PR: ports/102867 Submitted by: Piet Delport Approved by: Maintainer timeout Revision Changes Path 1.3 +3 -10 ports/www/py-twistedWeb2/Makefile 1.3 +3 -3 ports/www/py-twistedWeb2/distinfo 1.3 +222 -18 ports/www/py-twistedWeb2/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:12:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4902216A403; Sat, 30 Sep 2006 12:12:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E4C943D58; Sat, 30 Sep 2006 12:12:16 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCCG3I051904; Sat, 30 Sep 2006 12:12:16 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCCGBq051897; Sat, 30 Sep 2006 12:12:16 GMT (envelope-from miwi) Message-Id: <200609301212.k8UCCGBq051897@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 12:12:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/kiki Makefile ports/games/kiki/files patch-src-main-KikiPythonWidget.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:12:17 -0000 miwi 2006-09-30 12:12:16 UTC FreeBSD ports repository Modified files: games/kiki Makefile Added files: games/kiki/files patch-src-main-KikiPythonWidget.h Log: - Fix build with gcc 4.1 PR: ports/103823 Submitted by: Dmitry Marakasov (maintainer) Revision Changes Path 1.4 +1 -1 ports/games/kiki/Makefile 1.1 +10 -0 ports/games/kiki/files/patch-src-main-KikiPythonWidget.h (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:13:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D2E016A415; Sat, 30 Sep 2006 12:13:52 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53D7243D76; Sat, 30 Sep 2006 12:13:49 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCDn0x051972; Sat, 30 Sep 2006 12:13:49 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCDnFu051971; Sat, 30 Sep 2006 12:13:49 GMT (envelope-from miwi) Message-Id: <200609301213.k8UCDnFu051971@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 12:13:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/untahris Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:13:52 -0000 miwi 2006-09-30 12:13:49 UTC FreeBSD ports repository Modified files: games/untahris Makefile Log: - Fix build with gcc 4.1 Submitted by: Dmitry Marakasov (maintainer) Revision Changes Path 1.2 +1 -1 ports/games/untahris/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:16:55 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2BA216A40F; Sat, 30 Sep 2006 12:16:55 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F58443D8B; Sat, 30 Sep 2006 12:16:55 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCGtmo052128; Sat, 30 Sep 2006 12:16:55 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCGtWS052127; Sat, 30 Sep 2006 12:16:55 GMT (envelope-from miwi) Message-Id: <200609301216.k8UCGtWS052127@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 12:16:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws-vcalendar Makefile distinfo ports/mail/sylpheed-claws-vcalendar/files patch-vcal_manager.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:16:55 -0000 miwi 2006-09-30 12:16:54 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws-vcalendar Makefile distinfo Removed files: mail/sylpheed-claws-vcalendar/files patch-vcal_manager.c Log: - Update to 1.89.1 - Remove obsolete patch (accepted upstream) PR: ports/103789 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.6 +3 -3 ports/mail/sylpheed-claws-vcalendar/Makefile 1.5 +3 -3 ports/mail/sylpheed-claws-vcalendar/distinfo 1.2 +0 -14 ports/mail/sylpheed-claws-vcalendar/files/patch-vcal_manager.c (dead) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:18:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71E0F16A412; Sat, 30 Sep 2006 12:18:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D322E43D6A; Sat, 30 Sep 2006 12:18:16 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCIGen052217; Sat, 30 Sep 2006 12:18:16 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCIGjb052216; Sat, 30 Sep 2006 12:18:16 GMT (envelope-from miwi) Message-Id: <200609301218.k8UCIGjb052216@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 12:18:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws-synce Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:18:17 -0000 miwi 2006-09-30 12:18:16 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws-synce Makefile distinfo Log: - Update to 0.6.4 PR: ports/103788 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.3 +3 -3 ports/mail/sylpheed-claws-synce/Makefile 1.3 +3 -3 ports/mail/sylpheed-claws-synce/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:19:50 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B39016A40F; Sat, 30 Sep 2006 12:19:50 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B7C643D79; Sat, 30 Sep 2006 12:19:48 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCJmXd052277; Sat, 30 Sep 2006 12:19:48 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCJm2O052276; Sat, 30 Sep 2006 12:19:48 GMT (envelope-from miwi) Message-Id: <200609301219.k8UCJm2O052276@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 12:19:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws-perl Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:19:50 -0000 miwi 2006-09-30 12:19:47 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws-perl Makefile distinfo Log: - Update to 103785 PR: ports/103785 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.4 +3 -3 ports/mail/sylpheed-claws-perl/Makefile 1.4 +3 -3 ports/mail/sylpheed-claws-perl/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:22:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6233B16A415; Sat, 30 Sep 2006 12:22:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CFDA43D8F; Sat, 30 Sep 2006 12:21:24 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCL79W052469; Sat, 30 Sep 2006 12:21:07 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCL72g052468; Sat, 30 Sep 2006 12:21:07 GMT (envelope-from miwi) Message-Id: <200609301221.k8UCL72g052468@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 12:21:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws-notification Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:22:13 -0000 miwi 2006-09-30 12:21:07 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws-notification Makefile distinfo Log: - Update to 0.5 PR: ports/103784 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.5 +3 -3 ports/mail/sylpheed-claws-notification/Makefile 1.5 +3 -3 ports/mail/sylpheed-claws-notification/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:28:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B43316A415; Sat, 30 Sep 2006 12:28:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from unixfreunde.net (unixfreunde.de [85.214.35.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1820143E5E; Sat, 30 Sep 2006 12:25:43 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: by unixfreunde.net (Postfix, from userid 65534) id EDB3250A17; Sat, 30 Sep 2006 14:25:34 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.1.3-gr1 (2006-06-01) on unixfreunde.de X-Spam-Level: * X-Spam-Status: No, score=1.5 required=5.0 tests=AWL, BAYES_00, FORGED_RCVD_HELO, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.1.3-gr1 Received: from mwilke.ath.cx (dslb-082-083-135-062.pools.arcor-ip.net [82.83.135.62]) by unixfreunde.net (Postfix) with ESMTP id 6871F50964; Sat, 30 Sep 2006 14:25:34 +0200 (CEST) Date: Sat, 30 Sep 2006 14:25:33 +0200 From: Martin Wilke To: Martin Wilke Message-ID: <20060930142533.647adf27@mwilke.ath.cx> In-Reply-To: <200609301213.k8UCDnFu051971@repoman.freebsd.org> References: <200609301213.k8UCDnFu051971@repoman.freebsd.org> X-Mailer: Sylpheed-Claws 2.5.2 (GTK+ 2.10.4; i386-portbld-freebsd7.0) User-Agent: miwi@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/games/untahris Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:28:21 -0000 On Sat, 30 Sep 2006 12:13:49 +0000 (UTC) Martin Wilke wrote: forgot PR: ports/103783 > miwi 2006-09-30 12:13:49 UTC > > FreeBSD ports repository > > Modified files: > games/untahris Makefile > Log: > - Fix build with gcc 4.1 > > Submitted by: Dmitry Marakasov (maintainer) > > Revision Changes Path > 1.2 +1 -1 ports/games/untahris/Makefile > _______________________________________________ > cvs-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-ports > To unsubscribe, send any mail to "cvs-ports-unsubscribe@freebsd.org" -- Martin Wilke | irc.unixfreunde.de #bsd miwi@FreeBSD.org | miwi@unixfreunde.de FreeBSD Commiter | Power to Serve From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:34:17 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52D6C16A4DA; Sat, 30 Sep 2006 12:34:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A85643D7D; Sat, 30 Sep 2006 12:32:19 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCWHc0052971; Sat, 30 Sep 2006 12:32:17 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCWHNO052970; Sat, 30 Sep 2006 12:32:17 GMT (envelope-from miwi) Message-Id: <200609301232.k8UCWHNO052970@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 12:32:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws-newmail Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:34:17 -0000 miwi 2006-09-30 12:32:17 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws-newmail Makefile distinfo Log: - Update to 0.0.7 PR: ports/103783 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.4 +3 -3 ports/mail/sylpheed-claws-newmail/Makefile 1.4 +3 -3 ports/mail/sylpheed-claws-newmail/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:34:21 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57FA316A5AB; Sat, 30 Sep 2006 12:34:21 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout1.pacific.net.au (mailout1-3.pacific.net.au [61.8.2.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B9B943DE7; Sat, 30 Sep 2006 12:32:22 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.2.162]) by mailout1.pacific.net.au (Postfix) with ESMTP id 46DC069FC96; Sat, 30 Sep 2006 22:32:21 +1000 (EST) Received: from epsplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k8UCWIjb006369; Sat, 30 Sep 2006 22:32:19 +1000 Date: Sat, 30 Sep 2006 22:32:17 +1000 (EST) From: Bruce Evans X-X-Sender: bde@epsplex.bde.org To: Martin Blapp In-Reply-To: <20060930012958.C91466@godot.imp.ch> Message-ID: <20060930221249.J1683@epsplex.bde.org> References: <8209.1159564737@critter.freebsd.dk> <20060930012958.C91466@godot.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, Poul-Henning Kamp , Martin Blapp , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:34:21 -0000 On Sat, 30 Sep 2006, Martin Blapp wrote: > What's the best to do now ? Back out again the last commit and that destroy > slave can be called, make tty_pts.c as broken ? Or will you or Bruce fix > the underlaying problem ? It's far beyond my horizont ... Start with removing all device and tty destruction calls (mainly in tty_pts.c). Bruce From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:38:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEDCA16A415; Sat, 30 Sep 2006 12:38:52 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD26D43E10; Sat, 30 Sep 2006 12:37:50 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCbhex053213; Sat, 30 Sep 2006 12:37:43 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCbhjI053212; Sat, 30 Sep 2006 12:37:43 GMT (envelope-from netchild) Message-Id: <200609301237.k8UCbhjI053212@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 12:37:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph/atm/ccatm ng_ccatm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:38:52 -0000 netchild 2006-09-30 12:37:43 UTC FreeBSD src repository Modified files: sys/netgraph/atm/ccatm ng_ccatm.c Log: Don't use data after free. Found by: Coverity Prevent CID: 536 Submitted by: harti (via vs) Revision Changes Path 1.3 +4 -1 src/sys/netgraph/atm/ccatm/ng_ccatm.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:40:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3938716A403; Sat, 30 Sep 2006 12:40:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF89443D7E; Sat, 30 Sep 2006 12:40:03 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCe3or053362; Sat, 30 Sep 2006 12:40:03 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCe3t1053361; Sat, 30 Sep 2006 12:40:03 GMT (envelope-from miwi) Message-Id: <200609301240.k8UCe3t1053361@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 12:40:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws-mailmbox Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:40:04 -0000 miwi 2006-09-30 12:40:03 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws-mailmbox Makefile distinfo Log: - Update to 1.12.2 PR: ports/103782 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.4 +3 -3 ports/mail/sylpheed-claws-mailmbox/Makefile 1.4 +3 -3 ports/mail/sylpheed-claws-mailmbox/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:44:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2E4E16A49E; Sat, 30 Sep 2006 12:44:32 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F191A43D5E; Sat, 30 Sep 2006 12:44:30 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCiUW8053868; Sat, 30 Sep 2006 12:44:30 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCiUtp053867; Sat, 30 Sep 2006 12:44:30 GMT (envelope-from netchild) Message-Id: <200609301244.k8UCiUtp053867@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 12:44:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pci ak452x.c ak452x.h envy24ht.c envy24ht.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:44:32 -0000 netchild 2006-09-30 12:44:30 UTC FreeBSD src repository Modified files: sys/dev/sound/pci ak452x.c ak452x.h envy24ht.c envy24ht.h Log: Forcet commit to note repo copy: envy24.c -> envy24ht.c envy24.h -> envy24ht.h ak452x.c -> spicds.c ak452x.h -> spicds.h Fast repo copy by: simon (30min turn-around) Revision Changes Path 1.3 +0 -0 src/sys/dev/sound/pci/ak452x.c 1.2 +0 -0 src/sys/dev/sound/pci/ak452x.h 1.4 +0 -0 src/sys/dev/sound/pci/envy24ht.c 1.2 +0 -0 src/sys/dev/sound/pci/envy24ht.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:48:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 657AC16A40F; Sat, 30 Sep 2006 12:48:10 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 218B843D7E; Sat, 30 Sep 2006 12:48:10 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCmAND062032; Sat, 30 Sep 2006 12:48:10 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCmAf7062031; Sat, 30 Sep 2006 12:48:10 GMT (envelope-from miwi) Message-Id: <200609301248.k8UCmAf7062031@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 12:48:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws-smime Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:48:10 -0000 miwi 2006-09-30 12:48:09 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws-smime Makefile distinfo Log: - Update to 0.5.5 PR: ports/103787 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.5 +3 -4 ports/mail/sylpheed-claws-smime/Makefile 1.4 +3 -3 ports/mail/sylpheed-claws-smime/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:50:02 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 492C716A47C for ; Sat, 30 Sep 2006 12:50:02 +0000 (UTC) (envelope-from pho@holm.cc) Received: from relay03.pair.com (relay03.pair.com [209.68.5.17]) by mx1.FreeBSD.org (Postfix) with SMTP id E7CEF43D76 for ; Sat, 30 Sep 2006 12:49:59 +0000 (GMT) (envelope-from pho@holm.cc) Received: (qmail 16622 invoked from network); 30 Sep 2006 12:49:58 -0000 Received: from unknown (HELO peter.osted.lan) (unknown) by unknown with SMTP; 30 Sep 2006 12:49:58 -0000 X-pair-Authenticated: 80.165.155.106 Received: from peter.osted.lan (localhost.osted.lan [127.0.0.1]) by peter.osted.lan (8.13.6/8.13.6) with ESMTP id k8UCnwiB025680; Sat, 30 Sep 2006 14:49:58 +0200 (CEST) (envelope-from pho@peter.osted.lan) Received: (from pho@localhost) by peter.osted.lan (8.13.6/8.13.6/Submit) id k8UCnvcY025679; Sat, 30 Sep 2006 14:49:58 +0200 (CEST) (envelope-from pho) Date: Sat, 30 Sep 2006 14:49:57 +0200 From: Peter Holm To: Martin Blapp Message-ID: <20060930124957.GA25578@peter.osted.lan> References: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:50:02 -0000 On Sat, Sep 30, 2006 at 08:11:52AM +0000, Martin Blapp wrote: > mbr 2006-09-30 08:11:52 UTC > > FreeBSD src repository > > Modified files: > sys/kern tty.c > Log: > Any call of tty_close() with a tty refcount of <= 1 is wrong and we will > free the tty in this case. This is a workaround until the underlaying > devfs/tty problems are fixed. > I still have a problem with ptys: http://people.freebsd.org/~pho/stress/log/blapp001.html - Peter > MFC after: 1 day > > Revision Changes Path > 1.261 +9 -6 src/sys/kern/tty.c > _______________________________________________ > cvs-src@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-src > To unsubscribe, send any mail to "cvs-src-unsubscribe@freebsd.org" From owner-cvs-all@FreeBSD.ORG Sat Sep 30 12:52:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B3E416A407; Sat, 30 Sep 2006 12:52:16 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C414143D76; Sat, 30 Sep 2006 12:52:15 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCqFbf062275; Sat, 30 Sep 2006 12:52:15 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCqFNY062274; Sat, 30 Sep 2006 12:52:15 GMT (envelope-from ru) Message-Id: <200609301252.k8UCqFNY062274@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 12:52:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/gnu/lib/libstdc++ Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 12:52:16 -0000 ru 2006-09-30 12:52:15 UTC FreeBSD src repository Modified files: gnu/lib/libstdc++ Makefile Log: Fix build due to the incomplete removal of demangle.h. Revision Changes Path 1.57 +1 -1 src/gnu/lib/libstdc++/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:00:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 420E316A407; Sat, 30 Sep 2006 13:00:18 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E9B643DE4; Sat, 30 Sep 2006 12:58:58 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UCww3Y062558; Sat, 30 Sep 2006 12:58:58 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UCwwXu062557; Sat, 30 Sep 2006 12:58:58 GMT (envelope-from miwi) Message-Id: <200609301258.k8UCwwXu062557@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 12:58:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws-att_remover Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:00:18 -0000 miwi 2006-09-30 12:58:58 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws-att_remover Makefile distinfo Log: - Update to 1.0.3 PR: ports/103776 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.4 +3 -3 ports/mail/sylpheed-claws-att_remover/Makefile 1.4 +3 -3 ports/mail/sylpheed-claws-att_remover/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:00:43 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D90216A5FD; Sat, 30 Sep 2006 13:00:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FD6E43DA2; Sat, 30 Sep 2006 13:00:03 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UD03aC062629; Sat, 30 Sep 2006 13:00:03 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UD02EE062628; Sat, 30 Sep 2006 13:00:02 GMT (envelope-from miwi) Message-Id: <200609301300.k8UD02EE062628@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 13:00:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws-cachesaver Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:00:43 -0000 miwi 2006-09-30 13:00:02 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws-cachesaver Makefile distinfo Log: - Update to 0.10.2 PR: ports/103777 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.4 +3 -3 ports/mail/sylpheed-claws-cachesaver/Makefile 1.4 +3 -3 ports/mail/sylpheed-claws-cachesaver/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:01:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E2D816A412; Sat, 30 Sep 2006 13:01:31 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2814D43D45; Sat, 30 Sep 2006 13:01:31 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UD1Vb6062801; Sat, 30 Sep 2006 13:01:31 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UD1Uvr062800; Sat, 30 Sep 2006 13:01:30 GMT (envelope-from miwi) Message-Id: <200609301301.k8UD1Uvr062800@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 13:01:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws-etpan_privacy Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:01:31 -0000 miwi 2006-09-30 13:01:30 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws-etpan_privacy Makefile distinfo Log: - Update to 0.15.3 PR: ports/103778 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.4 +3 -3 ports/mail/sylpheed-claws-etpan_privacy/Makefile 1.4 +3 -3 ports/mail/sylpheed-claws-etpan_privacy/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:03:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EEDE16A416; Sat, 30 Sep 2006 13:03:06 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15DA743D49; Sat, 30 Sep 2006 13:03:06 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UD35L3062894; Sat, 30 Sep 2006 13:03:05 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UD35vS062893; Sat, 30 Sep 2006 13:03:05 GMT (envelope-from miwi) Message-Id: <200609301303.k8UD35vS062893@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 13:03:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws-fetchinfo Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:03:06 -0000 miwi 2006-09-30 13:03:05 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws-fetchinfo Makefile distinfo Log: - Update to 0.4.16 PR: ports/103779 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.4 +3 -3 ports/mail/sylpheed-claws-fetchinfo/Makefile 1.4 +3 -3 ports/mail/sylpheed-claws-fetchinfo/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:05:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AB5D16A412; Sat, 30 Sep 2006 13:05:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2EFE43D45; Sat, 30 Sep 2006 13:05:09 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UD59Yg064168; Sat, 30 Sep 2006 13:05:09 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UD59qh064167; Sat, 30 Sep 2006 13:05:09 GMT (envelope-from miwi) Message-Id: <200609301305.k8UD59qh064167@repoman.freebsd.org> From: Martin Wilke Date: Sat, 30 Sep 2006 13:05:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/sylpheed-claws-gtkhtml2_viewer Makefile distinfo ports/mail/sylpheed-claws-gtkhtml2_viewer/files patch-configure.ac X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:05:10 -0000 miwi 2006-09-30 13:05:09 UTC FreeBSD ports repository Modified files: mail/sylpheed-claws-gtkhtml2_viewer Makefile distinfo Added files: mail/sylpheed-claws-gtkhtml2_viewer/files patch-configure.ac Log: - Update to 0.11 PR: ports/103780 Submitted by: Pawel Pekala (maintainer) Revision Changes Path 1.5 +7 -3 ports/mail/sylpheed-claws-gtkhtml2_viewer/Makefile 1.5 +3 -3 ports/mail/sylpheed-claws-gtkhtml2_viewer/distinfo 1.3 +8 -0 ports/mail/sylpheed-claws-gtkhtml2_viewer/files/patch-configure.ac (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:30:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EE9D16A403; Sat, 30 Sep 2006 13:30:02 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11A4643D5C; Sat, 30 Sep 2006 13:30:02 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDU2NN065335; Sat, 30 Sep 2006 13:30:02 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDU1mw065334; Sat, 30 Sep 2006 13:30:01 GMT (envelope-from des) Message-Id: <200609301330.k8UDU1mw065334@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:30:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: OPENSSH Cc: Subject: cvs commit: src/crypto/openssh - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:30:02 -0000 des 2006-09-30 13:30:01 UTC FreeBSD src repository src/crypto/openssh - Imported sources Update of /home/ncvs/src/crypto/openssh In directory repoman.freebsd.org:/tmp/cvs-serv65300 Log Message: Vendor import of OpenSSH 4.4p1. Status: Vendor Tag: OPENSSH Release Tags: OpenSSH_4_4p1 U src/crypto/openssh/mkinstalldirs U src/crypto/openssh/auth2-gss.c C src/crypto/openssh/auth-pam.c U src/crypto/openssh/uidswap.c C src/crypto/openssh/cipher.c U src/crypto/openssh/ssh-agent.1 U src/crypto/openssh/buffer.c U src/crypto/openssh/monitor_fdpass.c U src/crypto/openssh/kexdhs.c C src/crypto/openssh/monitor.h U src/crypto/openssh/cleanup.c U src/crypto/openssh/authfile.h U src/crypto/openssh/mdoc2man.awk C src/crypto/openssh/sshpty.c U src/crypto/openssh/gss-serv-krb5.c U src/crypto/openssh/sftp-common.c C src/crypto/openssh/auth-skey.c U src/crypto/openssh/ssh-rsa.c C src/crypto/openssh/ssh.c U src/crypto/openssh/kexgexs.c U src/crypto/openssh/compress.h U src/crypto/openssh/ssh-keysign.8 C src/crypto/openssh/compat.h U src/crypto/openssh/atomicio.h C src/crypto/openssh/sshconnect1.c U src/crypto/openssh/fixpaths U src/crypto/openssh/msg.c U src/crypto/openssh/sftp.h C src/crypto/openssh/rsa.c U src/crypto/openssh/cipher-bf1.c U src/crypto/openssh/README.tun U src/crypto/openssh/kex.h U src/crypto/openssh/kexgexc.c C src/crypto/openssh/packet.h U src/crypto/openssh/scard.c U src/crypto/openssh/match.c U src/crypto/openssh/sftp-client.c U src/crypto/openssh/sftp.c U src/crypto/openssh/xmalloc.c U src/crypto/openssh/msg.h U src/crypto/openssh/kexdh.c U src/crypto/openssh/WARNING.RNG U src/crypto/openssh/rijndael.h C src/crypto/openssh/servconf.h U src/crypto/openssh/kexdhc.c C src/crypto/openssh/compat.c U src/crypto/openssh/mac.h U src/crypto/openssh/sshtty.c C src/crypto/openssh/canohost.c U src/crypto/openssh/entropy.h U src/crypto/openssh/sftp-server.8 U src/crypto/openssh/monitor_mm.c U src/crypto/openssh/auth2-pubkey.c C src/crypto/openssh/sshlogin.h C src/crypto/openssh/monitor_wrap.c C src/crypto/openssh/channels.c U src/crypto/openssh/moduli U src/crypto/openssh/sftp-client.h U src/crypto/openssh/scard-opensc.c U src/crypto/openssh/audit.h U src/crypto/openssh/ssh2.h U src/crypto/openssh/sftp-glob.c C src/crypto/openssh/auth-rsa.c U src/crypto/openssh/crc32.c U src/crypto/openssh/OVERVIEW U src/crypto/openssh/audit.c U src/crypto/openssh/survey.sh.in U src/crypto/openssh/aclocal.m4 U src/crypto/openssh/misc.c U src/crypto/openssh/match.h U src/crypto/openssh/fixprogs U src/crypto/openssh/crc32.h U src/crypto/openssh/kexgex.c U src/crypto/openssh/key.h U src/crypto/openssh/dispatch.h U src/crypto/openssh/dns.c U src/crypto/openssh/fatal.c U src/crypto/openssh/cipher-aes.c C src/crypto/openssh/ssh_config.5 C src/crypto/openssh/cipher.h U src/crypto/openssh/packet.c U src/crypto/openssh/cipher-3des1.c C src/crypto/openssh/auth-chall.c U src/crypto/openssh/defines.h U src/crypto/openssh/ssh-rand-helper.8 U src/crypto/openssh/scard.h U src/crypto/openssh/ssh-add.1 U src/crypto/openssh/dh.h C src/crypto/openssh/auth-krb5.c N src/crypto/openssh/platform.h U src/crypto/openssh/sftp-common.h C src/crypto/openssh/auth2.c U src/crypto/openssh/auth2-hostbased.c C src/crypto/openssh/sshd_config.5 U src/crypto/openssh/auth2-passwd.c U src/crypto/openssh/auth-options.c U src/crypto/openssh/misc.h C src/crypto/openssh/auth.c U src/crypto/openssh/README U src/crypto/openssh/mac.c N src/crypto/openssh/openssh.xml.in U src/crypto/openssh/gss-genr.c U src/crypto/openssh/cipher-acss.c U src/crypto/openssh/nchan.ms U src/crypto/openssh/auth-shadow.c C src/crypto/openssh/configure.ac U src/crypto/openssh/moduli.c C src/crypto/openssh/readconf.h C src/crypto/openssh/sshconnect.c U src/crypto/openssh/gss-serv.c C src/crypto/openssh/hostfile.c U src/crypto/openssh/auth-sia.h U src/crypto/openssh/authfd.h C src/crypto/openssh/key.c C src/crypto/openssh/session.h U src/crypto/openssh/xmalloc.h U src/crypto/openssh/ChangeLog C src/crypto/openssh/bufaux.c U src/crypto/openssh/md5crypt.h U src/crypto/openssh/buildpkg.sh.in U src/crypto/openssh/auth-options.h U src/crypto/openssh/ssh1.h U src/crypto/openssh/auth-rhosts.c C src/crypto/openssh/LICENCE C src/crypto/openssh/ssh.1 U src/crypto/openssh/ssh-keyscan.1 U src/crypto/openssh/README.platform U src/crypto/openssh/buffer.h C src/crypto/openssh/version.h U src/crypto/openssh/progressmeter.c U src/crypto/openssh/scp.1 U src/crypto/openssh/monitor_fdpass.h C src/crypto/openssh/myproposal.h U src/crypto/openssh/RFC.nroff U src/crypto/openssh/canohost.h U src/crypto/openssh/groupaccess.c U src/crypto/openssh/acss.h C src/crypto/openssh/auth.h C src/crypto/openssh/sshconnect2.c U src/crypto/openssh/nchan.c U src/crypto/openssh/install-sh U src/crypto/openssh/clientloop.h U src/crypto/openssh/ssh-keysign.c U src/crypto/openssh/ttymodes.h U src/crypto/openssh/monitor_mm.h U src/crypto/openssh/dns.h U src/crypto/openssh/cipher-ctr.c U src/crypto/openssh/rijndael.c U src/crypto/openssh/uuencode.h C src/crypto/openssh/sshlogin.c U src/crypto/openssh/auth-pam.h U src/crypto/openssh/progressmeter.h U src/crypto/openssh/serverloop.h C src/crypto/openssh/ssh-add.c U src/crypto/openssh/README.dns U src/crypto/openssh/ssh-rand-helper.c C src/crypto/openssh/log.h C src/crypto/openssh/sshd.c C src/crypto/openssh/servconf.c U src/crypto/openssh/entropy.c U src/crypto/openssh/audit-bsm.c C src/crypto/openssh/monitor.c C src/crypto/openssh/auth-passwd.c U src/crypto/openssh/opensshd.init.in U src/crypto/openssh/clientloop.c U src/crypto/openssh/logintest.c C src/crypto/openssh/auth2-chall.c C src/crypto/openssh/loginrec.c U src/crypto/openssh/deattack.c C src/crypto/openssh/channels.h C src/crypto/openssh/readconf.c U src/crypto/openssh/ssh-gss.h C src/crypto/openssh/rsa.h C src/crypto/openssh/authfile.c U src/crypto/openssh/bufaux.h C src/crypto/openssh/scp.c U src/crypto/openssh/dh.c U src/crypto/openssh/deattack.h C src/crypto/openssh/auth2-kbdint.c U src/crypto/openssh/atomicio.c C src/crypto/openssh/session.c C src/crypto/openssh/ssh.h U src/crypto/openssh/loginrec.h C src/crypto/openssh/sshd_config C src/crypto/openssh/auth-rh-rsa.c U src/crypto/openssh/ssh-keygen.1 U src/crypto/openssh/md5crypt.c U src/crypto/openssh/sshpty.h U src/crypto/openssh/uuencode.c U src/crypto/openssh/ssh_prng_cmds.in U src/crypto/openssh/auth2-none.c U src/crypto/openssh/readpass.c C src/crypto/openssh/sshd.8 U src/crypto/openssh/hostfile.h C src/crypto/openssh/pathnames.h C src/crypto/openssh/auth1.c N src/crypto/openssh/platform.c U src/crypto/openssh/sftp-server.c C src/crypto/openssh/serverloop.c U src/crypto/openssh/CREDITS U src/crypto/openssh/Makefile.in U src/crypto/openssh/config.guess U src/crypto/openssh/ssh-keygen.c U src/crypto/openssh/log.c U src/crypto/openssh/uidswap.h N src/crypto/openssh/bufbn.c U src/crypto/openssh/README.privsep U src/crypto/openssh/compress.c C src/crypto/openssh/ssh-keyscan.c C src/crypto/openssh/ssh_config C src/crypto/openssh/authfd.c C src/crypto/openssh/includes.h U src/crypto/openssh/auth-sia.c U src/crypto/openssh/config.sub C src/crypto/openssh/sshconnect.h U src/crypto/openssh/README.smartcard U src/crypto/openssh/acss.c U src/crypto/openssh/ssh-dss.c C src/crypto/openssh/ssh-agent.c U src/crypto/openssh/groupaccess.h U src/crypto/openssh/sftp.1 U src/crypto/openssh/ttymodes.c U src/crypto/openssh/TODO C src/crypto/openssh/monitor_wrap.h U src/crypto/openssh/INSTALL U src/crypto/openssh/kex.c U src/crypto/openssh/auth-bsdauth.c N src/crypto/openssh/md-sha256.c U src/crypto/openssh/nchan2.ms U src/crypto/openssh/dispatch.c U src/crypto/openssh/scard/Ssh.java U src/crypto/openssh/scard/Ssh.bin.uu U src/crypto/openssh/scard/Ssh.bin U src/crypto/openssh/scard/Makefile.in N src/crypto/openssh/regress/forcecommand.sh U src/crypto/openssh/regress/rsa_ssh2.prv N src/crypto/openssh/regress/cipher-speed.sh U src/crypto/openssh/regress/rekey.sh U src/crypto/openssh/regress/runtests.sh U src/crypto/openssh/regress/bsd.regress.mk U src/crypto/openssh/regress/agent.sh U src/crypto/openssh/regress/rsa_openssh.prv U src/crypto/openssh/regress/sftp-cmds.sh U src/crypto/openssh/regress/dsa_ssh2.prv U src/crypto/openssh/regress/connect-privsep.sh U src/crypto/openssh/regress/stderr-after-eof.sh U src/crypto/openssh/regress/sftp-glob.sh U src/crypto/openssh/regress/sshd-log-wrapper.sh U src/crypto/openssh/regress/dsa_ssh2.pub U src/crypto/openssh/regress/yes-head.sh U src/crypto/openssh/regress/envpass.sh U src/crypto/openssh/regress/agent-getpeereid.sh U src/crypto/openssh/regress/scp-ssh-wrapper.sh U src/crypto/openssh/regress/keyscan.sh U src/crypto/openssh/regress/ssh-com-client.sh U src/crypto/openssh/regress/proto-version.sh U src/crypto/openssh/regress/broken-pipe.sh U src/crypto/openssh/regress/reconfigure.sh U src/crypto/openssh/regress/t5.ok U src/crypto/openssh/regress/Makefile U src/crypto/openssh/regress/dynamic-forward.sh U src/crypto/openssh/regress/forwarding.sh U src/crypto/openssh/regress/test-exec.sh U src/crypto/openssh/regress/proxy-connect.sh U src/crypto/openssh/regress/login-timeout.sh U src/crypto/openssh/regress/ssh-com-sftp.sh U src/crypto/openssh/regress/ssh-com.sh U src/crypto/openssh/regress/reexec.sh U src/crypto/openssh/regress/agent-timeout.sh U src/crypto/openssh/regress/try-ciphers.sh U src/crypto/openssh/regress/scp.sh U src/crypto/openssh/regress/README.regress U src/crypto/openssh/regress/keygen-change.sh U src/crypto/openssh/regress/multiplex.sh U src/crypto/openssh/regress/proto-mismatch.sh U src/crypto/openssh/regress/sftp-badcmds.sh U src/crypto/openssh/regress/stderr-data.sh U src/crypto/openssh/regress/transfer.sh U src/crypto/openssh/regress/sftp.sh U src/crypto/openssh/regress/connect.sh U src/crypto/openssh/regress/brokenkeys.sh U src/crypto/openssh/regress/rsa_openssh.pub U src/crypto/openssh/regress/banner.sh U src/crypto/openssh/regress/sftp-batch.sh U src/crypto/openssh/regress/t4.ok N src/crypto/openssh/regress/cfgmatch.sh U src/crypto/openssh/regress/agent-ptrace.sh U src/crypto/openssh/regress/exit-status.sh U src/crypto/openssh/regress/ssh-com-keygen.sh U src/crypto/openssh/openbsd-compat/vis.c U src/crypto/openssh/openbsd-compat/port-uw.c U src/crypto/openssh/openbsd-compat/fake-rfc2553.c U src/crypto/openssh/openbsd-compat/port-tun.c U src/crypto/openssh/openbsd-compat/sigact.c N src/crypto/openssh/openbsd-compat/port-linux.h U src/crypto/openssh/openbsd-compat/bsd-waitpid.c U src/crypto/openssh/openbsd-compat/bsd-nextstep.c U src/crypto/openssh/openbsd-compat/setenv.c U src/crypto/openssh/openbsd-compat/port-irix.h U src/crypto/openssh/openbsd-compat/port-irix.c U src/crypto/openssh/openbsd-compat/bsd-snprintf.c U src/crypto/openssh/openbsd-compat/inet_aton.c U src/crypto/openssh/openbsd-compat/port-tun.h N src/crypto/openssh/openbsd-compat/sha2.h N src/crypto/openssh/openbsd-compat/port-linux.c U src/crypto/openssh/openbsd-compat/strlcat.c U src/crypto/openssh/openbsd-compat/strsep.c U src/crypto/openssh/openbsd-compat/rresvport.c U src/crypto/openssh/openbsd-compat/bsd-cray.h U src/crypto/openssh/openbsd-compat/daemon.c U src/crypto/openssh/openbsd-compat/bsd-asprintf.c U src/crypto/openssh/openbsd-compat/vis.h U src/crypto/openssh/openbsd-compat/xcrypt.c U src/crypto/openssh/openbsd-compat/strmode.c U src/crypto/openssh/openbsd-compat/strlcpy.c U src/crypto/openssh/openbsd-compat/getrrsetbyname.c U src/crypto/openssh/openbsd-compat/inet_ntoa.c U src/crypto/openssh/openbsd-compat/bsd-misc.c U src/crypto/openssh/openbsd-compat/sys-tree.h U src/crypto/openssh/openbsd-compat/bsd-getpeereid.c U src/crypto/openssh/openbsd-compat/readpassphrase.h U src/crypto/openssh/openbsd-compat/bsd-cygwin_util.c U src/crypto/openssh/openbsd-compat/bsd-closefrom.c U src/crypto/openssh/openbsd-compat/getcwd.c U src/crypto/openssh/openbsd-compat/port-aix.c U src/crypto/openssh/openbsd-compat/openssl-compat.h U src/crypto/openssh/openbsd-compat/openssl-compat.c U src/crypto/openssh/openbsd-compat/strtoul.c U src/crypto/openssh/openbsd-compat/bsd-misc.h U src/crypto/openssh/openbsd-compat/basename.c U src/crypto/openssh/openbsd-compat/bsd-cygwin_util.h U src/crypto/openssh/openbsd-compat/bsd-waitpid.h U src/crypto/openssh/openbsd-compat/glob.c U src/crypto/openssh/openbsd-compat/base64.c N src/crypto/openssh/openbsd-compat/port-solaris.h U src/crypto/openssh/openbsd-compat/strtoll.c U src/crypto/openssh/openbsd-compat/sys-queue.h U src/crypto/openssh/openbsd-compat/bsd-cray.c U src/crypto/openssh/openbsd-compat/dirname.c U src/crypto/openssh/openbsd-compat/glob.h U src/crypto/openssh/openbsd-compat/mktemp.c U src/crypto/openssh/openbsd-compat/openbsd-compat.h U src/crypto/openssh/openbsd-compat/realpath.c U src/crypto/openssh/openbsd-compat/getgrouplist.c U src/crypto/openssh/openbsd-compat/getopt.c U src/crypto/openssh/openbsd-compat/bsd-arc4random.c U src/crypto/openssh/openbsd-compat/xmmap.c U src/crypto/openssh/openbsd-compat/port-aix.h U src/crypto/openssh/openbsd-compat/readpassphrase.c U src/crypto/openssh/openbsd-compat/bindresvport.c U src/crypto/openssh/openbsd-compat/bsd-openpty.c U src/crypto/openssh/openbsd-compat/strtonum.c U src/crypto/openssh/openbsd-compat/Makefile.in N src/crypto/openssh/openbsd-compat/port-solaris.c U src/crypto/openssh/openbsd-compat/setproctitle.c N src/crypto/openssh/openbsd-compat/sha2.c U src/crypto/openssh/openbsd-compat/bsd-nextstep.h U src/crypto/openssh/openbsd-compat/sigact.h C src/crypto/openssh/openbsd-compat/fake-rfc2553.h U src/crypto/openssh/openbsd-compat/port-uw.h U src/crypto/openssh/openbsd-compat/base64.h U src/crypto/openssh/openbsd-compat/inet_ntop.c U src/crypto/openssh/openbsd-compat/getrrsetbyname.h N src/crypto/openssh/openbsd-compat/regress/closefromtest.c N src/crypto/openssh/openbsd-compat/regress/snprintftest.c N src/crypto/openssh/openbsd-compat/regress/strduptest.c N src/crypto/openssh/openbsd-compat/regress/strtonumtest.c N src/crypto/openssh/openbsd-compat/regress/Makefile.in 68 conflicts created by this import. Use the following command to help the merge: cvs checkout -jOPENSSH:yesterday -jOPENSSH src/crypto/openssh From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:34:46 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C94B916A407; Sat, 30 Sep 2006 13:34:46 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8778843D45; Sat, 30 Sep 2006 13:34:46 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDYksY065620; Sat, 30 Sep 2006 13:34:46 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDYkQK065619; Sat, 30 Sep 2006 13:34:46 GMT (envelope-from ru) Message-Id: <200609301334.k8UDYkQK065619@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 13:34:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 ipmi.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:34:46 -0000 ru 2006-09-30 13:34:46 UTC FreeBSD src repository Modified files: share/man/man4 ipmi.4 Log: Document ioctls differently, like is done in other section four manpages. Revision Changes Path 1.6 +38 -60 src/share/man/man4/ipmi.4 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:38:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4C5E16A412; Sat, 30 Sep 2006 13:38:07 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7600143D45; Sat, 30 Sep 2006 13:38:07 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDc7vA066031; Sat, 30 Sep 2006 13:38:07 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDc79a066030; Sat, 30 Sep 2006 13:38:07 GMT (envelope-from des) Message-Id: <200609301338.k8UDc79a066030@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:38:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/crypto/openssh LICENCE auth-chall.c auth-krb5.c auth-pam.c auth-passwd.c auth-rh-rsa.c auth-rsa.c auth-skey.c auth.c auth.h auth1.c auth2-chall.c auth2-kbdint.c auth2.c authfd.c authfile.c bufaux.c canohost.c channels.c channels.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:38:07 -0000 des 2006-09-30 13:38:07 UTC FreeBSD src repository Modified files: crypto/openssh LICENCE auth-chall.c auth-krb5.c auth-pam.c auth-passwd.c auth-rh-rsa.c auth-rsa.c auth-skey.c auth.c auth.h auth1.c auth2-chall.c auth2-kbdint.c auth2.c authfd.c authfile.c bufaux.c canohost.c channels.c channels.h cipher.c cipher.h compat.c compat.h configure.ac hostfile.c includes.h key.c log.h loginrec.c monitor.c monitor.h monitor_wrap.c monitor_wrap.h myproposal.h packet.h pathnames.h readconf.c readconf.h rsa.c rsa.h scp.c servconf.c servconf.h serverloop.c session.c session.h ssh-add.c ssh-agent.c ssh-keyscan.c ssh.1 ssh.c ssh.h ssh_config ssh_config.5 ssh_namespace.h sshconnect.c sshconnect.h sshconnect1.c sshconnect2.c sshd.8 sshd.c sshd_config sshd_config.5 sshlogin.c sshlogin.h sshpty.c version.h crypto/openssh/openbsd-compat fake-rfc2553.h Log: Merge conflicts. MFC after: 1 week Revision Changes Path 1.9 +2 -0 src/crypto/openssh/LICENCE 1.11 +9 -3 src/crypto/openssh/auth-chall.c 1.22 +13 -3 src/crypto/openssh/auth-krb5.c 1.19 +64 -23 src/crypto/openssh/auth-pam.c 1.21 +11 -2 src/crypto/openssh/auth-passwd.c 1.14 +10 -2 src/crypto/openssh/auth-rh-rsa.c 1.17 +17 -4 src/crypto/openssh/auth-rsa.c 1.17 +16 -13 src/crypto/openssh/auth-skey.c 1.19 +44 -50 src/crypto/openssh/auth.c 1.17 +6 -6 src/crypto/openssh/auth.h 1.34 +21 -3 src/crypto/openssh/auth1.c 1.12 +13 -4 src/crypto/openssh/auth2-chall.c 1.5 +10 -3 src/crypto/openssh/auth2-kbdint.c 1.28 +16 -5 src/crypto/openssh/auth2.c 1.20 +19 -10 src/crypto/openssh/authfd.c 1.20 +22 -10 src/crypto/openssh/authfile.c 1.19 +16 -173 src/crypto/openssh/bufaux.c 1.20 +21 -7 src/crypto/openssh/canohost.c 1.23 +183 -91 src/crypto/openssh/channels.c 1.16 +5 -5 src/crypto/openssh/channels.h 1.23 +8 -3 src/crypto/openssh/cipher.c 1.14 +1 -1 src/crypto/openssh/cipher.h 1.14 +9 -3 src/crypto/openssh/compat.c 1.14 +1 -1 src/crypto/openssh/compat.h 1.14 +299 -98 src/crypto/openssh/configure.ac 1.17 +15 -5 src/crypto/openssh/hostfile.c 1.22 +13 -55 src/crypto/openssh/includes.h 1.21 +16 -24 src/crypto/openssh/key.c 1.8 +3 -4 src/crypto/openssh/log.h 1.14 +20 -4 src/crypto/openssh/loginrec.c 1.21 +62 -21 src/crypto/openssh/monitor.c 1.8 +2 -2 src/crypto/openssh/monitor.h 1.13 +34 -25 src/crypto/openssh/monitor_wrap.c 1.10 +4 -8 src/crypto/openssh/monitor_wrap.h 1.9 +17 -3 src/crypto/openssh/myproposal.h 1.8 +5 -2 src/crypto/openssh/openbsd-compat/fake-rfc2553.h 1.16 +3 -1 src/crypto/openssh/packet.h 1.9 +1 -1 src/crypto/openssh/pathnames.h 1.28 +52 -10 src/crypto/openssh/readconf.c 1.20 +2 -3 src/crypto/openssh/readconf.h 1.13 +7 -2 src/crypto/openssh/rsa.c 1.11 +1 -1 src/crypto/openssh/rsa.h 1.11 +57 -27 src/crypto/openssh/scp.c 1.49 +402 -103 src/crypto/openssh/servconf.c 1.20 +15 -6 src/crypto/openssh/servconf.h 1.16 +48 -10 src/crypto/openssh/serverloop.c 1.49 +74 -33 src/crypto/openssh/session.c 1.11 +5 -2 src/crypto/openssh/session.h 1.18 +28 -9 src/crypto/openssh/ssh-add.c 1.27 +47 -21 src/crypto/openssh/ssh-agent.c 1.14 +30 -16 src/crypto/openssh/ssh-keyscan.c 1.34 +91 -32 src/crypto/openssh/ssh.1 1.31 +102 -45 src/crypto/openssh/ssh.c 1.27 +1 -15 src/crypto/openssh/ssh.h 1.30 +4 -2 src/crypto/openssh/ssh_config 1.20 +198 -104 src/crypto/openssh/ssh_config.5 1.2 +18 -2 src/crypto/openssh/ssh_namespace.h 1.32 +89 -54 src/crypto/openssh/sshconnect.c 1.9 +13 -13 src/crypto/openssh/sshconnect.h 1.22 +21 -9 src/crypto/openssh/sshconnect1.c 1.18 +34 -24 src/crypto/openssh/sshconnect2.c 1.34 +274 -286 src/crypto/openssh/sshd.8 1.43 +429 -347 src/crypto/openssh/sshd.c 1.45 +16 -9 src/crypto/openssh/sshd_config 1.26 +216 -96 src/crypto/openssh/sshd_config.5 1.13 +20 -6 src/crypto/openssh/sshlogin.c 1.5 +3 -8 src/crypto/openssh/sshlogin.h 1.13 +26 -5 src/crypto/openssh/sshpty.c 1.33 +3 -3 src/crypto/openssh/version.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:39:07 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA9E216A417; Sat, 30 Sep 2006 13:39:07 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9023643D45; Sat, 30 Sep 2006 13:39:07 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDd7a6066098; Sat, 30 Sep 2006 13:39:07 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDd7II066097; Sat, 30 Sep 2006 13:39:07 GMT (envelope-from des) Message-Id: <200609301339.k8UDd7II066097@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:39:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/crypto/openssh ssh_config ssh_config.5 sshd_config sshd_config.5 version.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:39:08 -0000 des 2006-09-30 13:39:07 UTC FreeBSD src repository Modified files: crypto/openssh ssh_config ssh_config.5 sshd_config sshd_config.5 version.h Log: Bump version addendum. MFC after: 1 week Revision Changes Path 1.31 +2 -2 src/crypto/openssh/ssh_config 1.21 +2 -2 src/crypto/openssh/ssh_config.5 1.46 +2 -2 src/crypto/openssh/sshd_config 1.27 +2 -2 src/crypto/openssh/sshd_config.5 1.34 +2 -2 src/crypto/openssh/version.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:39:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86B6816A403; Sat, 30 Sep 2006 13:39:36 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 457CB43D45; Sat, 30 Sep 2006 13:39:36 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDda54066136; Sat, 30 Sep 2006 13:39:36 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDdaRI066135; Sat, 30 Sep 2006 13:39:36 GMT (envelope-from des) Message-Id: <200609301339.k8UDdaRI066135@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:39:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/crypto/openssh getput.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:39:36 -0000 des 2006-09-30 13:39:36 UTC FreeBSD src repository Removed files: crypto/openssh getput.h Log: Removed from vendor branch. MFC after: 1 week Revision Changes Path 1.2 +0 -63 src/crypto/openssh/getput.h (dead) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:40:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5607516A40F; Sat, 30 Sep 2006 13:40:36 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 106D243D45; Sat, 30 Sep 2006 13:40:36 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDeZs1066291; Sat, 30 Sep 2006 13:40:35 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDeZiL066290; Sat, 30 Sep 2006 13:40:35 GMT (envelope-from des) Message-Id: <200609301340.k8UDeZiL066290@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:40:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/crypto/openssh audit-bsm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:40:36 -0000 des 2006-09-30 13:40:35 UTC FreeBSD src repository Modified files: crypto/openssh audit-bsm.c Log: #include ; this has the unfortunate side effect of taking the file off the vendor branch. MFC after: 1 week Revision Changes Path 1.2 +10 -1 src/crypto/openssh/audit-bsm.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:40:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C0A416A51E; Sat, 30 Sep 2006 13:40:58 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B00E43D67; Sat, 30 Sep 2006 13:40:56 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDeur2066359; Sat, 30 Sep 2006 13:40:56 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDeuU0066357; Sat, 30 Sep 2006 13:40:56 GMT (envelope-from des) Message-Id: <200609301340.k8UDeuU0066357@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:40:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/crypto/openssh config.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:40:58 -0000 des 2006-09-30 13:40:56 UTC FreeBSD src repository Modified files: crypto/openssh config.h Log: Regenerate. MFC after: 1 week Revision Changes Path 1.17 +60 -9 src/crypto/openssh/config.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 13:41:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE4FE16A49E; Sat, 30 Sep 2006 13:41:27 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49F6043D46; Sat, 30 Sep 2006 13:41:27 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UDfRDZ066458; Sat, 30 Sep 2006 13:41:27 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UDfR54066457; Sat, 30 Sep 2006 13:41:27 GMT (envelope-from des) Message-Id: <200609301341.k8UDfR54066457@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 30 Sep 2006 13:41:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/secure/lib/libssh Makefile src/secure/usr.sbin/sshd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 13:41:27 -0000 des 2006-09-30 13:41:27 UTC FreeBSD src repository Modified files: secure/lib/libssh Makefile secure/usr.sbin/sshd Makefile Log: Update for OpenSSH 4.4p1. MFC after: 1 week Revision Changes Path 1.42 +2 -2 src/secure/lib/libssh/Makefile 1.50 +1 -1 src/secure/usr.sbin/sshd/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:00:48 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACAB816A403; Sat, 30 Sep 2006 14:00:48 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7515D43D45; Sat, 30 Sep 2006 14:00:48 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UE0mGs067463; Sat, 30 Sep 2006 14:00:48 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UE0mkK067462; Sat, 30 Sep 2006 14:00:48 GMT (envelope-from sat) Message-Id: <200609301400.k8UE0mkK067462@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 30 Sep 2006 14:00:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules ports MOVED ports/sysutils Makefile ports/sysutils/xsearch Makefile distinfo pkg-descr ports/sysutils/xsearch/files patch-src__search.h ports/sysutils/searchmonkey Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:00:48 -0000 sat 2006-09-30 14:00:47 UTC FreeBSD ports repository Modified files: . modules . MOVED sysutils Makefile sysutils/searchmonkey Makefile distinfo Removed files: sysutils/xsearch Makefile distinfo pkg-descr sysutils/xsearch/files patch-src__search.h Log: - Update to 0.6.2 - xsearch has been renamed into searchmonkey Repocopy by: marcus Revision Changes Path 1.16315 +1 -1 CVSROOT/modules 1.1140 +2 -1 ports/MOVED 1.838 +1 -1 ports/sysutils/Makefile 1.5 +4 -4 ports/sysutils/searchmonkey/Makefile 1.4 +3 -3 ports/sysutils/searchmonkey/distinfo 1.5 +0 -33 ports/sysutils/xsearch/Makefile (dead) 1.4 +0 -3 ports/sysutils/xsearch/distinfo (dead) 1.2 +0 -7 ports/sysutils/xsearch/files/patch-src__search.h (dead) 1.4 +0 -5 ports/sysutils/xsearch/pkg-descr (dead) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:07:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7BE916A40F; Sat, 30 Sep 2006 14:07:23 +0000 (UTC) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0685043D4C; Sat, 30 Sep 2006 14:07:21 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UE7LhZ068991; Sat, 30 Sep 2006 14:07:21 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UE7LUD068990; Sat, 30 Sep 2006 14:07:21 GMT (envelope-from cognet) Message-Id: <200609301407.k8UE7LUD068990@repoman.freebsd.org> From: Olivier Houchard Date: Sat, 30 Sep 2006 14:07:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/usb if_cdce.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:07:23 -0000 cognet 2006-09-30 14:07:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/usb if_cdce.c Log: MFC rev 1.15: date: 2006/09/22 12:45:42; author: cognet; state: Exp; lines: +2 -2 Use usbd_clear_endpoint_stall_async() when clearing endpoint stalls in an interrupt context. Obtained from: NetBSD Approved by: re Revision Changes Path 1.7.2.6 +2 -2 src/sys/dev/usb/if_cdce.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:08:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 130EC16A407; Sat, 30 Sep 2006 14:08:37 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEBE043D46; Sat, 30 Sep 2006 14:08:36 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UE8alG069128; Sat, 30 Sep 2006 14:08:36 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UE8ab7069127; Sat, 30 Sep 2006 14:08:36 GMT (envelope-from skv) Message-Id: <200609301408.k8UE8ab7069127@repoman.freebsd.org> From: Sergey Skvortsov Date: Sat, 30 Sep 2006 14:08:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules ports MOVED ports/textproc Makefile ports/textproc/p5-XML-LibXML-XPathContext Makefile distinfo pkg-descr pkg-plist ports/textproc/p5-XML-LibXML-XPathContext/files extrapatch-XPathContext.xs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:08:37 -0000 skv 2006-09-30 14:08:36 UTC FreeBSD ports repository Modified files: . modules . MOVED textproc Makefile Removed files: textproc/p5-XML-LibXML-XPathContext Makefile distinfo pkg-descr pkg-plist textproc/p5-XML-LibXML-XPathContext/files extrapatch-XPathContext.xs Log: Remove p5-XML-LibXML-XPathContext because it merged into p5-XML-LibXML Approved by: maintainer (mat) Revision Changes Path 1.16316 +0 -1 CVSROOT/modules 1.1141 +2 -1 ports/MOVED 1.1066 +0 -1 ports/textproc/Makefile 1.7 +0 -31 ports/textproc/p5-XML-LibXML-XPathContext/Makefile (dead) 1.7 +0 -3 ports/textproc/p5-XML-LibXML-XPathContext/distinfo (dead) 1.2 +0 -18 ports/textproc/p5-XML-LibXML-XPathContext/files/extrapatch-XPathContext.xs (dead) 1.3 +0 -4 ports/textproc/p5-XML-LibXML-XPathContext/pkg-descr (dead) 1.4 +0 -10 ports/textproc/p5-XML-LibXML-XPathContext/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:08:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19A4216A412; Sat, 30 Sep 2006 14:08:58 +0000 (UTC) (envelope-from jhay@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAF8C43D46; Sat, 30 Sep 2006 14:08:57 +0000 (GMT) (envelope-from jhay@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UE8vBI069162; Sat, 30 Sep 2006 14:08:57 GMT (envelope-from jhay@repoman.freebsd.org) Received: (from jhay@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UE8vpM069161; Sat, 30 Sep 2006 14:08:57 GMT (envelope-from jhay) Message-Id: <200609301408.k8UE8vpM069161@repoman.freebsd.org> From: John Hay Date: Sat, 30 Sep 2006 14:08:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet6 nd6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:08:58 -0000 jhay 2006-09-30 14:08:57 UTC FreeBSD src repository Modified files: sys/netinet6 nd6.c Log: My previous commit broke "route add -inet6 -interface gif0". Fix that by excluding point-to-point interfaces. MFC after: 5 days Revision Changes Path 1.68 +2 -1 src/sys/netinet6/nd6.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:08:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 862C416A416; Sat, 30 Sep 2006 14:08:58 +0000 (UTC) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4342943D46; Sat, 30 Sep 2006 14:08:58 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UE8w7R069189; Sat, 30 Sep 2006 14:08:58 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UE8wLd069188; Sat, 30 Sep 2006 14:08:58 GMT (envelope-from cognet) Message-Id: <200609301408.k8UE8wLd069188@repoman.freebsd.org> From: Olivier Houchard Date: Sat, 30 Sep 2006 14:08:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/sys/dev/usb if_cdce.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:08:58 -0000 cognet 2006-09-30 14:08:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/usb if_cdce.c Log: MFC rev 1.15: date: 2006/09/22 12:45:42; author: cognet; state: Exp; lines: +2 -2 Use usbd_clear_endpoint_stall_async() when clearing endpoint stalls in an interrupt context. Obtained from: NetBSD Revision Changes Path 1.6.2.3 +2 -2 src/sys/dev/usb/if_cdce.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:19:16 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAC4316A417; Sat, 30 Sep 2006 14:19:16 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id D899B43D45; Sat, 30 Sep 2006 14:19:14 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8UEJAkx070175; Sat, 30 Sep 2006 16:19:11 +0200 (CEST) (envelope-from mb@imp.ch) Date: Sat, 30 Sep 2006 16:19:10 +0200 (CEST) From: Martin Blapp To: Peter Holm In-Reply-To: <20060930124957.GA25578@peter.osted.lan> Message-ID: <20060930161649.L91466@godot.imp.ch> References: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> <20060930124957.GA25578@peter.osted.lan> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@freebsd.org, Martin Blapp , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:19:16 -0000 Hi Peter, Current is currenlty broken for pty tress tests. It happens also for the tty tty_pts implementation. This is a CURRENT only problem, since in RELENG_6 we don't free any cdevs. I hope tegge, bde will solve this problem in the next few days. Martin > I still have a problem with ptys: > > http://people.freebsd.org/~pho/stress/log/blapp001.html > From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:20:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC37816A403; Sat, 30 Sep 2006 14:20:53 +0000 (UTC) (envelope-from mb@imp.ch) Received: from pop.imp.ch (mx2.imp.ch [157.161.9.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D0C843D73; Sat, 30 Sep 2006 14:20:48 +0000 (GMT) (envelope-from mb@imp.ch) Received: from godot.imp.ch (godot.imp.ch [157.161.4.8]) by pop.imp.ch (8.13.8/8.13.8/Submit_imp) with ESMTP id k8UEKinJ071948; Sat, 30 Sep 2006 16:20:45 +0200 (CEST) (envelope-from mb@imp.ch) Date: Sat, 30 Sep 2006 16:20:44 +0200 (CEST) From: Martin Blapp To: Bruce Evans In-Reply-To: <20060930221249.J1683@epsplex.bde.org> Message-ID: <20060930161951.V91466@godot.imp.ch> References: <8209.1159564737@critter.freebsd.dk> <20060930012958.C91466@godot.imp.ch> <20060930221249.J1683@epsplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.57 on 157.161.9.65 Cc: cvs-src@FreeBSD.org, Poul-Henning Kamp , Martin Blapp , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:20:53 -0000 Hi Bruce, Ok will do so. What do you think, can we solve the old vfs bugs and complications near revoke() before 7.0 gets released ? Martin Martin Blapp, ------------------------------------------------------------------ ImproWare AG, UNIXSP & ISP, Zurlindenstrasse 29, 4133 Pratteln, CH Phone: +41 61 826 93 00 Fax: +41 61 826 93 01 PGP: PGP Fingerprint: B434 53FC C87C FE7B 0A18 B84C 8686 EF22 D300 551E ------------------------------------------------------------------ On Sat, 30 Sep 2006, Bruce Evans wrote: > On Sat, 30 Sep 2006, Martin Blapp wrote: > >> What's the best to do now ? Back out again the last commit and that destroy >> slave can be called, make tty_pts.c as broken ? Or will you or Bruce fix >> the underlaying problem ? It's far beyond my horizont ... > > Start with removing all device and tty destruction calls (mainly in > tty_pts.c). > > Bruce > From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:30:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDB4D16A412; Sat, 30 Sep 2006 14:30:10 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1F7943D76; Sat, 30 Sep 2006 14:30:07 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UEU74t070271; Sat, 30 Sep 2006 14:30:07 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UEU7a1070270; Sat, 30 Sep 2006 14:30:07 GMT (envelope-from ru) Message-Id: <200609301430.k8UEU7a1070270@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 14:30:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 nfe.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:30:11 -0000 ru 2006-09-30 14:30:07 UTC FreeBSD src repository Modified files: share/man/man4 nfe.4 Log: Fixed small markup glitches and removed the CAVEATS section. Revision Changes Path 1.3 +2 -6 src/share/man/man4/nfe.4 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:33:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEEA016A407; Sat, 30 Sep 2006 14:33:44 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from ameno.mahoroba.org (gw4.mahoroba.org [218.45.22.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24F9643D49; Sat, 30 Sep 2006 14:33:43 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from kasuga.mahoroba.org (IDENT:HrjGUKKs156hUc9PDcKEjE4AU9dBuMUo7a8acEK2MWaQjOzbCIS99sN5CRguvxe9@kasuga-iwi.mahoroba.org [IPv6:2001:2f0:104:8010:212:f0ff:fe52:6ac]) (user=ume mech=CRAM-MD5 bits=0) by ameno.mahoroba.org (8.13.8/8.13.8) with ESMTP/inet6 id k8UEXawP000758 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 30 Sep 2006 23:33:36 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Sat, 30 Sep 2006 23:33:35 +0900 Message-ID: From: Hajimu UMEMOTO To: John Hay In-Reply-To: <200609301408.k8UE8vpM069161@repoman.freebsd.org> References: <200609301408.k8UE8vpM069161@repoman.freebsd.org> User-Agent: xcite1.38> Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.0.50 (i386-pc-freebsd) MULE/5.0 (SAKAKI) X-Operating-System: FreeBSD 6.2-PRERELEASE X-PGP-Key: http://www.imasy.or.jp/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE Organization: Internet Mutual Aid Society, YOKOHAMA MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0rc3 (ameno.mahoroba.org [IPv6:2001:2f0:104:8010::1]); Sat, 30 Sep 2006 23:33:36 +0900 (JST) X-Virus-Scanned: by amavisd-new X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.5 X-Spam-Checker-Version: SpamAssassin 3.1.5 (2006-08-29) on ameno.mahoroba.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet6 nd6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:33:44 -0000 Hi, >>>>> On Sat, 30 Sep 2006 14:08:57 +0000 (UTC) >>>>> John Hay said: jhay> jhay 2006-09-30 14:08:57 UTC jhay> FreeBSD src repository jhay> Modified files: jhay> sys/netinet6 nd6.c jhay> Log: jhay> My previous commit broke "route add -inet6 -interface gif0". jhay> Fix that by excluding point-to-point interfaces. > - } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0) { > + } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0 && > + (ifp->if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK)) == 0) { > ln->ln_state = ND6_LLINFO_INCOMPLETE; Umm, it seems still there is a problem. We are using -interface not only for point-to-point interface and loopback. I'm not sure but can we check `(rt->rt_flags & RTF_HOST) != 0', here? Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:35:42 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EECB16A412; Sat, 30 Sep 2006 14:35:42 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C8FD43D76; Sat, 30 Sep 2006 14:35:38 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UEZc8T070680; Sat, 30 Sep 2006 14:35:38 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UEZc6J070679; Sat, 30 Sep 2006 14:35:38 GMT (envelope-from pjd) Message-Id: <200609301435.k8UEZc6J070679@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 14:35:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/geom/misc subr.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:35:42 -0000 pjd 2006-09-30 14:35:37 UTC FreeBSD src repository Modified files: sbin/geom/misc subr.h Log: Add __printflike() attribute to various functions. Revision Changes Path 1.7 +4 -4 src/sbin/geom/misc/subr.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:39:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 459CA16A403; Sat, 30 Sep 2006 14:39:19 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0193943D45; Sat, 30 Sep 2006 14:39:19 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UEdImL070861; Sat, 30 Sep 2006 14:39:18 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UEdIe9070860; Sat, 30 Sep 2006 14:39:18 GMT (envelope-from pjd) Message-Id: <200609301439.k8UEdIe9070860@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 14:39:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/geom/core geom.c geom.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:39:19 -0000 pjd 2006-09-30 14:39:18 UTC FreeBSD src repository Modified files: sbin/geom/core geom.c geom.h Log: MFp4: - Print proper error message when argument is specified twice. Before the change it was detected properly, because of how G_OPT_DONE() macro worked. - Use err(3) functions where appropriate. - Add some assertions. - Bump version number, because G_TYPE_BOOL addition breaks API and ABI. Changes: 98721,98722,98723,101360,106985 Revision Changes Path 1.27 +37 -41 src/sbin/geom/core/geom.c 1.4 +10 -6 src/sbin/geom/core/geom.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:40:51 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0520316A407; Sat, 30 Sep 2006 14:40:51 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C102A43D45; Sat, 30 Sep 2006 14:40:50 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UEeoWl071136; Sat, 30 Sep 2006 14:40:50 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UEeoFW071135; Sat, 30 Sep 2006 14:40:50 GMT (envelope-from pjd) Message-Id: <200609301440.k8UEeoFW071135@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 14:40:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/geom/class/concat geom_concat.c src/sbin/geom/class/eli geom_eli.c src/sbin/geom/class/label geom_label.c src/sbin/geom/class/mirror geom_mirror.c src/sbin/geom/class/nop geom_nop.c src/sbin/geom/class/raid3 geom_raid3.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:40:51 -0000 pjd 2006-09-30 14:40:50 UTC FreeBSD src repository Modified files: sbin/geom/class/concat geom_concat.c sbin/geom/class/eli geom_eli.c sbin/geom/class/label geom_label.c sbin/geom/class/mirror geom_mirror.c sbin/geom/class/nop geom_nop.c sbin/geom/class/raid3 geom_raid3.c sbin/geom/class/shsec geom_shsec.c sbin/geom/class/stripe geom_stripe.c Log: MFp4: G_TYPE_BOOL sounds much better than G_TYPE_NONE. Changes: 98722 Revision Changes Path 1.12 +3 -3 src/sbin/geom/class/concat/geom_concat.c 1.18 +19 -19 src/sbin/geom/class/eli/geom_eli.c 1.9 +2 -2 src/sbin/geom/class/label/geom_label.c 1.14 +9 -9 src/sbin/geom/class/mirror/geom_mirror.c 1.10 +1 -1 src/sbin/geom/class/nop/geom_nop.c 1.16 +14 -14 src/sbin/geom/class/raid3/geom_raid3.c 1.9 +2 -2 src/sbin/geom/class/shsec/geom_shsec.c 1.14 +3 -3 src/sbin/geom/class/stripe/geom_stripe.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:41:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 124B916A407; Sat, 30 Sep 2006 14:41:19 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6855E43D46; Sat, 30 Sep 2006 14:41:18 +0000 (GMT) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id A91F6EB112C; Sat, 30 Sep 2006 22:41:16 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id g5uMVjgknU1V; Sat, 30 Sep 2006 22:41:10 +0800 (CST) Received: from [192.168.1.32] (unknown [221.219.157.43]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id 2EB3BEB1114; Sat, 30 Sep 2006 22:41:10 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:organization:user-agent:mime-version:to:cc: subject:references:in-reply-to:x-enigmail-version:content-type; b=jPSul2PILatlj8O2F2rzSthUpLQ+ty447FNebki3yuccNyWJtvz4O1hIt8cpbEASj UaBkUZDOYqNq3FEGr1P+g== Message-ID: <451E8200.5040302@delphij.net> Date: Sat, 30 Sep 2006 22:41:04 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: Ruslan Ermilov References: <200609301252.k8UCqFNY062274@repoman.freebsd.org> In-Reply-To: <200609301252.k8UCqFNY062274@repoman.freebsd.org> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="------------enigA6F075D4BF7B623B78B0EB16" Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/lib/libstdc++ Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:41:19 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigA6F075D4BF7B623B78B0EB16 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Ruslan Ermilov wrote: > ru 2006-09-30 12:52:15 UTC >=20 > FreeBSD src repository >=20 > Modified files: > gnu/lib/libstdc++ Makefile=20 > Log: > Fix build due to the incomplete removal of demangle.h. > =20 > Revision Changes Path > 1.57 +1 -1 src/gnu/lib/libstdc++/Makefile God! What did I do... Sorry for the breakage and thanks for fixing this. Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enigA6F075D4BF7B623B78B0EB16 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFHoIAOfuToMruuMARA5ngAJ9jpJOr4doSCQDMvmdhwPIHJyf/mACggwS9 lXupMEfE5jLpY999DU6cMQ8= =aQs8 -----END PGP SIGNATURE----- --------------enigA6F075D4BF7B623B78B0EB16-- From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:51:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF23916A403; Sat, 30 Sep 2006 14:51:49 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE5EE43D45; Sat, 30 Sep 2006 14:51:49 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UEpnos071694; Sat, 30 Sep 2006 14:51:49 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UEpnxH071693; Sat, 30 Sep 2006 14:51:49 GMT (envelope-from sos) Message-Id: <200609301451.k8UEpnxH071693@repoman.freebsd.org> From: Søren Schmidt Date: Sat, 30 Sep 2006 14:51:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/ata ata-all.c ata-chipset.c ata-disk.c ata-pci.h ata-raid.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:51:50 -0000 sos 2006-09-30 14:51:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ata ata-all.c ata-chipset.c ata-disk.c ata-pci.h ata-raid.h Log: MFC: CF devices are ATA not ATAPI. Add support for the ALI/ULI M5288 AHCI part Busmaster DMA address fix in VIA 6421 case Add support for a few more Serverworks and lookalikes chips If current_heads or current_sectors in the disk cap page are zero, dont try to use the current_ geometry. This avoids a panic with BIOS'n that sets these to zero. Format mask lacks one bit. Approved by: re@ Revision Changes Path 1.252.2.11 +3 -1 src/sys/dev/ata/ata-all.c 1.126.2.14 +20 -10 src/sys/dev/ata/ata-chipset.c 1.189.2.5 +2 -1 src/sys/dev/ata/ata-disk.c 1.49.2.10 +3 -0 src/sys/dev/ata/ata-pci.h 1.34.2.4 +1 -1 src/sys/dev/ata/ata-raid.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 14:58:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CC1416A403; Sat, 30 Sep 2006 14:58:41 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B324F43D49; Sat, 30 Sep 2006 14:58:40 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UEwerL072095; Sat, 30 Sep 2006 14:58:40 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UEwe7h072094; Sat, 30 Sep 2006 14:58:40 GMT (envelope-from netchild) Message-Id: <200609301458.k8UEwe7h072094@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 14:58:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pci spicds.c spicds.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 14:58:41 -0000 netchild 2006-09-30 14:58:40 UTC FreeBSD src repository Modified files: sys/dev/sound/pci spicds.c spicds.h Log: Forcet commit to note repo copy: ak452x.c -> spicds.c ak452x.h -> spicds.h Fast repo copy by: simon (30min turn-around) Pointy hat to: netchild (for doing a forced commit to ak452x.*) Revision Changes Path 1.3 +0 -0 src/sys/dev/sound/pci/spicds.c 1.2 +0 -0 src/sys/dev/sound/pci/spicds.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 15:05:13 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C158616A403; Sat, 30 Sep 2006 15:05:13 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout1.pacific.net.au (mailout1-3.pacific.net.au [61.8.2.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 310DA43D46; Sat, 30 Sep 2006 15:05:13 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.2.162]) by mailout1.pacific.net.au (Postfix) with ESMTP id 0448D24D248; Sun, 1 Oct 2006 01:05:12 +1000 (EST) Received: from epsplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id k8UF59tL021522; Sun, 1 Oct 2006 01:05:10 +1000 Date: Sun, 1 Oct 2006 01:00:35 +1000 (EST) From: Bruce Evans X-X-Sender: bde@epsplex.bde.org To: Martin Blapp In-Reply-To: <20060929230809.Q91466@godot.imp.ch> Message-ID: <20061001001335.R1840@epsplex.bde.org> References: <200609290952.k8T9qvcU053566@repoman.freebsd.org> <20060929202338.W91466@godot.imp.ch> <20060930044711.H96144@delplex.bde.org> <20060929230809.Q91466@godot.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, Martin Blapp , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 15:05:13 -0000 On Fri, 29 Sep 2006, Martin Blapp wrote: >> I think I found the bug while looking for problems near vgonel(). We're >> nowhere near ready to free devices in in last-close, since vgonel() doesn't >> do anything to evict processes from device functions before it forces the >> device closed. Drivers must be aware of the problem. The tty driver >> already is. See the comments about t_gen near tty_close() and ttysleep(). >> t_gen must live across close so that any processes in device functions can >> check it after they wake up, and the tty and device data structures must >> live across last- close to hold t_gen and anything else needed for the >> device functions to return. Sleeping device functions normally wake up >> after last-close returns. > > So what can we do to destroy devices after last close ? Mark them with some > flag and handle this during device operations ? Destroy them after a timeout. More accurate counts of device use would still be needed to ensure that the device is not in use when the timeout fires, but it would be fairly safe to just assume that the device is not in use if it has been closed for some time. Note that the device may still be in use when close completes even for normal closes. This can happen when the close blocks. When close completes, it can't destroy things since it doesn't really know what is in use. However, if the device is still in use, if it is open then it won't be destroyed later (a new open would have reset the timeout), and if it is not open then any activity on the device should complete soon after the close completes since one of close's functions (especially for revoke()) is unblock other activity on the device by flushing any i/o that it gave up on. Bruce From owner-cvs-all@FreeBSD.ORG Sat Sep 30 15:13:26 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E828216A412 for ; Sat, 30 Sep 2006 15:13:26 +0000 (UTC) (envelope-from pho@holm.cc) Received: from relay02.pair.com (relay02.pair.com [209.68.5.16]) by mx1.FreeBSD.org (Postfix) with SMTP id D4F1B43D45 for ; Sat, 30 Sep 2006 15:13:23 +0000 (GMT) (envelope-from pho@holm.cc) Received: (qmail 50822 invoked from network); 30 Sep 2006 15:13:22 -0000 Received: from unknown (HELO peter.osted.lan) (unknown) by unknown with SMTP; 30 Sep 2006 15:13:22 -0000 X-pair-Authenticated: 80.165.155.106 Received: from peter.osted.lan (localhost.osted.lan [127.0.0.1]) by peter.osted.lan (8.13.6/8.13.6) with ESMTP id k8UFDLui037694; Sat, 30 Sep 2006 17:13:21 +0200 (CEST) (envelope-from pho@peter.osted.lan) Received: (from pho@localhost) by peter.osted.lan (8.13.6/8.13.6/Submit) id k8UFDG5J037693; Sat, 30 Sep 2006 17:13:16 +0200 (CEST) (envelope-from pho) Date: Sat, 30 Sep 2006 17:13:15 +0200 From: Peter Holm To: Martin Blapp Message-ID: <20060930151315.GA37588@peter.osted.lan> References: <200609300811.k8U8Bqlk025097@repoman.freebsd.org> <20060930124957.GA25578@peter.osted.lan> <20060930161649.L91466@godot.imp.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060930161649.L91466@godot.imp.ch> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@freebsd.org, Martin Blapp , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern tty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 15:13:27 -0000 On Sat, Sep 30, 2006 at 04:19:10PM +0200, Martin Blapp wrote: > > Hi Peter, > > Current is currenlty broken for pty tress tests. > It happens also for the tty tty_pts implementation. > > This is a CURRENT only problem, since in RELENG_6 we > don't free any cdevs. > OK, I'll turn my attention towards RELENG_6. - Peter > I hope tegge, bde will solve this problem in the > next few days. > > Martin > > >I still have a problem with ptys: > > > >http://people.freebsd.org/~pho/stress/log/blapp001.html > > From owner-cvs-all@FreeBSD.ORG Sat Sep 30 15:14:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF7FC16A47C; Sat, 30 Sep 2006 15:14:49 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70AA243D49; Sat, 30 Sep 2006 15:14:49 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UFEnK2074113; Sat, 30 Sep 2006 15:14:49 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UFEnhu074112; Sat, 30 Sep 2006 15:14:49 GMT (envelope-from ru) Message-Id: <200609301514.k8UFEnhu074112@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 15:14:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 acpi_dock.4 amdsmb.4 audit.4 auditpipe.4 bce.4 enc.4 geom_fox.4 le.4 mfi.4 mxge.4 nfsmb.4 ng_tag.4 rr232x.4 sched_core.4 sched_ule.4 snd_emu10kx.4 stge.4 ufoma.4 src/share/man/man4/man4.i386 padlock.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 15:14:50 -0000 ru 2006-09-30 15:14:49 UTC FreeBSD src repository Modified files: share/man/man4 acpi_dock.4 amdsmb.4 audit.4 auditpipe.4 bce.4 enc.4 geom_fox.4 le.4 mfi.4 mxge.4 nfsmb.4 ng_tag.4 rr232x.4 sched_core.4 sched_ule.4 snd_emu10kx.4 stge.4 ufoma.4 share/man/man4/man4.i386 padlock.4 Log: Revise markup. Revision Changes Path 1.2 +1 -1 src/share/man/man4/acpi_dock.4 1.3 +3 -3 src/share/man/man4/amdsmb.4 1.9 +32 -15 src/share/man/man4/audit.4 1.4 +43 -39 src/share/man/man4/auditpipe.4 1.3 +44 -36 src/share/man/man4/bce.4 1.3 +4 -4 src/share/man/man4/enc.4 1.3 +14 -14 src/share/man/man4/geom_fox.4 1.4 +10 -13 src/share/man/man4/le.4 1.6 +9 -9 src/share/man/man4/man4.i386/padlock.4 1.5 +0 -3 src/share/man/man4/mfi.4 1.6 +4 -3 src/share/man/man4/mxge.4 1.3 +3 -3 src/share/man/man4/nfsmb.4 1.3 +11 -11 src/share/man/man4/ng_tag.4 1.3 +3 -6 src/share/man/man4/rr232x.4 1.4 +9 -7 src/share/man/man4/sched_core.4 1.4 +1 -1 src/share/man/man4/sched_ule.4 1.3 +43 -34 src/share/man/man4/snd_emu10kx.4 1.4 +5 -5 src/share/man/man4/stge.4 1.5 +23 -19 src/share/man/man4/ufoma.4 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 15:36:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F0CA16A412; Sat, 30 Sep 2006 15:36:00 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AF4843D46; Sat, 30 Sep 2006 15:36:00 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UFa0cq075164; Sat, 30 Sep 2006 15:36:00 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UFa0wF075163; Sat, 30 Sep 2006 15:36:00 GMT (envelope-from sat) Message-Id: <200609301536.k8UFa0wF075163@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 30 Sep 2006 15:36:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security Makefile ports/security/p5-Net-SinFP Makefile distinfo pkg-descr pkg-plist ports/security/sinfp Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 15:36:00 -0000 sat 2006-09-30 15:36:00 UTC FreeBSD ports repository Modified files: security Makefile security/p5-Net-SinFP Makefile distinfo pkg-descr pkg-plist security/sinfp Makefile Removed files: security/sinfp distinfo pkg-descr pkg-plist Log: - Separate sinfp into library (p5-Net-SinFP) and binary+db (sinfp) - Use latest db snapshot Revision Changes Path 1.821 +1 -0 ports/security/Makefile 1.5 +17 -5 ports/security/p5-Net-SinFP/Makefile 1.4 +3 -0 ports/security/p5-Net-SinFP/distinfo 1.3 +1 -1 ports/security/p5-Net-SinFP/pkg-descr 1.3 +0 -2 ports/security/p5-Net-SinFP/pkg-plist 1.5 +22 -31 ports/security/sinfp/Makefile 1.4 +0 -3 ports/security/sinfp/distinfo (dead) 1.3 +0 -16 ports/security/sinfp/pkg-descr (dead) 1.3 +0 -28 ports/security/sinfp/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 15:39:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E333E16A415; Sat, 30 Sep 2006 15:39:56 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A259B43D45; Sat, 30 Sep 2006 15:39:56 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UFduxu075337; Sat, 30 Sep 2006 15:39:56 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UFduge075336; Sat, 30 Sep 2006 15:39:56 GMT (envelope-from sat) Message-Id: <200609301539.k8UFduge075336@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 30 Sep 2006 15:39:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 15:39:57 -0000 sat 2006-09-30 15:39:56 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-SinFP --> ports/security/p5-Net-SinFP Revision Changes Path 1.16317 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 15:40:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2ECEB16A403; Sat, 30 Sep 2006 15:40:41 +0000 (UTC) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB25D43D49; Sat, 30 Sep 2006 15:40:40 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UFeeqR075496; Sat, 30 Sep 2006 15:40:40 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UFeeRA075494; Sat, 30 Sep 2006 15:40:40 GMT (envelope-from skv) Message-Id: <200609301540.k8UFeeRA075494@repoman.freebsd.org> From: Sergey Skvortsov Date: Sat, 30 Sep 2006 15:40:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/textproc/p5-XML-RSS-LibXML Makefile ports/textproc/p5-XML-XSH Makefile ports/textproc/p5-XML-XUpdate-LibXML Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 15:40:41 -0000 skv 2006-09-30 15:40:40 UTC FreeBSD ports repository Modified files: textproc/p5-XML-RSS-LibXML Makefile textproc/p5-XML-XSH Makefile textproc/p5-XML-XUpdate-LibXML Makefile Log: Reflect p5-XML-LibXML-XPathContext removal. Revision Changes Path 1.5 +2 -2 ports/textproc/p5-XML-RSS-LibXML/Makefile 1.6 +2 -2 ports/textproc/p5-XML-XSH/Makefile 1.8 +2 -2 ports/textproc/p5-XML-XUpdate-LibXML/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 15:44:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F0FF16A403; Sat, 30 Sep 2006 15:44:38 +0000 (UTC) (envelope-from anders@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7C7D43D60; Sat, 30 Sep 2006 15:44:33 +0000 (GMT) (envelope-from anders@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UFiXCX075715; Sat, 30 Sep 2006 15:44:33 GMT (envelope-from anders@repoman.freebsd.org) Received: (from anders@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UFiXZq075714; Sat, 30 Sep 2006 15:44:33 GMT (envelope-from anders) Message-Id: <200609301544.k8UFiXZq075714@repoman.freebsd.org> From: Anders Nordby Date: Sat, 30 Sep 2006 15:44:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/pound Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 15:44:38 -0000 anders 2006-09-30 15:44:33 UTC FreeBSD ports repository Modified files: www/pound Makefile distinfo Log: Update to 2.1.3. Revision Changes Path 1.12 +1 -1 ports/www/pound/Makefile 1.13 +3 -3 ports/www/pound/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 16:01:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 370D116A407; Sat, 30 Sep 2006 16:01:34 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2A1D43D49; Sat, 30 Sep 2006 16:01:33 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UG1XC1076555; Sat, 30 Sep 2006 16:01:33 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UG1XxB076553; Sat, 30 Sep 2006 16:01:33 GMT (envelope-from ru) Message-Id: <200609301601.k8UG1XxB076553@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 16:01:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man5 bluetooth.device.conf.5 ext2fs.5 freebsd-update.conf.5 linsysfs.5 mqueuefs.5 reiserfs.5 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 16:01:34 -0000 ru 2006-09-30 16:01:33 UTC FreeBSD src repository Modified files: share/man/man5 bluetooth.device.conf.5 ext2fs.5 freebsd-update.conf.5 linsysfs.5 mqueuefs.5 reiserfs.5 Log: Revise markup. Revision Changes Path 1.2 +17 -14 src/share/man/man5/bluetooth.device.conf.5 1.2 +3 -3 src/share/man/man5/ext2fs.5 1.2 +9 -7 src/share/man/man5/freebsd-update.conf.5 1.3 +23 -17 src/share/man/man5/linsysfs.5 1.3 +38 -24 src/share/man/man5/mqueuefs.5 1.2 +5 -4 src/share/man/man5/reiserfs.5 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 16:20:44 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 742E216A416; Sat, 30 Sep 2006 16:20:44 +0000 (UTC) (envelope-from jhay@meraka.csir.co.za) Received: from zibbi.meraka.csir.co.za (zibbi.meraka.csir.co.za [146.64.24.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id E34FF43D68; Sat, 30 Sep 2006 16:20:40 +0000 (GMT) (envelope-from jhay@meraka.csir.co.za) Received: by zibbi.meraka.csir.co.za (Postfix, from userid 3973) id 7DCA033C9C; Sat, 30 Sep 2006 18:20:39 +0200 (SAST) Date: Sat, 30 Sep 2006 18:20:39 +0200 From: John Hay To: Hajimu UMEMOTO Message-ID: <20060930162039.GA59699@zibbi.meraka.csir.co.za> References: <200609301408.k8UE8vpM069161@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Cc: John Hay , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet6 nd6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 16:20:44 -0000 On Sat, Sep 30, 2006 at 11:33:35PM +0900, Hajimu UMEMOTO wrote: > jhay> FreeBSD src repository > > jhay> Modified files: > jhay> sys/netinet6 nd6.c > jhay> Log: > jhay> My previous commit broke "route add -inet6 -interface gif0". > jhay> Fix that by excluding point-to-point interfaces. > > > - } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0) { > > + } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0 && > > + (ifp->if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK)) == 0) { > > ln->ln_state = ND6_LLINFO_INCOMPLETE; > > Umm, it seems still there is a problem. We are using -interface not > only for point-to-point interface and loopback. > I'm not sure but can we check `(rt->rt_flags & RTF_HOST) != 0', here? That would work better yes. Is there a reason you feel unsure about it? Or is it just a case of not having tested it? John -- John Hay -- John.Hay@meraka.csir.co.za / jhay@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Sat Sep 30 16:28:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46EE916A416; Sat, 30 Sep 2006 16:28:18 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 142A443D45; Sat, 30 Sep 2006 16:28:18 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UGSHkF079009; Sat, 30 Sep 2006 16:28:17 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UGSHQG079008; Sat, 30 Sep 2006 16:28:17 GMT (envelope-from acm) Message-Id: <200609301628.k8UGSHQG079008@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sat, 30 Sep 2006 16:28:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers Makefile ports/archivers/kbackup Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 16:28:18 -0000 acm 2006-09-30 16:28:17 UTC FreeBSD ports repository Modified files: archivers Makefile Added files: archivers/kbackup Makefile distinfo pkg-descr pkg-plist Log: - New port: archivers/kbackup KBackup is a program that lets you back up any directories or files, whereby it uses an easy to use directory tree to select the things to back up. The program was designed to be very simple in its use so that it can be used by non-computer experts. The storage format is the well known TAR format, whereby the data is still stored in compressed format (bzip2 or gzip). It also includes a german, french, italian, slovak and russian translation for the user interface and an english, french and german handbook. WWW: http://www.kde-apps.org/content/show.php?content=44998 Revision Changes Path 1.161 +1 -0 ports/archivers/Makefile 1.1 +36 -0 ports/archivers/kbackup/Makefile (new) 1.1 +3 -0 ports/archivers/kbackup/distinfo (new) 1.1 +13 -0 ports/archivers/kbackup/pkg-descr (new) 1.1 +37 -0 ports/archivers/kbackup/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 16:31:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48D5E16A403; Sat, 30 Sep 2006 16:31:38 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C635043D4C; Sat, 30 Sep 2006 16:31:37 +0000 (GMT) (envelope-from acm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UGVbxH079236; Sat, 30 Sep 2006 16:31:37 GMT (envelope-from acm@repoman.freebsd.org) Received: (from acm@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UGVbSx079235; Sat, 30 Sep 2006 16:31:37 GMT (envelope-from acm) Message-Id: <200609301631.k8UGVbSx079235@repoman.freebsd.org> From: Jose Alonso Cardenas Marquez Date: Sat, 30 Sep 2006 16:31:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 16:31:38 -0000 acm 2006-09-30 16:31:37 UTC FreeBSD ports repository Modified files: . modules Log: - kbackup --> ports/archivers/kbackup Revision Changes Path 1.16318 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 16:33:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28F7116A40F; Sat, 30 Sep 2006 16:33:30 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB35943D49; Sat, 30 Sep 2006 16:33:29 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UGXTvT079353; Sat, 30 Sep 2006 16:33:29 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UGXT0I079352; Sat, 30 Sep 2006 16:33:29 GMT (envelope-from pjd) Message-Id: <200609301633.k8UGXT0I079352@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sat, 30 Sep 2006 16:33:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_proc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 16:33:30 -0000 pjd 2006-09-30 16:33:29 UTC FreeBSD src repository Modified files: sys/kern kern_proc.c Log: Remove duplicated $FreeBSD$. Revision Changes Path 1.244 +0 -1 src/sys/kern/kern_proc.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 16:33:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 297FC16A500; Sat, 30 Sep 2006 16:33:49 +0000 (UTC) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F243643D55; Sat, 30 Sep 2006 16:33:46 +0000 (GMT) (envelope-from alexbl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UGXknJ079383; Sat, 30 Sep 2006 16:33:46 GMT (envelope-from alexbl@repoman.freebsd.org) Received: (from alexbl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UGXkus079382; Sat, 30 Sep 2006 16:33:46 GMT (envelope-from alexbl) Message-Id: <200609301633.k8UGXkus079382@repoman.freebsd.org> From: Alexander Botero-Lowry Date: Sat, 30 Sep 2006 16:33:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/archivers/macutils/files patch-lzh.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 16:33:49 -0000 alexbl 2006-09-30 16:33:46 UTC FreeBSD ports repository Added files: archivers/macutils/files patch-lzh.c Log: - fix build on gcc 4.1 PR: 103750 Submitted by: trasz Approved by: novel (mentor, implicit) Revision Changes Path 1.1 +22 -0 ports/archivers/macutils/files/patch-lzh.c (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 16:51:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2980016A403; Sat, 30 Sep 2006 16:51:58 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from ameno.mahoroba.org (gw4.mahoroba.org [218.45.22.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FD8C43D46; Sat, 30 Sep 2006 16:51:56 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from kasuga.mahoroba.org (IDENT:wjya8NiJ9Mv2tWHj97PBC7J/bwMJZelzWi30r3SfiW4h7ZySs/1yivor9+SdrgFW@kasuga-iwi.mahoroba.org [IPv6:2001:2f0:104:8010:212:f0ff:fe52:6ac]) (user=ume mech=CRAM-MD5 bits=0) by ameno.mahoroba.org (8.13.8/8.13.8) with ESMTP/inet6 id k8UGpjCl009442 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 1 Oct 2006 01:51:47 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Sun, 01 Oct 2006 01:51:45 +0900 Message-ID: From: Hajimu UMEMOTO To: John Hay In-Reply-To: <20060930162039.GA59699@zibbi.meraka.csir.co.za> References: <200609301408.k8UE8vpM069161@repoman.freebsd.org> <20060930162039.GA59699@zibbi.meraka.csir.co.za> User-Agent: xcite1.38> Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.0.50 (i386-pc-freebsd) MULE/5.0 (SAKAKI) X-Operating-System: FreeBSD 6.2-PRERELEASE X-PGP-Key: http://www.imasy.or.jp/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE Organization: Internet Mutual Aid Society, YOKOHAMA MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0rc3 (ameno.mahoroba.org [IPv6:2001:2f0:104:8010::1]); Sun, 01 Oct 2006 01:51:48 +0900 (JST) X-Virus-Scanned: by amavisd-new X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.5 X-Spam-Checker-Version: SpamAssassin 3.1.5 (2006-08-29) on ameno.mahoroba.org Cc: John Hay , src-committers@FreeBSD.org, Hajimu UMEMOTO , cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet6 nd6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 16:51:58 -0000 Hi, >>>>> On Sat, 30 Sep 2006 18:20:39 +0200 >>>>> John Hay said: jhay> On Sat, Sep 30, 2006 at 11:33:35PM +0900, Hajimu UMEMOTO wrote: > jhay> FreeBSD src repository > > jhay> Modified files: > jhay> sys/netinet6 nd6.c > jhay> Log: > jhay> My previous commit broke "route add -inet6 -interface gif0". > jhay> Fix that by excluding point-to-point interfaces. > > > - } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0) { > > + } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0 && > > + (ifp->if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK)) == 0) { > > ln->ln_state = ND6_LLINFO_INCOMPLETE; > > Umm, it seems still there is a problem. We are using -interface not > only for point-to-point interface and loopback. > I'm not sure but can we check `(rt->rt_flags & RTF_HOST) != 0', here? jhay> That would work better yes. Is there a reason you feel unsure about it? jhay> Or is it just a case of not having tested it? Because, I was just unsure of your intention, and I'm not having tested it. Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ From owner-cvs-all@FreeBSD.ORG Sat Sep 30 16:53:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C78516A403; Sat, 30 Sep 2006 16:53:47 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31BB143D5A; Sat, 30 Sep 2006 16:53:40 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UGreuk088994; Sat, 30 Sep 2006 16:53:40 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UGreDb088993; Sat, 30 Sep 2006 16:53:40 GMT (envelope-from netchild) Message-Id: <200609301653.k8UGreDb088993@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 16:53:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pci spicds.c spicds.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 16:53:47 -0000 netchild 2006-09-30 16:53:40 UTC FreeBSD src repository Modified files: sys/dev/sound/pci spicds.c spicds.h Log: After repo copy from ak452x.[ch]: SPIcds is the I2S SPI audio codec code used by the Envy* drivers. Submitted by: "Konstantin Dimitrov" Revision Changes Path 1.4 +154 -59 src/sys/dev/sound/pci/spicds.c 1.3 +38 -13 src/sys/dev/sound/pci/spicds.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 16:57:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E571E16A417; Sat, 30 Sep 2006 16:57:41 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D95943D46; Sat, 30 Sep 2006 16:57:41 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UGvfxs089282; Sat, 30 Sep 2006 16:57:41 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UGvfmQ089281; Sat, 30 Sep 2006 16:57:41 GMT (envelope-from netchild) Message-Id: <200609301657.k8UGvfmQ089281@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 16:57:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/sound/driver Makefile src/sys/modules/sound/driver/spicds Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 16:57:42 -0000 netchild 2006-09-30 16:57:41 UTC FreeBSD src repository Modified files: sys/modules/sound/driver Makefile Added files: sys/modules/sound/driver/spicds Makefile Log: Add the spicds module to the build. Submitted by: "Konstantin Dimitrov" Revision Changes Path 1.21 +1 -1 src/sys/modules/sound/driver/Makefile 1.1 +8 -0 src/sys/modules/sound/driver/spicds/Makefile (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:02:08 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A4A516A40F; Sat, 30 Sep 2006 17:02:08 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EB0343D4C; Sat, 30 Sep 2006 17:02:08 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UH27w2089556; Sat, 30 Sep 2006 17:02:07 GMT (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UH27P7089555; Sat, 30 Sep 2006 17:02:07 GMT (envelope-from adamw) Message-Id: <200609301702.k8UH27P7089555@repoman.freebsd.org> From: Adam Weinberger Date: Sat, 30 Sep 2006 17:02:07 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:02:08 -0000 adamw 2006-09-30 17:02:07 UTC FreeBSD doc repository Modified files: . access Log: Attempt to stand the chicken-and-egg problem on its head by removing myself from access. Revision Changes Path 1.573 +0 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:08:52 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80B8716A412; Sat, 30 Sep 2006 17:08:52 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D45343D45; Sat, 30 Sep 2006 17:08:52 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UH8qQk091048; Sat, 30 Sep 2006 17:08:52 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UH8qQQ091047; Sat, 30 Sep 2006 17:08:52 GMT (envelope-from netchild) Message-Id: <200609301708.k8UH8qQQ091047@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:08:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pci envy24.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:08:52 -0000 netchild 2006-09-30 17:08:52 UTC FreeBSD src repository Modified files: sys/dev/sound/pci envy24.c Log: - fix memory leak, when "number of adcs" != "number of dacs" - fix multiple initialization of the first codec (support for more than one codec should be added in the future) - use spicds instead of ak452x module Submitted by: "Konstantin Dimitrov" Revision Changes Path 1.4 +17 -24 src/sys/dev/sound/pci/envy24.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:10:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9CD616A47C; Sat, 30 Sep 2006 17:10:01 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36A4643D68; Sat, 30 Sep 2006 17:10:00 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHA0R3091107; Sat, 30 Sep 2006 17:10:00 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHA0TN091106; Sat, 30 Sep 2006 17:10:00 GMT (envelope-from ru) Message-Id: <200609301710.k8UHA0TN091106@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 17:10:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 config_intrhook.9 device_get_sysctl.9 firmware.9 hash.9 rwlock.9 sysctl.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:10:02 -0000 ru 2006-09-30 17:10:00 UTC FreeBSD src repository Modified files: share/man/man9 config_intrhook.9 device_get_sysctl.9 firmware.9 hash.9 rwlock.9 sysctl.9 Log: Revise markup. Revision Changes Path 1.2 +9 -8 src/share/man/man9/config_intrhook.9 1.2 +5 -5 src/share/man/man9/device_get_sysctl.9 1.4 +17 -9 src/share/man/man9/firmware.9 1.2 +11 -10 src/share/man/man9/hash.9 1.5 +2 -2 src/share/man/man9/rwlock.9 1.6 +54 -140 src/share/man/man9/sysctl.9 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:10:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAF0816A547; Sat, 30 Sep 2006 17:10:38 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE0E143D6B; Sat, 30 Sep 2006 17:10:37 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHAbQn091200; Sat, 30 Sep 2006 17:10:37 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHAbgf091199; Sat, 30 Sep 2006 17:10:37 GMT (envelope-from netchild) Message-Id: <200609301710.k8UHAbgf091199@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:10:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/sound/driver/envy24 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:10:38 -0000 netchild 2006-09-30 17:10:37 UTC FreeBSD src repository Modified files: sys/modules/sound/driver/envy24 Makefile Log: We don't need the ISA interface. Submitted by: "Konstantin Dimitrov" Revision Changes Path 1.2 +1 -1 src/sys/modules/sound/driver/envy24/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:12:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF6DD16A412; Sat, 30 Sep 2006 17:12:26 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95FC243D4C; Sat, 30 Sep 2006 17:12:26 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHCPpl091380; Sat, 30 Sep 2006 17:12:25 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHCPXq091379; Sat, 30 Sep 2006 17:12:25 GMT (envelope-from netchild) Message-Id: <200609301712.k8UHCPXq091379@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:12:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/sound/driver Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:12:27 -0000 netchild 2006-09-30 17:12:25 UTC FreeBSD src repository Modified files: sys/modules/sound/driver Makefile Log: Disconnect ak452x from the build, it is not needed anymore. Revision Changes Path 1.22 +1 -1 src/sys/modules/sound/driver/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:13:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4BED16A403; Sat, 30 Sep 2006 17:13:27 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F82343D5E; Sat, 30 Sep 2006 17:13:27 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHDRCb091455; Sat, 30 Sep 2006 17:13:27 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHDROM091454; Sat, 30 Sep 2006 17:13:27 GMT (envelope-from netchild) Message-Id: <200609301713.k8UHDROM091454@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:13:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/sound/driver/ak452x Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:13:27 -0000 netchild 2006-09-30 17:13:26 UTC FreeBSD src repository Removed files: sys/modules/sound/driver/ak452x Makefile Log: Remove the ak452x module. Revision Changes Path 1.2 +0 -8 src/sys/modules/sound/driver/ak452x/Makefile (dead) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:14:15 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55B5516A407; Sat, 30 Sep 2006 17:14:15 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2AE443D49; Sat, 30 Sep 2006 17:14:14 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHEEIC091516; Sat, 30 Sep 2006 17:14:14 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHEEgI091515; Sat, 30 Sep 2006 17:14:14 GMT (envelope-from netchild) Message-Id: <200609301714.k8UHEEgI091515@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:14:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pci ak452x.c ak452x.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:14:15 -0000 netchild 2006-09-30 17:14:14 UTC FreeBSD src repository Removed files: sys/dev/sound/pci ak452x.c ak452x.h Log: Remove the ak452x code, superseeded by spicds. Revision Changes Path 1.4 +0 -247 src/sys/dev/sound/pci/ak452x.c (dead) 1.3 +0 -91 src/sys/dev/sound/pci/ak452x.h (dead) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:19:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96D8716A47E; Sat, 30 Sep 2006 17:19:22 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5255F43D4C; Sat, 30 Sep 2006 17:19:22 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHJM0P091761; Sat, 30 Sep 2006 17:19:22 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHJMQl091760; Sat, 30 Sep 2006 17:19:22 GMT (envelope-from netchild) Message-Id: <200609301719.k8UHJMQl091760@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:19:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 snd_envy24.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:19:22 -0000 netchild 2006-09-30 17:19:22 UTC FreeBSD src repository Modified files: share/man/man4 snd_envy24.4 Log: - it uses the spicds driver now, change the kernel compile instructions - add info about the chipsets Revision Changes Path 1.3 +4 -3 src/share/man/man4/snd_envy24.4 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:21:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8E3D16A412; Sat, 30 Sep 2006 17:21:38 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7376943D5F; Sat, 30 Sep 2006 17:21:38 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHLcBC091965; Sat, 30 Sep 2006 17:21:38 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHLc1u091964; Sat, 30 Sep 2006 17:21:38 GMT (envelope-from ru) Message-Id: <200609301721.k8UHLc1u091964@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 17:21:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/tools/tools/recoverdisk recoverdisk.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:21:38 -0000 ru 2006-09-30 17:21:38 UTC FreeBSD src repository Modified files: tools/tools/recoverdisk recoverdisk.1 Log: Revise markup. Revision Changes Path 1.2 +36 -31 src/tools/tools/recoverdisk/recoverdisk.1 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:27:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 259D116A407; Sat, 30 Sep 2006 17:27:56 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D8E443D55; Sat, 30 Sep 2006 17:27:51 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHRpN3092202; Sat, 30 Sep 2006 17:27:51 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHRpLs092201; Sat, 30 Sep 2006 17:27:51 GMT (envelope-from ru) Message-Id: <200609301727.k8UHRpLs092201@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 17:27:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/getent getent.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:27:56 -0000 ru 2006-09-30 17:27:50 UTC FreeBSD src repository Modified files: usr.bin/getent getent.1 Log: Revise markup. Revision Changes Path 1.2 +21 -18 src/usr.bin/getent/getent.1 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:28:27 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B53CD16A403; Sat, 30 Sep 2006 17:28:27 +0000 (UTC) (envelope-from jhay@meraka.csir.co.za) Received: from zibbi.meraka.csir.co.za (zibbi.meraka.csir.co.za [146.64.24.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A4E043D4C; Sat, 30 Sep 2006 17:28:25 +0000 (GMT) (envelope-from jhay@meraka.csir.co.za) Received: by zibbi.meraka.csir.co.za (Postfix, from userid 3973) id 52ED833CA2; Sat, 30 Sep 2006 19:28:24 +0200 (SAST) Date: Sat, 30 Sep 2006 19:28:24 +0200 From: John Hay To: Hajimu UMEMOTO Message-ID: <20060930172824.GA61082@zibbi.meraka.csir.co.za> References: <200609301408.k8UE8vpM069161@repoman.freebsd.org> <20060930162039.GA59699@zibbi.meraka.csir.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Cc: John Hay , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet6 nd6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:28:27 -0000 On Sun, Oct 01, 2006 at 01:51:45AM +0900, Hajimu UMEMOTO wrote: > jhay> On Sat, Sep 30, 2006 at 11:33:35PM +0900, Hajimu UMEMOTO wrote: > > jhay> FreeBSD src repository > > > > jhay> Modified files: > > jhay> sys/netinet6 nd6.c > > jhay> Log: > > jhay> My previous commit broke "route add -inet6 -interface gif0". > > jhay> Fix that by excluding point-to-point interfaces. > > > > > - } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0) { > > > + } else if (req == RTM_ADD && SDL(gate)->sdl_alen == 0 && > > > + (ifp->if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK)) == 0) { > > > ln->ln_state = ND6_LLINFO_INCOMPLETE; > > > > Umm, it seems still there is a problem. We are using -interface not > > only for point-to-point interface and loopback. > > I'm not sure but can we check `(rt->rt_flags & RTF_HOST) != 0', here? > > jhay> That would work better yes. Is there a reason you feel unsure about it? > jhay> Or is it just a case of not having tested it? > > Because, I was just unsure of your intention, and I'm not having > tested it. What I'm trying to do is to add a host route to a machine directly connected. It sounds stupid because you normally don't need it, but I'm busy porting net/olsrd to FreeBSD/IPv6. Currently it only have linux support. Olsrd is a mesh routing protocol used in adhoc wireless networks. The one reason you want to add these routes is because you might have more than one wireless interface on the same subnet, covering different areas. So you need to add a route to the interface that can talk to the host. So after some struggling and questions on freebsd-net, I came up with code that do the equivalent of: "route add -inet6 -interface -ifp -llinfo -nostatic" in olsrd and this patch. If there is an easier way, I would love to use it. John -- John Hay -- John.Hay@meraka.csir.co.za / jhay@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:30:03 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1682116A417; Sat, 30 Sep 2006 17:30:03 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF48243D4C; Sat, 30 Sep 2006 17:30:02 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHU2iP092311; Sat, 30 Sep 2006 17:30:02 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHU2M7092310; Sat, 30 Sep 2006 17:30:02 GMT (envelope-from netchild) Message-Id: <200609301730.k8UHU2M7092310@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:30:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 Makefile snd_spicds.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:30:03 -0000 netchild 2006-09-30 17:30:02 UTC FreeBSD src repository Modified files: share/man/man4 Makefile Added files: share/man/man4 snd_spicds.4 Log: Add the snd_spicds(4) man page. Revision Changes Path 1.362 +1 -0 src/share/man/man4/Makefile 1.1 +87 -0 src/share/man/man4/snd_spicds.4 (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:31:41 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ADB816A416 for ; Sat, 30 Sep 2006 17:31:41 +0000 (UTC) (envelope-from pawel.worach@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id B043043D67 for ; Sat, 30 Sep 2006 17:31:35 +0000 (GMT) (envelope-from pawel.worach@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so348333uge for ; Sat, 30 Sep 2006 10:31:34 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=UibjiolMLlGRn52BiaWIGR/deKI4QtWuvio1N3uqZs4xVFLHJ5ECbS8+RPRU7bwVg7V1I8C4PGvkeTTE7Xl0cmxuy+Mp98xiSfSIdiqr+0b/hZdZuPFdYnBXWyFDj9K/PIiA3K9xj0MHEIibTE7Dv9r9jKefOgvaJgwStfzHVKk= Received: by 10.66.224.3 with SMTP id w3mr1090984ugg; Sat, 30 Sep 2006 10:31:34 -0700 (PDT) Received: from ?192.168.1.200? ( [80.217.194.157]) by mx.gmail.com with ESMTP id e33sm3307529ugd.2006.09.30.10.31.33; Sat, 30 Sep 2006 10:31:34 -0700 (PDT) Message-ID: <451EA9F3.1040908@gmail.com> Date: Sat, 30 Sep 2006 19:31:31 +0200 From: Pawel Worach User-Agent: Thunderbird 1.5.0.7 (X11/20060921) MIME-Version: 1.0 To: Dag-Erling Smorgrav References: <200609301330.k8UDU1mw065334@repoman.freebsd.org> In-Reply-To: <200609301330.k8UDU1mw065334@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:31:41 -0000 Dag-Erling Smorgrav wrote: > des 2006-09-30 13:30:01 UTC > > FreeBSD src repository > > src/crypto/openssh - Imported sources > Update of /home/ncvs/src/crypto/openssh > In directory repoman.freebsd.org:/tmp/cvs-serv65300 > > Log Message: > Vendor import of OpenSSH 4.4p1. > Hi, Seems like this broke the pam_ssh build. cc -O2 -fno-strict-aliasing -pipe -march=pentium-m -I/usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh -include ssh_namespace.h -I/usr/src/lib/libpam/modules/pam_ssh/../../../../contrib/openpam/include -I/usr/src/lib/libpam/modules/pam_ssh/../../libpam -c /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c In file included from /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:60: /usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh/authfd.h:65: error: syntax error before "Buffer" *** Error code 1 Stop in /usr/src/lib/libpam/modules/pam_ssh. -- Pawel From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:41:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7174516A403; Sat, 30 Sep 2006 17:41:09 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D25543D55; Sat, 30 Sep 2006 17:41:09 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHf9ro093052; Sat, 30 Sep 2006 17:41:09 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHf9Lk093051; Sat, 30 Sep 2006 17:41:09 GMT (envelope-from bsam) Message-Id: <200609301741.k8UHf9Lk093051@repoman.freebsd.org> From: Boris Samorodov Date: Sat, 30 Sep 2006 17:41:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/bzrtools Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:41:09 -0000 bsam 2006-09-30 17:41:09 UTC FreeBSD ports repository Modified files: devel/bzrtools Makefile distinfo Log: - update the devel/bzrtools port from 0.9.1 to 0.10 to reflect the new devel/bazaar-ng version; - update maintainer-address (problems with getting email at the old one). PR: 103848 Submitted by: Ulf Lilleengen (maintainer) Revision Changes Path 1.5 +2 -2 ports/devel/bzrtools/Makefile 1.5 +3 -3 ports/devel/bzrtools/distinfo From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:46:36 2006 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52E5516A494 for ; Sat, 30 Sep 2006 17:46:36 +0000 (UTC) (envelope-from pawel.worach@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB1B843D62 for ; Sat, 30 Sep 2006 17:46:29 +0000 (GMT) (envelope-from pawel.worach@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so349009uge for ; Sat, 30 Sep 2006 10:46:25 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=M/PLOobDcHj8OJqdRdj0FDnbFWRG+FkJVgX7Go70SHAGF6zBO7bkhhP2u3C+75497Og6nltBjS2NCUVqDp0VytIFnI6OA/2uAumjuGPnZhwq2JsH9JDWwKLUAfIh1MunH8Q1KZrplxwg1q7qmos8VK6HVnuPXGMcZ/keiMFxtas= Received: by 10.67.21.11 with SMTP id y11mr1102249ugi; Sat, 30 Sep 2006 10:46:25 -0700 (PDT) Received: from ?192.168.1.200? ( [80.217.194.157]) by mx.gmail.com with ESMTP id k30sm3332006ugc.2006.09.30.10.46.23; Sat, 30 Sep 2006 10:46:24 -0700 (PDT) Message-ID: <451EAD6D.30905@gmail.com> Date: Sat, 30 Sep 2006 19:46:21 +0200 From: Pawel Worach User-Agent: Thunderbird 1.5.0.7 (X11/20060921) MIME-Version: 1.0 To: Dag-Erling Smorgrav References: <200609301330.k8UDU1mw065334@repoman.freebsd.org> <451EA9F3.1040908@gmail.com> In-Reply-To: <451EA9F3.1040908@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:46:36 -0000 Pawel Worach wrote: > Dag-Erling Smorgrav wrote: >> des 2006-09-30 13:30:01 UTC >> >> FreeBSD src repository >> >> src/crypto/openssh - Imported sources >> Update of /home/ncvs/src/crypto/openssh >> In directory repoman.freebsd.org:/tmp/cvs-serv65300 >> Log Message: >> Vendor import of OpenSSH 4.4p1. >> > > Hi, > > Seems like this broke the pam_ssh build. > > cc -O2 -fno-strict-aliasing -pipe -march=pentium-m > -I/usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh > -include ssh_namespace.h > -I/usr/src/lib/libpam/modules/pam_ssh/../../../../contrib/openpam/include > -I/usr/src/lib/libpam/modules/pam_ssh/../../libpam -c > /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c > In file included from /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:60: > /usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh/authfd.h:65: > error: syntax error before "Buffer" > *** Error code 1 > > Stop in /usr/src/lib/libpam/modules/pam_ssh. > Fix: --- pam_ssh.c.orig Sat Sep 30 19:44:43 2006 +++ pam_ssh.c Sat Sep 30 19:44:56 2006 @@ -57,6 +57,7 @@ #include #include "key.h" +#include "buffer.h" #include "authfd.h" #include "authfile.h" -- Pawel From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:49:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC7D816A49E; Sat, 30 Sep 2006 17:49:10 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 733A143D64; Sat, 30 Sep 2006 17:49:10 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHnAM8093390; Sat, 30 Sep 2006 17:49:10 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHnA3X093389; Sat, 30 Sep 2006 17:49:10 GMT (envelope-from bsam) Message-Id: <200609301749.k8UHnA3X093389@repoman.freebsd.org> From: Boris Samorodov Date: Sat, 30 Sep 2006 17:49:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www Makefile ports/www/asterisk-fop Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:49:10 -0000 bsam 2006-09-30 17:49:10 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/asterisk-fop Makefile distinfo pkg-descr pkg-plist Log: Flash Operator Panel is a switchboard type application for the Asterisk PBX. It runs on a web browser with the flash plugin. It is able to display information about your PBX activity in real time. WWW: http://www.asternic.org/ - Marcelo Araujo araujo@bsdmail.org PR: ports/103838 Submitted by: Marcelo Araujo Revision Changes Path 1.1577 +1 -0 ports/www/Makefile 1.1 +33 -0 ports/www/asterisk-fop/Makefile (new) 1.1 +3 -0 ports/www/asterisk-fop/distinfo (new) 1.1 +8 -0 ports/www/asterisk-fop/pkg-descr (new) 1.1 +86 -0 ports/www/asterisk-fop/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:50:18 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5CF816A407; Sat, 30 Sep 2006 17:50:18 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2305043D66; Sat, 30 Sep 2006 17:49:59 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHnwrM093441; Sat, 30 Sep 2006 17:49:58 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHnwMF093440; Sat, 30 Sep 2006 17:49:58 GMT (envelope-from bsam) Message-Id: <200609301749.k8UHnwMF093440@repoman.freebsd.org> From: Boris Samorodov Date: Sat, 30 Sep 2006 17:49:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:50:19 -0000 bsam 2006-09-30 17:49:58 UTC FreeBSD ports repository Modified files: . modules Log: asterisk-fop --> ports/www/asterisk-fop Revision Changes Path 1.16319 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:52:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6964016A492; Sat, 30 Sep 2006 17:52:29 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 336BF43D49; Sat, 30 Sep 2006 17:52:29 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHqTvJ093666; Sat, 30 Sep 2006 17:52:29 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHqTeN093664; Sat, 30 Sep 2006 17:52:29 GMT (envelope-from netchild) Message-Id: <200609301752.k8UHqTeN093664@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:52:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pci envy24ht.c envy24ht.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:52:29 -0000 netchild 2006-09-30 17:52:28 UTC FreeBSD src repository Modified files: sys/dev/sound/pci envy24ht.c envy24ht.h Log: Driver for Envy24HT (ICE1724 or VT1724)-based cards like Terratec Aureon 7.1 Space: tested Terratec Aureon 5.1 Sky: tested Terratec PHASE 28: tested Terratec Aureon 7.1 Universe: tested Audiotrak Prodigy 7.1: tested Audiotrak Prodigy 7.1 LT: not tested Terratec PHASE 22: not tested M-Audio Revolution 7.1: not tested M-Audio Revolution 5.1: not tested M-Audio Audiophile 192: tested Submitted by: "Konstantin Dimitrov" Revision Changes Path 1.5 +758 -756 src/sys/dev/sound/pci/envy24ht.c 1.3 +128 -427 src/sys/dev/sound/pci/envy24ht.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:53:26 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBC3316A40F; Sat, 30 Sep 2006 17:53:26 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0DD743D55; Sat, 30 Sep 2006 17:53:25 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHrPOl093742; Sat, 30 Sep 2006 17:53:25 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHrPHK093741; Sat, 30 Sep 2006 17:53:25 GMT (envelope-from netchild) Message-Id: <200609301753.k8UHrPHK093741@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:53:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/sound/driver Makefile src/sys/modules/sound/driver/envy24ht Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:53:26 -0000 netchild 2006-09-30 17:53:25 UTC FreeBSD src repository Modified files: sys/modules/sound/driver Makefile Added files: sys/modules/sound/driver/envy24ht Makefile Log: Add the envy24ht driver to the build. Revision Changes Path 1.23 +2 -2 src/sys/modules/sound/driver/Makefile 1.1 +8 -0 src/sys/modules/sound/driver/envy24ht/Makefile (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 17:59:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A69B16A40F; Sat, 30 Sep 2006 17:59:11 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE75943D64; Sat, 30 Sep 2006 17:59:08 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UHx8ie094065; Sat, 30 Sep 2006 17:59:08 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UHx8vp094064; Sat, 30 Sep 2006 17:59:08 GMT (envelope-from netchild) Message-Id: <200609301759.k8UHx8vp094064@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 17:59:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf NOTES files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 17:59:11 -0000 netchild 2006-09-30 17:59:08 UTC FreeBSD src repository Modified files: sys/conf NOTES files Log: Add spicds, envy24ht and remove ak4*. Revision Changes Path 1.1384 +5 -3 src/sys/conf/NOTES 1.1145 +2 -1 src/sys/conf/files From owner-cvs-all@FreeBSD.ORG Sat Sep 30 18:04:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C6EC16A407; Sat, 30 Sep 2006 18:04:58 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58FEA43D49; Sat, 30 Sep 2006 18:04:58 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UI4wKG095656; Sat, 30 Sep 2006 18:04:58 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UI4wJD095655; Sat, 30 Sep 2006 18:04:58 GMT (envelope-from netchild) Message-Id: <200609301804.k8UI4wJD095655@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 18:04:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 Makefile snd_envy24ht.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 18:04:58 -0000 netchild 2006-09-30 18:04:58 UTC FreeBSD src repository Modified files: share/man/man4 Makefile Added files: share/man/man4 snd_envy24ht.4 Log: Add man page for snd_envy24ht(4). Revision Changes Path 1.363 +1 -0 src/share/man/man4/Makefile 1.1 +99 -0 src/share/man/man4/snd_envy24ht.4 (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 18:06:05 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D713B16A4C8; Sat, 30 Sep 2006 18:06:05 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A468843D67; Sat, 30 Sep 2006 18:06:03 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UI5xWq095769; Sat, 30 Sep 2006 18:05:59 GMT (envelope-from bsam@repoman.freebsd.org) Received: (from bsam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UI5xVm095768; Sat, 30 Sep 2006 18:05:59 GMT (envelope-from bsam) Message-Id: <200609301805.k8UI5xVm095768@repoman.freebsd.org> From: Boris Samorodov Date: Sat, 30 Sep 2006 18:05:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/deskutils/jlj Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 18:06:06 -0000 bsam 2006-09-30 18:05:59 UTC FreeBSD ports repository Modified files: deskutils/jlj Makefile Log: - update MASTER_SITE to the new location; - add maintainer's personal mirror of the distfile. PR: 103853 Submitted by: Wesley Shields Revision Changes Path 1.14 +2 -1 ports/deskutils/jlj/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 18:07:29 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 106D716A403; Sat, 30 Sep 2006 18:07:29 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1224143D55; Sat, 30 Sep 2006 18:07:27 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UI7QfB095897; Sat, 30 Sep 2006 18:07:26 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UI7QFM095896; Sat, 30 Sep 2006 18:07:26 GMT (envelope-from netchild) Message-Id: <200609301807.k8UI7QFM095896@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 18:07:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/forth loader.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 18:07:29 -0000 netchild 2006-09-30 18:07:26 UTC FreeBSD src repository Modified files: sys/boot/forth loader.conf Log: Add snd_envy24ht and remove the snd_ak4* module. Revision Changes Path 1.112 +2 -1 src/sys/boot/forth/loader.conf From owner-cvs-all@FreeBSD.ORG Sat Sep 30 18:12:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45EBE16A415; Sat, 30 Sep 2006 18:12:00 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6F5243D4C; Sat, 30 Sep 2006 18:11:59 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UIBxrq096189; Sat, 30 Sep 2006 18:11:59 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UIBx63096188; Sat, 30 Sep 2006 18:11:59 GMT (envelope-from ru) Message-Id: <200609301811.k8UIBx63096188@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 18:11:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/cached cached.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 18:12:00 -0000 ru 2006-09-30 18:11:59 UTC FreeBSD src repository Modified files: usr.sbin/cached cached.c Log: Fix usage(). Revision Changes Path 1.2 +2 -1 src/usr.sbin/cached/cached.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 18:12:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C5C616A4A0; Sat, 30 Sep 2006 18:12:33 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 540E643D45; Sat, 30 Sep 2006 18:12:33 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UICX7L096279; Sat, 30 Sep 2006 18:12:33 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UICX3I096278; Sat, 30 Sep 2006 18:12:33 GMT (envelope-from netchild) Message-Id: <200609301812.k8UICX3I096278@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 30 Sep 2006 18:12:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/sound/driver/envy24 Makefile src/sys/modules/sound/driver/envy24ht Makefile src/sys/modules/sound/driver/spicds Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 18:12:33 -0000 netchild 2006-09-30 18:12:33 UTC FreeBSD src repository Modified files: sys/modules/sound/driver/envy24 Makefile sys/modules/sound/driver/envy24ht Makefile sys/modules/sound/driver/spicds Makefile Log: Respect style.Makefile(5). Cluebat waving by: ru Revision Changes Path 1.3 +5 -4 src/sys/modules/sound/driver/envy24/Makefile 1.2 +5 -4 src/sys/modules/sound/driver/envy24ht/Makefile 1.2 +5 -4 src/sys/modules/sound/driver/spicds/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:07:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F64716A412; Sat, 30 Sep 2006 19:07:04 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3800E43D46; Sat, 30 Sep 2006 19:07:04 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJ74HV000156; Sat, 30 Sep 2006 19:07:04 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJ74Un000155; Sat, 30 Sep 2006 19:07:04 GMT (envelope-from ru) Message-Id: <200609301907.k8UJ74Un000155@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 19:07:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/bsnmpd/modules/snmp_hostres snmp_hostres.3 src/usr.sbin/cached cached.8 cached.conf.5 src/usr.sbin/ipfwpcap ipfwpcap.8 src/usr.sbin/ntp/doc ntp-keygen.8 src/usr.sbin/nvram nvram.8 src/usr.sbin/sade sade.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:07:04 -0000 ru 2006-09-30 19:07:03 UTC FreeBSD src repository Modified files: usr.sbin/bsnmpd/modules/snmp_hostres snmp_hostres.3 usr.sbin/cached cached.8 cached.conf.5 usr.sbin/ipfwpcap ipfwpcap.8 usr.sbin/ntp/doc ntp-keygen.8 usr.sbin/nvram nvram.8 usr.sbin/sade sade.8 Log: Revise markup. Revision Changes Path 1.4 +14 -11 src/usr.sbin/bsnmpd/modules/snmp_hostres/snmp_hostres.3 1.8 +31 -26 src/usr.sbin/cached/cached.8 1.4 +78 -39 src/usr.sbin/cached/cached.conf.5 1.3 +10 -7 src/usr.sbin/ipfwpcap/ipfwpcap.8 1.2 +38 -19 src/usr.sbin/ntp/doc/ntp-keygen.8 1.2 +6 -7 src/usr.sbin/nvram/nvram.8 1.77 +16 -10 src/usr.sbin/sade/sade.8 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:23:41 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DA9416A403; Sat, 30 Sep 2006 19:23:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD8FA43D46; Sat, 30 Sep 2006 19:23:40 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJNecs000882; Sat, 30 Sep 2006 19:23:40 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJNehS000881; Sat, 30 Sep 2006 19:23:40 GMT (envelope-from linimon) Message-Id: <200609301923.k8UJNehS000881@repoman.freebsd.org> From: Mark Linimon Date: Sat, 30 Sep 2006 19:23:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/Mk bsd.port.options.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:23:41 -0000 linimon 2006-09-30 19:23:40 UTC FreeBSD ports repository Added files: Mk bsd.port.options.mk Log: Split the bsd.port.pre.mk functionality into two pieces. The majority is left unchanged but the processing of dependencies is moved after OPTIONS processing. See comments for suggested usage. This functionality is still experimental and not yet used by any port. Revision Changes Path 1.1 +26 -0 ports/Mk/bsd.port.options.mk (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:25:47 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D73A816A417; Sat, 30 Sep 2006 19:25:47 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A44C43D58; Sat, 30 Sep 2006 19:25:47 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJPkYV001143; Sat, 30 Sep 2006 19:25:46 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJPkWE001142; Sat, 30 Sep 2006 19:25:46 GMT (envelope-from linimon) Message-Id: <200609301925.k8UJPkWE001142@repoman.freebsd.org> From: Mark Linimon Date: Sat, 30 Sep 2006 19:25:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/Mk bsd.database.mk bsd.gcc.mk bsd.port.mk ports/math/elmer-mathlibs Makefile ports/math/elmer-umfpack Makefile ports/science/elmer-eio Makefile ports/science/elmer-fem Makefile ports/science/elmer-hutiter Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:25:48 -0000 linimon 2006-09-30 19:25:46 UTC FreeBSD ports repository Modified files: Mk bsd.database.mk bsd.gcc.mk bsd.port.mk math/elmer-mathlibs Makefile math/elmer-umfpack Makefile science/elmer-eio Makefile science/elmer-fem Makefile science/elmer-hutiter Makefile science/elmer-matc Makefile science/elmerpost Makefile Log: * Split bsd.port.mk pre and post includes into 3 pieces instead of 2, to allow OPTIONS to be able to influence dependencies. This is still experimental [1] * Teach bsd.gcc.mk about gfortran [2] * Remove the outdated emulators/linux_base; the new default has been linux_base-fc4. This will allow the outdated port to be removed [3] * Add USE_FIREBIRD macros to bsd.database.mk [4] PR: 93687 [1], 93690 [2], 103184 [3], 103357 [4] Submitted by: shaun [1], Pedro F. Giffuni [2], gerald [2], thierry [2], vd [3], skv [4] Revision Changes Path 1.15 +31 -1 ports/Mk/bsd.database.mk 1.9 +26 -8 ports/Mk/bsd.gcc.mk 1.544 +21 -19 ports/Mk/bsd.port.mk 1.7 +0 -2 ports/math/elmer-mathlibs/Makefile 1.4 +0 -3 ports/math/elmer-umfpack/Makefile 1.4 +0 -3 ports/science/elmer-eio/Makefile 1.9 +1 -3 ports/science/elmer-fem/Makefile 1.5 +1 -3 ports/science/elmer-hutiter/Makefile 1.4 +0 -3 ports/science/elmer-matc/Makefile 1.4 +1 -3 ports/science/elmerpost/Makefile From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:26:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E07FB16A415; Sat, 30 Sep 2006 19:26:34 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C8E343D60; Sat, 30 Sep 2006 19:26:32 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJQWQQ001186; Sat, 30 Sep 2006 19:26:32 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJQWlQ001185; Sat, 30 Sep 2006 19:26:32 GMT (envelope-from linimon) Message-Id: <200609301926.k8UJQWlQ001185@repoman.freebsd.org> From: Mark Linimon Date: Sat, 30 Sep 2006 19:26:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports CHANGES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:26:35 -0000 linimon 2006-09-30 19:26:32 UTC FreeBSD ports repository Modified files: . CHANGES Log: Document bsd.port.mk 1.544 and associated changes. Revision Changes Path 1.61 +17 -1 ports/CHANGES From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:50:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9071B16A416; Sat, 30 Sep 2006 19:50:58 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54CC143D46; Sat, 30 Sep 2006 19:50:58 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJowWW002409; Sat, 30 Sep 2006 19:50:58 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJowVG002407; Sat, 30 Sep 2006 19:50:58 GMT (envelope-from simon) Message-Id: <200609301950.k8UJowVG002407@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:50:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:50:58 -0000 simon 2006-09-30 19:50:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: re (kensmith) Revision Changes Path 1.15.2.2 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.8.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.14.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.9.2.2 +5 -0 src/crypto/openssh/defines.h 1.1.1.13.2.1 +14 -0 src/crypto/openssh/log.c 1.6.2.1 +2 -1 src/crypto/openssh/log.h 1.1.1.16.2.2 +10 -3 src/crypto/openssh/packet.c 1.46.2.2 +2 -2 src/crypto/openssh/session.c 1.27.2.2 +2 -2 src/crypto/openssh/ssh_config 1.17.2.2 +2 -2 src/crypto/openssh/ssh_config.5 1.39.2.2 +3 -2 src/crypto/openssh/sshd.c 1.42.2.2 +2 -2 src/crypto/openssh/sshd_config 1.23.2.2 +2 -2 src/crypto/openssh/sshd_config.5 1.30.2.2 +2 -2 src/crypto/openssh/version.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:51:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E658A16A47C; Sat, 30 Sep 2006 19:51:56 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAD5043D45; Sat, 30 Sep 2006 19:51:56 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJpuDr002572; Sat, 30 Sep 2006 19:51:56 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJpuQO002571; Sat, 30 Sep 2006 19:51:56 GMT (envelope-from simon) Message-Id: <200609301951.k8UJpuQO002571@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:51:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_1 Cc: Subject: cvs commit: src UPDATING src/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:51:57 -0000 simon 2006-09-30 19:51:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_1) . UPDATING crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h sys/conf newvers.sh Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: so (simon) Revision Changes Path 1.416.2.22.2.12 +3 -0 src/UPDATING 1.15.2.1.4.1 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.12.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.18.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.9.2.1.4.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.13.6.1 +14 -0 src/crypto/openssh/log.c 1.6.6.1 +2 -1 src/crypto/openssh/log.h 1.1.1.16.2.1.4.1 +10 -3 src/crypto/openssh/packet.c 1.46.2.1.4.1 +2 -2 src/crypto/openssh/session.c 1.27.2.1.4.1 +2 -2 src/crypto/openssh/ssh_config 1.17.2.1.4.1 +2 -2 src/crypto/openssh/ssh_config.5 1.39.2.1.4.1 +3 -2 src/crypto/openssh/sshd.c 1.42.2.1.4.1 +2 -2 src/crypto/openssh/sshd_config 1.23.2.1.4.1 +2 -2 src/crypto/openssh/sshd_config.5 1.30.2.1.4.1 +2 -2 src/crypto/openssh/version.h 1.69.2.11.2.12 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:53:22 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53A6916A412; Sat, 30 Sep 2006 19:53:22 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFE8543D58; Sat, 30 Sep 2006 19:53:21 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJrLeD002727; Sat, 30 Sep 2006 19:53:21 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJrLGG002726; Sat, 30 Sep 2006 19:53:21 GMT (envelope-from simon) Message-Id: <200609301953.k8UJrLGG002726@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:53:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src UPDATING src/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:53:22 -0000 simon 2006-09-30 19:53:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) . UPDATING crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h sys/conf newvers.sh Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: so (simon) Revision Changes Path 1.416.2.3.2.20 +3 -0 src/UPDATING 1.15.2.1.2.1 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.10.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.16.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.9.2.1.2.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.13.4.1 +14 -0 src/crypto/openssh/log.c 1.6.4.1 +2 -1 src/crypto/openssh/log.h 1.1.1.16.2.1.2.1 +10 -3 src/crypto/openssh/packet.c 1.46.2.1.2.1 +2 -2 src/crypto/openssh/session.c 1.27.2.1.2.1 +2 -2 src/crypto/openssh/ssh_config 1.17.2.1.2.1 +2 -2 src/crypto/openssh/ssh_config.5 1.39.2.1.2.1 +3 -2 src/crypto/openssh/sshd.c 1.42.2.1.2.1 +2 -2 src/crypto/openssh/sshd_config 1.23.2.1.2.1 +2 -2 src/crypto/openssh/sshd_config.5 1.30.2.1.2.1 +2 -2 src/crypto/openssh/version.h 1.69.2.8.2.16 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:54:04 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49AA116A40F; Sat, 30 Sep 2006 19:54:04 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12A3043D4C; Sat, 30 Sep 2006 19:54:04 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJs3Fh002790; Sat, 30 Sep 2006 19:54:03 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJs37v002789; Sat, 30 Sep 2006 19:54:03 GMT (envelope-from simon) Message-Id: <200609301954.k8UJs37v002789@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:54:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:54:04 -0000 simon 2006-09-30 19:54:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Revision Changes Path 1.13.2.1 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.2.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.8.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.7.2.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.10.2.1 +14 -0 src/crypto/openssh/log.c 1.5.2.1 +2 -1 src/crypto/openssh/log.h 1.1.1.14.2.1 +10 -3 src/crypto/openssh/packet.c 1.44.2.1 +2 -2 src/crypto/openssh/session.c 1.25.2.2 +2 -2 src/crypto/openssh/ssh_config 1.15.2.2 +2 -2 src/crypto/openssh/ssh_config.5 1.37.2.1 +4 -2 src/crypto/openssh/sshd.c 1.40.2.2 +2 -2 src/crypto/openssh/sshd_config 1.21.2.2 +2 -2 src/crypto/openssh/sshd_config.5 1.27.2.2 +2 -2 src/crypto/openssh/version.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:55:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4B8F16A40F; Sat, 30 Sep 2006 19:55:00 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3DC643D66; Sat, 30 Sep 2006 19:54:58 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJswOW002918; Sat, 30 Sep 2006 19:54:58 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJswRa002917; Sat, 30 Sep 2006 19:54:58 GMT (envelope-from simon) Message-Id: <200609301954.k8UJswRa002917@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:54:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_5 Cc: Subject: cvs commit: src UPDATING src/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:55:00 -0000 simon 2006-09-30 19:54:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_5) . UPDATING crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h sys/conf newvers.sh Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: so (simon) Revision Changes Path 1.342.2.35.2.8 +3 -0 src/UPDATING 1.13.8.1 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.14.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.20.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.7.8.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.10.8.1 +14 -0 src/crypto/openssh/log.c 1.5.8.1 +2 -1 src/crypto/openssh/log.h 1.1.1.14.8.1 +10 -3 src/crypto/openssh/packet.c 1.44.8.1 +2 -2 src/crypto/openssh/session.c 1.25.2.1.2.1 +2 -2 src/crypto/openssh/ssh_config 1.15.2.1.2.1 +2 -2 src/crypto/openssh/ssh_config.5 1.37.8.1 +4 -2 src/crypto/openssh/sshd.c 1.40.2.1.2.1 +2 -2 src/crypto/openssh/sshd_config 1.21.2.1.2.1 +2 -2 src/crypto/openssh/sshd_config.5 1.27.2.1.2.1 +2 -2 src/crypto/openssh/version.h 1.62.2.21.2.10 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:55:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D1E116A59D; Sat, 30 Sep 2006 19:55:53 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52CA443D45; Sat, 30 Sep 2006 19:55:53 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJtrJn003086; Sat, 30 Sep 2006 19:55:53 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJtr5r003085; Sat, 30 Sep 2006 19:55:53 GMT (envelope-from simon) Message-Id: <200609301955.k8UJtr5r003085@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:55:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_4 Cc: Subject: cvs commit: src UPDATING src/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:55:53 -0000 simon 2006-09-30 19:55:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_4) . UPDATING crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h sys/conf newvers.sh Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: so (simon) Revision Changes Path 1.342.2.24.2.31 +3 -0 src/UPDATING 1.13.6.1 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.6.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.12.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.7.6.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.10.6.1 +14 -0 src/crypto/openssh/log.c 1.5.6.1 +2 -1 src/crypto/openssh/log.h 1.1.1.14.6.1 +10 -3 src/crypto/openssh/packet.c 1.44.6.1 +2 -2 src/crypto/openssh/session.c 1.25.6.2 +2 -2 src/crypto/openssh/ssh_config 1.15.6.2 +2 -2 src/crypto/openssh/ssh_config.5 1.37.6.1 +4 -2 src/crypto/openssh/sshd.c 1.40.6.2 +2 -2 src/crypto/openssh/sshd_config 1.21.6.2 +2 -2 src/crypto/openssh/sshd_config.5 1.27.6.2 +2 -2 src/crypto/openssh/version.h 1.62.2.18.2.27 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:56:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D4C516A412; Sat, 30 Sep 2006 19:56:39 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 423B343D45; Sat, 30 Sep 2006 19:56:39 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJudkG003196; Sat, 30 Sep 2006 19:56:39 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJudgg003195; Sat, 30 Sep 2006 19:56:39 GMT (envelope-from simon) Message-Id: <200609301956.k8UJudgg003195@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:56:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_3 Cc: Subject: cvs commit: src UPDATING src/crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:56:39 -0000 simon 2006-09-30 19:56:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_5_3) . UPDATING crypto/openssh auth.h deattack.c deattack.h defines.h log.c log.h packet.c session.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h sys/conf newvers.sh Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: so (simon) Revision Changes Path 1.342.2.13.2.40 +3 -0 src/UPDATING 1.13.4.1 +2 -1 src/crypto/openssh/auth.h 1.1.1.7.4.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.3.10.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.7.4.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.10.4.1 +14 -0 src/crypto/openssh/log.c 1.5.4.1 +2 -1 src/crypto/openssh/log.h 1.1.1.14.4.1 +10 -3 src/crypto/openssh/packet.c 1.44.4.1 +2 -2 src/crypto/openssh/session.c 1.25.4.2 +2 -2 src/crypto/openssh/ssh_config 1.15.4.2 +2 -2 src/crypto/openssh/ssh_config.5 1.37.4.1 +4 -2 src/crypto/openssh/sshd.c 1.40.4.2 +2 -2 src/crypto/openssh/sshd_config 1.21.4.2 +2 -2 src/crypto/openssh/sshd_config.5 1.27.4.2 +2 -2 src/crypto/openssh/version.h 1.62.2.15.2.42 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:57:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40C2E16A492; Sat, 30 Sep 2006 19:57:16 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09DA943D46; Sat, 30 Sep 2006 19:57:16 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJvF2I003284; Sat, 30 Sep 2006 19:57:15 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJvF2D003283; Sat, 30 Sep 2006 19:57:15 GMT (envelope-from simon) Message-Id: <200609301957.k8UJvF2D003283@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:57:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: Subject: cvs commit: src/crypto/openssh deattack.c deattack.h defines.h log.c log.h packet.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:57:16 -0000 simon 2006-09-30 19:57:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) crypto/openssh deattack.c deattack.h defines.h log.c log.h packet.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Revision Changes Path 1.1.1.1.2.6 +22 -2 src/crypto/openssh/deattack.c 1.1.1.1.2.3 +1 -0 src/crypto/openssh/deattack.h 1.1.1.2.2.3 +5 -0 src/crypto/openssh/defines.h 1.1.1.1.2.6 +14 -0 src/crypto/openssh/log.c 1.1.1.1.2.4 +1 -0 src/crypto/openssh/log.h 1.1.1.1.2.7 +10 -3 src/crypto/openssh/packet.c 1.2.2.10 +2 -2 src/crypto/openssh/ssh_config 1.4.2.6 +2 -2 src/crypto/openssh/ssh_config.5 1.6.2.12 +2 -2 src/crypto/openssh/sshd.c 1.4.2.14 +2 -2 src/crypto/openssh/sshd_config 1.5.2.8 +2 -2 src/crypto/openssh/sshd_config.5 1.1.1.1.2.14 +2 -2 src/crypto/openssh/version.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 19:58:09 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8902616A412; Sat, 30 Sep 2006 19:58:09 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EEC143D49; Sat, 30 Sep 2006 19:58:08 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UJw8g3003398; Sat, 30 Sep 2006 19:58:08 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UJw7xQ003397; Sat, 30 Sep 2006 19:58:07 GMT (envelope-from simon) Message-Id: <200609301958.k8UJw7xQ003397@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 19:58:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_11 Cc: Subject: cvs commit: src UPDATING src/crypto/openssh deattack.c deattack.h defines.h log.c log.h packet.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h src/sys/conf newvers.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 19:58:09 -0000 simon 2006-09-30 19:58:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_4_11) . UPDATING crypto/openssh deattack.c deattack.h defines.h log.c log.h packet.c ssh_config ssh_config.5 sshd.c sshd_config sshd_config.5 version.h sys/conf newvers.sh Log: Correct multiple vulnerabilities in OpenSSH. Security: FreeBSD-SA-06:22.openssh Approved by: so (simon) Revision Changes Path 1.73.2.91.2.26 +3 -0 src/UPDATING 1.1.1.1.2.5.6.1 +22 -2 src/crypto/openssh/deattack.c 1.1.1.1.2.2.10.1 +1 -0 src/crypto/openssh/deattack.h 1.1.1.2.2.2.8.1 +5 -0 src/crypto/openssh/defines.h 1.1.1.1.2.5.8.1 +14 -0 src/crypto/openssh/log.c 1.1.1.1.2.3.8.1 +1 -0 src/crypto/openssh/log.h 1.1.1.1.2.6.8.1 +10 -3 src/crypto/openssh/packet.c 1.2.2.9.6.1 +2 -2 src/crypto/openssh/ssh_config 1.4.2.5.6.1 +2 -2 src/crypto/openssh/ssh_config.5 1.6.2.11.8.1 +2 -2 src/crypto/openssh/sshd.c 1.4.2.13.6.1 +2 -2 src/crypto/openssh/sshd_config 1.5.2.7.4.1 +2 -2 src/crypto/openssh/sshd_config.5 1.1.1.1.2.13.6.1 +2 -2 src/crypto/openssh/version.h 1.44.2.39.2.29 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Sat Sep 30 20:01:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3655116A415; Sat, 30 Sep 2006 20:01:16 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8BDB43D45; Sat, 30 Sep 2006 20:01:15 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UK1F6d003620; Sat, 30 Sep 2006 20:01:15 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UK1FSX003619; Sat, 30 Sep 2006 20:01:15 GMT (envelope-from ru) Message-Id: <200609302001.k8UK1FSX003619@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 20:01:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 20:01:16 -0000 ru 2006-09-30 20:01:15 UTC FreeBSD src repository Modified files: . UPDATING Log: The ioctl(2) API has changed, and some ioctl command codes too. Hint users to add "options COMPAT_FREEBSD6" to their kernel config files, so that X.Org and friends still work without recompiling. Revision Changes Path 1.460 +7 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Sat Sep 30 20:12:32 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A10F216A403; Sat, 30 Sep 2006 20:12:32 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51E4943D67; Sat, 30 Sep 2006 20:12:28 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKCSdV005326; Sat, 30 Sep 2006 20:12:28 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKCSBl005325; Sat, 30 Sep 2006 20:12:28 GMT (envelope-from thierry) Message-Id: <200609302012.k8UKCSBl005325@repoman.freebsd.org> From: Thierry Thomas Date: Sat, 30 Sep 2006 20:12:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/games/gtetrinet Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 20:12:32 -0000 thierry 2006-09-30 20:12:28 UTC FreeBSD ports repository Modified files: games/gtetrinet Makefile distinfo pkg-plist Log: Upgrade to GTetrinet 0.7.10 and fix CVE-2006-3125. Changelog at . Security: VuXML ID: 0b79743b-3ab7-11db-81e1-000e0c2e438a Revision Changes Path 1.38 +5 -8 ports/games/gtetrinet/Makefile 1.16 +3 -3 ports/games/gtetrinet/distinfo 1.14 +14 -12 ports/games/gtetrinet/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Sep 30 20:18:30 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5A9B16A403; Sat, 30 Sep 2006 20:18:30 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1881F43D6D; Sat, 30 Sep 2006 20:18:28 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKISTM005607; Sat, 30 Sep 2006 20:18:28 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKISAQ005606; Sat, 30 Sep 2006 20:18:28 GMT (envelope-from ru) Message-Id: <200609302018.k8UKISAQ005606@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 20:18:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man7 build.7 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 20:18:30 -0000 ru 2006-09-30 20:18:28 UTC FreeBSD src repository Modified files: share/man/man7 build.7 Log: Require rpc.lockd(8) only if make is running with the -j option. Revision Changes Path 1.44 +5 -2 src/share/man/man7/build.7 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 20:25:36 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6545216AA23; Sat, 30 Sep 2006 20:25:36 +0000 (UTC) (envelope-from jhay@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7629D43D46; Sat, 30 Sep 2006 20:25:33 +0000 (GMT) (envelope-from jhay@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKPXAr005998; Sat, 30 Sep 2006 20:25:33 GMT (envelope-from jhay@repoman.freebsd.org) Received: (from jhay@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKPXt8005997; Sat, 30 Sep 2006 20:25:33 GMT (envelope-from jhay) Message-Id: <200609302025.k8UKPXt8005997@repoman.freebsd.org> From: John Hay Date: Sat, 30 Sep 2006 20:25:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet6 nd6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 20:25:36 -0000 jhay 2006-09-30 20:25:33 UTC FreeBSD src repository Modified files: sys/netinet6 nd6.c Log: A better fix is to check if it is a host route. Submitted by: ume MFC after: 5 days Revision Changes Path 1.69 +1 -1 src/sys/netinet6/nd6.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 20:26:39 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 264BB16A494; Sat, 30 Sep 2006 20:26:39 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5972543DBB; Sat, 30 Sep 2006 20:26:38 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKQci2006081; Sat, 30 Sep 2006 20:26:38 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKQc0q006080; Sat, 30 Sep 2006 20:26:38 GMT (envelope-from simon) Message-Id: <200609302026.k8UKQc0q006080@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 20:26:38 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: www/share/sgml advisories.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 20:26:39 -0000 simon 2006-09-30 20:26:38 UTC FreeBSD doc repository Modified files: share/sgml advisories.xml Log: Add FreeBSD-SA-06:22.openssh. Revision Changes Path 1.203 +9 -1 www/share/sgml/advisories.xml From owner-cvs-all@FreeBSD.ORG Sat Sep 30 20:36:23 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4D2516A40F; Sat, 30 Sep 2006 20:36:23 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8361D43EDF; Sat, 30 Sep 2006 20:34:29 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKXgjI006486; Sat, 30 Sep 2006 20:33:42 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKXgnZ006485; Sat, 30 Sep 2006 20:33:42 GMT (envelope-from ru) Message-Id: <200609302033.k8UKXgnZ006485@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 20:33:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libpam/modules/pam_ssh pam_ssh.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 20:36:23 -0000 ru 2006-09-30 20:33:42 UTC FreeBSD src repository Modified files: lib/libpam/modules/pam_ssh pam_ssh.c Log: Fix build. Revision Changes Path 1.44 +1 -0 src/lib/libpam/modules/pam_ssh/pam_ssh.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 20:38:45 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 864A016A4A0; Sat, 30 Sep 2006 20:38:45 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DACA843DD7; Sat, 30 Sep 2006 20:37:37 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKbbpN006672; Sat, 30 Sep 2006 20:37:37 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKbbsL006671; Sat, 30 Sep 2006 20:37:37 GMT (envelope-from ru) Message-Id: <200609302037.k8UKbbsL006671@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 30 Sep 2006 20:37:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man7 build.7 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 20:38:45 -0000 ru 2006-09-30 20:37:37 UTC FreeBSD src repository Modified files: share/man/man7 build.7 Log: Markup glitch. Revision Changes Path 1.45 +2 -1 src/share/man/man7/build.7 From owner-cvs-all@FreeBSD.ORG Sat Sep 30 20:41:53 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCC8E16A40F; Sat, 30 Sep 2006 20:41:53 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82EE643D73; Sat, 30 Sep 2006 20:41:53 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKfrbs006951; Sat, 30 Sep 2006 20:41:53 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKfrcb006950; Sat, 30 Sep 2006 20:41:53 GMT (envelope-from joel) Message-Id: <200609302041.k8UKfrcb006950@repoman.freebsd.org> From: Joel Dahl Date: Sat, 30 Sep 2006 20:41:53 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.committers.sgml contrib.develalumni.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 20:41:53 -0000 joel 2006-09-30 20:41:53 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.committers.sgml contrib.develalumni.sgml Log: Move adamw to the Development Team Alumni. Revision Changes Path 1.155 +0 -4 doc/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml 1.32 +4 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.develalumni.sgml From owner-cvs-all@FreeBSD.ORG Sat Sep 30 20:52:37 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5617A16A407; Sat, 30 Sep 2006 20:52:37 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74B8D43D6D; Sat, 30 Sep 2006 20:52:36 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKqaX6015460; Sat, 30 Sep 2006 20:52:36 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKqa6F015459; Sat, 30 Sep 2006 20:52:36 GMT (envelope-from simon) Message-Id: <200609302052.k8UKqa6F015459@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 30 Sep 2006 20:52:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 20:52:37 -0000 simon 2006-09-30 20:52:36 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Document openssh -- multiple vulnerabilities AKA FreeBSD-SA-06:22.openssh. Revision Changes Path 1.1156 +64 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sat Sep 30 20:58:49 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36A3916A40F; Sat, 30 Sep 2006 20:58:49 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53F3B43D99; Sat, 30 Sep 2006 20:58:48 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UKwmZ6015794; Sat, 30 Sep 2006 20:58:48 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UKwmvR015793; Sat, 30 Sep 2006 20:58:48 GMT (envelope-from mbr) Message-Id: <200609302058.k8UKwmvR015793@repoman.freebsd.org> From: Martin Blapp Date: Sat, 30 Sep 2006 20:58:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern tty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 20:58:49 -0000 mbr 2006-09-30 20:58:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern tty.c Log: MFC rev. 1.260 Any call of tty_close() with a tty refcount of <= 1 is wrong and we will free the tty in this case. This is a workaround until the underlaying devfs/tty problems are fixed. Approved by: re Revision Changes Path 1.250.2.2 +9 -1 src/sys/kern/tty.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 21:02:20 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 639F516A415; Sat, 30 Sep 2006 21:02:20 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 210B343D79; Sat, 30 Sep 2006 21:02:20 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UL2KxX016038; Sat, 30 Sep 2006 21:02:20 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UL2J4q016037; Sat, 30 Sep 2006 21:02:19 GMT (envelope-from mbr) Message-Id: <200609302102.k8UL2J4q016037@repoman.freebsd.org> From: Martin Blapp Date: Sat, 30 Sep 2006 21:02:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 21:02:20 -0000 mbr 2006-09-30 21:02:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern tty_pty.c Log: Fix 'pty leak by number'. Make the leaked ptys usable again. Approved by: re Revision Changes Path 1.137.2.3 +9 -2 src/sys/kern/tty_pty.c From owner-cvs-all@FreeBSD.ORG Sat Sep 30 21:17:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F59816A407; Sat, 30 Sep 2006 21:17:10 +0000 (UTC) (envelope-from anray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC25C43D4C; Sat, 30 Sep 2006 21:17:09 +0000 (GMT) (envelope-from anray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ULH9K4017931; Sat, 30 Sep 2006 21:17:09 GMT (envelope-from anray@repoman.freebsd.org) Received: (from anray@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ULH9gr017930; Sat, 30 Sep 2006 21:17:09 GMT (envelope-from anray) Message-Id: <200609302117.k8ULH9gr017930@repoman.freebsd.org> From: Andrey Slusar Date: Sat, 30 Sep 2006 21:17:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/p4.el Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 21:17:10 -0000 anray 2006-09-30 21:17:09 UTC FreeBSD ports repository Modified files: devel/p4.el Makefile distinfo pkg-plist Log: Update to 10.6 and unbroken. Revision Changes Path 1.7 +2 -4 ports/devel/p4.el/Makefile 1.6 +3 -3 ports/devel/p4.el/distinfo 1.2 +3 -4 ports/devel/p4.el/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Sep 30 21:25:13 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F76216A40F; Sat, 30 Sep 2006 21:25:13 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94FFE43D46; Sat, 30 Sep 2006 21:25:12 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ULPCI2018358; Sat, 30 Sep 2006 21:25:12 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ULPClR018357; Sat, 30 Sep 2006 21:25:12 GMT (envelope-from sam) Message-Id: <200609302125.k8ULPClR018357@repoman.freebsd.org> From: Sam Leffler Date: Sat, 30 Sep 2006 21:25:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/ath if_ath.c if_athvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 21:25:13 -0000 sam 2006-09-30 21:25:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ath if_ath.c if_athvar.h Log: MFC: remove stub radar support Approved by: re (kensmith) Revision Changes Path 1.94.2.27 +0 -22 src/sys/dev/ath/if_ath.c 1.27.2.9 +0 -7 src/sys/dev/ath/if_athvar.h From owner-cvs-all@FreeBSD.ORG Sat Sep 30 21:46:34 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4950516A415; Sat, 30 Sep 2006 21:46:34 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDC4443D49; Sat, 30 Sep 2006 21:46:33 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ULkXXw019333; Sat, 30 Sep 2006 21:46:33 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ULkX74019332; Sat, 30 Sep 2006 21:46:33 GMT (envelope-from sem) Message-Id: <200609302146.k8ULkX74019332@repoman.freebsd.org> From: Sergey Matveychuk Date: Sat, 30 Sep 2006 21:46:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net Makefile ports/net/jakarta-commons-net Makefile distinfo pkg-descr ports/net/jakarta-commons-net/files patch-TelnetClientTest.java X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 21:46:34 -0000 sem 2006-09-30 21:46:33 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/jakarta-commons-net Makefile distinfo pkg-descr net/jakarta-commons-net/files patch-TelnetClientTest.java Log: Jakarta Commons Net implements the client side of many basic Internet protocols. The purpose of the library is to provide fundamental protocol access. WWW: http://jakarta.apache.org/commons/net/ Revision Changes Path 1.1746 +1 -0 ports/net/Makefile 1.1 +55 -0 ports/net/jakarta-commons-net/Makefile (new) 1.1 +3 -0 ports/net/jakarta-commons-net/distinfo (new) 1.1 +18 -0 ports/net/jakarta-commons-net/files/patch-TelnetClientTest.java (new) 1.1 +21 -0 ports/net/jakarta-commons-net/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 21:47:06 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4275A16A415; Sat, 30 Sep 2006 21:47:06 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D09D543D55; Sat, 30 Sep 2006 21:47:05 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ULl59E019380; Sat, 30 Sep 2006 21:47:05 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ULl5gD019379; Sat, 30 Sep 2006 21:47:05 GMT (envelope-from sem) Message-Id: <200609302147.k8ULl5gD019379@repoman.freebsd.org> From: Sergey Matveychuk Date: Sat, 30 Sep 2006 21:47:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 21:47:06 -0000 sem 2006-09-30 21:47:05 UTC FreeBSD ports repository Modified files: . modules Log: jakarta-commons-net --> ports/net/jakarta-commons-net Revision Changes Path 1.16320 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Sep 30 21:49:25 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8471316A407; Sat, 30 Sep 2006 21:49:25 +0000 (UTC) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51B1243D45; Sat, 30 Sep 2006 21:49:25 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ULnPJc019476; Sat, 30 Sep 2006 21:49:25 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ULnPjk019475; Sat, 30 Sep 2006 21:49:25 GMT (envelope-from joerg) Message-Id: <200609302149.k8ULnPjk019475@repoman.freebsd.org> From: Joerg Wunsch Date: Sat, 30 Sep 2006 21:49:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel/avr-gdb Makefile distinfo ports/devel/avr-gdb/files patch-atmega256x-binutils patch-atmega256x-gdb X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 21:49:25 -0000 joerg 2006-09-30 21:49:24 UTC FreeBSD ports repository Modified files: devel/avr-gdb Makefile distinfo Added files: devel/avr-gdb/files patch-atmega256x-binutils patch-atmega256x-gdb Log: Upgrade to GCC 6.5. Add local patches to support the ATmega256x controller family that features a 3-byte PC. patch-atmega256x-binutils is Bjoern Haase's backported binutils patch for the ATmega256x (stripped down to those GNU binutils directories that are present in the GDB source tree), while patch-atmega256x-gdb is my own one to modify the AVR backend in GDB to understand 3-byte PCs. Revision Changes Path 1.10 +1 -2 ports/devel/avr-gdb/Makefile 1.6 +3 -3 ports/devel/avr-gdb/distinfo 1.1 +1521 -0 ports/devel/avr-gdb/files/patch-atmega256x-binutils (new) 1.1 +66 -0 ports/devel/avr-gdb/files/patch-atmega256x-gdb (new) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 21:57:21 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A64B016A403; Sat, 30 Sep 2006 21:57:21 +0000 (UTC) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E9AF43D49; Sat, 30 Sep 2006 21:57:21 +0000 (GMT) (envelope-from sat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8ULvL5s019917; Sat, 30 Sep 2006 21:57:21 GMT (envelope-from sat@repoman.freebsd.org) Received: (from sat@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8ULvL22019916; Sat, 30 Sep 2006 21:57:21 GMT (envelope-from sat) Message-Id: <200609302157.k8ULvL22019916@repoman.freebsd.org> From: Andrew Pantyukhin Date: Sat, 30 Sep 2006 21:57:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www/xpi-urllink Makefile distinfo ports/www/xpi-urllink/files chrome.manifest X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 21:57:21 -0000 sat 2006-09-30 21:57:21 UTC FreeBSD ports repository Modified files: www/xpi-urllink Makefile distinfo Removed files: www/xpi-urllink/files chrome.manifest Log: - Update to 1.07.0 Revision Changes Path 1.2 +3 -3 ports/www/xpi-urllink/Makefile 1.2 +3 -3 ports/www/xpi-urllink/distinfo 1.2 +0 -15 ports/www/xpi-urllink/files/chrome.manifest (dead) From owner-cvs-all@FreeBSD.ORG Sat Sep 30 22:04:12 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D21B916A403; Sat, 30 Sep 2006 22:04:12 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BFAD43D49; Sat, 30 Sep 2006 22:04:12 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UM4Cuw021401; Sat, 30 Sep 2006 22:04:12 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UM4CN3021400; Sat, 30 Sep 2006 22:04:12 GMT (envelope-from joel) Message-Id: <200609302204.k8UM4CN3021400@repoman.freebsd.org> From: Joel Dahl Date: Sat, 30 Sep 2006 22:04:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 22:04:12 -0000 joel 2006-09-30 22:04:12 UTC FreeBSD src repository (doc committer) Modified files: . access Log: Welcome linimon (Mark Linimon) to the ranks of the src committers. rwatson sponsored linimon, and will be his mentor. Approved by: core With hat: core-secretary Revision Changes Path 1.791 +1 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Sat Sep 30 22:51:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6688F16A40F; Sat, 30 Sep 2006 22:51:11 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 257FE43D49; Sat, 30 Sep 2006 22:51:11 +0000 (GMT) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k8UMpAwP023490; Sat, 30 Sep 2006 22:51:10 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k8UMpAXm023467; Sat, 30 Sep 2006 22:51:10 GMT (envelope-from mbr) Message-Id: <200609302251.k8UMpAXm023467@repoman.freebsd.org> From: Martin Blapp Date: Sat, 30 Sep 2006 22:51:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern tty_pty.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 30 Sep 2006 22:51:11 -0000 mbr 2006-09-30 22:51:05 UTC FreeBSD src repository Modified files: sys/kern tty_pty.c Log: Readd rev. 1.145 because of vfs bugs and races near revoke(). Until they are fixed we can't free any slaves. Add a workaround to not to leak ptys by number. Revision Changes Path 1.149 +14 -4 src/sys/kern/tty_pty.c