From owner-cvs-all@FreeBSD.ORG Sun Oct 23 00:01:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B235716A41F; Sun, 23 Oct 2005 00:01:35 +0000 (GMT) (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 6C26243D46; Sun, 23 Oct 2005 00:01:35 +0000 (GMT) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N01ZrA046112; Sun, 23 Oct 2005 00:01:35 GMT (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N01ZTh046111; Sun, 23 Oct 2005 00:01:35 GMT (envelope-from nobutaka) Message-Id: <200510230001.j9N01ZTh046111@repoman.freebsd.org> From: MANTANI Nobutaka Date: Sun, 23 Oct 2005 00:01: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/devel/boehm-gc Makefile ports/devel/boehm-gc/files patch-include-private-gcconfig.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, 23 Oct 2005 00:01:35 -0000 nobutaka 2005-10-23 00:01:35 UTC FreeBSD ports repository Modified files: devel/boehm-gc Makefile devel/boehm-gc/files patch-include-private-gcconfig.h Log: Fix build error on amd64 with THREADING option. PR: ports/87484 Submitted by: Vasil Dimov Revision Changes Path 1.46 +3 -1 ports/devel/boehm-gc/Makefile 1.7 +9 -7 ports/devel/boehm-gc/files/patch-include-private-gcconfig.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 00:16:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 760E016A420; Sun, 23 Oct 2005 00:16:42 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0405E43D48; Sun, 23 Oct 2005 00:16:42 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0GfVq046659; Sun, 23 Oct 2005 00:16:41 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0GfWa046658; Sun, 23 Oct 2005 00:16:41 GMT (envelope-from njl) Message-Id: <200510230016.j9N0GfWa046658@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 00:16: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/dev/acpica acpi_battery.c acpiio.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, 23 Oct 2005 00:16:42 -0000 njl 2005-10-23 00:16:41 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_battery.c acpiio.h Log: Cleanups and support code for importing smart battery support. * Use ACPI_BATT_UNKNOWN instead of constants * Use maxunit instead of a count of devices since we may have sparse battery devices in the future. Only userland should be using unit numbers anyway, so provide a translation function. (Kernel use of batteries should be restricted to looking up a device_t and calling methods directly. * Don't check acpi_BatteryIsPresent() in acpi_battery. Leave it up to the hardware-specific driver (i.e. cmbat) since smart batteries seem to not report the "battery present" flag. * Convert mA to mW if the battery uses those units. CM-batteries only used mW so this deficiency went unnoticed. * Clean strings reported in the battery info from any control chars. * Only dereference the unit from ioctl_arg if the full struct is present. Unit wouldn't have been used later if it wasn't present but this is cleaner. Translate the unit if it's not ACPI_BATTERY_ALL_UNITS. * bzero structs before returning them to usermode for future compat. Most of this work was submitted by Hans Petter Selasky and then majorly reworked by myself. Submitted by: Hans Petter Selasky Revision Changes Path 1.20 +120 -29 src/sys/dev/acpica/acpi_battery.c 1.16 +4 -1 src/sys/dev/acpica/acpiio.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 00:20:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3709A16A41F; Sun, 23 Oct 2005 00:20:14 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F266143D4C; Sun, 23 Oct 2005 00:20:13 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0KDVS046757; Sun, 23 Oct 2005 00:20:13 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0KD4g046756; Sun, 23 Oct 2005 00:20:13 GMT (envelope-from njl) Message-Id: <200510230020.j9N0KD4g046756@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 00:20: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/acpica acpi_smbat.c acpi_smbus.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, 23 Oct 2005 00:20:14 -0000 njl 2005-10-23 00:20:13 UTC FreeBSD src repository Added files: sys/dev/acpica acpi_smbat.c acpi_smbus.h Log: Import ACPI smart battery support. Newer systems (Acer, mostly) do not support the CM-battery interface. Smart batteries can eventually be supported without ACPI via a separate SMBus interface. The ACPI interface uses the embedded controller for reading/writing to the SMBus, and normal ASL definitions for locating the battery controller (since SMBus can't be enumerated.) Also import definitions for the smart battery interface. This was written by Hans Petter Selasky with minor cleanups from myself. Submitted by: Hans Petter Selasky Revision Changes Path 1.1 +402 -0 src/sys/dev/acpica/acpi_smbat.c (new) 1.1 +285 -0 src/sys/dev/acpica/acpi_smbus.h (new) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 00:22:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F26716A41F; Sun, 23 Oct 2005 00:22:03 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B9EC43D45; Sun, 23 Oct 2005 00:22:03 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0M3m0046987; Sun, 23 Oct 2005 00:22:03 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0M3vc046986; Sun, 23 Oct 2005 00:22:03 GMT (envelope-from njl) Message-Id: <200510230022.j9N0M3vc046986@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 00:22: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/modules/acpi/acpi Makefile src/sys/conf 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: Sun, 23 Oct 2005 00:22:03 -0000 njl 2005-10-23 00:22:03 UTC FreeBSD src repository Modified files: sys/modules/acpi/acpi Makefile sys/conf files Log: Hook acpi_smbat up to the build. Revision Changes Path 1.1060 +1 -0 src/sys/conf/files 1.13 +1 -1 src/sys/modules/acpi/acpi/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 00:26:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B7C616A41F; Sun, 23 Oct 2005 00:26:54 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C646C43D55; Sun, 23 Oct 2005 00:26:53 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0QrVx047189; Sun, 23 Oct 2005 00:26:53 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0QrJG047188; Sun, 23 Oct 2005 00:26:53 GMT (envelope-from edwin) Message-Id: <200510230026.j9N0QrJG047188@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 00:26: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/lang/tcltutor Makefile ports/lang/tcltutor/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, 23 Oct 2005 00:26:54 -0000 edwin 2005-10-23 00:26:53 UTC FreeBSD ports repository Modified files: lang/tcltutor Makefile lang/tcltutor/files patch-aa Log: Fix localbase issue Noticed by: YAPHR Revision Changes Path 1.8 +1 -1 ports/lang/tcltutor/Makefile 1.4 +5 -34 ports/lang/tcltutor/files/patch-aa From owner-cvs-all@FreeBSD.ORG Sun Oct 23 00:28:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D62516A41F; Sun, 23 Oct 2005 00:28:39 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C55043D45; Sun, 23 Oct 2005 00:28:39 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0SdOI047312; Sun, 23 Oct 2005 00:28:39 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0SdID047311; Sun, 23 Oct 2005 00:28:39 GMT (envelope-from njl) Message-Id: <200510230028.j9N0SdID047311@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 00:28: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/acpica acpi.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 00:28:39 -0000 njl 2005-10-23 00:28:39 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Add a hack to get around PCI link devices that report "present" but not "functional" (i.e., if they are disabled). We should probe them anyway since we may enable them later. Tested by: thompsa MFC after: 3 days Revision Changes Path 1.216 +6 -1 src/sys/dev/acpica/acpi.c From owner-cvs-all@FreeBSD.ORG Sun Oct 23 00:30:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2A2A16A41F; Sun, 23 Oct 2005 00:30:53 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E79243D46; Sun, 23 Oct 2005 00:30:53 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0UrCu047507; Sun, 23 Oct 2005 00:30:53 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0UrOg047506; Sun, 23 Oct 2005 00:30:53 GMT (envelope-from edwin) Message-Id: <200510230030.j9N0UrOg047506@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 00:30: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/mail/mavbiff Makefile ports/mail/mavbiff/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, 23 Oct 2005 00:30:54 -0000 edwin 2005-10-23 00:30:53 UTC FreeBSD ports repository Modified files: mail/mavbiff Makefile Added files: mail/mavbiff/files patch-Makefile Log: FIx LOCALBASE/X11BASE issue Noticed by: YAPHR Revision Changes Path 1.8 +1 -0 ports/mail/mavbiff/Makefile 1.1 +48 -0 ports/mail/mavbiff/files/patch-Makefile (new) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 00:31:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DC7C16A41F; Sun, 23 Oct 2005 00:31:32 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0970543D46; Sun, 23 Oct 2005 00:31:32 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0VVmO047560; Sun, 23 Oct 2005 00:31:31 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0VV9r047559; Sun, 23 Oct 2005 00:31:31 GMT (envelope-from edwin) Message-Id: <200510230031.j9N0VV9r047559@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 00:31: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/mail/mavbiff/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, 23 Oct 2005 00:31:32 -0000 edwin 2005-10-23 00:31:31 UTC FreeBSD ports repository Modified files: mail/mavbiff/files patch-Makefile Log: properly fix it by installing in PREFIX and not in LOCALBASE Revision Changes Path 1.2 +15 -15 ports/mail/mavbiff/files/patch-Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 00:32:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC38316A41F; Sun, 23 Oct 2005 00:32:39 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9731943D5A; Sun, 23 Oct 2005 00:32:39 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0Wdlm047623; Sun, 23 Oct 2005 00:32:39 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0WdUW047622; Sun, 23 Oct 2005 00:32:39 GMT (envelope-from jylefort) Message-Id: <200510230032.j9N0WdUW047622@repoman.freebsd.org> From: Jean-Yves Lefort Date: Sun, 23 Oct 2005 00: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/x11-themes/bluecurve-themes 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, 23 Oct 2005 00:32:40 -0000 jylefort 2005-10-23 00:32:39 UTC FreeBSD ports repository Modified files: x11-themes/bluecurve-themes Makefile distinfo Log: Update to the most recent rpm revision, as the current one is no longer fetchable. Reported by: pointyhat via kris Revision Changes Path 1.6 +1 -1 ports/x11-themes/bluecurve-themes/Makefile 1.6 +2 -2 ports/x11-themes/bluecurve-themes/distinfo From owner-cvs-all@FreeBSD.ORG Sun Oct 23 00:44:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94F9316A41F; Sun, 23 Oct 2005 00:44:22 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51C2A43D45; Sun, 23 Oct 2005 00:44:22 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0iMub048044; Sun, 23 Oct 2005 00:44:22 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0iMum048043; Sun, 23 Oct 2005 00:44:22 GMT (envelope-from edwin) Message-Id: <200510230044.j9N0iMum048043@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 00:44: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/games/xrally 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, 23 Oct 2005 00:44:22 -0000 edwin 2005-10-23 00:44:22 UTC FreeBSD ports repository Modified files: games/xrally Makefile Log: Add -L{X11BASE}/lib to CONFIGURE_ENV Noticed by: YAPHR Revision Changes Path 1.5 +2 -1 ports/games/xrally/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 00:55:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5EE116A41F; Sun, 23 Oct 2005 00:55:57 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 563A443D45; Sun, 23 Oct 2005 00:55:57 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0tvIr055587; Sun, 23 Oct 2005 00:55:57 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0tvkL055586; Sun, 23 Oct 2005 00:55:57 GMT (envelope-from njl) Message-Id: <200510230055.j9N0tvkL055586@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 00:55: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/usr.sbin/powerd powerd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 00:55:58 -0000 njl 2005-10-23 00:55:57 UTC FreeBSD src repository Modified files: usr.sbin/powerd powerd.c Log: Whitespace fix. Revision Changes Path 1.15 +1 -1 src/usr.sbin/powerd/powerd.c From owner-cvs-all@FreeBSD.ORG Sun Oct 23 01:02:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2462116A41F; Sun, 23 Oct 2005 01:02:29 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4D5243D45; Sun, 23 Oct 2005 01:02:28 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N12SnV055853; Sun, 23 Oct 2005 01:02:28 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N12Sor055852; Sun, 23 Oct 2005 01:02:28 GMT (envelope-from jylefort) Message-Id: <200510230102.j9N12Sor055852@repoman.freebsd.org> From: Jean-Yves Lefort Date: Sun, 23 Oct 2005 01:02: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/xpilotmon 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, 23 Oct 2005 01:02:29 -0000 jylefort 2005-10-23 01:02:28 UTC FreeBSD ports repository Modified files: games/xpilotmon Makefile Log: Drop maintainership. Revision Changes Path 1.6 +1 -1 ports/games/xpilotmon/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 01:33:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B42F416A41F; Sun, 23 Oct 2005 01:33:48 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 581BC43D49; Sun, 23 Oct 2005 01:33:48 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N1Xmhh056977; Sun, 23 Oct 2005 01:33:48 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N1Xm06056976; Sun, 23 Oct 2005 01:33:48 GMT (envelope-from nork) Message-Id: <200510230133.j9N1Xm06056976@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sun, 23 Oct 2005 01:33: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/jce_policy14 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, 23 Oct 2005 01:33:48 -0000 nork 2005-10-23 01:33:48 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/jce_policy14 Makefile distinfo pkg-descr Log: Add java_policy 1.4.2, which provides JCE(Java Cryptography Extension) Unlimited Strength Jurisdiction Policy Files. WWW: http://java.sun.com/products/jce/index-14.html I was cheated by: ume Revision Changes Path 1.651 +1 -0 ports/security/Makefile 1.1 +35 -0 ports/security/jce_policy14/Makefile (new) 1.1 +2 -0 ports/security/jce_policy14/distinfo (new) 1.1 +17 -0 ports/security/jce_policy14/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 01:37:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BA1516A41F; Sun, 23 Oct 2005 01:37:25 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46D3843D46; Sun, 23 Oct 2005 01:37:25 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N1bP8i057160; Sun, 23 Oct 2005 01:37:25 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N1bPYM057159; Sun, 23 Oct 2005 01:37:25 GMT (envelope-from tjr) Message-Id: <200510230137.j9N1bPYM057159@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 23 Oct 2005 01:37: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/ncal ncal.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: Sun, 23 Oct 2005 01:37:25 -0000 tjr 2005-10-23 01:37:25 UTC FreeBSD src repository Modified files: usr.bin/ncal ncal.1 Log: Document incorrect handling of multibyte characters. PR: 87724 Revision Changes Path 1.19 +5 -1 src/usr.bin/ncal/ncal.1 From owner-cvs-all@FreeBSD.ORG Sun Oct 23 01:38:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3BEA16A41F; Sun, 23 Oct 2005 01:38:17 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72E3B43D46; Sun, 23 Oct 2005 01:38:17 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N1cH1D057248; Sun, 23 Oct 2005 01:38:17 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N1cHcX057247; Sun, 23 Oct 2005 01:38:17 GMT (envelope-from nork) Message-Id: <200510230138.j9N1cHcX057247@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sun, 23 Oct 2005 01:38: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: Sun, 23 Oct 2005 01:38:17 -0000 nork 2005-10-23 01:38:17 UTC FreeBSD ports repository Modified files: . modules Log: jce_policy14 --> ports/security/jce_policy14 Revision Changes Path 1.13453 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Oct 23 01:41:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B04916A41F; Sun, 23 Oct 2005 01:41:19 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 223BA43D45; Sun, 23 Oct 2005 01:41:19 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N1fJ7j057454; Sun, 23 Oct 2005 01:41:19 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N1fJA1057453; Sun, 23 Oct 2005 01:41:19 GMT (envelope-from jylefort) Message-Id: <200510230141.j9N1fJA1057453@repoman.freebsd.org> From: Jean-Yves Lefort Date: Sun, 23 Oct 2005 01:41: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/audio/mixxx Makefile ports/audio/mixxx/files patch-src::compat_round.cpp patch-src::compat_round.h patch-src::enginebuffer.cpp patch-src::mixxx.pro patch-src::probabilityvector.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, 23 Oct 2005 01:41:19 -0000 jylefort 2005-10-23 01:41:18 UTC FreeBSD ports repository Modified files: audio/mixxx Makefile audio/mixxx/files patch-src::mixxx.pro Removed files: audio/mixxx/files patch-src::compat_round.cpp patch-src::compat_round.h patch-src::enginebuffer.cpp patch-src::probabilityvector.cpp Log: - Respect ${LOCALBASE} and ${X11BASE} [1] - Do not provide round() anymore, since it is part of FreeBSD since 5.3 - Reformat the Makefile (one less tab between variables and values) Reported by: pointyhat via kris [1] Revision Changes Path 1.7 +31 -24 ports/audio/mixxx/Makefile 1.2 +0 -258 ports/audio/mixxx/files/patch-src::compat_round.cpp (dead) 1.2 +0 -9 ports/audio/mixxx/files/patch-src::compat_round.h (dead) 1.2 +0 -28 ports/audio/mixxx/files/patch-src::enginebuffer.cpp (dead) 1.3 +6 -19 ports/audio/mixxx/files/patch-src::mixxx.pro 1.2 +0 -19 ports/audio/mixxx/files/patch-src::probabilityvector.cpp (dead) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 01:44:09 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2037F16A41F; Sun, 23 Oct 2005 01:44:09 +0000 (GMT) (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 D10A243D45; Sun, 23 Oct 2005 01:44:08 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N1i8NF057614; Sun, 23 Oct 2005 01:44:08 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N1i86a057613; Sun, 23 Oct 2005 01:44:08 GMT (envelope-from csjp) Message-Id: <200510230144.j9N1i86a057613@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Sun, 23 Oct 2005 01:44: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/net if_mib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 01:44:09 -0000 csjp 2005-10-23 01:44:08 UTC FreeBSD src repository Modified files: sys/net if_mib.c Log: Before we export network interface data through the ifmibdata structure, OR the flags bits with the driver managed status flags. This fixes an issue where RUNNING flags would not be reported to processes, which conflicts with the flags information provided by ifconfig(8). Revision Changes Path 1.16 +1 -1 src/sys/net/if_mib.c From owner-cvs-all@FreeBSD.ORG Sun Oct 23 01:50:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF9F416A41F; Sun, 23 Oct 2005 01:50:16 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAB9643D45; Sun, 23 Oct 2005 01:50:16 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N1oG0T058376; Sun, 23 Oct 2005 01:50:16 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N1oGuZ058375; Sun, 23 Oct 2005 01:50:16 GMT (envelope-from edwin) Message-Id: <200510230150.j9N1oGuZ058375@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 01:50: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/databases/postgis Makefile ports/databases/postgis/files patch-lwgeom X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 01:50:17 -0000 edwin 2005-10-23 01:50:16 UTC FreeBSD ports repository Modified files: databases/postgis Makefile databases/postgis/files patch-lwgeom Log: [maintainer update] Postgis fix for lwpostgis.sql Fix missed file lwpostgis.sql PR: ports/87856 Submitted by: "Anderson S. Ferreira" Revision Changes Path 1.21 +1 -1 ports/databases/postgis/Makefile 1.3 +1 -1 ports/databases/postgis/files/patch-lwgeom From owner-cvs-all@FreeBSD.ORG Sun Oct 23 02:32:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D4D916A41F; Sun, 23 Oct 2005 02:32:33 +0000 (GMT) (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 ED3AF43D45; Sun, 23 Oct 2005 02:32:32 +0000 (GMT) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N2WWmv060331; Sun, 23 Oct 2005 02:32:32 GMT (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N2WWV0060330; Sun, 23 Oct 2005 02:32:32 GMT (envelope-from nobutaka) Message-Id: <200510230232.j9N2WWV0060330@repoman.freebsd.org> From: MANTANI Nobutaka Date: Sun, 23 Oct 2005 02:32: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/multimedia/libdvdnav/files patch-m4: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, 23 Oct 2005 02:32:33 -0000 nobutaka 2005-10-23 02:32:32 UTC FreeBSD ports repository Added files: multimedia/libdvdnav/files patch-m4:Makefile.in Log: Respect non-standard LOCALBASE. Reported by: kris Revision Changes Path 1.1 +12 -0 ports/multimedia/libdvdnav/files/patch-m4:Makefile.in (new) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 02:35:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 500F416A41F; Sun, 23 Oct 2005 02:35:11 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0710E43D45; Sun, 23 Oct 2005 02:35:11 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N2ZAuH060410; Sun, 23 Oct 2005 02:35:10 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N2ZAE5060409; Sun, 23 Oct 2005 02:35:10 GMT (envelope-from edwin) Message-Id: <200510230235.j9N2ZAE5060409@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 02:35: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/dummyflash/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, 23 Oct 2005 02:35:11 -0000 edwin 2005-10-23 02:35:10 UTC FreeBSD ports repository Modified files: www/dummyflash/files patch-aa Log: Fix www/dummyflash to not hardcode X11BASE path PR: ports/87829 Submitted by: Daniel J. O'Connor Revision Changes Path 1.3 +1 -1 ports/www/dummyflash/files/patch-aa From owner-cvs-all@FreeBSD.ORG Sun Oct 23 02:36:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03B5916A41F; Sun, 23 Oct 2005 02:36:59 +0000 (GMT) (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 C522F43D48; Sun, 23 Oct 2005 02:36:58 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N2awnC060571; Sun, 23 Oct 2005 02:36:58 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N2awwb060570; Sun, 23 Oct 2005 02:36:58 GMT (envelope-from thompsa) Message-Id: <200510230236.j9N2awwb060570@repoman.freebsd.org> From: Andrew Thompson Date: Sun, 23 Oct 2005 02:36: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/net bridgestp.c if_bridge.c if_bridgevar.h if_ethersubr.c src/sys/netgraph ng_ether.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 02:36:59 -0000 thompsa 2005-10-23 02:36:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net bridgestp.c if_bridge.c if_bridgevar.h if_ethersubr.c sys/netgraph ng_ether.c Log: MFC ng_ether support for if_bridge and cleanup of bridge hooks. bridgestp.c; r1.8 if_bridge.c; r1.25, 1.27 if_bridgevar.h; r1.5 if_ethersubr.c; r1.201, 1.202, 1.206 ng_ether.c; r1.52 - 1.54 Approved by: re (scottl) Revision Changes Path 1.3.2.4 +0 -1 src/sys/net/bridgestp.c 1.11.2.14 +16 -9 src/sys/net/if_bridge.c 1.4.2.1 +22 -8 src/sys/net/if_bridgevar.h 1.193.2.6 +4 -26 src/sys/net/if_ethersubr.c 1.49.2.2 +11 -2 src/sys/netgraph/ng_ether.c From owner-cvs-all@FreeBSD.ORG Sun Oct 23 02:37:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 705A516A41F; Sun, 23 Oct 2005 02:37:29 +0000 (GMT) (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 11DEE43D48; Sun, 23 Oct 2005 02:37:29 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N2bSF7060668; Sun, 23 Oct 2005 02:37:28 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N2bSJb060667; Sun, 23 Oct 2005 02:37:28 GMT (envelope-from thompsa) Message-Id: <200510230237.j9N2bSJb060667@repoman.freebsd.org> From: Andrew Thompson Date: Sun, 23 Oct 2005 02:37:28 +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/sys/net bridgestp.c if_bridge.c if_bridgevar.h if_ethersubr.c src/sys/netgraph ng_ether.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 02:37:29 -0000 thompsa 2005-10-23 02:37:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/net bridgestp.c if_bridge.c if_bridgevar.h if_ethersubr.c sys/netgraph ng_ether.c Log: MFC ng_ether support for if_bridge and cleanup of bridge hooks. bridgestp.c; r1.8 if_bridge.c; r1.25, 1.27 if_bridgevar.h; r1.5 if_ethersubr.c; r1.201, 1.202, 1.206 ng_ether.c; r1.52 - 1.54 Approved by: re (scottl) Revision Changes Path 1.3.2.3.2.1 +0 -1 src/sys/net/bridgestp.c 1.11.2.12.2.2 +16 -9 src/sys/net/if_bridge.c 1.4.6.1 +22 -8 src/sys/net/if_bridgevar.h 1.193.2.4.2.2 +4 -26 src/sys/net/if_ethersubr.c 1.49.2.1.2.1 +11 -2 src/sys/netgraph/ng_ether.c From owner-cvs-all@FreeBSD.ORG Sun Oct 23 02:39:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECF2416A41F; Sun, 23 Oct 2005 02:39:33 +0000 (GMT) (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 AA47243D45; Sun, 23 Oct 2005 02:39:33 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N2dX7a060794; Sun, 23 Oct 2005 02:39:33 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N2dXI8060793; Sun, 23 Oct 2005 02:39:33 GMT (envelope-from mnag) Message-Id: <200510230239.j9N2dXI8060793@repoman.freebsd.org> From: Marcus Alves Grando Date: Sun, 23 Oct 2005 02:39: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/files p7zip X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 02:39:34 -0000 mnag 2005-10-23 02:39:33 UTC FreeBSD ports repository Added files: archivers/p7zip/files p7zip Log: Forget to add p7zip file. Notified by: Juergen Lock (maintainer) Revision Changes Path 1.1 +74 -0 ports/archivers/p7zip/files/p7zip (new) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 02:41:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFB7416A41F; Sun, 23 Oct 2005 02:41:18 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B436843D45; Sun, 23 Oct 2005 02:41:18 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N2fIX9060921; Sun, 23 Oct 2005 02:41:18 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N2fIbg060920; Sun, 23 Oct 2005 02:41:18 GMT (envelope-from edwin) Message-Id: <200510230241.j9N2fIbg060920@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 02: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/mail/mailscanner 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, 23 Oct 2005 02:41:19 -0000 edwin 2005-10-23 02:41:18 UTC FreeBSD ports repository Modified files: mail/mailscanner Makefile distinfo pkg-plist Log: [MAINTAINER] mail/MailScanner: update to 4.46.2 Update to 4.46.2 1/10/2005 New in Version 4.46.2-2 ================================= * New Features and Improvements * - Improved phishing net JavaScript detection to make reports more sensible. - Loads of additions to phishing net safe sites list (thanks Denis!). - Improved Install-Clam-SA package so that it sets up your /etc/ld.so.conf file for you, by adding /usr/local/lib if necessary. - Increased the default expansion factor of archives for the clamav scanner. - Removed -j3 from call to Kaspersky in kaspersky-wrapper, on advice from Kaspersky users. * Fixes * - Fixed problem with a few TNEF files and the internal TNEF decoder, caused occasional crashes. - Fixed warnings with numeric tests in a couple of places. - Tested against SpamAssassin 3.1.0, one minor problem found and fixed. - Fixed minor bug in "actions" parser in ZMailer support code. 1/9/2005 New in Version 4.45.4-1 ================================= * New Features and Improvements * - Added MCP patches for SpamAssassin 3.0.4. - Added extra output about nodeps switch with install.sh for RPM. - Added "no bytes" lines to cancel out "use bytes" as it causes problems with multi-lingual subject lines. - Improved phishing net so that when you have multiple MailScanner servers all handling your incoming mail, links caught by the first one won't also be caught by the following ones. This caused the final message to contain multiple warnings about the same link. There is now just 1 warning. - New "Quarantine Modified Body" setting, default is "no". This will cause all modified messages to be quarantined, including messages which have had their HTML disarmed. Also optimised this so it never archives twice. - Added syslog-ing to BitDefender updater. - Improved web bug handler when disarmed by multiple MailScanners. - Added new configuration options to control whether you want to highlight phishing fraud links or modify the subject line or both. New options are :- Highlight Phishing Fraud (= yes by default) Phishing Modify Subject (= "{Fraud?}" by default) Phishing Subject Text (= no by default) - Phishing detection now handles URL's containing %xx characters pointing to web site names with é in them (and characters written like that). * Fixes * - Corrected bayes_file_mode in spam.assassin.prefs.conf on advice from Matt Kettler. - 'MailScanner -v' now prints out the version number of Convert::TNEF. - Group memberships problem on BSD fixed. Spam quarantine membership should now always be correct on BSD systems. - Tweaked ClamAV+SpamAssassin package so it skips the zlib-vcheck version check, it doesn't appear to be important and holds up newbies, which is a Bad Thing(TM). PR: ports/87842 Submitted by: Jan-Peter Koopmann Revision Changes Path 1.41 +1 -1 ports/mail/mailscanner/Makefile 1.28 +2 -2 ports/mail/mailscanner/distinfo 1.25 +10 -1 ports/mail/mailscanner/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Oct 23 02:44:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8781C16A41F; Sun, 23 Oct 2005 02:44:48 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4204143D46; Sun, 23 Oct 2005 02:44:48 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N2imYg061066; Sun, 23 Oct 2005 02:44:48 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N2imsI061065; Sun, 23 Oct 2005 02:44:48 GMT (envelope-from edwin) Message-Id: <200510230244.j9N2imsI061065@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 02:44: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/x11-themes/gtk-industrial-theme/files Makefile-gtk1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 02:44:48 -0000 edwin 2005-10-23 02:44:48 UTC FreeBSD ports repository Modified files: x11-themes/gtk-industrial-theme/files Makefile-gtk1 Log: [maintainer-patch] x11-themes/gtk-industrial-theme - remove hard-coded paths Fix hard-coded paths, as advised by Kris Kennaway. PR: ports/87852 Submitted by: Frank Ruell Revision Changes Path 1.4 +6 -8 ports/x11-themes/gtk-industrial-theme/files/Makefile-gtk1 From owner-cvs-all@FreeBSD.ORG Sun Oct 23 02:50:18 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91A7816A41F; Sun, 23 Oct 2005 02:50:18 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D6BB43D45; Sun, 23 Oct 2005 02:50:18 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N2oIdT061269; Sun, 23 Oct 2005 02:50:18 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N2oIkO061268; Sun, 23 Oct 2005 02:50:18 GMT (envelope-from edwin) Message-Id: <200510230250.j9N2oIkO061268@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 02:50: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/qscintilla 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, 23 Oct 2005 02:50:18 -0000 edwin 2005-10-23 02:50:18 UTC FreeBSD ports repository Modified files: x11-toolkits/qscintilla Makefile Log: [maintainer] x11-toolkits/qscintilla: make X11BASE agnostic *BASE police: This port used /usr/X11R6 somewhere, should be X11BASE PR: ports/87850 Submitted by: Danny Pansters Revision Changes Path 1.12 +2 -2 ports/x11-toolkits/qscintilla/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 03:03:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9352616A41F; Sun, 23 Oct 2005 03:03:44 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3768243D45; Sun, 23 Oct 2005 03:03:44 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N33i4b061889; Sun, 23 Oct 2005 03:03:44 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N33hS6061888; Sun, 23 Oct 2005 03:03:43 GMT (envelope-from edwin) Message-Id: <200510230303.j9N33hS6061888@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 03:03: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/multimedia/qdvdauthor Makefile distinfo ports/multimedia/qdvdauthor/files patch-configure patch-qdvdauthor-qdvdauthor.pro patch-qdvdauthor-qplayer-engines-qxinewidget.h patch-qdvdauthor-qplayer-mediacreator.cpp patch-qdvdauthor-qplayer-qplayer.pro X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 03:03:44 -0000 edwin 2005-10-23 03:03:43 UTC FreeBSD ports repository Modified files: multimedia/qdvdauthor Makefile distinfo Removed files: multimedia/qdvdauthor/files patch-configure patch-qdvdauthor-qdvdauthor.pro patch-qdvdauthor-qplayer-engines-qxinewidget.h patch-qdvdauthor-qplayer-mediacreator.cpp patch-qdvdauthor-qplayer-qplayer.pro Log: [maintainer-update] multimedia/qdvdauthor update to 0.0.10 Upgrade qdvdauthor to 0.0.10. PR: ports/87823 Submitted by: Phil Oleson Revision Changes Path 1.8 +1 -2 ports/multimedia/qdvdauthor/Makefile 1.6 +2 -2 ports/multimedia/qdvdauthor/distinfo 1.4 +0 -36 ports/multimedia/qdvdauthor/files/patch-configure (dead) 1.2 +0 -22 ports/multimedia/qdvdauthor/files/patch-qdvdauthor-qdvdauthor.pro (dead) 1.2 +0 -10 ports/multimedia/qdvdauthor/files/patch-qdvdauthor-qplayer-engines-qxinewidget.h (dead) 1.2 +0 -20 ports/multimedia/qdvdauthor/files/patch-qdvdauthor-qplayer-mediacreator.cpp (dead) 1.2 +0 -19 ports/multimedia/qdvdauthor/files/patch-qdvdauthor-qplayer-qplayer.pro (dead) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 03:07:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FBED16A420; Sun, 23 Oct 2005 03:07:49 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CD6543D46; Sun, 23 Oct 2005 03:07:49 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N37mK1062102; Sun, 23 Oct 2005 03:07:48 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N37mrK062101; Sun, 23 Oct 2005 03:07:48 GMT (envelope-from edwin) Message-Id: <200510230307.j9N37mrK062101@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 03:07: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/polish/kadu Makefile distinfo pkg-plist ports/polish/kadu/files patch-Makefile.in 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: Sun, 23 Oct 2005 03:07:49 -0000 edwin 2005-10-23 03:07:48 UTC FreeBSD ports repository Modified files: polish/kadu Makefile distinfo pkg-plist Removed files: polish/kadu/files patch-Makefile.in patch-configure Log: [MAINTAINER] polish/pl-kadu: update to 0.4.2 - Update to 0.4.2 - Install only one icon for kde & gnome - Portlint PR: ports/87666 Submitted by: Marcin Wisnicki Revision Changes Path 1.15 +4 -9 ports/polish/kadu/Makefile 1.8 +2 -2 ports/polish/kadu/distinfo 1.6 +0 -64 ports/polish/kadu/files/patch-Makefile.in (dead) 1.2 +0 -51 ports/polish/kadu/files/patch-configure (dead) 1.11 +5 -9 ports/polish/kadu/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Oct 23 03:12:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02C3116A41F; Sun, 23 Oct 2005 03:12:44 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C775343D46; Sun, 23 Oct 2005 03:12:43 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N3ChDL062344; Sun, 23 Oct 2005 03:12:43 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N3Chpd062343; Sun, 23 Oct 2005 03:12:43 GMT (envelope-from edwin) Message-Id: <200510230312.j9N3Chpd062343@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 03:12: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 Makefile ports/games/pear-Games_Chess 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, 23 Oct 2005 03:12:44 -0000 edwin 2005-10-23 03:12:43 UTC FreeBSD ports repository Modified files: games Makefile Added files: games/pear-Games_Chess Makefile distinfo pkg-descr Log: new port: games/pear-Games_Chess 0.9.0 new port pear-Games_Chess to validate PGN (portable Game Notation) representing chess games PR: ports/87617 Submitted by: Mark Huizer Revision Changes Path 1.860 +1 -0 ports/games/Makefile 1.1 +31 -0 ports/games/pear-Games_Chess/Makefile (new) 1.1 +2 -0 ports/games/pear-Games_Chess/distinfo (new) 1.1 +7 -0 ports/games/pear-Games_Chess/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 03:12:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD9BA16A441; Sun, 23 Oct 2005 03:12:59 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DB8243D45; Sun, 23 Oct 2005 03:12:59 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N3CxNW062548; Sun, 23 Oct 2005 03:12:59 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N3Cx0W062547; Sun, 23 Oct 2005 03:12:59 GMT (envelope-from edwin) Message-Id: <200510230312.j9N3Cx0W062547@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 03: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: 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, 23 Oct 2005 03:13:00 -0000 edwin 2005-10-23 03:12:59 UTC FreeBSD ports repository Modified files: . modules Log: pear-Games_Chess --> ports/games/pear-Games_Chess Revision Changes Path 1.13454 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Oct 23 03:13:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 290D916A41F; Sun, 23 Oct 2005 03:13:54 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8C1C43D45; Sun, 23 Oct 2005 03:13:53 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N3DrPS062651; Sun, 23 Oct 2005 03:13:53 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N3Dr4O062650; Sun, 23 Oct 2005 03:13:53 GMT (envelope-from jylefort) Message-Id: <200510230313.j9N3Dr4O062650@repoman.freebsd.org> From: Jean-Yves Lefort Date: Sun, 23 Oct 2005 03: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/games/flightgear Makefile pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 03:13:54 -0000 jylefort 2005-10-23 03:13:53 UTC FreeBSD ports repository Modified files: games/flightgear Makefile Added files: games/flightgear pkg-message Log: - Respect ${X11BASE} [1] - Respect ${PTHREAD_CFLAGS} - Add a pkg-message advicing the user to increase the data size limit - Cleanup the Makefile Reported by: pointyhat via kris [1] Revision Changes Path 1.39 +11 -21 ports/games/flightgear/Makefile 1.1 +10 -0 ports/games/flightgear/pkg-message (new) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 03:14:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE32B16A41F; Sun, 23 Oct 2005 03:14:55 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 882A043D45; Sun, 23 Oct 2005 03:14:55 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N3EtEA062721; Sun, 23 Oct 2005 03:14:55 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N3Et9T062720; Sun, 23 Oct 2005 03:14:55 GMT (envelope-from edwin) Message-Id: <200510230314.j9N3Et9T062720@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 03:14: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/www/http-analyze Makefile ports/www/http-analyze/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, 23 Oct 2005 03:14:56 -0000 edwin 2005-10-23 03:14:55 UTC FreeBSD ports repository Modified files: www/http-analyze Makefile www/http-analyze/files patch-Makefile Log: www/http-analyze: Fix patch ac file to resolve hard coded lib path. Fix of a needed LOCALBASE in patch file. PR: ports/87826 Submitted by: Todd Revision Changes Path 1.26 +2 -2 ports/www/http-analyze/Makefile 1.3 +1 -1 ports/www/http-analyze/files/patch-Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 03:34:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D756916A41F; Sun, 23 Oct 2005 03:34:43 +0000 (GMT) (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 94E7243D45; Sun, 23 Oct 2005 03:34:43 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N3YhDG063399; Sun, 23 Oct 2005 03:34:43 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N3Yhhi063398; Sun, 23 Oct 2005 03:34:43 GMT (envelope-from delphij) Message-Id: <200510230334.j9N3Yhhi063398@repoman.freebsd.org> From: Xin LI Date: Sun, 23 Oct 2005 03:34: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 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: Sun, 23 Oct 2005 03:34:44 -0000 delphij 2005-10-23 03:34:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . UPDATING Log: Remove a note that claims that the debugging options are turned on by default, to match the reality that these has been turned off on the 6-STABLE branch since 6.0-BETA6. This is a direct commit against RELENG_6 since it is not applicable for HEAD. Approved by: re (scottl) Revision Changes Path 1.416.2.4 +0 -13 src/UPDATING From owner-cvs-all@FreeBSD.ORG Sun Oct 23 03:36:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB22916A41F; Sun, 23 Oct 2005 03:36:03 +0000 (GMT) (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 8A3EA43D45; Sun, 23 Oct 2005 03:36:03 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N3a3Al063528; Sun, 23 Oct 2005 03:36:03 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N3a3Dk063527; Sun, 23 Oct 2005 03:36:03 GMT (envelope-from delphij) Message-Id: <200510230336.j9N3a3Dk063527@repoman.freebsd.org> From: Xin LI Date: Sun, 23 Oct 2005 03:36:03 +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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 03:36:04 -0000 delphij 2005-10-23 03:36:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) . UPDATING Log: MFR6: Remove the "6.x is slow" note to reflect reality. Approved by: re (scottl) Revision Changes Path 1.416.2.3.2.2 +0 -13 src/UPDATING From owner-cvs-all@FreeBSD.ORG Sun Oct 23 03:36:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7840A16A41F; Sun, 23 Oct 2005 03:36:44 +0000 (GMT) (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 350BC43D45; Sun, 23 Oct 2005 03:36:44 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N3aiGf063556; Sun, 23 Oct 2005 03:36:44 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N3aiEZ063555; Sun, 23 Oct 2005 03:36:44 GMT (envelope-from novel) Message-Id: <200510230336.j9N3aiEZ063555@repoman.freebsd.org> From: Roman Bogorodskiy Date: Sun, 23 Oct 2005 03:36:44 +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, 23 Oct 2005 03:36:44 -0000 novel 2005-10-23 03:36:44 UTC FreeBSD doc repository (ports committer) Modified files: en/projects/c99 index.sgml Log: - Mention posix_memalign() PR - s/freebsd.org/FreeBSD.org/ [1] Noted by: simon [1] Approved by: simon Revision Changes Path 1.99 +5 -5 www/en/projects/c99/index.sgml From owner-cvs-all@FreeBSD.ORG Sun Oct 23 03:59:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDE4A16A420; Sun, 23 Oct 2005 03:59:52 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A16B43D46; Sun, 23 Oct 2005 03:59:52 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N3xq2l064334; Sun, 23 Oct 2005 03:59:52 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N3xqZP064333; Sun, 23 Oct 2005 03:59:52 GMT (envelope-from davidxu) Message-Id: <200510230359.j9N3xqZP064333@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 03: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/sys signal.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, 23 Oct 2005 03:59:53 -0000 davidxu 2005-10-23 03:59:52 UTC FreeBSD src repository Modified files: sys/sys signal.h Log: Add member fields for POSIX timer. Revision Changes Path 1.48 +6 -0 src/sys/sys/signal.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 04:05:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 618F416A420; Sun, 23 Oct 2005 04:05:19 +0000 (GMT) (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 197AA43D46; Sun, 23 Oct 2005 04:05:19 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N45IBH064598; Sun, 23 Oct 2005 04:05:18 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N45Ils064597; Sun, 23 Oct 2005 04:05:18 GMT (envelope-from novel) Message-Id: <200510230405.j9N45Ils064597@repoman.freebsd.org> From: Roman Bogorodskiy Date: Sun, 23 Oct 2005 04:05: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/audio/xmms-wma Makefile distinfo ports/audio/xmms-wma/files patch-ffmpeg-strip-wma::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: Sun, 23 Oct 2005 04:05:19 -0000 novel 2005-10-23 04:05:18 UTC FreeBSD ports repository Modified files: audio/xmms-wma Makefile distinfo audio/xmms-wma/files patch-ffmpeg-strip-wma::asf.c Log: Update to 1.0.4.1. Revision Changes Path 1.18 +2 -2 ports/audio/xmms-wma/Makefile 1.8 +2 -2 ports/audio/xmms-wma/distinfo 1.7 +14 -27 ports/audio/xmms-wma/files/patch-ffmpeg-strip-wma::asf.c From owner-cvs-all@FreeBSD.ORG Sun Oct 23 04:12:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4CD016A420; Sun, 23 Oct 2005 04:12:26 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FB6743D45; Sun, 23 Oct 2005 04:12:26 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N4CQnq064891; Sun, 23 Oct 2005 04:12:26 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N4CQMI064890; Sun, 23 Oct 2005 04:12:26 GMT (envelope-from davidxu) Message-Id: <200510230412.j9N4CQMI064890@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 04:12: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/sys signalvar.h src/sys/kern kern_sig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 04:12:27 -0000 davidxu 2005-10-23 04:12:26 UTC FreeBSD src repository Modified files: sys/sys signalvar.h sys/kern kern_sig.c Log: 1. Make ksiginfo_alloc and ksiginfo_free public. 2. Introduce flags KSI_EXT and KSI_INS. The flag KSI_EXT allows a ksiginfo to be managed by outside code, the KSI_INS indicates sigqueue_add should directly insert passed ksiginfo into queue other than copy it. Revision Changes Path 1.308 +58 -12 src/sys/kern/kern_sig.c 1.71 +12 -1 src/sys/sys/signalvar.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 04:22:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DC4816A420; Sun, 23 Oct 2005 04:22:56 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5663443D45; Sun, 23 Oct 2005 04:22:56 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N4MuhT065397; Sun, 23 Oct 2005 04:22:56 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N4Mu43065396; Sun, 23 Oct 2005 04:22:56 GMT (envelope-from davidxu) Message-Id: <200510230422.j9N4Mu43065396@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 04:22: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/kern kern_exec.c kern_exit.c kern_thread.c kern_time.c syscalls.master src/sys/sys proc.h timers.h timespec.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, 23 Oct 2005 04:22:57 -0000 davidxu 2005-10-23 04:22:56 UTC FreeBSD src repository Modified files: sys/kern kern_exec.c kern_exit.c kern_thread.c kern_time.c syscalls.master sys/sys proc.h timers.h timespec.h Log: Implement POSIX timers. Current only CLOCK_REALTIME and CLOCK_MONOTONIC clock are supported. I have plan to merge XSI timer ITIMER_REAL and other two CPU timers into the new code, current three slots are available for the XSI timers. The SIGEV_THREAD notification type is not supported yet because our sigevent struct lacks of two member fields: sigev_notify_function sigev_notify_attributes I have found the sigevent is used in AIO, so I won't add the two members unless the AIO code is adjusted. Revision Changes Path 1.281 +3 -0 src/sys/kern/kern_exec.c 1.267 +4 -2 src/sys/kern/kern_exit.c 1.219 +1 -0 src/sys/kern/kern_thread.c 1.118 +664 -2 src/sys/kern/kern_time.c 1.202 +9 -5 src/sys/kern/syscalls.master 1.438 +2 -0 src/sys/sys/proc.h 1.6 +75 -2 src/sys/sys/timers.h 1.5 +9 -0 src/sys/sys/timespec.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 04:26:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22A3B16A420; Sun, 23 Oct 2005 04:26:14 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3573F43D6A; Sun, 23 Oct 2005 04:26:10 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N4QAbG065609; Sun, 23 Oct 2005 04:26:10 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N4QADx065608; Sun, 23 Oct 2005 04:26:10 GMT (envelope-from davidxu) Message-Id: <200510230426.j9N4QADx065608@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 04:26: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/sys syscall.h syscall.mk sysproto.h src/sys/kern init_sysent.c syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 04:26:14 -0000 davidxu 2005-10-23 04:26:10 UTC FreeBSD src repository Modified files: sys/sys sysproto.h syscall.mk syscall.h sys/kern init_sysent.c syscalls.c Log: Regen for POSIX timer syscalls. Revision Changes Path 1.200 +6 -6 src/sys/kern/init_sysent.c 1.184 +6 -6 src/sys/kern/syscalls.c 1.181 +6 -1 src/sys/sys/syscall.h 1.136 +6 -1 src/sys/sys/syscall.mk 1.181 +27 -1 src/sys/sys/sysproto.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 05:14:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85F4A16A41F; Sun, 23 Oct 2005 05:14:06 +0000 (GMT) (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 57AF543D45; Sun, 23 Oct 2005 05:14:06 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N5E6D5074539; Sun, 23 Oct 2005 05:14:06 GMT (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N5E6bf074536; Sun, 23 Oct 2005 05:14:06 GMT (envelope-from adamw) Message-Id: <200510230514.j9N5E6bf074536@repoman.freebsd.org> From: Adam Weinberger Date: Sun, 23 Oct 2005 05:14: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: 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: Sun, 23 Oct 2005 05:14:06 -0000 adamw 2005-10-23 05:14:05 UTC FreeBSD doc repository Modified files: en/donations wantlist.sgml Log: *sigh* I give up. My most sincere thanks to all the people who offered to send me a video card. I spent an entire day futzing around with a video card I "borrowed" from my roommate's computer while he was at work, and determined that it's in fact my motherboard that has gone wonky. So, I can't really do any FreeBSD work until I get a new motherboard, but given that I just made a tool of myself by asking for equipment that turned out not to be the source of the problem, I'm not going to ask for one here. My thanks to all who offered me a new video card; I'm glad I didn't take advantage of any of your offers before I found out that the card wasn't the problem after all. *glares at the stupid no-name brand discount motherboard* Revision Changes Path 1.367 +1 -13 www/en/donations/wantlist.sgml From owner-cvs-all@FreeBSD.ORG Sun Oct 23 05:36:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D91716A41F; Sun, 23 Oct 2005 05:36:41 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B26E43D45; Sun, 23 Oct 2005 05:36:41 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N5afkE075359; Sun, 23 Oct 2005 05:36:41 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N5afEA075358; Sun, 23 Oct 2005 05:36:41 GMT (envelope-from davidxu) Message-Id: <200510230536.j9N5afEA075358@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 05:36: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/sys unistd.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, 23 Oct 2005 05:36:41 -0000 davidxu 2005-10-23 05:36:41 UTC FreeBSD src repository Modified files: sys/sys unistd.h Log: Change _POSIX_REALTIME_SIGNALS to 200112L to indicates we support realtime signals. Define missing _POSIX_TIMERS, it will be changed to 200112L once struct sigevent is fixed. Revision Changes Path 1.42 +2 -1 src/sys/sys/unistd.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 06:18:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A602316A41F; Sun, 23 Oct 2005 06:18:25 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6191043D45; Sun, 23 Oct 2005 06:18:25 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N6IPkH076778; Sun, 23 Oct 2005 06:18:25 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N6IPZY076777; Sun, 23 Oct 2005 06:18:25 GMT (envelope-from edwin) Message-Id: <200510230618.j9N6IPZY076777@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 06:18: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/polish/kadu/files patch-kadu_Makefile.in patch-modules_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, 23 Oct 2005 06:18:25 -0000 edwin 2005-10-23 06:18:24 UTC FreeBSD ports repository Added files: polish/kadu/files patch-kadu_Makefile.in patch-modules_Makefile.in Log: Add missing patch files PR: ports/87666 Submitted by: Marcin Wisnicki Revision Changes Path 1.1 +56 -0 ports/polish/kadu/files/patch-kadu_Makefile.in (new) 1.1 +12 -0 ports/polish/kadu/files/patch-modules_Makefile.in (new) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 07:05:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E281E16A41F; Sun, 23 Oct 2005 07:05:45 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A22243D45; Sun, 23 Oct 2005 07:05:45 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N75jdD078346; Sun, 23 Oct 2005 07:05:45 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N75jp9078345; Sun, 23 Oct 2005 07:05:45 GMT (envelope-from edwin) Message-Id: <200510230705.j9N75jp9078345@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 07:05: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/german/steak 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, 23 Oct 2005 07:05:46 -0000 edwin 2005-10-23 07:05:44 UTC FreeBSD ports repository Modified files: german/steak Makefile Log: Port german/steak does not honor X11BASE PR: ports/87862 Submitted by: Heiner Revision Changes Path 1.4 +1 -0 ports/german/steak/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 07:11:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAC0A16A41F; Sun, 23 Oct 2005 07:11:51 +0000 (GMT) (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 BFDA243D60; Sun, 23 Oct 2005 07:11:45 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.3/8.13.3) with ESMTP id j9N7Bffv039612 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 23 Oct 2005 11:11:42 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.3/8.13.1/Submit) id j9N7BfA6039611; Sun, 23 Oct 2005 11:11:41 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Sun, 23 Oct 2005 11:11:41 +0400 From: Gleb Smirnoff To: "Christian S.J. Peron" Message-ID: <20051023071141.GS59364@cell.sick.ru> References: <200510230144.j9N1i86a057613@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200510230144.j9N1i86a057613@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/net if_mib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 07:11:52 -0000 On Sun, Oct 23, 2005 at 01:44:08AM +0000, Christian S.J. Peron wrote: C> csjp 2005-10-23 01:44:08 UTC C> C> FreeBSD src repository C> C> Modified files: C> sys/net if_mib.c C> Log: C> Before we export network interface data through the ifmibdata structure, C> OR the flags bits with the driver managed status flags. This fixes an C> issue where RUNNING flags would not be reported to processes, which C> conflicts with the flags information provided by ifconfig(8). C> C> Revision Changes Path C> 1.16 +1 -1 src/sys/net/if_mib.c Does this fix that bsnmpd reports all interfaces as "operatinally down" after the if_drv_flags was introduced? -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Sun Oct 23 07:41:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60B3F16A41F; Sun, 23 Oct 2005 07:41:57 +0000 (GMT) (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 1ED6143D45; Sun, 23 Oct 2005 07:41:57 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N7fujU079577; Sun, 23 Oct 2005 07:41:57 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N7fuSo079576; Sun, 23 Oct 2005 07:41:56 GMT (envelope-from alc) Message-Id: <200510230741.j9N7fuSo079576@repoman.freebsd.org> From: Alan Cox Date: Sun, 23 Oct 2005 07:41: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/kern uipc_cow.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 07:41:57 -0000 alc 2005-10-23 07:41:56 UTC FreeBSD src repository Modified files: sys/kern uipc_cow.c Log: Previously, nothing prevented the page that was returned by pmap_extract() from being reclaimed before it was wired. Use pmap_extract_and_hold() instead of pmap_extract() and retain the hold on the page until it has been wired. Revision Changes Path 1.26 +3 -4 src/sys/kern/uipc_cow.c From owner-cvs-all@FreeBSD.ORG Sun Oct 23 08:47:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C199816A41F; Sun, 23 Oct 2005 08:47:47 +0000 (GMT) (envelope-from gj@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 804DA43D46; Sun, 23 Oct 2005 08:47:47 +0000 (GMT) (envelope-from gj@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N8ll2v089030; Sun, 23 Oct 2005 08:47:47 GMT (envelope-from gj@repoman.freebsd.org) Received: (from gj@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N8llYe089029; Sun, 23 Oct 2005 08:47:47 GMT (envelope-from gj) Message-Id: <200510230847.j9N8llYe089029@repoman.freebsd.org> From: Gary Jennejohn Date: Sun, 23 Oct 2005 08:47: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/editors/xvile 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, 23 Oct 2005 08:47:47 -0000 gj 2005-10-23 08:47:46 UTC FreeBSD ports repository Modified files: editors/xvile Makefile Log: Make this port respect X11BASE. Revision Changes Path 1.71 +3 -1 ports/editors/xvile/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 09:05:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4091D16A41F; Sun, 23 Oct 2005 09:05:53 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F147943D45; Sun, 23 Oct 2005 09:05:52 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N95q92089657; Sun, 23 Oct 2005 09:05:52 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N95q4K089656; Sun, 23 Oct 2005 09:05:52 GMT (envelope-from glebius) Message-Id: <200510230905.j9N95q4K089656@repoman.freebsd.org> From: Gleb Smirnoff Date: Sun, 23 Oct 2005 09:05: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/ic i8259.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, 23 Oct 2005 09:05:53 -0000 glebius 2005-10-23 09:05:52 UTC FreeBSD src repository Modified files: sys/dev/ic i8259.h Log: Typo. PR: misc/87679 Submitted by: Alan Amesbury Revision Changes Path 1.2 +1 -1 src/sys/dev/ic/i8259.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 09:09:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD87816A420; Sun, 23 Oct 2005 09:09:47 +0000 (GMT) (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 412E743D46; Sun, 23 Oct 2005 09:09:47 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N99lH7089823; Sun, 23 Oct 2005 09:09:47 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N99l2s089822; Sun, 23 Oct 2005 09:09:47 GMT (envelope-from simon) Message-Id: <200510230909.j9N99l2s089822@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 23 Oct 2005 09: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/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: Sun, 23 Oct 2005 09:09:47 -0000 simon 2005-10-23 09:09:47 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: For entry zope28 -- expose RestructuredText functionality to untrusted users: - Do not match zope 2.7.8 which has been fixed. [1] - Fix typo in topic. - Add another reference. Reported by: Gerhard Schmidt [1] Revision Changes Path 1.862 +6 -4 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sun Oct 23 09:27:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E63B16A41F; Sun, 23 Oct 2005 09:27:21 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C13443D46; Sun, 23 Oct 2005 09:27:21 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N9RK6o090477; Sun, 23 Oct 2005 09:27:20 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N9RKIt090476; Sun, 23 Oct 2005 09:27:20 GMT (envelope-from jylefort) Message-Id: <200510230927.j9N9RKIt090476@repoman.freebsd.org> From: Jean-Yves Lefort Date: Sun, 23 Oct 2005 09:27: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/fcron 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, 23 Oct 2005 09:27:21 -0000 jylefort 2005-10-23 09:27:20 UTC FreeBSD ports repository Modified files: sysutils/fcron Makefile Log: Do not install the bitstring(3) manual page, as it ships with the base system. PR: ports/87851 Submitted by: maintainer Revision Changes Path 1.20 +2 -2 ports/sysutils/fcron/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 10:09:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A79716A41F; Sun, 23 Oct 2005 10:09:53 +0000 (GMT) (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 EC2AE43D48; Sun, 23 Oct 2005 10:09:52 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NA9qRx091900; Sun, 23 Oct 2005 10:09:52 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NA9qvK091899; Sun, 23 Oct 2005 10:09:52 GMT (envelope-from pav) Message-Id: <200510231009.j9NA9qvK091899@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 23 Oct 2005 10:09: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/chinese/joe Makefile ports/editors/joe2 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, 23 Oct 2005 10:09:53 -0000 pav 2005-10-23 10:09:52 UTC FreeBSD ports repository Modified files: chinese/joe Makefile editors/joe2 Makefile Log: - Fix LATEST_LINK in chinese/joe port Reported by: kris Revision Changes Path 1.13 +2 -0 ports/chinese/joe/Makefile 1.23 +1 -1 ports/editors/joe2/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 10:11:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EDA016A41F; Sun, 23 Oct 2005 10:11:47 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BC4843D45; Sun, 23 Oct 2005 10:11:47 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NABlDk092031; Sun, 23 Oct 2005 10:11:47 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NABlBw092030; Sun, 23 Oct 2005 10:11:47 GMT (envelope-from davidxu) Message-Id: <200510231011.j9NABlBw092030@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 10:11: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/sys timers.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, 23 Oct 2005 10:11:47 -0000 davidxu 2005-10-23 10:11:46 UTC FreeBSD src repository Modified files: sys/sys timers.h Log: Make kernel structures invisible to userland. Revision Changes Path 1.7 +4 -1 src/sys/sys/timers.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 10:43:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C75D16A41F; Sun, 23 Oct 2005 10:43:16 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09D6C43D45; Sun, 23 Oct 2005 10:43:16 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NAhFGc093094; Sun, 23 Oct 2005 10:43:15 GMT (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NAhFLF093093; Sun, 23 Oct 2005 10:43:15 GMT (envelope-from ps) Message-Id: <200510231043.j9NAhFLF093093@repoman.freebsd.org> From: Paul Saab Date: Sun, 23 Oct 2005 10:43: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/compat/freebsd32 freebsd32_misc.c syscalls.master X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 10:43:16 -0000 ps 2005-10-23 10:43:15 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32_misc.c syscalls.master Log: Implement for FreeBSD 3 32 binaries: sigaction, sigprocmask, sigpending, sigvec, sigblock, sigsetmask, sigsuspend, sigstack Revision Changes Path 1.44 +201 -0 src/sys/compat/freebsd32/freebsd32_misc.c 1.56 +18 -8 src/sys/compat/freebsd32/syscalls.master From owner-cvs-all@FreeBSD.ORG Sun Oct 23 10:43:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D448516A41F; Sun, 23 Oct 2005 10:43:39 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 818E143D45; Sun, 23 Oct 2005 10:43:39 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NAhds9093183; Sun, 23 Oct 2005 10:43:39 GMT (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NAhdp8093182; Sun, 23 Oct 2005 10:43:39 GMT (envelope-from ps) Message-Id: <200510231043.j9NAhdp8093182@repoman.freebsd.org> From: Paul Saab Date: Sun, 23 Oct 2005 10:43: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/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 10:43:40 -0000 ps 2005-10-23 10:43:39 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c Log: regen Revision Changes Path 1.44 +39 -1 src/sys/compat/freebsd32/freebsd32_proto.h 1.44 +9 -7 src/sys/compat/freebsd32/freebsd32_syscall.h 1.35 +9 -9 src/sys/compat/freebsd32/freebsd32_syscalls.c 1.45 +9 -9 src/sys/compat/freebsd32/freebsd32_sysent.c From owner-cvs-all@FreeBSD.ORG Sun Oct 23 10:53:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE93416A420; Sun, 23 Oct 2005 10:53:57 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4261E43D77; Sun, 23 Oct 2005 10:53:45 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NArj6V093574; Sun, 23 Oct 2005 10:53:45 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NArjXf093572; Sun, 23 Oct 2005 10:53:45 GMT (envelope-from nork) Message-Id: <200510231053.j9NArjXf093572@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sun, 23 Oct 2005 10:53: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/liveMedia 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, 23 Oct 2005 10:53:58 -0000 nork 2005-10-23 10:53:43 UTC FreeBSD ports repository Modified files: net/liveMedia Makefile distinfo Log: Update to 2005.10.23. Revision Changes Path 1.207 +1 -1 ports/net/liveMedia/Makefile 1.194 +2 -2 ports/net/liveMedia/distinfo From owner-cvs-all@FreeBSD.ORG Sun Oct 23 11:19:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6080516A41F; Sun, 23 Oct 2005 11:19:57 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F9F943D48; Sun, 23 Oct 2005 11:19:57 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NBJu8A094529; Sun, 23 Oct 2005 11:19:56 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NBJuLF094528; Sun, 23 Oct 2005 11:19:56 GMT (envelope-from stefanf) Message-Id: <200510231119.j9NBJuLF094528@repoman.freebsd.org> From: Stefan Farfeleder Date: Sun, 23 Oct 2005 11:19: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/gnu/usr.bin/grep grep.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: Sun, 23 Oct 2005 11:19:57 -0000 stefanf 2005-10-23 11:19:56 UTC FreeBSD src repository Modified files: gnu/usr.bin/grep grep.1 Log: Document [:blank:]. Revision Changes Path 1.27 +1 -0 src/gnu/usr.bin/grep/grep.1 From owner-cvs-all@FreeBSD.ORG Sun Oct 23 11:20:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6730416A42B; Sun, 23 Oct 2005 11:20:33 +0000 (GMT) (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 172B343D46; Sun, 23 Oct 2005 11:20:33 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NBKWNO094610; Sun, 23 Oct 2005 11:20:32 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NBKWh1094609; Sun, 23 Oct 2005 11:20:32 GMT (envelope-from ehaupt) Message-Id: <200510231120.j9NBKWh1094609@repoman.freebsd.org> From: Emanuel Haupt Date: Sun, 23 Oct 2005 11:20: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/tinyproxy 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, 23 Oct 2005 11:20:34 -0000 ehaupt 2005-10-23 11:20:32 UTC FreeBSD ports repository Modified files: www/tinyproxy Makefile distinfo pkg-plist Log: - Update to 1.7.0 - Use %%DATADIR%% - Fully respect CFLAGS PR: 87639 Submitted by: Jean Milanez Melo Approved by: Brad Davis (maintainer) Revision Changes Path 1.17 +6 -3 ports/www/tinyproxy/Makefile 1.12 +2 -2 ports/www/tinyproxy/distinfo 1.6 +8 -8 ports/www/tinyproxy/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Oct 23 11:36:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28CD516A41F; Sun, 23 Oct 2005 11:36:48 +0000 (GMT) (envelope-from herve.quiroz@esil.univ-mrs.fr) Received: from arabica.esil.univ-mrs.fr (arabica.esil.univ-mrs.fr [139.124.41.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D9DF43D49; Sun, 23 Oct 2005 11:36:45 +0000 (GMT) (envelope-from herve.quiroz@esil.univ-mrs.fr) Received: from arabica.esil.univ-mrs.fr (localhost [127.0.0.1]) by arabica.esil.univ-mrs.fr (8.13.4/8.13.4) with ESMTP id j9NBaiVs026927; Sun, 23 Oct 2005 13:36:44 +0200 (CEST) (envelope-from herve.quiroz@esil.univ-mrs.fr) Received: (from rv@localhost) by arabica.esil.univ-mrs.fr (8.13.4/8.13.4/Submit) id j9NBahTk026926; Sun, 23 Oct 2005 13:36:43 +0200 (CEST) (envelope-from herve.quiroz@esil.univ-mrs.fr) X-Authentication-Warning: arabica.esil.univ-mrs.fr: rv set sender to herve.quiroz@esil.univ-mrs.fr using -f Date: Sun, 23 Oct 2005 13:36:43 +0200 From: Herve Quiroz To: Norikatsu Shigemura Message-ID: <20051023113643.GA26869@arabica.esil.univ-mrs.fr> References: <200510230133.j9N1Xm06056976@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510230133.j9N1Xm06056976@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security Makefile ports/security/jce_policy14 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, 23 Oct 2005 11:36:48 -0000 Hi Norikastsu, You have just made your way into the Java ports monitoring most wanted people page :) http://www.esil.univ-mrs.fr/~hquiroz/freebsd/oldbsdjavamk-maintainers Please, do not add new ports using bsd.java.mk old syntax. -USE_JAVA= 1.4 +USE_JAVA= yes +JAVA_VERSION= 1.4 Herve On Sun, Oct 23, 2005 at 01:33:48AM +0000, Norikatsu Shigemura wrote: > nork 2005-10-23 01:33:48 UTC > > FreeBSD ports repository > > Modified files: > security Makefile > Added files: > security/jce_policy14 Makefile distinfo pkg-descr > Log: > Add java_policy 1.4.2, which provides JCE(Java Cryptography > Extension) Unlimited Strength Jurisdiction Policy Files. > > WWW: http://java.sun.com/products/jce/index-14.html > I was cheated by: ume > > Revision Changes Path > 1.651 +1 -0 ports/security/Makefile > 1.1 +35 -0 ports/security/jce_policy14/Makefile (new) > 1.1 +2 -0 ports/security/jce_policy14/distinfo (new) > 1.1 +17 -0 ports/security/jce_policy14/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 11:36:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C605E16A420; Sun, 23 Oct 2005 11:36:48 +0000 (GMT) (envelope-from cperciva@freebsd.org) Received: from pd4mo1so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35C0543D5C; Sun, 23 Oct 2005 11:36:47 +0000 (GMT) (envelope-from cperciva@freebsd.org) Received: from pd2mr4so.prod.shaw.ca (pd2mr4so-qfe3.prod.shaw.ca [10.0.141.107]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IOT00KTR9LAPT40@l-daemon>; Sun, 23 Oct 2005 05:36:46 -0600 (MDT) Received: from pn2ml5so.prod.shaw.ca ([10.0.121.149]) by pd2mr4so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IOT00DBY9LAQL70@pd2mr4so.prod.shaw.ca>; Sun, 23 Oct 2005 05:36:46 -0600 (MDT) Received: from [192.168.0.60] (S0106006067227a4a.vc.shawcable.net [24.87.209.6]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.18 (built Jul 28 2003)) with ESMTP id <0IOT003369L9EO@l-daemon>; Sun, 23 Oct 2005 05:36:46 -0600 (MDT) Date: Sun, 23 Oct 2005 04:36:45 -0700 From: Colin Percival In-reply-to: <200510231119.j9NBJuLF094528@repoman.freebsd.org> To: Stefan Farfeleder Message-id: <435B75CD.7040903@freebsd.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7bit X-Accept-Language: en-us, en X-Enigmail-Version: 0.92.1.0 References: <200510231119.j9NBJuLF094528@repoman.freebsd.org> User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051001) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/grep grep.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: Sun, 23 Oct 2005 11:36:49 -0000 Stefan Farfeleder wrote: > Modified files: > gnu/usr.bin/grep grep.1 > Log: > Document [:blank:]. The text now claims that [:alnum:], [:alpha:], [:blank:] ... [:space:] ... are self-explanatory names. While I've managed to work out the difference between :blank: and :space: by looking at the source code (:blank: matches [ \t], while :space: matches [ \f\n\r\t\v] and possibly other characters depending upon the locale), I have trouble accepting that this difference is obvious from the names. Could you add some text explaining this difference? Colin Percival From owner-cvs-all@FreeBSD.ORG Sun Oct 23 11:59:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9EB016A41F; Sun, 23 Oct 2005 11:59:22 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69E2B43D45; Sun, 23 Oct 2005 11:59:22 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NBxMVJ095980; Sun, 23 Oct 2005 11:59:22 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NBxMw2095979; Sun, 23 Oct 2005 11:59:22 GMT (envelope-from nork) Message-Id: <200510231159.j9NBxMw2095979@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sun, 23 Oct 2005 11:59: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/security/jce_policy14 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, 23 Oct 2005 11:59:22 -0000 nork 2005-10-23 11:59:22 UTC FreeBSD ports repository Modified files: security/jce_policy14 Makefile Log: New style bsd.java.mk. Submitted by: hq Pointy hat to: myself Revision Changes Path 1.2 +2 -1 ports/security/jce_policy14/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 12:01:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22AD616A422; Sun, 23 Oct 2005 12:01:35 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id D409843D7D; Sun, 23 Oct 2005 12:01:24 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.13.3/8.13.3/NinthNine) with ESMTP id j9NC1DQq078151; Sun, 23 Oct 2005 21:01:14 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sun, 23 Oct 2005 21:01:11 +0900 From: Norikatsu Shigemura To: Herve Quiroz Message-Id: <20051023210111.f0bc1d60.nork@FreeBSD.org> In-Reply-To: <20051023113643.GA26869@arabica.esil.univ-mrs.fr> References: <200510230133.j9N1Xm06056976@repoman.freebsd.org> <20051023113643.GA26869@arabica.esil.univ-mrs.fr> X-Mailer: Sylpheed version 2.1.4 (GTK+ 2.6.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (sakura.ninth-nine.com [219.127.74.121]); Sun, 23 Oct 2005 21:01:14 +0900 (JST) Cc: cvs-ports@FreeBSD.org, nork@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security Makefile ports/security/jce_policy14 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, 23 Oct 2005 12:01:35 -0000 On Sun, 23 Oct 2005 13:36:43 +0200 Herve Quiroz wrote: > You have just made your way into the Java ports monitoring most wanted > people page :) > http://www.esil.univ-mrs.fr/~hquiroz/freebsd/oldbsdjavamk-maintainers > Please, do not add new ports using bsd.java.mk old syntax. > -USE_JAVA= 1.4 > +USE_JAVA= yes > +JAVA_VERSION= 1.4 Thanks for your pointed out! Committed, done. From owner-cvs-all@FreeBSD.ORG Sun Oct 23 12:02:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6776516A41F; Sun, 23 Oct 2005 12:02:28 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from viefep17-int.chello.at (viefep17-int.chello.at [213.46.255.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FA6243D45; Sun, 23 Oct 2005 12:02:26 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from wombat.fafoe.narf.at ([213.47.85.26]) by viefep17-int.chello.at (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20051023120224.KDY9681.viefep17-int.chello.at@wombat.fafoe.narf.at>; Sun, 23 Oct 2005 14:02:24 +0200 Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 0F0302B2; Sun, 23 Oct 2005 14:02:22 +0200 (CEST) Date: Sun, 23 Oct 2005 14:02:22 +0200 From: Stefan Farfeleder To: Colin Percival Message-ID: <20051023120218.GB576@wombat.fafoe.narf.at> References: <200510231119.j9NBJuLF094528@repoman.freebsd.org> <435B75CD.7040903@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="3V7upXqbjpZ4EhLz" Content-Disposition: inline In-Reply-To: <435B75CD.7040903@freebsd.org> User-Agent: Mutt/1.5.11 Cc: cvs-src@FreeBSD.org, Stefan Farfeleder , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/grep grep.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: Sun, 23 Oct 2005 12:02:28 -0000 --3V7upXqbjpZ4EhLz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Oct 23, 2005 at 04:36:45AM -0700, Colin Percival wrote: > Stefan Farfeleder wrote: > > Modified files: > > gnu/usr.bin/grep grep.1 > > Log: > > Document [:blank:]. > > The text now claims that [:alnum:], [:alpha:], [:blank:] ... [:space:] ... > are self-explanatory names. While I've managed to work out the difference > between :blank: and :space: by looking at the source code (:blank: matches > [ \t], while :space: matches [ \f\n\r\t\v] and possibly other characters > depending upon the locale), I have trouble accepting that this difference > is obvious from the names. > > Could you add some text explaining this difference? Well, I think many of those aren't really self-explanatory (eg. [:cntrl:], [:graph:], [:print:]) if you don't know the C library. Here's a patch that refers to ctype(3), though I'm not sure how to do that correctly because grep(1) isn't in mdoc format. Stefan --3V7upXqbjpZ4EhLz Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="grep.1.diff" Index: grep.1 =================================================================== RCS file: /home/ncvs/src/gnu/usr.bin/grep/grep.1,v retrieving revision 1.27 diff -I.svn -u -r1.27 grep.1 --- grep.1 23 Oct 2005 11:19:56 -0000 1.27 +++ grep.1 23 Oct 2005 11:56:11 -0000 @@ -507,7 +507,7 @@ .PP Finally, certain named classes of characters are predefined within bracket expressions, as follows. -Their names are self explanatory, and they are +They are .BR [:alnum:] , .BR [:alpha:] , .BR [:blank:] , @@ -521,13 +521,10 @@ .BR [:upper:] , and .BR [:xdigit:]. -For example, -.B [[:alnum:]] -means -.BR [0\-9A\-Za\-z] , -except the latter form depends upon the C locale and the -\s-1ASCII\s0 character encoding, whereas the former is independent -of locale and character set. +Such a character class matches a character for which the corresponding +ctype(3) function (prefixed with +.BR is ) +returns a non-zero value. (Note that the brackets in these class names are part of the symbolic names, and must be included in addition to the brackets delimiting the bracket list.) Most metacharacters lose their special meaning --3V7upXqbjpZ4EhLz-- From owner-cvs-all@FreeBSD.ORG Sun Oct 23 12:03:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAAD516A41F; Sun, 23 Oct 2005 12:03:48 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FD3743D64; Sun, 23 Oct 2005 12:03:47 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NC3lwL096150; Sun, 23 Oct 2005 12:03:47 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NC3lfL096149; Sun, 23 Oct 2005 12:03:47 GMT (envelope-from nork) Message-Id: <200510231203.j9NC3lfL096149@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sun, 23 Oct 2005 12:03: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/java/java3d 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, 23 Oct 2005 12:03:49 -0000 nork 2005-10-23 12:03:47 UTC FreeBSD ports repository Modified files: java/java3d Makefile Log: New style bsd.java.mk. Pointed out by: hq Revision Changes Path 1.5 +2 -1 ports/java/java3d/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 12:07:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82D9316A41F; Sun, 23 Oct 2005 12:07:53 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 385A243D49; Sun, 23 Oct 2005 12:07:53 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NC7rxx096323; Sun, 23 Oct 2005 12:07:53 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NC7qqH096322; Sun, 23 Oct 2005 12:07:52 GMT (envelope-from nork) Message-Id: <200510231207.j9NC7qqH096322@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sun, 23 Oct 2005 12:07: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/apache-ant 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, 23 Oct 2005 12:07:53 -0000 nork 2005-10-23 12:07:52 UTC FreeBSD ports repository Modified files: devel/apache-ant Makefile Log: New style bsd.java.mk. Pointed out by: hq Revision Changes Path 1.44 +2 -1 ports/devel/apache-ant/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 12:19:09 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62ABA16A41F; Sun, 23 Oct 2005 12:19:09 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B0AF43D45; Sun, 23 Oct 2005 12:19:09 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NCJ8hP096772; Sun, 23 Oct 2005 12:19:08 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NCJ8tT096771; Sun, 23 Oct 2005 12:19:08 GMT (envelope-from davidxu) Message-Id: <200510231219.j9NCJ8tT096771@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 12:19: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/kern kern_exec.c kern_exit.c kern_thread.c kern_time.c src/sys/sys proc.h timers.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, 23 Oct 2005 12:19:09 -0000 davidxu 2005-10-23 12:19:08 UTC FreeBSD src repository Modified files: sys/kern kern_exec.c kern_exit.c kern_thread.c kern_time.c sys/sys proc.h timers.h Log: Make p_itimers as a pointer, so file sys/proc.h does not need to include sys/timers.h. Revision Changes Path 1.282 +1 -0 src/sys/kern/kern_exec.c 1.268 +1 -0 src/sys/kern/kern_exit.c 1.220 +0 -1 src/sys/kern/kern_thread.c 1.119 +25 -28 src/sys/kern/kern_time.c 1.439 +1 -2 src/sys/sys/proc.h 1.8 +2 -2 src/sys/sys/timers.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 12:24:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD0FF16A41F; Sun, 23 Oct 2005 12:24:24 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C0A943D46; Sun, 23 Oct 2005 12:24:24 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NCOOxB097028; Sun, 23 Oct 2005 12:24:24 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NCOO3A097027; Sun, 23 Oct 2005 12:24:24 GMT (envelope-from nork) Message-Id: <200510231224.j9NCOO3A097027@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sun, 23 Oct 2005 12:24: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/jude-community 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, 23 Oct 2005 12:24:24 -0000 nork 2005-10-23 12:24:24 UTC FreeBSD ports repository Modified files: devel/jude-community Makefile Log: New style bsd.java.mk. Pointed out by: hq Approved by: Yoshihiko Sarumaru (maintainer) Revision Changes Path 1.8 +2 -1 ports/devel/jude-community/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 12:38:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D984516A41F; Sun, 23 Oct 2005 12:38:56 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9831043D46; Sun, 23 Oct 2005 12:38:56 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NCcuuU097509; Sun, 23 Oct 2005 12:38:56 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NCcuIu097508; Sun, 23 Oct 2005 12:38:56 GMT (envelope-from edwin) Message-Id: <200510231238.j9NCcuIu097508@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 23 Oct 2005 12:38: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/audio/amrcoder 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, 23 Oct 2005 12:38:57 -0000 edwin 2005-10-23 12:38:56 UTC FreeBSD ports repository Modified files: audio/amrcoder Makefile Log: Restore mastersite, it's back! Revision Changes Path 1.6 +1 -4 ports/audio/amrcoder/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 12:48:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E95016A41F; Sun, 23 Oct 2005 12:48:57 +0000 (GMT) (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 2E5C543D45; Sun, 23 Oct 2005 12:48:57 +0000 (GMT) (envelope-from clsung@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NCmvE4005168; Sun, 23 Oct 2005 12:48:57 GMT (envelope-from clsung@repoman.freebsd.org) Received: (from clsung@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NCmvD0005167; Sun, 23 Oct 2005 12:48:57 GMT (envelope-from clsung) Message-Id: <200510231248.j9NCmvD0005167@repoman.freebsd.org> From: Cheng-Lung Sung Date: Sun, 23 Oct 2005 12:48: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/snownews 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, 23 Oct 2005 12:48:57 -0000 clsung 2005-10-23 12:48:57 UTC FreeBSD ports repository Modified files: www/snownews Makefile Log: - XML/LibXML.pm placed under SITE_PERL/PERL_ARCH Noted by: kris(mail) Revision Changes Path 1.22 +1 -1 ports/www/snownews/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 13:20:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AD7116A41F; Sun, 23 Oct 2005 13:20:49 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 196D743D46; Sun, 23 Oct 2005 13:20:49 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NDKm5x006301; Sun, 23 Oct 2005 13:20:48 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NDKmPN006300; Sun, 23 Oct 2005 13:20:48 GMT (envelope-from nork) Message-Id: <200510231320.j9NDKmPN006300@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sun, 23 Oct 2005 13:20: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/databases/erserver 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, 23 Oct 2005 13:20:49 -0000 nork 2005-10-23 13:20:48 UTC FreeBSD ports repository Modified files: databases/erserver Makefile Log: New style bsd.java.mk. Pointed out by: hq Requested by: kuriyama Revision Changes Path 1.7 +2 -1 ports/databases/erserver/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 13:46:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E47F216A41F; Sun, 23 Oct 2005 13:46:28 +0000 (GMT) (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 A2CA243D46; Sun, 23 Oct 2005 13:46:28 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NDkSc8007666; Sun, 23 Oct 2005 13:46:28 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NDkSe6007665; Sun, 23 Oct 2005 13:46:28 GMT (envelope-from ehaupt) Message-Id: <200510231346.j9NDkSe6007665@repoman.freebsd.org> From: Emanuel Haupt Date: Sun, 23 Oct 2005 13:46: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/security/pidentd 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, 23 Oct 2005 13:46:29 -0000 ehaupt 2005-10-23 13:46:28 UTC FreeBSD ports repository Modified files: security/pidentd Makefile distinfo Log: - Update to 3.0.19 - Provide aditional master/patch site [1] PR: 87866 Reported by: pointyhat via kris [1] Submitted by: Johan van Selst Revision Changes Path 1.53 +7 -4 ports/security/pidentd/Makefile 1.19 +4 -4 ports/security/pidentd/distinfo From owner-cvs-all@FreeBSD.ORG Sun Oct 23 14:06:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1961916A41F; Sun, 23 Oct 2005 14:06:54 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA32243D45; Sun, 23 Oct 2005 14:06:53 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NE6rJR008374; Sun, 23 Oct 2005 14:06:53 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NE6r8L008373; Sun, 23 Oct 2005 14:06:53 GMT (envelope-from yar) Message-Id: <200510231406.j9NE6r8L008373@repoman.freebsd.org> From: Yar Tikhiy Date: Sun, 23 Oct 2005 14:06: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/rc.d ike named ppp-user sshd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 14:06:54 -0000 yar 2005-10-23 14:06:53 UTC FreeBSD src repository Modified files: etc/rc.d ike named ppp-user sshd Log: Don't be lazy, set the "command" variable even if /etc/defaults/rc.conf will provide foo_program, too. By specifying "command" we explicitly say that we're going to rely on rc.subr(8) default methods, and rc.subr(8) will take advantage of this soon. The majority of our rc.d scripts already set "command" if appropriate, so fix just the non-compliant handful. Revision Changes Path 1.5 +1 -0 src/etc/rc.d/ike 1.23 +1 -0 src/etc/rc.d/named 1.8 +1 -0 src/etc/rc.d/ppp-user 1.9 +1 -0 src/etc/rc.d/sshd From owner-cvs-all@FreeBSD.ORG Sun Oct 23 14:11:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB1F616A41F; Sun, 23 Oct 2005 14:11:42 +0000 (GMT) (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 7B79443D48; Sun, 23 Oct 2005 14:11:42 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NEBgCS008574; Sun, 23 Oct 2005 14:11:42 GMT (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NEBgVO008573; Sun, 23 Oct 2005 14:11:42 GMT (envelope-from ale) Message-Id: <200510231411.j9NEBgVO008573@repoman.freebsd.org> From: Alex Dupre Date: Sun, 23 Oct 2005 14:11: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/databases/mysql41-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: Sun, 23 Oct 2005 14:11:42 -0000 ale 2005-10-23 14:11:42 UTC FreeBSD ports repository Modified files: databases/mysql41-server Makefile distinfo Log: Update to 4.1.15 release. PR: ports/87749 Submitted by: mnag Revision Changes Path 1.211 +1 -1 ports/databases/mysql41-server/Makefile 1.87 +2 -2 ports/databases/mysql41-server/distinfo From owner-cvs-all@FreeBSD.ORG Sun Oct 23 14:14:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8650D16A41F; Sun, 23 Oct 2005 14:14:04 +0000 (GMT) (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 329DE43D60; Sun, 23 Oct 2005 14:14:03 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NEE3Nc008719; Sun, 23 Oct 2005 14:14:03 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NEE3gQ008718; Sun, 23 Oct 2005 14:14:03 GMT (envelope-from ehaupt) Message-Id: <200510231414.j9NEE3gQ008718@repoman.freebsd.org> From: Emanuel Haupt Date: Sun, 23 Oct 2005 14:14: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/xshttpd Makefile distinfo ports/www/xshttpd/files patch-src_confuser.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, 23 Oct 2005 14:14:04 -0000 ehaupt 2005-10-23 14:14:02 UTC FreeBSD ports repository Modified files: www/xshttpd Makefile distinfo Removed files: www/xshttpd/files patch-src_confuser.h Log: - Update to 3.3b34 - Nuke files/patch-src_confuser.h PR: 87868 Submitted by: Johan van Selst Revision Changes Path 1.5 +2 -4 ports/www/xshttpd/Makefile 1.5 +2 -2 ports/www/xshttpd/distinfo 1.2 +0 -11 ports/www/xshttpd/files/patch-src_confuser.h (dead) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 14:33:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08A6816A41F; Sun, 23 Oct 2005 14:33:57 +0000 (GMT) (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 BAB9C43D45; Sun, 23 Oct 2005 14:33:56 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NEXuFQ009422; Sun, 23 Oct 2005 14:33:56 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NEXuCB009421; Sun, 23 Oct 2005 14:33:56 GMT (envelope-from rwatson) Message-Id: <200510231433.j9NEXuCB009421@repoman.freebsd.org> From: Robert Watson Date: Sun, 23 Oct 2005 14:33: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/releases/6.0R todo.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, 23 Oct 2005 14:33:57 -0000 rwatson 2005-10-23 14:33:56 UTC FreeBSD doc repository Modified files: en/releases/6.0R todo.sgml Log: Modify if_em show-stopper to testing state as glebius has committed patches to various branches believed to address the problem. Will move this to the testing category once it's shipped in RC2. Revision Changes Path 1.59 +5 -4 www/en/releases/6.0R/todo.sgml From owner-cvs-all@FreeBSD.ORG Sun Oct 23 15:27:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89AB116A41F; Sun, 23 Oct 2005 15:27:51 +0000 (GMT) (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 BF11143D4C; Sun, 23 Oct 2005 15:27:50 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NFRoWX012494; Sun, 23 Oct 2005 15:27:50 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NFRodj012493; Sun, 23 Oct 2005 15:27:50 GMT (envelope-from ceri) Message-Id: <200510231527.j9NFRodj012493@repoman.freebsd.org> From: Ceri Davies Date: Sun, 23 Oct 2005 15:27:50 +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/problem-reports 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, 23 Oct 2005 15:27:51 -0000 ceri 2005-10-23 15:27:50 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/problem-reports article.sgml Log: s/neccesarily/necessarily/ Revision Changes Path 1.47 +1 -1 doc/en_US.ISO8859-1/articles/problem-reports/article.sgml From owner-cvs-all@FreeBSD.ORG Sun Oct 23 15:29:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE5B816A41F; Sun, 23 Oct 2005 15:29:34 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90D8C43D45; Sun, 23 Oct 2005 15:29:34 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from freefall.freebsd.org (csjp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9NFTYDw068555; Sun, 23 Oct 2005 15:29:34 GMT (envelope-from csjp@freefall.freebsd.org) Received: (from csjp@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j9NFTYsG068554; Sun, 23 Oct 2005 15:29:34 GMT (envelope-from csjp) Date: Sun, 23 Oct 2005 15:29:34 +0000 From: "Christian S.J. Peron" To: Gleb Smirnoff Message-ID: <20051023152934.GA88701@freefall.freebsd.org> References: <200510230144.j9N1i86a057613@repoman.freebsd.org> <20051023071141.GS59364@cell.sick.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051023071141.GS59364@cell.sick.ru> 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/net if_mib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 15:29:35 -0000 On Sun, Oct 23, 2005 at 11:11:41AM +0400, Gleb Smirnoff wrote: > > Does this fix that bsnmpd reports all interfaces as "operatinally down" > after the if_drv_flags was introduced? > Nope, but this should: http://people.freebsd.org/~csjp/mibII_interfaces.c.1130030000.diff I am just waiting for harti to give me the green light. -- Christian S.J. Peron csjp@FreeBSD.ORG FreeBSD Committer FreeBSD Security Team From owner-cvs-all@FreeBSD.ORG Sun Oct 23 15:30:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A30616A432; Sun, 23 Oct 2005 15:30:14 +0000 (GMT) (envelope-from rees@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FF2143D45; Sun, 23 Oct 2005 15:30:14 +0000 (GMT) (envelope-from rees@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NFUDPN012648; Sun, 23 Oct 2005 15:30:13 GMT (envelope-from rees@repoman.freebsd.org) Received: (from rees@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NFUDrO012647; Sun, 23 Oct 2005 15:30:13 GMT (envelope-from rees) Message-Id: <200510231530.j9NFUDrO012647@repoman.freebsd.org> From: Jim Rees Date: Sun, 23 Oct 2005 15:30: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: doc/share/pgpkeys rees.key X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 15:30:14 -0000 rees 2005-10-23 15:30:13 UTC FreeBSD doc repository (src committer) Modified files: share/pgpkeys rees.key Log: Update key with self-signature that gpg can understand. Note the key is the same, only the signature has changed. Old key: pgp 2.6.2; new key: GnuPG v1.0.7 (OpenBSD) Revision Changes Path 1.2 +20 -18 doc/share/pgpkeys/rees.key From owner-cvs-all@FreeBSD.ORG Sun Oct 23 15:44:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9CD116A41F; Sun, 23 Oct 2005 15:44:47 +0000 (GMT) (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 6AF8243D45; Sun, 23 Oct 2005 15:44:47 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NFilbG013388; Sun, 23 Oct 2005 15:44:47 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NFilgp013387; Sun, 23 Oct 2005 15:44:47 GMT (envelope-from ceri) Message-Id: <200510231544.j9NFilgp013387@repoman.freebsd.org> From: Ceri Davies Date: Sun, 23 Oct 2005 15:44:47 +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 send-pr.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, 23 Oct 2005 15:44:48 -0000 ceri 2005-10-23 15:44:47 UTC FreeBSD doc repository Modified files: en send-pr.sgml Log: Make the textareas 80 columns wide to allow most terminal output to be pasted without wrapping. PR: www/87865 Submitted by: Andreas Klemm Revision Changes Path 1.46 +5 -5 www/en/send-pr.sgml From owner-cvs-all@FreeBSD.ORG Sun Oct 23 15:55:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB7FA16A41F; Sun, 23 Oct 2005 15:55:35 +0000 (GMT) (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 781C743D55; Sun, 23 Oct 2005 15:55:35 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NFtZWC013773; Sun, 23 Oct 2005 15:55:35 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NFtZs9013772; Sun, 23 Oct 2005 15:55:35 GMT (envelope-from ceri) Message-Id: <200510231555.j9NFtZs9013772@repoman.freebsd.org> From: Ceri Davies Date: Sun, 23 Oct 2005 15:55:35 +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/layout/css global.css X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 15:55:35 -0000 ceri 2005-10-23 15:55:35 UTC FreeBSD doc repository Modified files: en/layout/css global.css Log: Textareas within forms should not have their content centred. PR: www/87865 Submitted by: Andreas Klemm Revision Changes Path 1.4 +4 -0 www/en/layout/css/global.css From owner-cvs-all@FreeBSD.ORG Sun Oct 23 16:01:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4F0B16A41F; Sun, 23 Oct 2005 16:01:55 +0000 (GMT) (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 64CFB43D45; Sun, 23 Oct 2005 16:01:55 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NG1tmt014029; Sun, 23 Oct 2005 16:01:55 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NG1tL7014028; Sun, 23 Oct 2005 16:01:55 GMT (envelope-from ceri) Message-Id: <200510231601.j9NG1tL7014028@repoman.freebsd.org> From: Ceri Davies Date: Sun, 23 Oct 2005 16:01: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 send-pr.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, 23 Oct 2005 16:01:55 -0000 ceri 2005-10-23 16:01:55 UTC FreeBSD doc repository Modified files: en send-pr.sgml Log: Make the textareas bigger, in order to allow easier editing and encourage longer reports. PR: www/87865 Submitted by: Andreas Klemm Revision Changes Path 1.47 +4 -4 www/en/send-pr.sgml From owner-cvs-all@FreeBSD.ORG Sun Oct 23 16:15:05 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A23BB16A41F; Sun, 23 Oct 2005 16:15:05 +0000 (GMT) (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 43AD543D69; Sun, 23 Oct 2005 16:15:03 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NGF3QL014543; Sun, 23 Oct 2005 16:15:03 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NGF2ND014542; Sun, 23 Oct 2005 16:15:03 GMT (envelope-from csjp) Message-Id: <200510231615.j9NGF2ND014542@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Sun, 23 Oct 2005 16:15: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/sbin/ipfw ipfw.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: Sun, 23 Oct 2005 16:15:05 -0000 csjp 2005-10-23 16:15:02 UTC FreeBSD src repository Modified files: sbin/ipfw ipfw.8 Log: Restore the documentation about uid, gid or prison based rules requiring that debug.mpsafenet be set to 0. It is still possible for dead locks to occur while these filtering options are used due to the layering violation inherent in their implementation. Discussed: -current, rwatson, glebius Revision Changes Path 1.178 +10 -0 src/sbin/ipfw/ipfw.8 From owner-cvs-all@FreeBSD.ORG Sun Oct 23 16:50:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC8C316A41F; Sun, 23 Oct 2005 16:50:48 +0000 (GMT) (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 35D0343D77; Sun, 23 Oct 2005 16:50:43 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NGohX1023013; Sun, 23 Oct 2005 16:50:43 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NGohBe023012; Sun, 23 Oct 2005 16:50:43 GMT (envelope-from simon) Message-Id: <200510231650.j9NGohBe023012@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 23 Oct 2005 16:50: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/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: Sun, 23 Oct 2005 16:50:48 -0000 simon 2005-10-23 16:50:43 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: For entry libgadu -- multiple vulnerabilities: - Mark latest centericq port version as fixed. - Fix cite in description. Revision Changes Path 1.863 +4 -3 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sun Oct 23 16:52:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4791B16A41F; Sun, 23 Oct 2005 16:52:14 +0000 (GMT) (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 0726F43D45; Sun, 23 Oct 2005 16:52:14 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NGqDMA023068; Sun, 23 Oct 2005 16:52:13 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NGqD1D023067; Sun, 23 Oct 2005 16:52:13 GMT (envelope-from pjd) Message-Id: <200510231652.j9NGqD1D023067@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 23 Oct 2005 16:52: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/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: Sun, 23 Oct 2005 16:52:14 -0000 pjd 2005-10-23 16:52:13 UTC FreeBSD src repository Modified files: sys/sys mount.h Log: MNT_JAILDEVFS is not used anymore. Mark it as spare. OK'ed by: phk Revision Changes Path 1.199 +6 -3 src/sys/sys/mount.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 17:10:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D65B16A41F; Sun, 23 Oct 2005 17:10:49 +0000 (GMT) (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 C16C743D46; Sun, 23 Oct 2005 17:10:48 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NHAmVM023768; Sun, 23 Oct 2005 17:10:48 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NHAmMQ023767; Sun, 23 Oct 2005 17:10:48 GMT (envelope-from simon) Message-Id: <200510231710.j9NHAmMQ023767@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 23 Oct 2005 17:10: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/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: Sun, 23 Oct 2005 17:10:49 -0000 simon 2005-10-23 17:10:48 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Also mark xli as vulnerable to xloadimage -- buffer overflows in NIFF image title handling, and latest port version as fixed. Reported by: jkoshy Revision Changes Path 1.864 +6 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Sun Oct 23 17:22:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7928616A41F; Sun, 23 Oct 2005 17:22:52 +0000 (GMT) (envelope-from wosch@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C9A043D5D; Sun, 23 Oct 2005 17:22:51 +0000 (GMT) (envelope-from wosch@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NHMpMA024199; Sun, 23 Oct 2005 17:22:51 GMT (envelope-from wosch@repoman.freebsd.org) Received: (from wosch@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NHMpt1024198; Sun, 23 Oct 2005 17:22:51 GMT (envelope-from wosch) Message-Id: <200510231722.j9NHMpt1024198@repoman.freebsd.org> From: Wolfram Schneider Date: Sun, 23 Oct 2005 17:22:51 +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 search.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, 23 Oct 2005 17:22:52 -0000 wosch 2005-10-23 17:22:51 UTC FreeBSD doc repository Modified files: en/cgi search.cgi Log: support search in non-english pages, e.g. database 'www-de' for german pages. Revision Changes Path 1.25 +2 -2 www/en/cgi/search.cgi From owner-cvs-all@FreeBSD.ORG Sun Oct 23 17:35:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1CCA16A41F; Sun, 23 Oct 2005 17:35:58 +0000 (GMT) (envelope-from wosch@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 813C643D45; Sun, 23 Oct 2005 17:35:58 +0000 (GMT) (envelope-from wosch@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NHZwZ7024672; Sun, 23 Oct 2005 17:35:58 GMT (envelope-from wosch@repoman.freebsd.org) Received: (from wosch@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NHZwt7024671; Sun, 23 Oct 2005 17:35:58 GMT (envelope-from wosch) Message-Id: <200510231735.j9NHZwt7024671@repoman.freebsd.org> From: Wolfram Schneider Date: Sun, 23 Oct 2005 17:35: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/search search.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, 23 Oct 2005 17:35:59 -0000 wosch 2005-10-23 17:35:58 UTC FreeBSD doc repository Modified files: en/search search.sgml Log: add search options for non-english web pages Revision Changes Path 1.100 +8 -2 www/en/search/search.sgml From owner-cvs-all@FreeBSD.ORG Sun Oct 23 17:40:09 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6155816A41F; Sun, 23 Oct 2005 17:40:09 +0000 (GMT) (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 01B8343D49; Sun, 23 Oct 2005 17:40:09 +0000 (GMT) (envelope-from jhay@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NHe8kn024822; Sun, 23 Oct 2005 17:40:08 GMT (envelope-from jhay@repoman.freebsd.org) Received: (from jhay@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NHe8RP024821; Sun, 23 Oct 2005 17:40:08 GMT (envelope-from jhay) Message-Id: <200510231740.j9NHe8RP024821@repoman.freebsd.org> From: John Hay Date: Sun, 23 Oct 2005 17:40: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/lang/nqc 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, 23 Oct 2005 17:40:09 -0000 jhay 2005-10-23 17:40:08 UTC FreeBSD ports repository Modified files: lang/nqc Makefile distinfo Log: Make nqc compile on 4.x by adding USE_GCC=3.4+ Submitted by: vs Update to nqc-3.1.r4. Revision Changes Path 1.21 +2 -2 ports/lang/nqc/Makefile 1.15 +2 -2 ports/lang/nqc/distinfo From owner-cvs-all@FreeBSD.ORG Sun Oct 23 18:22:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF88316A41F; Sun, 23 Oct 2005 18:22:16 +0000 (GMT) (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 9DC2543D48; Sun, 23 Oct 2005 18:22:16 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NIMGHT026774; Sun, 23 Oct 2005 18:22:16 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NIMGKP026773; Sun, 23 Oct 2005 18:22:16 GMT (envelope-from imp) Message-Id: <200510231822.j9NIMGKP026773@repoman.freebsd.org> From: Warner Losh Date: Sun, 23 Oct 2005 18:22: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/dev/pccard pccardvarp.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, 23 Oct 2005 18:22:17 -0000 imp 2005-10-23 18:22:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/pccard pccardvarp.h Log: MFC: 1.2. Mempage size needs to be 1k rather than 4k. Prior versions of FreeBSD used this value and it was recently increased to 4k. This broke the two 16-bit card at boot scenario. Revert it back to 1k. Approved by: re (scottl) Revision Changes Path 1.1.2.2 +1 -1 src/sys/dev/pccard/pccardvarp.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 18:23:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB0F216A41F; Sun, 23 Oct 2005 18:23:27 +0000 (GMT) (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 8A00943D48; Sun, 23 Oct 2005 18:23:27 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NINR0r026841; Sun, 23 Oct 2005 18:23:27 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NINRca026840; Sun, 23 Oct 2005 18:23:27 GMT (envelope-from imp) Message-Id: <200510231823.j9NINRca026840@repoman.freebsd.org> From: Warner Losh Date: Sun, 23 Oct 2005 18:23:27 +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/sys/dev/pccard pccardvarp.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, 23 Oct 2005 18:23:28 -0000 imp 2005-10-23 18:23:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/pccard pccardvarp.h Log: MF RELENG_6: (1.2) reduce the memory page size to 1k. Revision Changes Path 1.1.2.1.2.1 +1 -1 src/sys/dev/pccard/pccardvarp.h From owner-cvs-all@FreeBSD.ORG Sun Oct 23 19:31:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BC6416A41F; Sun, 23 Oct 2005 19:31:19 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 391B743D46; Sun, 23 Oct 2005 19:31:19 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NJVJk5029118; Sun, 23 Oct 2005 19:31:19 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NJVJnH029117; Sun, 23 Oct 2005 19:31:19 GMT (envelope-from njl) Message-Id: <200510231931.j9NJVJnH029117@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 19:31: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/acpica acpi_battery.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 19:31:19 -0000 njl 2005-10-23 19:31:18 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_battery.c Log: Add prototype to be consistent. Revision Changes Path 1.21 +1 -0 src/sys/dev/acpica/acpi_battery.c From owner-cvs-all@FreeBSD.ORG Sun Oct 23 19:38:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DEA116A41F; Sun, 23 Oct 2005 19:38:01 +0000 (GMT) (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 C56AB43D64; Sun, 23 Oct 2005 19:37:55 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NJbtpK029352; Sun, 23 Oct 2005 19:37:55 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NJbtV5029351; Sun, 23 Oct 2005 19:37:55 GMT (envelope-from maxim) Message-Id: <200510231937.j9NJbtV5029351@repoman.freebsd.org> From: Maxim Konovalov Date: Sun, 23 Oct 2005 19:37: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/share/examples/etc make.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: Sun, 23 Oct 2005 19:38:01 -0000 maxim 2005-10-23 19:37:55 UTC FreeBSD src repository Modified files: share/examples/etc make.conf Log: s/RADUIS/RADIUS/ Submitted by: jisakiel@yahoo.es MFC after: 1 week Revision Changes Path 1.269 +1 -1 src/share/examples/etc/make.conf From owner-cvs-all@FreeBSD.ORG Sun Oct 23 19:38:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC0E616A420; Sun, 23 Oct 2005 19:38:07 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04A8043D48; Sun, 23 Oct 2005 19:38:06 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NJc6pP029390; Sun, 23 Oct 2005 19:38:06 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NJc64p029389; Sun, 23 Oct 2005 19:38:06 GMT (envelope-from njl) Message-Id: <200510231938.j9NJc64p029389@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 19:38: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/sys/i386/cpufreq p4tcc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 19:38:07 -0000 njl 2005-10-23 19:38:06 UTC FreeBSD src repository Modified files: sys/i386/cpufreq p4tcc.c Log: Like acpi_throttle, set frequency to 100% in attach. Some BIOSen may set this value lower, making the system quite slow after booting. Revision Changes Path 1.12 +8 -0 src/sys/i386/cpufreq/p4tcc.c From owner-cvs-all@FreeBSD.ORG Sun Oct 23 19:40:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B872216A41F; Sun, 23 Oct 2005 19:40:43 +0000 (GMT) (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 7592143D45; Sun, 23 Oct 2005 19:40:43 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NJehkb029560; Sun, 23 Oct 2005 19:40:43 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NJehfG029559; Sun, 23 Oct 2005 19:40:43 GMT (envelope-from ahze) Message-Id: <200510231940.j9NJehfG029559@repoman.freebsd.org> From: Michael Johnson Date: Sun, 23 Oct 2005 19:40: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/multimedia/mpgtx Makefile ports/multimedia/mpgtx/files patch-chunkTab.cxx X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 19:40:43 -0000 ahze 2005-10-23 19:40:43 UTC FreeBSD ports repository Modified files: multimedia/mpgtx Makefile Added files: multimedia/mpgtx/files patch-chunkTab.cxx Log: - Fix mpeg joining [1] and splitting Obtained from: https://sourceforge.net/tracker/index.php?func=detail&aid=1309392&group_id=22678&atid=376136 [1] Submitted by: freebsd@chillt.de [1] PR: ports/87878 [1] Revision Changes Path 1.16 +1 -0 ports/multimedia/mpgtx/Makefile 1.1 +21 -0 ports/multimedia/mpgtx/files/patch-chunkTab.cxx (new) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 20:35:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 250B216A41F; Sun, 23 Oct 2005 20:35:03 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADE6A43D49; Sun, 23 Oct 2005 20:35:02 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from freefall.freebsd.org (csjp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9NKZ2Aw022714; Sun, 23 Oct 2005 20:35:02 GMT (envelope-from csjp@freefall.freebsd.org) Received: (from csjp@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j9NKZ2f4022713; Sun, 23 Oct 2005 20:35:02 GMT (envelope-from csjp) Date: Sun, 23 Oct 2005 20:35:02 +0000 From: "Christian S.J. Peron" To: Gleb Smirnoff Message-ID: <20051023203502.GA21142@freefall.freebsd.org> References: <200510230144.j9N1i86a057613@repoman.freebsd.org> <20051023071141.GS59364@cell.sick.ru> <20051023152934.GA88701@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051023152934.GA88701@freefall.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/net if_mib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 20:35:03 -0000 On Sun, Oct 23, 2005 at 03:29:34PM +0000, Christian S.J. Peron wrote: > On Sun, Oct 23, 2005 at 11:11:41AM +0400, Gleb Smirnoff wrote: > > > > Does this fix that bsnmpd reports all interfaces as "operatinally down" > > after the if_drv_flags was introduced? > > > > Nope, but this should: > > http://people.freebsd.org/~csjp/mibII_interfaces.c.1130030000.diff > > I am just waiting for harti to give me the green light. > Sorry, I probably should have clarified: (1) Yes, this does fix the issue of interfaces being reported as operationally down by bsnmpd. As the RUNNING mask was not being set by the kernel before it was returned to userspace. (2) However, RUNNING flags are not synonomous with the devices being up, so the patch listed above changes bsnmpd to check link status instead of checking the RUNNING mask. -- Christian S.J. Peron csjp@FreeBSD.ORG FreeBSD Committer FreeBSD Security Team From owner-cvs-all@FreeBSD.ORG Sun Oct 23 20:51:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1065416A41F; Sun, 23 Oct 2005 20:51:23 +0000 (GMT) (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 92CCF43D49; Sun, 23 Oct 2005 20:51:22 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NKpMJN039070; Sun, 23 Oct 2005 20:51:22 GMT (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NKpM1U039069; Sun, 23 Oct 2005 20:51:22 GMT (envelope-from anholt) Message-Id: <200510232051.j9NKpM1U039069@repoman.freebsd.org> From: Eric Anholt Date: Sun, 23 Oct 2005 20: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/science/paraview 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, 23 Oct 2005 20:51:23 -0000 anholt 2005-10-23 20:51:22 UTC FreeBSD ports repository Modified files: science/paraview pkg-plist Log: Add missing dirrm lines from the last update. Reported by: pointyhat via kris Revision Changes Path 1.3 +4 -0 ports/science/paraview/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Oct 23 20:59:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A93516A420; Sun, 23 Oct 2005 20:59:16 +0000 (GMT) (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 1A50F43D45; Sun, 23 Oct 2005 20:59:16 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NKxFtH039358; Sun, 23 Oct 2005 20:59:15 GMT (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NKxFRg039357; Sun, 23 Oct 2005 20:59:15 GMT (envelope-from anholt) Message-Id: <200510232059.j9NKxFRg039357@repoman.freebsd.org> From: Eric Anholt Date: Sun, 23 Oct 2005 20:59: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/graphics/sswf 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, 23 Oct 2005 20:59:16 -0000 anholt 2005-10-23 20:59:15 UTC FreeBSD ports repository Modified files: graphics/sswf Makefile Log: Add missing dependency on freetype, which was always happily satisfied already by my installed systems. Reported by: pointyhat via kris Revision Changes Path 1.3 +2 -1 ports/graphics/sswf/Makefile From owner-cvs-all@FreeBSD.ORG Sun Oct 23 21:30:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9678516A41F; Sun, 23 Oct 2005 21:30:17 +0000 (GMT) (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 B7C3843D46; Sun, 23 Oct 2005 21:30:09 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NLU9KS040457; Sun, 23 Oct 2005 21:30:09 GMT (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NLU9H4040456; Sun, 23 Oct 2005 21:30:09 GMT (envelope-from anholt) Message-Id: <200510232130.j9NLU9H4040456@repoman.freebsd.org> From: Eric Anholt Date: Sun, 23 Oct 2005 21:30: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/games/enigma 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, 23 Oct 2005 21:30:17 -0000 anholt 2005-10-23 21:30:09 UTC FreeBSD ports repository Modified files: games/enigma pkg-plist Log: Fix pkg-plist from last update. Reported by: pointyhat via kris Revision Changes Path 1.9 +2 -1 ports/games/enigma/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Oct 23 21:30:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DC1316A41F; Sun, 23 Oct 2005 21:30:42 +0000 (GMT) (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 C023443D45; Sun, 23 Oct 2005 21:30:41 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NLUfil040567; Sun, 23 Oct 2005 21:30:41 GMT (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NLUfda040566; Sun, 23 Oct 2005 21:30:41 GMT (envelope-from anholt) Message-Id: <200510232130.j9NLUfda040566@repoman.freebsd.org> From: Eric Anholt Date: Sun, 23 Oct 2005 21:30: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/java/kaffe 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, 23 Oct 2005 21:30:42 -0000 anholt 2005-10-23 21:30:41 UTC FreeBSD ports repository Modified files: java/kaffe pkg-plist Log: Fix pkg-plist from last upgrade. Reported by: pointyhat via kris Revision Changes Path 1.41 +4 -0 ports/java/kaffe/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Oct 23 22:30:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CEE416A421; Sun, 23 Oct 2005 22:30:08 +0000 (GMT) (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 5208D43D46; Sun, 23 Oct 2005 22:30:08 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NMU8Xg042711; Sun, 23 Oct 2005 22:30:08 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NMU8EB042710; Sun, 23 Oct 2005 22:30:08 GMT (envelope-from thompsa) Message-Id: <200510232230.j9NMU8EB042710@repoman.freebsd.org> From: Andrew Thompson Date: Sun, 23 Oct 2005 22:30: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/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: Sun, 23 Oct 2005 22:30:08 -0000 thompsa 2005-10-23 22:30:08 UTC FreeBSD src repository Modified files: sys/net if_bridge.c Log: If we have been called from ether_ifdetach() then do not try and clear the promisc flag from the member interface, this is a no-op anyway since the interface is disappearing. The driver may have already released its resources such as miibus and this is likely to panic the kernel. Submitted and tested by: Wojciech A. Koszek MFC after: 2 weeks Revision Changes Path 1.30 +24 -19 src/sys/net/if_bridge.c From owner-cvs-all@FreeBSD.ORG Sun Oct 23 22:31:37 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4180516A41F; Sun, 23 Oct 2005 22:31:37 +0000 (GMT) (envelope-from thompsa@freebsd.org) Received: from heff.fud.org.nz (60-234-149-201.bitstream.orcon.net.nz [60.234.149.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id C676443D49; Sun, 23 Oct 2005 22:31:36 +0000 (GMT) (envelope-from thompsa@freebsd.org) Received: by heff.fud.org.nz (Postfix, from userid 1001) id 4D7C81CCDD; Mon, 24 Oct 2005 11:31:35 +1300 (NZDT) Date: Mon, 24 Oct 2005 11:31:35 +1300 From: Andrew Thompson To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20051023223135.GA67158@heff.fud.org.nz> References: <200510232230.j9NMU8EB042710@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510232230.j9NMU8EB042710@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: Subject: Re: 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: Sun, 23 Oct 2005 22:31:37 -0000 On Sun, Oct 23, 2005 at 10:30:08PM +0000, Andrew Thompson wrote: > thompsa 2005-10-23 22:30:08 UTC > > FreeBSD src repository > > Modified files: > sys/net if_bridge.c > Log: > If we have been called from ether_ifdetach() then do not try and clear the > promisc flag from the member interface, this is a no-op anyway since the > interface is disappearing. The driver may have already released > its resources such as miibus and this is likely to panic the kernel. > > Submitted and tested by: Wojciech A. Koszek oops, I mean 'Reported and tested by' From owner-cvs-all@FreeBSD.ORG Sun Oct 23 22:59:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E556416A41F; Sun, 23 Oct 2005 22:59:33 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93FFB43D4C; Sun, 23 Oct 2005 22:59:33 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NMxXhJ043740; Sun, 23 Oct 2005 22:59:33 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NMxXia043739; Sun, 23 Oct 2005 22:59:33 GMT (envelope-from davidxu) Message-Id: <200510232259.j9NMxXia043739@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 22:59: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/kern kern_time.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 23 Oct 2005 22:59:34 -0000 davidxu 2005-10-23 22:59:33 UTC FreeBSD src repository Modified files: sys/kern kern_time.c Log: Don't touch last overrun if signal was already on queue. Revision Changes Path 1.120 +0 -2 src/sys/kern/kern_time.c From owner-cvs-all@FreeBSD.ORG Sun Oct 23 23:09:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC1C216A41F; Sun, 23 Oct 2005 23:09:14 +0000 (GMT) (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 A888C43D46; Sun, 23 Oct 2005 23:09:14 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NN9EPH044102; Sun, 23 Oct 2005 23:09:14 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NN9E0u044101; Sun, 23 Oct 2005 23:09:14 GMT (envelope-from cognet) Message-Id: <200510232309.j9NN9E0u044101@repoman.freebsd.org> From: Olivier Houchard Date: Sun, 23 Oct 2005 23:09: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/arm/arm bcopyinout.S pmap.c support.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: Sun, 23 Oct 2005 23:09:15 -0000 cognet 2005-10-23 23:09:14 UTC FreeBSD src repository Modified files: sys/arm/arm bcopyinout.S pmap.c support.S Log: Unbreak for !__XSCALE__. Revision Changes Path 1.8 +2 -0 src/sys/arm/arm/bcopyinout.S 1.39 +2 -0 src/sys/arm/arm/pmap.c 1.11 +1 -0 src/sys/arm/arm/support.S From owner-cvs-all@FreeBSD.ORG Sun Oct 23 23:24:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CE6B16A41F; Sun, 23 Oct 2005 23:24:30 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46C5643D4C; Sun, 23 Oct 2005 23:24:30 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9NNOTK6000899; Sun, 23 Oct 2005 16:24:29 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9NNOTsD000898; Sun, 23 Oct 2005 16:24:29 -0700 (PDT) (envelope-from obrien) Date: Sun, 23 Oct 2005 16:24:29 -0700 From: "David O'Brien" To: Paul Saab Message-ID: <20051023232429.GA99487@dragon.NUXI.org> References: <200510231043.j9NAhFLF093093@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510231043.j9NAhFLF093093@repoman.freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/freebsd32 freebsd32_misc.c syscalls.master X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2005 23:24:30 -0000 On Sun, Oct 23, 2005 at 10:43:15AM +0000, Paul Saab wrote: > ps 2005-10-23 10:43:15 UTC > FreeBSD src repository > Modified files: > sys/compat/freebsd32 freebsd32_misc.c syscalls.master > Log: > Implement for FreeBSD 3 32 binaries: > sigaction, sigprocmask, sigpending, sigvec, sigblock, sigsetmask, > sigsuspend, sigstack > 1.44 +201 -0 src/sys/compat/freebsd32/freebsd32_misc.c > 1.56 +18 -8 src/sys/compat/freebsd32/syscalls.master FYI, these changes broke the AMD64 kernel build. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Sun Oct 23 23:58:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3F7F16A41F; Sun, 23 Oct 2005 23:58:24 +0000 (GMT) (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 7087C43D46; Sun, 23 Oct 2005 23:58:24 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NNwO6f045841; Sun, 23 Oct 2005 23:58:24 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NNwO8r045837; Sun, 23 Oct 2005 23:58:24 GMT (envelope-from obrien) Message-Id: <200510232358.j9NNwO8r045837@repoman.freebsd.org> From: "David E. O'Brien" Date: Sun, 23 Oct 2005 23:58:24 +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/compat/freebsd32 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, 23 Oct 2005 23:58:24 -0000 obrien 2005-10-23 23:58:24 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 Makefile Log: Add a 'clean' target. Revision Changes Path 1.4 +3 -0 src/sys/compat/freebsd32/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 00:00:00 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 779C916A41F; Mon, 24 Oct 2005 00:00:00 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 316F243D45; Mon, 24 Oct 2005 00:00:00 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O000Gx045910; Mon, 24 Oct 2005 00:00:00 GMT (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O000iS045909; Mon, 24 Oct 2005 00:00:00 GMT (envelope-from ps) Message-Id: <200510240000.j9O000iS045909@repoman.freebsd.org> From: Paul Saab Date: Mon, 24 Oct 2005 00:00: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/amd64/ia32 ia32_reg.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 00:00:00 -0000 ps 2005-10-24 00:00:00 UTC FreeBSD src repository Modified files: sys/amd64/ia32 ia32_reg.c Log: include opt_compat.h to unbreak the build Revision Changes Path 1.3 +2 -0 src/sys/amd64/ia32/ia32_reg.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 00:34:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39FA916A41F; Mon, 24 Oct 2005 00:34:14 +0000 (GMT) (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 EA64743D46; Mon, 24 Oct 2005 00:34:13 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O0YDSp047097; Mon, 24 Oct 2005 00:34:13 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O0YDgG047096; Mon, 24 Oct 2005 00:34:13 GMT (envelope-from obrien) Message-Id: <200510240034.j9O0YDgG047096@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 00: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/editors/vim 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, 24 Oct 2005 00:34:14 -0000 obrien 2005-10-24 00:34:13 UTC FreeBSD ports repository Modified files: editors/vim Makefile Log: Attempt to fix to respect non-standard LOCALBASE/X11BASE settings. Let me just take this opportunity to express how much I hate autoconf's attempt at containing AI, and note the size of hammer one has to use to knock some real knowledge into its head. Revision Changes Path 1.267 +4 -3 ports/editors/vim/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 01:03:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4C0216A41F; Mon, 24 Oct 2005 01:03:29 +0000 (GMT) (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 624E043D46; Mon, 24 Oct 2005 01:03:29 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O13Tbx055292; Mon, 24 Oct 2005 01:03:29 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O13TAi055291; Mon, 24 Oct 2005 01:03:29 GMT (envelope-from mnag) Message-Id: <200510240103.j9O13TAi055291@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 01:03: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/sgb 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, 24 Oct 2005 01:03:29 -0000 mnag 2005-10-24 01:03:29 UTC FreeBSD ports repository Modified files: devel/sgb Makefile Log: Adjust MASTER_SITES to server renaming at stanford.edu. PR: 87884 Submitted by: gerald (maintainer) Pointed out by: fenner (and his scripts) Revision Changes Path 1.6 +1 -1 ports/devel/sgb/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 01:28:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F06316A41F; Mon, 24 Oct 2005 01:28:49 +0000 (GMT) (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 25DBB43D45; Mon, 24 Oct 2005 01:28:49 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O1Sm6G056233; Mon, 24 Oct 2005 01:28:49 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O1Smu7056232; Mon, 24 Oct 2005 01:28:48 GMT (envelope-from obrien) Message-Id: <200510240128.j9O1Smu7056232@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 01:28: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/editors/vim Makefile distinfo ports/editors/vim/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: Mon, 24 Oct 2005 01:28:49 -0000 obrien 2005-10-24 01:28:48 UTC FreeBSD ports repository Modified files: editors/vim Makefile distinfo editors/vim/files patch-configure Log: Update to Vim 6.4 release! 6.4 is a maintenance release - containing additional syntax files, translations and all 90 patches to 6.3. It is a "reset" for future patch fixes. Revision Changes Path 1.268 +5 -5 ports/editors/vim/Makefile 1.159 +2 -152 ports/editors/vim/distinfo 1.2 +5 -5 ports/editors/vim/files/patch-configure From owner-cvs-all@FreeBSD.ORG Mon Oct 24 01:36:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58BD416A41F; Mon, 24 Oct 2005 01:36:17 +0000 (GMT) (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 14B9143D45; Mon, 24 Oct 2005 01:36:17 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O1aGa4056526; Mon, 24 Oct 2005 01:36:16 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O1aGfk056525; Mon, 24 Oct 2005 01:36:16 GMT (envelope-from obrien) Message-Id: <200510240136.j9O1aGfk056525@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 01:36: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/gnu/usr.bin/send-pr send-pr.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, 24 Oct 2005 01:36:17 -0000 obrien 2005-10-24 01:36:16 UTC FreeBSD src repository Modified files: gnu/usr.bin/send-pr send-pr.sh Log: Add vim syntax highlighting support to the send-pr(1) utility. PR: 35333 Submitted by: Hendrik Scholz Revision Changes Path 1.37 +2 -0 src/gnu/usr.bin/send-pr/send-pr.sh From owner-cvs-all@FreeBSD.ORG Mon Oct 24 01:36:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A47F16A420; Mon, 24 Oct 2005 01:36:22 +0000 (GMT) (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 DA94243D45; Mon, 24 Oct 2005 01:36:21 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O1aLtS056560; Mon, 24 Oct 2005 01:36:21 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O1aLCK056559; Mon, 24 Oct 2005 01:36:21 GMT (envelope-from mnag) Message-Id: <200510240136.j9O1aLCK056559@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 01:36: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/dnsmasq 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, 24 Oct 2005 01:36:22 -0000 mnag 2005-10-24 01:36:21 UTC FreeBSD ports repository Modified files: dns/dnsmasq Makefile distinfo Log: Update to 2.23 Fix IPv6 build. Thanks to Richard Hirner PR: 87867 Submitted by: Steven Honson (maintainer) Revision Changes Path 1.24 +3 -3 ports/dns/dnsmasq/Makefile 1.20 +2 -2 ports/dns/dnsmasq/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 02:13:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EB5716A41F; Mon, 24 Oct 2005 02:13:17 +0000 (GMT) (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 095EB43D45; Mon, 24 Oct 2005 02:13:17 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O2DGfY057903; Mon, 24 Oct 2005 02:13:16 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O2DGlE057902; Mon, 24 Oct 2005 02:13:16 GMT (envelope-from mnag) Message-Id: <200510240213.j9O2DGlE057902@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 02:13: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/sysutils/portmanager 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, 24 Oct 2005 02:13:17 -0000 mnag 2005-10-24 02:13:16 UTC FreeBSD ports repository Modified files: sysutils/portmanager Makefile Log: Don't need USE_GMAKE [1] Bump PORTREVISION Use OPTIONS Use post-patch instead post-configure Change PACKAGE_VERSION only if PORTREVISION != 0 PR: 87833 [1] Submitted by: Helge Oldach [1] Revision Changes Path 1.37 +17 -41 ports/sysutils/portmanager/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 02:23:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6863F16A41F; Mon, 24 Oct 2005 02:23:21 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1425E43D48; Mon, 24 Oct 2005 02:23:21 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O2NKD2058298; Mon, 24 Oct 2005 02:23:20 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O2NKV1058297; Mon, 24 Oct 2005 02:23:20 GMT (envelope-from jkoshy) Message-Id: <200510240223.j9O2NKV1058297@repoman.freebsd.org> From: Joseph Koshy Date: Mon, 24 Oct 2005 02:23: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/devel/funnelweb 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, 24 Oct 2005 02:23:21 -0000 jkoshy 2005-10-24 02:23:20 UTC FreeBSD ports repository Modified files: devel/funnelweb Makefile Log: Chase MASTER_SITE. Revision Changes Path 1.4 +1 -1 ports/devel/funnelweb/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 02:27:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61DCD16A41F; Mon, 24 Oct 2005 02:27:17 +0000 (GMT) (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 1E10943D45; Mon, 24 Oct 2005 02:27:17 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O2RHea058446; Mon, 24 Oct 2005 02:27:17 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O2RGPP058445; Mon, 24 Oct 2005 02:27:16 GMT (envelope-from mnag) Message-Id: <200510240227.j9O2RGPP058445@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 02: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/net-mgmt/nagios-plugins 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, 24 Oct 2005 02:27:17 -0000 mnag 2005-10-24 02:27:16 UTC FreeBSD ports repository Modified files: net-mgmt/nagios-plugins Makefile Log: USE_GETTEXT dependency Bump PORTREVISION PR: 87757 Notified by: Markus Dolze Submitted by: Jarrod (maintainer) Revision Changes Path 1.53 +2 -1 ports/net-mgmt/nagios-plugins/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 02:31:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EE4B16A41F; Mon, 24 Oct 2005 02:31:36 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CDA543D45; Mon, 24 Oct 2005 02:31:36 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9O2VZJm000105; Sun, 23 Oct 2005 19:31:35 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9O2VZvb000104; Sun, 23 Oct 2005 19:31:35 -0700 (PDT) (envelope-from obrien) Date: Sun, 23 Oct 2005 19:31:35 -0700 From: "David O'Brien" To: Clement Laforet Message-ID: <20051024023135.GA99970@dragon.NUXI.org> References: <200509201951.j8KJpkkF088277@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200509201951.j8KJpkkF088277@repoman.freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/portmk/Mk bsd.port.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 02:31:36 -0000 On Tue, Sep 20, 2005 at 07:51:46PM +0000, Clement Laforet wrote: > clement 2005-09-20 19:51:46 UTC > > FreeBSD ports repository > > Modified files: > devel/portmk/Mk bsd.port.mk > Log: > - Remove -02 [1] related patch > It's b0rked for compilers which don't support -fno-strict-aliasing > > [1] ports/73797 : Be causious compiling with -O2 (use -fno-strict-aliasing) Can you provide a list of which ports are b0rked and why the patch in ports/73797 hurts where as the hard coding of -fno-strict-aliasing in share/mk/sys.mk doesn't? -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 02:34:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B88516A41F; Mon, 24 Oct 2005 02:34:23 +0000 (GMT) (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 5723943D48; Mon, 24 Oct 2005 02:34:23 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O2YNIp058706; Mon, 24 Oct 2005 02:34:23 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O2YNH9058705; Mon, 24 Oct 2005 02:34:23 GMT (envelope-from mnag) Message-Id: <200510240234.j9O2YNH9058705@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 02:34: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/graphics/py-soya3d 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, 24 Oct 2005 02:34:23 -0000 mnag 2005-10-24 02:34:23 UTC FreeBSD ports repository Modified files: graphics/py-soya3d Makefile Log: Mark amd64 as BROKEN. Does not compile. Notified by: kris Revision Changes Path 1.3 +7 -1 ports/graphics/py-soya3d/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 02:58:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCB9616A41F; Mon, 24 Oct 2005 02:58:23 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id A02CE43D6A; Mon, 24 Oct 2005 02:58:17 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9O2wGAc002394; Sun, 23 Oct 2005 19:58:16 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9O2wGjj002393; Sun, 23 Oct 2005 19:58:16 -0700 (PDT) (envelope-from obrien) Date: Sun, 23 Oct 2005 19:58:16 -0700 From: "David O'Brien" To: Kirill Ponomarew Message-ID: <20051024025816.GA2361@dragon.NUXI.org> References: <200507311707.j6VH7NSk088117@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200507311707.j6VH7NSk088117@repoman.freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.gcc.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 02:58:24 -0000 On Sun, Jul 31, 2005 at 05:07:23PM +0000, Kirill Ponomarew wrote: > krion 2005-07-31 17:07:23 UTC > > FreeBSD ports repository > > Modified files: > Mk bsd.gcc.mk > Log: > Remove gcc3.1 Please put this thru an experimental package build next time. I'm surprised Portmgr allowed such a change without going thru one. Thanks. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 03:14:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EED3316A41F; Mon, 24 Oct 2005 03:14:36 +0000 (GMT) (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 A8A7743D45; Mon, 24 Oct 2005 03:14:36 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O3EaIw060339; Mon, 24 Oct 2005 03:14:36 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O3EaYG060338; Mon, 24 Oct 2005 03:14:36 GMT (envelope-from linimon) Message-Id: <200510240314.j9O3EaYG060338@repoman.freebsd.org> From: Mark Linimon Date: Mon, 24 Oct 2005 03:14:36 +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/pr-guidelines 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, 24 Oct 2005 03:14:37 -0000 linimon 2005-10-24 03:14:36 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/pr-guidelines article.sgml Log: Rework to show that 'threads' and 'usb' have their own categories now. Add a column to the second table to show suggested category as well as suggested assignee. Add the ACPI and apache mailing lists. Revision Changes Path 1.21 +41 -11 doc/en_US.ISO8859-1/articles/pr-guidelines/article.sgml From owner-cvs-all@FreeBSD.ORG Mon Oct 24 03:26:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A2C316A41F; Mon, 24 Oct 2005 03:26:52 +0000 (GMT) (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 BA7F043D45; Mon, 24 Oct 2005 03:26:51 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O3QplY060774; Mon, 24 Oct 2005 03:26:51 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O3QpOB060773; Mon, 24 Oct 2005 03:26:51 GMT (envelope-from linimon) Message-Id: <200510240326.j9O3QpOB060773@repoman.freebsd.org> From: Mark Linimon Date: Mon, 24 Oct 2005 03:26:51 +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/pr-guidelines 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, 24 Oct 2005 03:26:52 -0000 linimon 2005-10-24 03:26:51 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/pr-guidelines article.sgml Log: Break up two of the tables for readability. Translators: there is no new text other than the titles. Revision Changes Path 1.22 +52 -24 doc/en_US.ISO8859-1/articles/pr-guidelines/article.sgml From owner-cvs-all@FreeBSD.ORG Mon Oct 24 03:39:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77CFD16A41F; Mon, 24 Oct 2005 03:39:13 +0000 (GMT) (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 3456343D49; Mon, 24 Oct 2005 03:39:13 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O3dDkg061214; Mon, 24 Oct 2005 03:39:13 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O3dDgP061213; Mon, 24 Oct 2005 03:39:13 GMT (envelope-from obrien) Message-Id: <200510240339.j9O3dDgP061213@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 03:39: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/rdesktop 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, 24 Oct 2005 03:39:13 -0000 obrien 2005-10-24 03:39:13 UTC FreeBSD ports repository Modified files: net/rdesktop Makefile Log: Fix to respect non-standard LOCALBASE/X11BASE settings. Revision Changes Path 1.37 +1 -2 ports/net/rdesktop/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 04:22:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9166516A41F; Mon, 24 Oct 2005 04:22:21 +0000 (GMT) (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 4CDF243D49; Mon, 24 Oct 2005 04:22:21 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O4MLrs062716; Mon, 24 Oct 2005 04:22:21 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O4MLoF062715; Mon, 24 Oct 2005 04:22:21 GMT (envelope-from linimon) Message-Id: <200510240422.j9O4MLoF062715@repoman.freebsd.org> From: Mark Linimon Date: Mon, 24 Oct 2005 04:22:20 +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/pr-guidelines 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, 24 Oct 2005 04:22:21 -0000 linimon 2005-10-24 04:22:20 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/pr-guidelines article.sgml Log: Add all the rest of the current mailing lists to the suggested assignee listings. Revision Changes Path 1.23 +94 -7 doc/en_US.ISO8859-1/articles/pr-guidelines/article.sgml From owner-cvs-all@FreeBSD.ORG Mon Oct 24 04:31:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C344116A41F; Mon, 24 Oct 2005 04:31:16 +0000 (GMT) (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 5C1C643D48; Mon, 24 Oct 2005 04:31:16 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O4VGVT063054; Mon, 24 Oct 2005 04:31:16 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O4VGSA063053; Mon, 24 Oct 2005 04:31:16 GMT (envelope-from obrien) Message-Id: <200510240431.j9O4VGSA063053@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 04:31:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: INTEL Cc: Subject: cvs commit: src/sys/contrib/dev/acpica - 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, 24 Oct 2005 04:31:17 -0000 obrien 2005-10-24 04:31:16 UTC FreeBSD src repository src/sys/contrib/dev/acpica - Imported sources Update of /home/ncvs/src/sys/contrib/dev/acpica In directory repoman.freebsd.org:/tmp/cvs-serv63022 Log Message: Vendor import of Intel ACPI-CA 20041119 with system includes fixups. Status: Vendor Tag: INTEL Release Tags: r20041119sysinc U src/sys/contrib/dev/acpica/CHANGES.txt U src/sys/contrib/dev/acpica/acapps.h U src/sys/contrib/dev/acpica/acconfig.h U src/sys/contrib/dev/acpica/acdebug.h U src/sys/contrib/dev/acpica/acdisasm.h U src/sys/contrib/dev/acpica/acdispat.h U src/sys/contrib/dev/acpica/acefi.h C src/sys/contrib/dev/acpica/acenv.h U src/sys/contrib/dev/acpica/acevents.h U src/sys/contrib/dev/acpica/acexcep.h C src/sys/contrib/dev/acpica/acfreebsd.h U src/sys/contrib/dev/acpica/acgcc.h U src/sys/contrib/dev/acpica/acglobal.h U src/sys/contrib/dev/acpica/achware.h U src/sys/contrib/dev/acpica/acinterp.h U src/sys/contrib/dev/acpica/aclocal.h U src/sys/contrib/dev/acpica/acmacros.h U src/sys/contrib/dev/acpica/acnamesp.h U src/sys/contrib/dev/acpica/acobject.h U src/sys/contrib/dev/acpica/acoutput.h U src/sys/contrib/dev/acpica/acparser.h C src/sys/contrib/dev/acpica/acpi.h C src/sys/contrib/dev/acpica/acpiosxf.h C src/sys/contrib/dev/acpica/acpixf.h U src/sys/contrib/dev/acpica/acresrc.h U src/sys/contrib/dev/acpica/acstruct.h U src/sys/contrib/dev/acpica/actables.h U src/sys/contrib/dev/acpica/actbl.h U src/sys/contrib/dev/acpica/actbl1.h U src/sys/contrib/dev/acpica/actbl2.h U src/sys/contrib/dev/acpica/actypes.h U src/sys/contrib/dev/acpica/acutils.h U src/sys/contrib/dev/acpica/amlcode.h U src/sys/contrib/dev/acpica/amlresrc.h C src/sys/contrib/dev/acpica/dbcmds.c U src/sys/contrib/dev/acpica/dbdisply.c U src/sys/contrib/dev/acpica/dbexec.c C src/sys/contrib/dev/acpica/dbfileio.c U src/sys/contrib/dev/acpica/dbhistry.c U src/sys/contrib/dev/acpica/dbinput.c U src/sys/contrib/dev/acpica/dbstats.c U src/sys/contrib/dev/acpica/dbutils.c C src/sys/contrib/dev/acpica/dbxface.c U src/sys/contrib/dev/acpica/dmbuffer.c U src/sys/contrib/dev/acpica/dmnames.c U src/sys/contrib/dev/acpica/dmobject.c C src/sys/contrib/dev/acpica/dmopcode.c U src/sys/contrib/dev/acpica/dmresrc.c U src/sys/contrib/dev/acpica/dmresrcl.c U src/sys/contrib/dev/acpica/evgpe.c U src/sys/contrib/dev/acpica/dmresrcs.c U src/sys/contrib/dev/acpica/dmutils.c U src/sys/contrib/dev/acpica/dmwalk.c U src/sys/contrib/dev/acpica/dsfield.c U src/sys/contrib/dev/acpica/dsinit.c U src/sys/contrib/dev/acpica/dsmethod.c U src/sys/contrib/dev/acpica/dsmthdat.c U src/sys/contrib/dev/acpica/dsobject.c U src/sys/contrib/dev/acpica/dsopcode.c U src/sys/contrib/dev/acpica/dsutils.c U src/sys/contrib/dev/acpica/dswexec.c U src/sys/contrib/dev/acpica/dswload.c U src/sys/contrib/dev/acpica/dswscope.c U src/sys/contrib/dev/acpica/dswstate.c U src/sys/contrib/dev/acpica/evevent.c U src/sys/contrib/dev/acpica/evgpeblk.c U src/sys/contrib/dev/acpica/evmisc.c U src/sys/contrib/dev/acpica/evregion.c U src/sys/contrib/dev/acpica/evrgnini.c U src/sys/contrib/dev/acpica/evsci.c U src/sys/contrib/dev/acpica/evxface.c U src/sys/contrib/dev/acpica/evxfevnt.c U src/sys/contrib/dev/acpica/evxfregn.c U src/sys/contrib/dev/acpica/exconfig.c U src/sys/contrib/dev/acpica/exconvrt.c U src/sys/contrib/dev/acpica/hwgpe.c U src/sys/contrib/dev/acpica/excreate.c U src/sys/contrib/dev/acpica/exdump.c U src/sys/contrib/dev/acpica/exfield.c C src/sys/contrib/dev/acpica/exfldio.c U src/sys/contrib/dev/acpica/exmisc.c U src/sys/contrib/dev/acpica/exmutex.c U src/sys/contrib/dev/acpica/exnames.c U src/sys/contrib/dev/acpica/exoparg1.c U src/sys/contrib/dev/acpica/exoparg2.c U src/sys/contrib/dev/acpica/exoparg3.c U src/sys/contrib/dev/acpica/exoparg6.c U src/sys/contrib/dev/acpica/exprep.c U src/sys/contrib/dev/acpica/exregion.c U src/sys/contrib/dev/acpica/exresnte.c U src/sys/contrib/dev/acpica/exresolv.c U src/sys/contrib/dev/acpica/exresop.c U src/sys/contrib/dev/acpica/exstore.c U src/sys/contrib/dev/acpica/exstoren.c U src/sys/contrib/dev/acpica/exstorob.c C src/sys/contrib/dev/acpica/exsystem.c U src/sys/contrib/dev/acpica/exutils.c U src/sys/contrib/dev/acpica/hwacpi.c C src/sys/contrib/dev/acpica/hwregs.c C src/sys/contrib/dev/acpica/hwsleep.c U src/sys/contrib/dev/acpica/hwtimer.c U src/sys/contrib/dev/acpica/nsaccess.c U src/sys/contrib/dev/acpica/nsalloc.c U src/sys/contrib/dev/acpica/nsdump.c U src/sys/contrib/dev/acpica/nsdumpdv.c U src/sys/contrib/dev/acpica/nseval.c U src/sys/contrib/dev/acpica/nsinit.c U src/sys/contrib/dev/acpica/nsload.c U src/sys/contrib/dev/acpica/nsnames.c U src/sys/contrib/dev/acpica/nsobject.c U src/sys/contrib/dev/acpica/nsparse.c U src/sys/contrib/dev/acpica/nssearch.c U src/sys/contrib/dev/acpica/nsutils.c U src/sys/contrib/dev/acpica/nswalk.c U src/sys/contrib/dev/acpica/nsxfeval.c U src/sys/contrib/dev/acpica/nsxfname.c U src/sys/contrib/dev/acpica/nsxfobj.c U src/sys/contrib/dev/acpica/osunixxf.c U src/sys/contrib/dev/acpica/psargs.c U src/sys/contrib/dev/acpica/psopcode.c C src/sys/contrib/dev/acpica/psparse.c U src/sys/contrib/dev/acpica/psscope.c U src/sys/contrib/dev/acpica/pstree.c U src/sys/contrib/dev/acpica/psutils.c U src/sys/contrib/dev/acpica/pswalk.c U src/sys/contrib/dev/acpica/psxface.c U src/sys/contrib/dev/acpica/rsaddr.c U src/sys/contrib/dev/acpica/rscalc.c C src/sys/contrib/dev/acpica/rscreate.c U src/sys/contrib/dev/acpica/rsdump.c U src/sys/contrib/dev/acpica/rsio.c U src/sys/contrib/dev/acpica/rsirq.c U src/sys/contrib/dev/acpica/rslist.c U src/sys/contrib/dev/acpica/rsmemory.c U src/sys/contrib/dev/acpica/rsmisc.c U src/sys/contrib/dev/acpica/rsutils.c U src/sys/contrib/dev/acpica/rsxface.c U src/sys/contrib/dev/acpica/tbconvrt.c C src/sys/contrib/dev/acpica/tbget.c U src/sys/contrib/dev/acpica/tbgetall.c U src/sys/contrib/dev/acpica/tbinstal.c U src/sys/contrib/dev/acpica/tbrsdt.c U src/sys/contrib/dev/acpica/tbutils.c U src/sys/contrib/dev/acpica/tbxface.c U src/sys/contrib/dev/acpica/tbxfroot.c U src/sys/contrib/dev/acpica/utalloc.c U src/sys/contrib/dev/acpica/utclib.c U src/sys/contrib/dev/acpica/utcopy.c U src/sys/contrib/dev/acpica/utdebug.c U src/sys/contrib/dev/acpica/utdelete.c C src/sys/contrib/dev/acpica/uteval.c C src/sys/contrib/dev/acpica/utglobal.c U src/sys/contrib/dev/acpica/utinit.c U src/sys/contrib/dev/acpica/utmath.c U src/sys/contrib/dev/acpica/utmisc.c U src/sys/contrib/dev/acpica/utobject.c U src/sys/contrib/dev/acpica/utxface.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmalloc.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmclib.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmcopy.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmdebug.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmdelete.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmeval.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmglobal.c U src/sys/contrib/dev/acpica/Subsystem/Common/cminit.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmobject.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmutils.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmxface.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbcmds.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbdisasm.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbdisply.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbexec.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbfileio.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbhistry.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbinput.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbstats.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbutils.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbxface.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsfield.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsmethod.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsmthdat.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsobject.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsopcode.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsutils.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswexec.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswload.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswscope.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswstate.c U src/sys/contrib/dev/acpica/Subsystem/Events/evevent.c U src/sys/contrib/dev/acpica/Subsystem/Events/evmisc.c U src/sys/contrib/dev/acpica/Subsystem/Events/evregion.c U src/sys/contrib/dev/acpica/Subsystem/Events/evrgnini.c U src/sys/contrib/dev/acpica/Subsystem/Events/evsci.c U src/sys/contrib/dev/acpica/Subsystem/Events/evxface.c U src/sys/contrib/dev/acpica/Subsystem/Events/evxfevnt.c U src/sys/contrib/dev/acpica/Subsystem/Events/evxfregn.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwacpi.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwcpu32.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwgpe.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwregs.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwsleep.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwtimer.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwxface.c U src/sys/contrib/dev/acpica/Subsystem/Include/accommon.h U src/sys/contrib/dev/acpica/Subsystem/Include/acconfig.h U src/sys/contrib/dev/acpica/Subsystem/Include/acdebug.h U src/sys/contrib/dev/acpica/Subsystem/Include/acdispat.h U src/sys/contrib/dev/acpica/Subsystem/Include/acefi.h U src/sys/contrib/dev/acpica/Subsystem/Include/acenv.h U src/sys/contrib/dev/acpica/Subsystem/Include/acevents.h U src/sys/contrib/dev/acpica/Subsystem/Include/acexcep.h U src/sys/contrib/dev/acpica/Subsystem/Include/acfreebsd.h U src/sys/contrib/dev/acpica/Subsystem/Include/acgcc.h U src/sys/contrib/dev/acpica/Subsystem/Include/acglobal.h U src/sys/contrib/dev/acpica/Subsystem/Include/achware.h U src/sys/contrib/dev/acpica/Subsystem/Include/acinterp.h U src/sys/contrib/dev/acpica/Subsystem/Include/aclinux.h U src/sys/contrib/dev/acpica/Subsystem/Include/aclocal.h U src/sys/contrib/dev/acpica/Subsystem/Include/acmacros.h U src/sys/contrib/dev/acpica/Subsystem/Include/acmsvc.h U src/sys/contrib/dev/acpica/Subsystem/Include/acnamesp.h U src/sys/contrib/dev/acpica/Subsystem/Include/acobject.h U src/sys/contrib/dev/acpica/Subsystem/Include/acoutput.h U src/sys/contrib/dev/acpica/Subsystem/Include/acparser.h U src/sys/contrib/dev/acpica/Subsystem/Include/acpi.h U src/sys/contrib/dev/acpica/Subsystem/Include/acpiosxf.h U src/sys/contrib/dev/acpica/Subsystem/Include/acpixf.h U src/sys/contrib/dev/acpica/Subsystem/Include/acresrc.h U src/sys/contrib/dev/acpica/Subsystem/Include/actables.h U src/sys/contrib/dev/acpica/Subsystem/Include/actbl.h U src/sys/contrib/dev/acpica/Subsystem/Include/actbl1.h U src/sys/contrib/dev/acpica/Subsystem/Include/actbl2.h U src/sys/contrib/dev/acpica/Subsystem/Include/actbl32.h U src/sys/contrib/dev/acpica/Subsystem/Include/actbl64.h U src/sys/contrib/dev/acpica/Subsystem/Include/actbl71.h U src/sys/contrib/dev/acpica/Subsystem/Include/actypes.h U src/sys/contrib/dev/acpica/Subsystem/Include/acwin.h U src/sys/contrib/dev/acpica/Subsystem/Include/amlcode.h U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amconfig.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amconvrt.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amcreate.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amdump.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amdyadic.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amfield.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/ammisc.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/ammonad.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amnames.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amprep.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amregion.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amresnte.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amresolv.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amresop.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amstore.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amstoren.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amstorob.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amsystem.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amutils.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amxface.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsaccess.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsalloc.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsdump.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nseval.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsinit.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsload.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsnames.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsobject.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nssearch.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsutils.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nswalk.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsxfname.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsxfobj.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psargs.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psfind.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psopcode.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psparse.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psscope.c U src/sys/contrib/dev/acpica/Subsystem/Parser/pstree.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psutils.c U src/sys/contrib/dev/acpica/Subsystem/Parser/pswalk.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psxface.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsaddr.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rscalc.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rscreate.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsdump.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsio.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsirq.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rslist.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsmemory.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsmisc.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsutils.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsxface.c U src/sys/contrib/dev/acpica/Subsystem/Tables/tbconvrt.c U src/sys/contrib/dev/acpica/Subsystem/Tables/tbget.c U src/sys/contrib/dev/acpica/Subsystem/Tables/tbinstal.c U src/sys/contrib/dev/acpica/Subsystem/Tables/tbutils.c U src/sys/contrib/dev/acpica/Subsystem/Tables/tbxface.c U src/sys/contrib/dev/acpica/Subsystem/Tables/tbxfroot.c U src/sys/contrib/dev/acpica/common/adisasm.c U src/sys/contrib/dev/acpica/common/getopt.c U src/sys/contrib/dev/acpica/compiler/aslanalyze.c U src/sys/contrib/dev/acpica/compiler/aslcodegen.c U src/sys/contrib/dev/acpica/compiler/aslcompile.c U src/sys/contrib/dev/acpica/compiler/aslcompiler.h U src/sys/contrib/dev/acpica/compiler/aslcompiler.l U src/sys/contrib/dev/acpica/compiler/aslcompiler.y U src/sys/contrib/dev/acpica/compiler/aslerror.c U src/sys/contrib/dev/acpica/compiler/aslfiles.c U src/sys/contrib/dev/acpica/compiler/aslfold.c U src/sys/contrib/dev/acpica/compiler/aslglobal.h U src/sys/contrib/dev/acpica/compiler/asllength.c U src/sys/contrib/dev/acpica/compiler/asllisting.c U src/sys/contrib/dev/acpica/compiler/aslload.c U src/sys/contrib/dev/acpica/compiler/asllookup.c U src/sys/contrib/dev/acpica/compiler/aslmain.c U src/sys/contrib/dev/acpica/compiler/aslmap.c U src/sys/contrib/dev/acpica/compiler/aslopcodes.c U src/sys/contrib/dev/acpica/compiler/asloperands.c U src/sys/contrib/dev/acpica/compiler/aslopt.c U src/sys/contrib/dev/acpica/compiler/aslresource.c U src/sys/contrib/dev/acpica/compiler/aslrestype1.c U src/sys/contrib/dev/acpica/compiler/aslrestype2.c U src/sys/contrib/dev/acpica/compiler/aslstubs.c U src/sys/contrib/dev/acpica/compiler/asltransform.c U src/sys/contrib/dev/acpica/compiler/asltree.c U src/sys/contrib/dev/acpica/compiler/asltypes.h U src/sys/contrib/dev/acpica/compiler/aslutils.c 18 conflicts created by this import. Use the following command to help the merge: cvs checkout -jINTEL:yesterday -jINTEL src/sys/contrib/dev/acpica From owner-cvs-all@FreeBSD.ORG Mon Oct 24 04:35:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 056C116A41F; Mon, 24 Oct 2005 04:35:21 +0000 (GMT) (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 BBEDA43D48; Mon, 24 Oct 2005 04:35:20 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O4ZKWf063211; Mon, 24 Oct 2005 04:35:20 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O4ZKUQ063210; Mon, 24 Oct 2005 04:35:20 GMT (envelope-from obrien) Message-Id: <200510240435.j9O4ZKUQ063210@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 04:35: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/contrib/dev/acpica acenv.h acfreebsd.h acpi.h acpiosxf.h acpixf.h dbcmds.c dbfileio.c dbxface.c dmopcode.c exfldio.c exsystem.c hwregs.c hwsleep.c psparse.c rscreate.c tbget.c uteval.c utglobal.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 04:35:21 -0000 obrien 2005-10-24 04:35:20 UTC FreeBSD src repository Modified files: sys/contrib/dev/acpica acenv.h acfreebsd.h acpi.h acpiosxf.h acpixf.h dbcmds.c dbfileio.c dbxface.c dmopcode.c exfldio.c exsystem.c hwregs.c hwsleep.c psparse.c rscreate.c tbget.c uteval.c utglobal.c Log: Fix conflicts of import of Intel ACPI-CA 20041119 with system includes fixups. Revision Changes Path 1.11 +1 -1 src/sys/contrib/dev/acpica/acenv.h 1.29 +1 -1 src/sys/contrib/dev/acpica/acfreebsd.h 1.7 +15 -15 src/sys/contrib/dev/acpica/acpi.h 1.17 +2 -2 src/sys/contrib/dev/acpica/acpiosxf.h 1.23 +2 -2 src/sys/contrib/dev/acpica/acpixf.h 1.15 +9 -9 src/sys/contrib/dev/acpica/dbcmds.c 1.12 +4 -4 src/sys/contrib/dev/acpica/dbfileio.c 1.8 +4 -4 src/sys/contrib/dev/acpica/dbxface.c 1.3 +4 -4 src/sys/contrib/dev/acpica/dmopcode.c 1.24 +5 -5 src/sys/contrib/dev/acpica/exfldio.c 1.12 +3 -3 src/sys/contrib/dev/acpica/exsystem.c 1.5 +3 -3 src/sys/contrib/dev/acpica/hwregs.c 1.19 +1 -1 src/sys/contrib/dev/acpica/hwsleep.c 1.26 +6 -6 src/sys/contrib/dev/acpica/psparse.c 1.11 +4 -4 src/sys/contrib/dev/acpica/rscreate.c 1.16 +2 -2 src/sys/contrib/dev/acpica/tbget.c 1.5 +3 -3 src/sys/contrib/dev/acpica/uteval.c 1.18 +2 -2 src/sys/contrib/dev/acpica/utglobal.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 04:36:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA35316A41F; Mon, 24 Oct 2005 04:36:14 +0000 (GMT) (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 875A143D46; Mon, 24 Oct 2005 04:36:14 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O4aEp3063570; Mon, 24 Oct 2005 04:36:14 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O4aE2l063569; Mon, 24 Oct 2005 04:36:14 GMT (envelope-from obrien) Message-Id: <200510240436.j9O4aE2l063569@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 04:36: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/contrib/dev/acpica acpica_prep.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, 24 Oct 2005 04:36:14 -0000 obrien 2005-10-24 04:36:14 UTC FreeBSD src repository Modified files: sys/contrib/dev/acpica acpica_prep.sh Log: Add a commented out version of what was done for the r20041119sysinc import. Revision Changes Path 1.8 +13 -1 src/sys/contrib/dev/acpica/acpica_prep.sh From owner-cvs-all@FreeBSD.ORG Mon Oct 24 04:38:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC60116A41F; Mon, 24 Oct 2005 04:38:47 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F9E343D49; Mon, 24 Oct 2005 04:38:47 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9O4clFA028188; Sun, 23 Oct 2005 21:38:47 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9O4clT2028187; Sun, 23 Oct 2005 21:38:47 -0700 (PDT) (envelope-from obrien) Date: Sun, 23 Oct 2005 21:38:47 -0700 From: "David O'Brien" To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20051024043847.GA28046@dragon.NUXI.org> References: <200510240431.j9O4VGSA063053@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510240431.j9O4VGSA063053@repoman.freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Subject: Re: cvs commit: src/sys/contrib/dev/acpica - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 04:38:48 -0000 On Mon, Oct 24, 2005 at 04:31:16AM +0000, David E. O'Brien wrote: > obrien 2005-10-24 04:31:16 UTC > FreeBSD src repository > src/sys/contrib/dev/acpica - Imported sources > Update of /home/ncvs/src/sys/contrib/dev/acpica > In directory repoman.freebsd.org:/tmp/cvs-serv63022 > > Log Message: > Vendor import of Intel ACPI-CA 20041119 with system includes fixups. > > Vendor Tag: INTEL > Release Tags: r20041119sysinc Approved by: njl, marks From owner-cvs-all@FreeBSD.ORG Mon Oct 24 04:40:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7473216A41F; Mon, 24 Oct 2005 04:40:38 +0000 (GMT) (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 30D9043D49; Mon, 24 Oct 2005 04:40:38 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O4ecNC063763; Mon, 24 Oct 2005 04:40:38 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O4ecBQ063762; Mon, 24 Oct 2005 04:40:38 GMT (envelope-from obrien) Message-Id: <200510240440.j9O4ecBQ063762@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 04:40: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/conf kern.pre.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: Mon, 24 Oct 2005 04:40:38 -0000 obrien 2005-10-24 04:40:38 UTC FreeBSD src repository Modified files: sys/conf kern.pre.mk Log: We no longer need INCLUDES+= -I$S/contrib/dev/acpica. Revision Changes Path 1.73 +2 -5 src/sys/conf/kern.pre.mk From owner-cvs-all@FreeBSD.ORG Mon Oct 24 05:05:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE5CF16A41F; Mon, 24 Oct 2005 05:05:09 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A569743D48; Mon, 24 Oct 2005 05:05:09 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O559TW071736; Mon, 24 Oct 2005 05:05:09 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5599W071735; Mon, 24 Oct 2005 05:05:09 GMT (envelope-from wpaul) Message-Id: <200510240505.j9O5599W071735@repoman.freebsd.org> From: Bill Paul Date: Mon, 24 Oct 2005 05:05: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/compat/ndis subr_ndis.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 05:05:10 -0000 wpaul 2005-10-24 05:05:09 UTC FreeBSD src repository Modified files: sys/compat/ndis subr_ndis.c Log: Fix handling of message table messages that got broken when I converted NdisWriteErrorLogEntry() to use the RtlXXX unicode/ansi conversion routines. Revision Changes Path 1.97 +5 -5 src/sys/compat/ndis/subr_ndis.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 05:06:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF4B516A41F; Mon, 24 Oct 2005 05:06:19 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D3D443D46; Mon, 24 Oct 2005 05:06:19 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O56JMS071908; Mon, 24 Oct 2005 05:06:19 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O56JcC071907; Mon, 24 Oct 2005 05:06:19 GMT (envelope-from wpaul) Message-Id: <200510240506.j9O56JcC071907@repoman.freebsd.org> From: Bill Paul Date: Mon, 24 Oct 2005 05:06:19 +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/compat/ndis subr_ndis.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 05:06:20 -0000 wpaul 2005-10-24 05:06:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/compat/ndis subr_ndis.c Log: MFC: fix handling of message table strings in NdisWriteErrorLogEntry() Revision Changes Path 1.67.2.10 +5 -5 src/sys/compat/ndis/subr_ndis.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 05:16:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1F2A16A420; Mon, 24 Oct 2005 05:16:41 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EBAA43D46; Mon, 24 Oct 2005 05:16:41 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5Gfft072358; Mon, 24 Oct 2005 05:16:41 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5Gfp9072357; Mon, 24 Oct 2005 05:16:41 GMT (envelope-from davidxu) Message-Id: <200510240516.j9O5Gfp9072357@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:16: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/lib/libthr/thread thr_mutexattr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 05:16:41 -0000 davidxu 2005-10-24 05:16:41 UTC FreeBSD src repository Modified files: lib/libthr/thread thr_mutexattr.c Log: Add functions pthread_mutexattr_setpshared and pthread_mutexattr_getpshared. Revision Changes Path 1.3 +28 -0 src/lib/libthr/thread/thr_mutexattr.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 05:20:05 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8ED4216A41F; Mon, 24 Oct 2005 05:20:05 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 465B243D45; Mon, 24 Oct 2005 05:20:05 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5K5ou072463; Mon, 24 Oct 2005 05:20:05 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5K5he072462; Mon, 24 Oct 2005 05:20:05 GMT (envelope-from davidxu) Message-Id: <200510240520.j9O5K5he072462@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:20: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/lib/libthr pthread.map X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 05:20:05 -0000 davidxu 2005-10-24 05:20:05 UTC FreeBSD src repository Modified files: lib/libthr pthread.map Log: Export following functions: _pthread_mutexattr_getpshared _pthread_mutexattr_setpshared pthread_condattr_getpshared pthread_condattr_setpshared pthread_mutexattr_getpshared pthread_mutexattr_setpshared Revision Changes Path 1.7 +6 -0 src/lib/libthr/pthread.map From owner-cvs-all@FreeBSD.ORG Mon Oct 24 05:27:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4E1E16A41F; Mon, 24 Oct 2005 05:27:06 +0000 (GMT) (envelope-from nate@root.org) Received: from ylpvm12.prodigy.net (ylpvm12-ext.prodigy.net [207.115.57.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59D0E43D45; Mon, 24 Oct 2005 05:27:04 +0000 (GMT) (envelope-from nate@root.org) Received: from pimout5-ext.prodigy.net (pimout5-int.prodigy.net [207.115.4.21]) by ylpvm12.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id j9O5RUTl005737; Mon, 24 Oct 2005 01:27:30 -0400 X-ORBL: [71.139.0.107] Received: from [10.0.5.50] (ppp-71-139-0-107.dsl.snfc21.pacbell.net [71.139.0.107]) by pimout5-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with ESMTP id j9O5R2vH122112; Mon, 24 Oct 2005 01:27:02 -0400 Message-ID: <435C70A5.9060408@root.org> Date: Sun, 23 Oct 2005 22:27:01 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050723) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "David E. O'Brien" References: <20051024043630.95DB416A439@hub.freebsd.org> In-Reply-To: <20051024043630.95DB416A439@hub.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/contrib/dev/acpica acpica_prep.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, 24 Oct 2005 05:27:06 -0000 David E. O'Brien wrote: > obrien 2005-10-24 04:36:14 UTC > > FreeBSD src repository > > Modified files: > sys/contrib/dev/acpica acpica_prep.sh > Log: > Add a commented out version of what was done for the r20041119sysinc import. > > Revision Changes Path > 1.8 +13 -1 src/sys/contrib/dev/acpica/acpica_prep.sh > > > Index: src/sys/contrib/dev/acpica/acpica_prep.sh > diff -u src/sys/contrib/dev/acpica/acpica_prep.sh:1.7 src/sys/contrib/dev/acpica/acpica_prep.sh:1.8 > --- src/sys/contrib/dev/acpica/acpica_prep.sh:1.7 Wed Apr 14 02:03:33 2004 > +++ src/sys/contrib/dev/acpica/acpica_prep.sh Mon Oct 24 04:36:14 2005 > @@ -67,6 +67,18 @@ > sed -e 's/platform\///' $i > $i.new && mv $i.new $i > done > > +# canonify include paths > +#for H in \ > +#acpi.h acdispat.h amlcode.h acnamesp.h acevents.h acdebug.h acresrc.h acdisasm.h acparser.h acinterp.h actables.h > +#do > +# sed -i "" -e "s|\"$H\"|\|g" *.c > +#done > +#for H in \ > +#acconfig.h acenv.h actypes.h acexcep.h acmacros.h actbl.h actbl1.h actbl2.h aclocal.h acoutput.h acpiosxf.h acpixf.h acobject.h acstruct.h acglobal.h achware.h acutils.h acfreebsd.h acgcc.h amlresrc.h > +#do > +# sed -i "" -e "s|\"$H\"|\|g" *.h > +#done > + > # post-clean > echo post-clean > rm -rf ${wrk} Why not uncomment those if it was tested? -- Nate From owner-cvs-all@FreeBSD.ORG Mon Oct 24 05:34:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7AD216A41F; Mon, 24 Oct 2005 05:34:21 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8651543D55; Mon, 24 Oct 2005 05:34:21 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5YLTK072977; Mon, 24 Oct 2005 05:34:21 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5YL1X072976; Mon, 24 Oct 2005 05:34:21 GMT (envelope-from njl) Message-Id: <200510240534.j9O5YL1X072976@repoman.freebsd.org> From: Nate Lawson Date: Mon, 24 Oct 2005 05:34: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/dev/acpica acpi_acad.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 05:34:21 -0000 njl 2005-10-24 05:34:21 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_acad.c Log: If no AC line devices are found, go ahead and notify devd that the system is on AC power (i.e. not a laptop). This allows power_profile to run once for desktop systems as well, for instance, to set C3 or CPU frequency. MFC after: 2 weeks Revision Changes Path 1.36 +18 -0 src/sys/dev/acpica/acpi_acad.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 05:35:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D61E816A41F; Mon, 24 Oct 2005 05:35:14 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48D3743D45; Mon, 24 Oct 2005 05:35:14 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5ZEY4073050; Mon, 24 Oct 2005 05:35:14 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5ZEk8073049; Mon, 24 Oct 2005 05:35:14 GMT (envelope-from davidxu) Message-Id: <200510240535.j9O5ZEk8073049@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:35: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/lib/libpthread/thread thr_condattr_pshared.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 05:35:15 -0000 davidxu 2005-10-24 05:35:14 UTC FreeBSD src repository Added files: lib/libpthread/thread thr_condattr_pshared.c Log: Add function pthread_condattr_setpshared and pthread_condattr_getpshared. Revision Changes Path 1.1 +56 -0 src/lib/libpthread/thread/thr_condattr_pshared.c (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 05:35:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E29D16A41F; Mon, 24 Oct 2005 05:35:41 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A7DD43D48; Mon, 24 Oct 2005 05:35:41 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5ZeAe073165; Mon, 24 Oct 2005 05:35:40 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5ZeEb073164; Mon, 24 Oct 2005 05:35:40 GMT (envelope-from davidxu) Message-Id: <200510240535.j9O5ZeEb073164@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:35: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/lib/libpthread/thread thr_mattr_pshared.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 05:35:41 -0000 davidxu 2005-10-24 05:35:40 UTC FreeBSD src repository Added files: lib/libpthread/thread thr_mattr_pshared.c Log: Add functions pthread_mutexattr_setpshared and pthread_mutexattr_getpshared. Revision Changes Path 1.1 +56 -0 src/lib/libpthread/thread/thr_mattr_pshared.c (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 05:37:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1FDD16A41F; Mon, 24 Oct 2005 05:37:21 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BE7943D64; Mon, 24 Oct 2005 05:37:21 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5bLCv073218; Mon, 24 Oct 2005 05:37:21 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5bLHn073217; Mon, 24 Oct 2005 05:37:21 GMT (envelope-from davidxu) Message-Id: <200510240537.j9O5bLHn073217@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:37: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/lib/libpthread pthread.map X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 05:37:21 -0000 davidxu 2005-10-24 05:37:21 UTC FreeBSD src repository Modified files: lib/libpthread pthread.map Log: Export following functions: _pthread_condattr_getpshared _pthread_condattr_setpshared _pthread_mutexattr_getpshared _pthread_mutexattr_setpshared pthread_condattr_getpshared pthread_condattr_setpshared pthread_mutexattr_getpshared pthread_mutexattr_setpshared Revision Changes Path 1.16 +8 -0 src/lib/libpthread/pthread.map From owner-cvs-all@FreeBSD.ORG Mon Oct 24 05:41:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFDB716A41F; Mon, 24 Oct 2005 05:41:13 +0000 (GMT) (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 6AA5F43D46; Mon, 24 Oct 2005 05:41:13 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5fDc6073444; Mon, 24 Oct 2005 05:41:13 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5fD6c073443; Mon, 24 Oct 2005 05:41:13 GMT (envelope-from thierry) Message-Id: <200510240541.j9O5fD6c073443@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 24 Oct 2005 05:41: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/mail/spambnc 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, 24 Oct 2005 05:41:13 -0000 thierry 2005-10-24 05:41:13 UTC FreeBSD ports repository Modified files: mail/spambnc Makefile distinfo Log: Upgrade to 20051023. Changelog at . Revision Changes Path 1.83 +1 -1 ports/mail/spambnc/Makefile 1.77 +4 -4 ports/mail/spambnc/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 05:48:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23FFD16A41F; Mon, 24 Oct 2005 05:48:33 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5B8243D48; Mon, 24 Oct 2005 05:48:32 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5mWBp073697; Mon, 24 Oct 2005 05:48:32 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5mWVf073696; Mon, 24 Oct 2005 05:48:32 GMT (envelope-from davidxu) Message-Id: <200510240548.j9O5mWVf073696@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:48:32 +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/libpthread/thread 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: Mon, 24 Oct 2005 05:48:33 -0000 davidxu 2005-10-24 05:48:32 UTC FreeBSD src repository Modified files: lib/libpthread/thread Makefile.inc Log: Include files thr_condattr_pshared.c and thr_mattr_pshare.c. Revision Changes Path 1.50 +2 -0 src/lib/libpthread/thread/Makefile.inc From owner-cvs-all@FreeBSD.ORG Mon Oct 24 05:53:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16FB216A41F; Mon, 24 Oct 2005 05:53:55 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9ABE43D4C; Mon, 24 Oct 2005 05:53:54 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5rsSa073933; Mon, 24 Oct 2005 05:53:54 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5rsEC073932; Mon, 24 Oct 2005 05:53:54 GMT (envelope-from davidxu) Message-Id: <200510240553.j9O5rsEC073932@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:53: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/include pthread.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, 24 Oct 2005 05:53:55 -0000 davidxu 2005-10-24 05:53:54 UTC FreeBSD src repository Modified files: include pthread.h Log: Add prototype for following functions, plus tab fixes. pthread_condattr_getpshared pthread_condattr_setpshared pthread_mutexattr_getpshared pthread_mutexattr_setpshared Revision Changes Path 1.40 +8 -5 src/include/pthread.h From owner-cvs-all@FreeBSD.ORG Mon Oct 24 06:15:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68A3116A41F; Mon, 24 Oct 2005 06:15:40 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2736A43D48; Mon, 24 Oct 2005 06:15:40 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O6Feuv074775; Mon, 24 Oct 2005 06:15:40 GMT (envelope-from demon@repoman.freebsd.org) Received: (from demon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O6FdrJ074774; Mon, 24 Oct 2005 06:15:39 GMT (envelope-from demon) Message-Id: <200510240615.j9O6FdrJ074774@repoman.freebsd.org> From: Dmitry Sivachenko Date: Mon, 24 Oct 2005 06:15: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/ascpu 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, 24 Oct 2005 06:15:40 -0000 demon 2005-10-24 06:15:39 UTC FreeBSD ports repository Modified files: sysutils/ascpu Makefile distinfo Log: Update to version 1.11. Revision Changes Path 1.15 +1 -1 ports/sysutils/ascpu/Makefile 1.8 +2 -2 ports/sysutils/ascpu/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 06:16:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50A8D16A41F; Mon, 24 Oct 2005 06:16:01 +0000 (GMT) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E1DB43D48; Mon, 24 Oct 2005 06:16:01 +0000 (GMT) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O6G0vM074808; Mon, 24 Oct 2005 06:16:00 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O6G0qn074807; Mon, 24 Oct 2005 06:16:00 GMT (envelope-from kevlo) Message-Id: <200510240616.j9O6G0qn074807@repoman.freebsd.org> From: Kevin Lo Date: Mon, 24 Oct 2005 06:16: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/irc/quirc 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, 24 Oct 2005 06:16:01 -0000 kevlo 2005-10-24 06:16:00 UTC FreeBSD ports repository Modified files: irc/quirc Makefile Log: set USE_X_PREFIX. Pointed by kris Revision Changes Path 1.22 +1 -0 ports/irc/quirc/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 06:51:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C55D16A41F; Mon, 24 Oct 2005 06:51:42 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B6FF43D46; Mon, 24 Oct 2005 06:51:42 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O6pg1m075992; Mon, 24 Oct 2005 06:51:42 GMT (envelope-from demon@repoman.freebsd.org) Received: (from demon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O6pg2s075991; Mon, 24 Oct 2005 06:51:42 GMT (envelope-from demon) Message-Id: <200510240651.j9O6pg2s075991@repoman.freebsd.org> From: Dmitry Sivachenko Date: Mon, 24 Oct 2005 06:51: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/ascpu 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, 24 Oct 2005 06:51:42 -0000 demon 2005-10-24 06:51:42 UTC FreeBSD ports repository Modified files: sysutils/ascpu Makefile Log: Hopefully fix build with non-standard X11BASE (I can't test it). Revision Changes Path 1.16 +1 -1 ports/sysutils/ascpu/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 07:18:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FF3F16A41F; Mon, 24 Oct 2005 07:18:35 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01CAD43D45; Mon, 24 Oct 2005 07:18:34 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9O7IXbR034795; Mon, 24 Oct 2005 00:18:33 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9O7IWGn034794; Mon, 24 Oct 2005 00:18:32 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 00:18:32 -0700 From: "David O'Brien" To: Nate Lawson Message-ID: <20051024071832.GB22437@dragon.NUXI.org> References: <20051024043630.95DB416A439@hub.freebsd.org> <435C70A5.9060408@root.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <435C70A5.9060408@root.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/contrib/dev/acpica acpica_prep.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 07:18:35 -0000 On Sun, Oct 23, 2005 at 10:27:01PM -0700, Nate Lawson wrote: > David E. O'Brien wrote: > >obrien 2005-10-24 04:36:14 UTC > > FreeBSD src repository > > > > Modified files: > > sys/contrib/dev/acpica acpica_prep.sh > > Log: > > Add a commented out version of what was done for the r20041119sysinc > > import. > > > > Revision Changes Path > > 1.8 +13 -1 src/sys/contrib/dev/acpica/acpica_prep.sh .. > Why not uncomment those if it was tested? You said to add it, commented if I prefered. :-) The simple script I sent you was run on a checkout of the vendor branch - where you had already run acpica_prep.sh. I didn't want to just add my changes implying that acpica_prep.sh as a whole was fully tested. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 07:24:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71F0A16A41F; Mon, 24 Oct 2005 07:24:24 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E7AF43D45; Mon, 24 Oct 2005 07:24:24 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9O7ONs1034951; Mon, 24 Oct 2005 00:24:23 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9O7ON07034950; Mon, 24 Oct 2005 00:24:23 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 00:24:23 -0700 From: "David O'Brien" To: Roman Kurakin Message-ID: <20051024072423.GA34909@dragon.NUXI.org> References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200509271657.j8RGvj2n015326@repoman.freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 07:24:24 -0000 On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: > rik 2005-09-27 16:57:45 UTC > > FreeBSD src repository > > Modified files: > sys/dev/cp if_cp.c > Log: > Restore if_cp.c 1.27 > ---------------------------- > revision 1.27 > date: 2005/09/19 03:10:16; author: imp; state: Exp; lines: +3 -2 > Make sure that we call if_free(ifp) after bus_teardown_intr. Since we > could get an interrupt after we free the ifp, and the interrupt > handler depended on the ifp being still alive, this could, in theory, > cause a crash. Eliminate this possibility by moving the if_free to > after the bus_teardown_intr() call. > > In fact, this change do nothing for this driver. It is protected from > this by cp_destroy variable. This variable also protects driver from > initiation of any activity from network stack with disabled intr > handler with this change applied. You should not have backed out my commit without discussing it with me and understanding the reason for the change. Do it again and I *will* be taking it Core. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 07:56:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5105316A41F; Mon, 24 Oct 2005 07:56:08 +0000 (GMT) (envelope-from krion@voodoo.bawue.com) Received: from voodoo.bawue.com (voodoo.bawue.com [212.9.161.119]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9BFB43D48; Mon, 24 Oct 2005 07:56:07 +0000 (GMT) (envelope-from krion@voodoo.bawue.com) Received: from krion by voodoo.bawue.com with local (Exim 4.54 (FreeBSD)) id 1ETxBX-000GRY-QJ; Mon, 24 Oct 2005 09:55:59 +0200 Date: Mon, 24 Oct 2005 09:55:59 +0200 From: Kirill Ponomarew To: David O'Brien Message-ID: <20051024075559.GB28532@voodoo.bawue.com> References: <200507311707.j6VH7NSk088117@repoman.freebsd.org> <20051024025816.GA2361@dragon.NUXI.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051024025816.GA2361@dragon.NUXI.org> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE Keywords: 477273987 Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.gcc.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: Mon, 24 Oct 2005 07:56:08 -0000 On Sun, Oct 23, 2005 at 07:58:16PM -0700, David O'Brien wrote: > On Sun, Jul 31, 2005 at 05:07:23PM +0000, Kirill Ponomarew wrote: > > krion 2005-07-31 17:07:23 UTC > > > > FreeBSD ports repository > > > > Modified files: > > Mk bsd.gcc.mk > > Log: > > Remove gcc3.1 > > Please put this thru an experimental package build next time. Why ? What is broken by this commit ? > I'm surprised Portmgr allowed such a change without going thru > one. -Kirill From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:16:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75D0016A41F; Mon, 24 Oct 2005 08:16:01 +0000 (GMT) (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 B05DF43D49; Mon, 24 Oct 2005 08:16:00 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8G0Um079511; Mon, 24 Oct 2005 08:16:00 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8Fxwj079510; Mon, 24 Oct 2005 08:15:59 GMT (envelope-from ceri) Message-Id: <200510240815.j9O8Fxwj079510@repoman.freebsd.org> From: Ceri Davies Date: Mon, 24 Oct 2005 08:15: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 MAINTAINERS X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 08:16:01 -0000 ceri 2005-10-24 08:15:58 UTC FreeBSD src repository Modified files: . MAINTAINERS Log: Note that bugmaster would like to review commits to send-pr. Revision Changes Path 1.126 +1 -0 src/MAINTAINERS From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:22:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77DB816A41F; Mon, 24 Oct 2005 08:22:29 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33F3343D45; Mon, 24 Oct 2005 08:22:29 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8MTga079767; Mon, 24 Oct 2005 08:22:29 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8MSTD079766; Mon, 24 Oct 2005 08:22:28 GMT (envelope-from krion) Message-Id: <200510240822.j9O8MSTD079766@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 24 Oct 2005 08:22: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/libidn 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, 24 Oct 2005 08:22:29 -0000 krion 2005-10-24 08:22:28 UTC FreeBSD ports repository Modified files: devel/libidn Makefile distinfo pkg-plist Log: Update to 0.5.20 Revision Changes Path 1.51 +1 -1 ports/devel/libidn/Makefile 1.36 +2 -2 ports/devel/libidn/distinfo 1.22 +1 -0 ports/devel/libidn/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:22:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D35616A420; Mon, 24 Oct 2005 08:22:43 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A38743D4C; Mon, 24 Oct 2005 08:22:43 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8Mh1t079817; Mon, 24 Oct 2005 08:22:43 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8MhNa079816; Mon, 24 Oct 2005 08:22:43 GMT (envelope-from krion) Message-Id: <200510240822.j9O8MhNa079816@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 24 Oct 2005 08:22: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/security/gsasl 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, 24 Oct 2005 08:22:43 -0000 krion 2005-10-24 08:22:43 UTC FreeBSD ports repository Modified files: security/gsasl Makefile distinfo Log: Update to 0.2.10 Revision Changes Path 1.29 +1 -1 ports/security/gsasl/Makefile 1.20 +2 -2 ports/security/gsasl/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:26:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17FAA16A41F; Mon, 24 Oct 2005 08:26:19 +0000 (GMT) (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 DA43243D46; Mon, 24 Oct 2005 08:26:18 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8QIOh080040; Mon, 24 Oct 2005 08:26:18 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8QIFL080039; Mon, 24 Oct 2005 08:26:18 GMT (envelope-from tobez) Message-Id: <200510240826.j9O8QIFL080039@repoman.freebsd.org> From: Anton Berezin Date: Mon, 24 Oct 2005 08:26: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/textproc Makefile ports/textproc/p5-HTML-Entities-Numbered 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, 24 Oct 2005 08:26:19 -0000 tobez 2005-10-24 08:26:18 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-HTML-Entities-Numbered Makefile distinfo pkg-descr pkg-plist Log: Add textproc/p5-HTML-Entities-Numbered 0.04, a Perl module to convert named HTML entities into corresponding numbered HTML entities, and the other way around. Revision Changes Path 1.871 +1 -0 ports/textproc/Makefile 1.1 +23 -0 ports/textproc/p5-HTML-Entities-Numbered/Makefile (new) 1.1 +2 -0 ports/textproc/p5-HTML-Entities-Numbered/distinfo (new) 1.1 +5 -0 ports/textproc/p5-HTML-Entities-Numbered/pkg-descr (new) 1.1 +9 -0 ports/textproc/p5-HTML-Entities-Numbered/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:26:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E834016A466; Mon, 24 Oct 2005 08:26:30 +0000 (GMT) (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 A23D343D48; Mon, 24 Oct 2005 08:26:30 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8QUxv080086; Mon, 24 Oct 2005 08:26:30 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8QUKD080085; Mon, 24 Oct 2005 08:26:30 GMT (envelope-from tobez) Message-Id: <200510240826.j9O8QUKD080085@repoman.freebsd.org> From: Anton Berezin Date: Mon, 24 Oct 2005 08:26: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: 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, 24 Oct 2005 08:26:32 -0000 tobez 2005-10-24 08:26:30 UTC FreeBSD ports repository Modified files: . modules Log: p5-HTML-Entities-Numbered --> ports/textproc/p5-HTML-Entities-Numbered Revision Changes Path 1.13455 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:27:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FA5416A41F; Mon, 24 Oct 2005 08:27:04 +0000 (GMT) (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 2F2E243D45; Mon, 24 Oct 2005 08:27:04 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8R4KS080198; Mon, 24 Oct 2005 08:27:04 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8R4bl080197; Mon, 24 Oct 2005 08:27:04 GMT (envelope-from tobez) Message-Id: <200510240827.j9O8R4bl080197@repoman.freebsd.org> From: Anton Berezin Date: Mon, 24 Oct 2005 08:27: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/textproc Makefile ports/textproc/p5-HTML-Fraction 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, 24 Oct 2005 08:27:04 -0000 tobez 2005-10-24 08:27:04 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-HTML-Fraction Makefile distinfo pkg-descr pkg-plist Log: Add textproc/p5-HTML-Fraction 0.40, a Perl module to encode fractions as HTML entities. Revision Changes Path 1.872 +1 -0 ports/textproc/Makefile 1.1 +28 -0 ports/textproc/p5-HTML-Fraction/Makefile (new) 1.1 +2 -0 ports/textproc/p5-HTML-Fraction/distinfo (new) 1.1 +7 -0 ports/textproc/p5-HTML-Fraction/pkg-descr (new) 1.1 +5 -0 ports/textproc/p5-HTML-Fraction/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:27:18 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FC7716A422; Mon, 24 Oct 2005 08:27:18 +0000 (GMT) (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 C440943D46; Mon, 24 Oct 2005 08:27:17 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8RHh2080244; Mon, 24 Oct 2005 08:27:17 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8RHB4080243; Mon, 24 Oct 2005 08:27:17 GMT (envelope-from tobez) Message-Id: <200510240827.j9O8RHB4080243@repoman.freebsd.org> From: Anton Berezin Date: Mon, 24 Oct 2005 08: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: 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, 24 Oct 2005 08:27:18 -0000 tobez 2005-10-24 08:27:17 UTC FreeBSD ports repository Modified files: . modules Log: p5-HTML-Fraction --> ports/textproc/p5-HTML-Fraction Revision Changes Path 1.13456 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:27:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 962DC16A41F; Mon, 24 Oct 2005 08:27:53 +0000 (GMT) (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 5102943D45; Mon, 24 Oct 2005 08:27:53 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8Rrar080318; Mon, 24 Oct 2005 08:27:53 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8RrKU080317; Mon, 24 Oct 2005 08:27:53 GMT (envelope-from ehaupt) Message-Id: <200510240827.j9O8RrKU080317@repoman.freebsd.org> From: Emanuel Haupt Date: Mon, 24 Oct 2005 08:27: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/databases/p5-DBI-Shell 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, 24 Oct 2005 08:27:53 -0000 ehaupt 2005-10-24 08:27:53 UTC FreeBSD ports repository Modified files: databases/p5-DBI-Shell Makefile pkg-plist Log: - Fix pkg-plist, bin/dbish was not registered properly which prevented the file from being added to the package - Bump PORTREVISION PR: 86962 Submitted by: Martin Jackson Approved by: maintainer timeout (18 days) Revision Changes Path 1.3 +1 -1 ports/databases/p5-DBI-Shell/Makefile 1.3 +1 -1 ports/databases/p5-DBI-Shell/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:28:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0FE516A41F; Mon, 24 Oct 2005 08:28:28 +0000 (GMT) (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 A8B9243D45; Mon, 24 Oct 2005 08:28:28 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8SSpM080459; Mon, 24 Oct 2005 08:28:28 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8SS87080458; Mon, 24 Oct 2005 08:28:28 GMT (envelope-from tobez) Message-Id: <200510240828.j9O8SS87080458@repoman.freebsd.org> From: Anton Berezin Date: Mon, 24 Oct 2005 08:28: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/math Makefile ports/math/p5-Math-ConvexHull 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, 24 Oct 2005 08:28:29 -0000 tobez 2005-10-24 08:28:28 UTC FreeBSD ports repository Modified files: math Makefile Added files: math/p5-Math-ConvexHull Makefile distinfo pkg-descr pkg-plist Log: Add math/p5-Math-ConvexHull 1.00, a Perl module to calculate convex hulls using Graham's scan (n*log(n)). Revision Changes Path 1.343 +1 -0 ports/math/Makefile 1.1 +28 -0 ports/math/p5-Math-ConvexHull/Makefile (new) 1.1 +2 -0 ports/math/p5-Math-ConvexHull/distinfo (new) 1.1 +9 -0 ports/math/p5-Math-ConvexHull/pkg-descr (new) 1.1 +5 -0 ports/math/p5-Math-ConvexHull/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:29:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7967516A41F; Mon, 24 Oct 2005 08:29:35 +0000 (GMT) (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 A132143D62; Mon, 24 Oct 2005 08:29:29 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8TT6E080584; Mon, 24 Oct 2005 08:29:29 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8TTbt080583; Mon, 24 Oct 2005 08:29:29 GMT (envelope-from tobez) Message-Id: <200510240829.j9O8TTbt080583@repoman.freebsd.org> From: Anton Berezin Date: Mon, 24 Oct 2005 08: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: ports/textproc Makefile ports/textproc/p5-Text-Context-EitherSide 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, 24 Oct 2005 08:29:35 -0000 tobez 2005-10-24 08:29:29 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Text-Context-EitherSide Makefile distinfo pkg-descr pkg-plist Log: Add textproc/p5-Text-Context-EitherSide 1.3, a Perl module to get N words either side of search keywords. Revision Changes Path 1.873 +1 -0 ports/textproc/Makefile 1.1 +28 -0 ports/textproc/p5-Text-Context-EitherSide/Makefile (new) 1.1 +2 -0 ports/textproc/p5-Text-Context-EitherSide/distinfo (new) 1.1 +6 -0 ports/textproc/p5-Text-Context-EitherSide/pkg-descr (new) 1.1 +7 -0 ports/textproc/p5-Text-Context-EitherSide/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:31:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4435316A41F; Mon, 24 Oct 2005 08:31:16 +0000 (GMT) (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 02DF943D45; Mon, 24 Oct 2005 08:31:16 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8VF6k080764; Mon, 24 Oct 2005 08:31:15 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8VFOs080763; Mon, 24 Oct 2005 08:31:15 GMT (envelope-from tobez) Message-Id: <200510240831.j9O8VFOs080763@repoman.freebsd.org> From: Anton Berezin Date: Mon, 24 Oct 2005 08:31: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: Mon, 24 Oct 2005 08:31:16 -0000 tobez 2005-10-24 08:31:15 UTC FreeBSD ports repository Modified files: . modules Log: Manually add p5-Math-ConvexHull and p5-Text-Context-EitherSide modules (broken pipe from CVS on freefall). Revision Changes Path 1.13457 +2 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:36:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12FD116A420; Mon, 24 Oct 2005 08:36:13 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5520F43D6B; Mon, 24 Oct 2005 08:36:04 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8a35S080953; Mon, 24 Oct 2005 08:36:03 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8a3qn080952; Mon, 24 Oct 2005 08:36:03 GMT (envelope-from vs) Message-Id: <200510240836.j9O8a3qn080952@repoman.freebsd.org> From: Volker Stolz Date: Mon, 24 Oct 2005 08: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/net-mgmt/netsaint-plugins 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, 24 Oct 2005 08:36:13 -0000 vs 2005-10-24 08:36:03 UTC FreeBSD ports repository Modified files: net-mgmt/netsaint-plugins Makefile Log: Does not really require GNU make Revision Changes Path 1.31 +0 -1 ports/net-mgmt/netsaint-plugins/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:37:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB0D116A41F; Mon, 24 Oct 2005 08:37:31 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75A9143D5F; Mon, 24 Oct 2005 08:37:27 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8bRSp081022; Mon, 24 Oct 2005 08:37:27 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8bRf6081021; Mon, 24 Oct 2005 08:37:27 GMT (envelope-from vs) Message-Id: <200510240837.j9O8bRf6081021@repoman.freebsd.org> From: Volker Stolz Date: Mon, 24 Oct 2005 08:37: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-mgmt/netsaint-plugins/scripts 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: Mon, 24 Oct 2005 08:37:32 -0000 vs 2005-10-24 08:37:27 UTC FreeBSD ports repository Modified files: net-mgmt/netsaint-plugins/scripts configure Log: Enable SNMP and LDAP. Should be generally usefull and added value of cluster-runs on this paths. Revision Changes Path 1.11 +3 -3 ports/net-mgmt/netsaint-plugins/scripts/configure From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:39:15 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1622C16A41F; Mon, 24 Oct 2005 08:39:15 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C652C43D45; Mon, 24 Oct 2005 08:39:14 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8dEHn081093; Mon, 24 Oct 2005 08:39:14 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8dESe081092; Mon, 24 Oct 2005 08:39:14 GMT (envelope-from vs) Message-Id: <200510240839.j9O8dESe081092@repoman.freebsd.org> From: Volker Stolz Date: Mon, 24 Oct 2005 08:39: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/net-mgmt/netsaint-plugins/files patch-plugins_check__swap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 08:39:15 -0000 vs 2005-10-24 08:39:14 UTC FreeBSD ports repository Added files: net-mgmt/netsaint-plugins/files patch-plugins_check__swap.c Log: Hardwire 'swapinfo' details for FreeBSD since configure will fail to detect them in a jailed (e.g. package-cluster) environment Revision Changes Path 1.1 +15 -0 ports/net-mgmt/netsaint-plugins/files/patch-plugins_check__swap.c (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 08:53:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B33416A41F; Mon, 24 Oct 2005 08:53:23 +0000 (GMT) (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 EF61243D46; Mon, 24 Oct 2005 08:53:22 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8rMXF088747; Mon, 24 Oct 2005 08:53:22 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8rMtd088746; Mon, 24 Oct 2005 08:53:22 GMT (envelope-from maxim) Message-Id: <200510240853.j9O8rMtd088746@repoman.freebsd.org> From: Maxim Konovalov Date: Mon, 24 Oct 2005 08:53: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/etc rc.subr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 08:53:23 -0000 maxim 2005-10-24 08:53:22 UTC FreeBSD src repository Modified files: etc rc.subr Log: o Grammar. Submitted by: Ulrich Spoerlein MFC after: 1 week Revision Changes Path 1.40 +1 -1 src/etc/rc.subr From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:11:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C48416A41F; Mon, 24 Oct 2005 09:11:40 +0000 (GMT) (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 C0FE043D53; Mon, 24 Oct 2005 09:11:39 +0000 (GMT) (envelope-from erwin@mail.droso.net) Received: from localhost (localhost [127.0.0.1]) by mail.droso.net (Postfix) with ESMTP id 2007622995; Mon, 24 Oct 2005 11:11:38 +0200 (CEST) Received: by mail.droso.net (Postfix, from userid 1001) id 1075D2298A; Mon, 24 Oct 2005 11:11:37 +0200 (CEST) Date: Mon, 24 Oct 2005 11:11:37 +0200 From: Erwin Lansing To: "David E. O'Brien" Message-ID: <20051024091136.GT1217@droso.net> Mail-Followup-To: "David E. O'Brien" , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200510240128.j9O1Smu7056232@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="syxNSs/hKlQka4Wt" Content-Disposition: inline In-Reply-To: <200510240128.j9O1Smu7056232@repoman.freebsd.org> X-Operating-System: FreeBSD/i386 5.4-RELEASE User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd 0.1 Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/editors/vim Makefile distinfo ports/editors/vim/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: Mon, 24 Oct 2005 09:11:40 -0000 --syxNSs/hKlQka4Wt Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 24, 2005 at 01:28:48AM +0000, David E. O'Brien wrote: > obrien 2005-10-24 01:28:48 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > editors/vim Makefile distinfo=20 > editors/vim/files patch-configure=20 > Log: > Update to Vim 6.4 release! > =20 > 6.4 is a maintenance release - containing additional syntax files, tran= slations > and all 90 patches to 6.3. It is a "reset" for future patch fixes. > =20 This commit was clearly not tested. It breaks both the port (and slaves) and INDEX. Can you please take a look at it ? There are patches on -ports and ports/87903 that address this issue. -erwin --=20 Erwin Lansing DISCLAIMER: No electrons were harmed while sending this message. --syxNSs/hKlQka4Wt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDXKVIqy9aWxUlaZARAgXtAJkBeKJLCRIFoiNyPTuj4LgBHeCDYACg11x4 iJQQUrMnXkgU6CNP+N838gc= =lRxF -----END PGP SIGNATURE----- --syxNSs/hKlQka4Wt-- From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:12:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFE3F16A41F; Mon, 24 Oct 2005 09:12:57 +0000 (GMT) (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 622D043D53; Mon, 24 Oct 2005 09:12:57 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O9Cv5d089470; Mon, 24 Oct 2005 09:12:57 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O9CulB089469; Mon, 24 Oct 2005 09:12:56 GMT (envelope-from garga) Message-Id: <200510240912.j9O9CulB089469@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 09:12: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/sysutils/freesbie 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, 24 Oct 2005 09:12:57 -0000 garga 2005-10-24 09:12:56 UTC FreeBSD ports repository Modified files: sysutils/freesbie Makefile Log: - Fix OSVERSION test to mark it as IGNORE PR: ports/87896 Submitted by: Virgil Champlin Approved by: maintainer Revision Changes Path 1.10 +1 -1 ports/sysutils/freesbie/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:22:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E67E716A41F; Mon, 24 Oct 2005 09:22:01 +0000 (GMT) (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 AC9E143D48; Mon, 24 Oct 2005 09:22:01 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O9M1l9089806; Mon, 24 Oct 2005 09:22:01 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O9M0ql089803; Mon, 24 Oct 2005 09:22:00 GMT (envelope-from sem) Message-Id: <200510240922.j9O9M0ql089803@repoman.freebsd.org> From: Sergey Matveychuk Date: Mon, 24 Oct 2005 09:21: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/net/poptop Makefile distinfo pkg-plist ports/net/poptop/files patch-aa patch-ab patch-ad patch-ae patch-defaults.h patch-pptpctrl.c patch-pptpd.8 patch-pptpd.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: Mon, 24 Oct 2005 09:22:02 -0000 sem 2005-10-24 09:21:58 UTC FreeBSD ports repository Modified files: net/poptop Makefile distinfo pkg-plist net/poptop/files patch-aa patch-ab patch-ad patch-ae Added files: net/poptop/files patch-defaults.h patch-pptpctrl.c patch-pptpd.8 patch-pptpd.conf.5 Log: - Update to 1.2.1 - Grant maintainership to submitter PR: ports/87891 Submitted by: Oleg M. Golovanov Revision Changes Path 1.21 +17 -5 ports/net/poptop/Makefile 1.8 +2 -2 ports/net/poptop/distinfo 1.4 +11 -17 ports/net/poptop/files/patch-aa 1.6 +353 -33 ports/net/poptop/files/patch-ab 1.3 +9 -37 ports/net/poptop/files/patch-ad 1.4 +51 -13 ports/net/poptop/files/patch-ae 1.1 +11 -0 ports/net/poptop/files/patch-defaults.h (new) 1.1 +11 -0 ports/net/poptop/files/patch-pptpctrl.c (new) 1.1 +20 -0 ports/net/poptop/files/patch-pptpd.8 (new) 1.1 +11 -0 ports/net/poptop/files/patch-pptpd.conf.5 (new) 1.3 +4 -2 ports/net/poptop/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:26:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE66016A41F; Mon, 24 Oct 2005 09:26:41 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CAAB43D48; Mon, 24 Oct 2005 09:26:41 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O9QfrB090047; Mon, 24 Oct 2005 09:26:41 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O9QfpN090045; Mon, 24 Oct 2005 09:26:41 GMT (envelope-from jylefort) Message-Id: <200510240926.j9O9QfpN090045@repoman.freebsd.org> From: Jean-Yves Lefort Date: Mon, 24 Oct 2005 09:26: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/misc/gaim-ignorance Makefile distinfo pkg-descr pkg-plist ports/misc/gaim-ignorance/files patch-ignorance.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 09:26:42 -0000 jylefort 2005-10-24 09:26:40 UTC FreeBSD ports repository Modified files: misc/gaim-ignorance Makefile distinfo pkg-descr pkg-plist Added files: misc/gaim-ignorance/files patch-ignorance.c Log: - Update to 2.2 [1] - Also copy ignorance.conf when installing from a package - Unsilence post-install - Polish the Makefile [1]: PR: ports/87900 Submitted by: maintainer Revision Changes Path 1.10 +9 -19 ports/misc/gaim-ignorance/Makefile 1.5 +2 -2 ports/misc/gaim-ignorance/distinfo 1.1 +14 -0 ports/misc/gaim-ignorance/files/patch-ignorance.c (new) 1.2 +1 -1 ports/misc/gaim-ignorance/pkg-descr 1.2 +4 -3 ports/misc/gaim-ignorance/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:31:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6BBD16A41F; Mon, 24 Oct 2005 09:31:08 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6190843D53; Mon, 24 Oct 2005 09:31:08 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O9V8IV090310; Mon, 24 Oct 2005 09:31:08 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O9V8rT090309; Mon, 24 Oct 2005 09:31:08 GMT (envelope-from vs) Message-Id: <200510240931.j9O9V8rT090309@repoman.freebsd.org> From: Volker Stolz Date: Mon, 24 Oct 2005 09:31: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/irc/olirc Makefile ports/irc/olirc/files patch-configure.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, 24 Oct 2005 09:31:08 -0000 vs 2005-10-24 09:31:07 UTC FreeBSD ports repository Modified files: irc/olirc Makefile Added files: irc/olirc/files patch-configure.in Log: Make ${LOCALBASE}-safe PR: ports/878874 Submitted by: maintainer Revision Changes Path 1.14 +2 -1 ports/irc/olirc/Makefile 1.1 +25 -0 ports/irc/olirc/files/patch-configure.in (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:32:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B97E16A41F; Mon, 24 Oct 2005 09:32:56 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49CC443D53; Mon, 24 Oct 2005 09:32:56 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O9Wuhf090400; Mon, 24 Oct 2005 09:32:56 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O9Wudc090398; Mon, 24 Oct 2005 09:32:56 GMT (envelope-from vs) Message-Id: <200510240932.j9O9Wudc090398@repoman.freebsd.org> From: Volker Stolz Date: Mon, 24 Oct 2005 09:32: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/math/xppaut/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: Mon, 24 Oct 2005 09:32:56 -0000 vs 2005-10-24 09:32:55 UTC FreeBSD ports repository Modified files: math/xppaut/files patch-Makefile Log: Make X11BASE-safe PR: ports/87879 Submitted by: maintainer Revision Changes Path 1.3 +1 -1 ports/math/xppaut/files/patch-Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:33:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7293B16A41F; Mon, 24 Oct 2005 09:33:34 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2061643D53; Mon, 24 Oct 2005 09:33:34 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O9XYq1090448; Mon, 24 Oct 2005 09:33:34 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O9XX4O090447; Mon, 24 Oct 2005 09:33:33 GMT (envelope-from jylefort) Message-Id: <200510240933.j9O9XX4O090447@repoman.freebsd.org> From: Jean-Yves Lefort Date: Mon, 24 Oct 2005 09:33: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/mail/postfix-policyd-weight 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, 24 Oct 2005 09:33:34 -0000 jylefort 2005-10-24 09:33:33 UTC FreeBSD ports repository Modified files: mail/postfix-policyd-weight Makefile distinfo Log: Update to 0.1.11 PR: ports/87912 Submitted by: maintainer Revision Changes Path 1.7 +2 -2 ports/mail/postfix-policyd-weight/Makefile 1.7 +2 -2 ports/mail/postfix-policyd-weight/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:34:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD27516A41F; Mon, 24 Oct 2005 09:34:43 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C9FA43D4C; Mon, 24 Oct 2005 09:34:43 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O9Yh6V090508; Mon, 24 Oct 2005 09:34:43 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O9YhI7090507; Mon, 24 Oct 2005 09:34:43 GMT (envelope-from vs) Message-Id: <200510240934.j9O9YhI7090507@repoman.freebsd.org> From: Volker Stolz Date: Mon, 24 Oct 2005 09:34: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/x11/accessx 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, 24 Oct 2005 09:34:43 -0000 vs 2005-10-24 09:34:43 UTC FreeBSD ports repository Modified files: x11/accessx Makefile Log: Make X11BASE-safe PR: ports/87892 Submitted by: maintainer Revision Changes Path 1.9 +1 -0 ports/x11/accessx/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:36:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 502B716A41F; Mon, 24 Oct 2005 09:36:47 +0000 (GMT) (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 0BE0843D46; Mon, 24 Oct 2005 09:36:47 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O9ak7e090618; Mon, 24 Oct 2005 09:36:46 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O9aj05090617; Mon, 24 Oct 2005 09:36:45 GMT (envelope-from garga) Message-Id: <200510240936.j9O9aj05090617@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 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/www/zope31 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, 24 Oct 2005 09:36:47 -0000 garga 2005-10-24 09:36:44 UTC FreeBSD ports repository Modified files: www/zope31 Makefile Log: - Fix LATEST_LINK PR: ports/87913 Submitted by: maintainer Revision Changes Path 1.2 +1 -0 ports/www/zope31/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:39:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F206C16A41F; Mon, 24 Oct 2005 09:39:09 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6BFB43D55; Mon, 24 Oct 2005 09:39:09 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O9d93q090702; Mon, 24 Oct 2005 09:39:09 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O9d9X4090701; Mon, 24 Oct 2005 09:39:09 GMT (envelope-from vs) Message-Id: <200510240939.j9O9d9X4090701@repoman.freebsd.org> From: Volker Stolz Date: Mon, 24 Oct 2005 09:39: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/misc/jbidwatcher 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, 24 Oct 2005 09:39:10 -0000 vs 2005-10-24 09:39:09 UTC FreeBSD ports repository Modified files: misc/jbidwatcher Makefile distinfo Log: Update to 0.9.8 PR: ports/87897 Submitted by: Stephen Hurd Revision Changes Path 1.4 +1 -1 ports/misc/jbidwatcher/Makefile 1.3 +2 -2 ports/misc/jbidwatcher/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:43:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A321216A420; Mon, 24 Oct 2005 09:43:27 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6030643D4C; Mon, 24 Oct 2005 09:43:27 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O9hRKx090891; Mon, 24 Oct 2005 09:43:27 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O9hR8r090890; Mon, 24 Oct 2005 09:43:27 GMT (envelope-from krion) Message-Id: <200510240943.j9O9hR8r090890@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 24 Oct 2005 09:43: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/vim 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, 24 Oct 2005 09:43:27 -0000 krion 2005-10-24 09:43:26 UTC FreeBSD ports repository Modified files: editors/vim Makefile Log: Fix breakage with portupgrade(1). Submitted by: mezz Approved by: portmgr hat Revision Changes Path 1.269 +5 -5 ports/editors/vim/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:53:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D238B16A41F; Mon, 24 Oct 2005 09:53:40 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A24A543D48; Mon, 24 Oct 2005 09:53:40 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O9reoT091308; Mon, 24 Oct 2005 09:53:40 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O9recM091307; Mon, 24 Oct 2005 09:53:40 GMT (envelope-from jylefort) Message-Id: <200510240953.j9O9recM091307@repoman.freebsd.org> From: Jean-Yves Lefort Date: Mon, 24 Oct 2005 09:53: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/net6 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, 24 Oct 2005 09:53:41 -0000 jylefort 2005-10-24 09:53:40 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/net6 Makefile distinfo pkg-descr pkg-plist Log: Add net6. net6 is a library which eases the development of network-based applications as it provides a TCP protocol abstraction for C++. It is portable to both the Windows and Unix-like platforms. WWW: http://gobby.0x539.de PR: ports/87685 Submitted by: Andreas Kohn Revision Changes Path 1.1560 +1 -0 ports/net/Makefile 1.1 +37 -0 ports/net/net6/Makefile (new) 1.1 +2 -0 ports/net/net6/distinfo (new) 1.1 +5 -0 ports/net/net6/pkg-descr (new) 1.1 +20 -0 ports/net/net6/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 09:54:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD82816A41F; Mon, 24 Oct 2005 09:54:36 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85F7943D4C; Mon, 24 Oct 2005 09:54:36 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O9sa1F091363; Mon, 24 Oct 2005 09:54:36 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O9saAu091362; Mon, 24 Oct 2005 09:54:36 GMT (envelope-from jylefort) Message-Id: <200510240954.j9O9saAu091362@repoman.freebsd.org> From: Jean-Yves Lefort Date: Mon, 24 Oct 2005 09: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: 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, 24 Oct 2005 09:54:37 -0000 jylefort 2005-10-24 09:54:36 UTC FreeBSD ports repository Modified files: . modules Log: net6 --> ports/net/net6 Revision Changes Path 1.13458 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Oct 24 10:30:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C89B16A41F; Mon, 24 Oct 2005 10:30:50 +0000 (GMT) (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 597A443D48; Mon, 24 Oct 2005 10:30:50 +0000 (GMT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OAUojM092764; Mon, 24 Oct 2005 10:30:50 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OAUo7e092763; Mon, 24 Oct 2005 10:30:50 GMT (envelope-from brian) Message-Id: <200510241030.j9OAUo7e092763@repoman.freebsd.org> From: Brian Somers Date: Mon, 24 Oct 2005 10:30: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/p5-Kwiki-Notify-Mail 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, 24 Oct 2005 10:30:50 -0000 brian 2005-10-24 10:30:50 UTC FreeBSD ports repository Modified files: www/p5-Kwiki-Notify-Mail Makefile Log: Add some missing dependencies Revision Changes Path 1.4 +3 -1 ports/www/p5-Kwiki-Notify-Mail/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 10:56:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65F4516A41F; Mon, 24 Oct 2005 10:56:26 +0000 (GMT) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 225D643D49; Mon, 24 Oct 2005 10:56:26 +0000 (GMT) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OAuPgc093759; Mon, 24 Oct 2005 10:56:26 GMT (envelope-from az@repoman.freebsd.org) Received: (from az@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OAuPls093758; Mon, 24 Oct 2005 10:56:25 GMT (envelope-from az) Message-Id: <200510241056.j9OAuPls093758@repoman.freebsd.org> From: Andrej Zverev Date: Mon, 24 Oct 2005 10:56: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/www/p5-WWW-Mixi 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, 24 Oct 2005 10:56:26 -0000 az 2005-10-24 10:56:25 UTC FreeBSD ports repository Modified files: www/p5-WWW-Mixi Makefile distinfo Log: - Update to version 0.42 PR: ports/87908 Submitted by: TAKAHASHI Kaoru (maintainer) Approved by: sem (mentor) Revision Changes Path 1.4 +1 -1 ports/www/p5-WWW-Mixi/Makefile 1.3 +2 -2 ports/www/p5-WWW-Mixi/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 11:22:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B34C916A41F; Mon, 24 Oct 2005 11:22:14 +0000 (GMT) (envelope-from jmz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FB1143D45; Mon, 24 Oct 2005 11:22:14 +0000 (GMT) (envelope-from jmz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OBMEVB094735; Mon, 24 Oct 2005 11:22:14 GMT (envelope-from jmz@repoman.freebsd.org) Received: (from jmz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OBMERH094734; Mon, 24 Oct 2005 11:22:14 GMT (envelope-from jmz) Message-Id: <200510241122.j9OBMERH094734@repoman.freebsd.org> From: Jean-Marc Zucconi Date: Mon, 24 Oct 2005 11:22: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/benchmarks/iozone 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, 24 Oct 2005 11:22:14 -0000 jmz 2005-10-24 11:22:14 UTC FreeBSD ports repository Modified files: benchmarks/iozone Makefile distinfo Log: Upgrade to version 3.248 PR: /ports/87580 Submitted by: Jean Milanez Melo Revision Changes Path 1.43 +3 -3 ports/benchmarks/iozone/Makefile 1.18 +2 -2 ports/benchmarks/iozone/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 11:38:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC8DD16A41F; Mon, 24 Oct 2005 11:38:04 +0000 (GMT) (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 8270743D55; Mon, 24 Oct 2005 11:38:04 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OBc4BW095284; Mon, 24 Oct 2005 11:38:04 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OBc4P4095283; Mon, 24 Oct 2005 11:38:04 GMT (envelope-from lth) Message-Id: <200510241138.j9OBc4P4095283@repoman.freebsd.org> From: Lars Thegler Date: Mon, 24 Oct 2005 11:38: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-mgmt/p5-Net-SNMP 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, 24 Oct 2005 11:38:05 -0000 lth 2005-10-24 11:38:04 UTC FreeBSD ports repository Modified files: net-mgmt/p5-Net-SNMP Makefile distinfo Log: Update to 5.2.0 Revision Changes Path 1.17 +2 -2 ports/net-mgmt/p5-Net-SNMP/Makefile 1.10 +2 -2 ports/net-mgmt/p5-Net-SNMP/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 11:40:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34C5B16A41F; Mon, 24 Oct 2005 11:40:40 +0000 (GMT) (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 E656D43D48; Mon, 24 Oct 2005 11:40:39 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OBed84095447; Mon, 24 Oct 2005 11:40:39 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OBed1v095446; Mon, 24 Oct 2005 11:40:39 GMT (envelope-from ehaupt) Message-Id: <200510241140.j9OBed1v095446@repoman.freebsd.org> From: Emanuel Haupt Date: Mon, 24 Oct 2005 11:40: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/naim 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, 24 Oct 2005 11:40:40 -0000 ehaupt 2005-10-24 11:40:39 UTC FreeBSD ports repository Modified files: net/naim Makefile Log: - Mark broken, distfile is unfetchable - Reset maintainer, address bounces [1] [1] 451 4.3.0 mailer local died with signal 11 (core dumped) Arguments: dspam -f ehaupt@FreeBSD.org --deliver=innocent --user tlp -d %u ... Deferred: local mailer (/usr/local/dspam/bin/dspam) exited with EX_TEMPFAIL Message could not be delivered for 1 day Message will be deleted from queue Reported by: pointyhat via kris Revision Changes Path 1.48 +3 -1 ports/net/naim/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 12:00:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFA2B16A420; Mon, 24 Oct 2005 12:00:24 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 621B143D49; Mon, 24 Oct 2005 12:00:24 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OC0Obl096175; Mon, 24 Oct 2005 12:00:24 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OC0OuD096174; Mon, 24 Oct 2005 12:00:24 GMT (envelope-from jylefort) Message-Id: <200510241200.j9OC0OuD096174@repoman.freebsd.org> From: Jean-Yves Lefort Date: Mon, 24 Oct 2005 12:00: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/mathomatic Makefile distinfo ports/math/mathomatic/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: Mon, 24 Oct 2005 12:00:25 -0000 jylefort 2005-10-24 12:00:23 UTC FreeBSD ports repository Modified files: math/mathomatic Makefile distinfo Removed files: math/mathomatic/files patch-makefile Log: - Update to 12.5.0 [1] - Install with ${INSTALL_*} - Remove -O from vendor ${CFLAGS} - Remove -s from vendor ${LDFLAGS} - Polish the Makefile [1]: PR: ports/87887 Submitted by: maintainer Revision Changes Path 1.4 +12 -7 ports/math/mathomatic/Makefile 1.4 +2 -2 ports/math/mathomatic/distinfo 1.4 +0 -20 ports/math/mathomatic/files/patch-makefile (dead) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 12:02:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E421416A41F; Mon, 24 Oct 2005 12:02:46 +0000 (GMT) (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 D4C4E43D79; Mon, 24 Oct 2005 12:02:41 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OC2f3d096273; Mon, 24 Oct 2005 12:02:41 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OC2fFP096272; Mon, 24 Oct 2005 12:02:41 GMT (envelope-from ehaupt) Message-Id: <200510241202.j9OC2fFP096272@repoman.freebsd.org> From: Emanuel Haupt Date: Mon, 24 Oct 2005 12:02: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/sendok 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, 24 Oct 2005 12:02:47 -0000 ehaupt 2005-10-24 12:02:41 UTC FreeBSD ports repository Modified files: mail/sendok Makefile Log: Remove superfluous post-patch operation. Approved by: maintainer Revision Changes Path 1.2 +0 -1 ports/mail/sendok/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 12:12:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25F1316A41F; Mon, 24 Oct 2005 12:12:07 +0000 (GMT) (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 D7C7F43D53; Mon, 24 Oct 2005 12:12:06 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OCC65C096622; Mon, 24 Oct 2005 12:12:06 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OCC63c096621; Mon, 24 Oct 2005 12:12:06 GMT (envelope-from garga) Message-Id: <200510241212.j9OCC63c096621@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 12:12: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/audio/aureal-kmod 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, 24 Oct 2005 12:12:07 -0000 garga 2005-10-24 12:12:06 UTC FreeBSD ports repository Modified files: audio/aureal-kmod Makefile Log: - Mark as DEPRECATED and set EXPIRATION_DATE PR: ports/87818 Submitted by: Jean Milanez Melo Approved by: port broken for a long time Revision Changes Path 1.26 +3 -0 ports/audio/aureal-kmod/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 12:12:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDE9316A439; Mon, 24 Oct 2005 12:12:18 +0000 (GMT) (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 47F6F43D49; Mon, 24 Oct 2005 12:12:18 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OCCIiX096657; Mon, 24 Oct 2005 12:12:18 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OCCILi096656; Mon, 24 Oct 2005 12:12:18 GMT (envelope-from garga) Message-Id: <200510241212.j9OCCILi096656@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 12:12: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/szip 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, 24 Oct 2005 12:12:20 -0000 garga 2005-10-24 12:12:18 UTC FreeBSD ports repository Modified files: archivers/szip Makefile Log: - Mark as DEPRECATED and set EXPIRATION_DATE PR: ports/87807 Submitted by: Jean Milanez Melo Approved by: port broken for a long time Revision Changes Path 1.10 +3 -0 ports/archivers/szip/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 12:12:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BD2E16A41F; Mon, 24 Oct 2005 12:12:40 +0000 (GMT) (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 3962143D48; Mon, 24 Oct 2005 12:12:40 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OCCeiF096695; Mon, 24 Oct 2005 12:12:40 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OCCeQ4096694; Mon, 24 Oct 2005 12:12:40 GMT (envelope-from garga) Message-Id: <200510241212.j9OCCeQ4096694@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 12:12: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/misc/wmproxyper 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, 24 Oct 2005 12:12:40 -0000 garga 2005-10-24 12:12:40 UTC FreeBSD ports repository Modified files: misc/wmproxyper Makefile Log: - Mark as DEPRECATED and set EXPIRATION_DATE PR: ports/87804 Submitted by: Jean Milanez Melo Revision Changes Path 1.10 +3 -0 ports/misc/wmproxyper/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 12:12:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13BA116A41F; Mon, 24 Oct 2005 12:12:57 +0000 (GMT) (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 A314443D48; Mon, 24 Oct 2005 12:12:56 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OCCuAe096743; Mon, 24 Oct 2005 12:12:56 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OCCuf4096742; Mon, 24 Oct 2005 12:12:56 GMT (envelope-from garga) Message-Id: <200510241212.j9OCCuf4096742@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 12:12: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/mail/yadda 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, 24 Oct 2005 12:12:57 -0000 garga 2005-10-24 12:12:56 UTC FreeBSD ports repository Modified files: mail/yadda Makefile Log: - Mark as DEPRECATED and set EXPIRATION_DATE PR: ports/87803 Submitted by: Jean Milanez Melo Revision Changes Path 1.7 +3 -0 ports/mail/yadda/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 12:33:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FB5416A41F; Mon, 24 Oct 2005 12:33:43 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C3AD43D49; Mon, 24 Oct 2005 12:33:43 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OCXg24099938; Mon, 24 Oct 2005 12:33:42 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OCXg7R099937; Mon, 24 Oct 2005 12:33:42 GMT (envelope-from vs) Message-Id: <200510241233.j9OCXg7R099937@repoman.freebsd.org> From: Volker Stolz Date: Mon, 24 Oct 2005 12:33: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/news/slrnconf 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, 24 Oct 2005 12:33:43 -0000 vs 2005-10-24 12:33:42 UTC FreeBSD ports repository Modified files: news/slrnconf Makefile distinfo Log: Update to 0.8.4 Revision Changes Path 1.6 +5 -8 ports/news/slrnconf/Makefile 1.4 +2 -2 ports/news/slrnconf/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 12:36:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEED216A41F; Mon, 24 Oct 2005 12:36:20 +0000 (GMT) (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 44D8D43D48; Mon, 24 Oct 2005 12:36:19 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5EDA6.dip.t-dialin.net [84.165.237.166]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id j9OCH5Hp021312; Mon, 24 Oct 2005 14:17:06 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from localhost (localhost [127.0.0.1]) by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id j9OCaDUm079522; Mon, 24 Oct 2005 14:36:13 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by netchild.homeip.net (Horde MIME library) with HTTP; Mon, 24 Oct 2005 14:36:13 +0200 Message-ID: <20051024143613.hu726dyokc4wco88@netchild.homeip.net> X-Priority: 3 (Normal) Date: Mon, 24 Oct 2005 14:36:13 +0200 From: Alexander Leidinger To: "David E. O'Brien" References: <200510240034.j9O0YDgG047096@repoman.freebsd.org> In-Reply-To: <200510240034.j9O0YDgG047096@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) / FreeBSD-4.11 X-Virus-Scanned: by amavisd-new Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/editors/vim 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, 24 Oct 2005 12:36:21 -0000 "David E. O'Brien" wrote: > obrien 2005-10-24 00:34:13 UTC > > FreeBSD ports repository > > Modified files: > editors/vim Makefile > Log: > Attempt to fix to respect non-standard LOCALBASE/X11BASE settings. > Let me just take this opportunity to express how much I hate autoconf's > attempt at containing AI, and note the size of hammer one has to use to > knock some real knowledge into its head. In your commit you use PREFIX instead of LOCALBASE/X11BASE, so this commit message confuses me. I've compiled vim 6.[34] on Solaris 10 recently and I had no problem to use "--prefix=", so I doubt that replacing /usr/local with PREFIX as a reinplace command is supposed to fix the destination. But PREFIX is not right for a non-standard LOCALBASE/X11BASE. What is this commit supposed to do? Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 If you've seen one redwood, you've seen them all. -- Ronald Reagan From owner-cvs-all@FreeBSD.ORG Mon Oct 24 12:44:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 199C716A41F; Mon, 24 Oct 2005 12:44:21 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDF8143D45; Mon, 24 Oct 2005 12:44:20 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OCiKTm000808; Mon, 24 Oct 2005 12:44:20 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OCiKXp000807; Mon, 24 Oct 2005 12:44:20 GMT (envelope-from vs) Message-Id: <200510241244.j9OCiKXp000807@repoman.freebsd.org> From: Volker Stolz Date: Mon, 24 Oct 2005 12:44: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/news/cleanscore 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, 24 Oct 2005 12:44:21 -0000 vs 2005-10-24 12:44:20 UTC FreeBSD ports repository Modified files: news/cleanscore Makefile Log: Tweak meta-data a bit (PERL5_RUN/REINPLACE) Revision Changes Path 1.8 +3 -2 ports/news/cleanscore/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 12:55:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 006A816A41F; Mon, 24 Oct 2005 12:55:27 +0000 (GMT) (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 B3A3343D46; Mon, 24 Oct 2005 12:55:27 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OCtR4t008369; Mon, 24 Oct 2005 12:55:27 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OCtRwG008368; Mon, 24 Oct 2005 12:55:27 GMT (envelope-from dinoex) Message-Id: <200510241255.j9OCtRwG008368@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 24 Oct 2005 12: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/deskutils/abacus 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, 24 Oct 2005 12:55:28 -0000 dinoex 2005-10-24 12:55:27 UTC FreeBSD ports repository Modified files: deskutils/abacus Makefile Log: - honor LDFLAGS - make PREFIX safe Reported by: kris Revision Changes Path 1.23 +2 -1 ports/deskutils/abacus/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 13:29:15 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BCE416A41F; Mon, 24 Oct 2005 13:29:15 +0000 (GMT) (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 1A21943D46; Mon, 24 Oct 2005 13:29:15 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9ODTENQ010155; Mon, 24 Oct 2005 13:29:14 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9ODTEgG010154; Mon, 24 Oct 2005 13:29:14 GMT (envelope-from kensmith) Message-Id: <200510241329.j9ODTEgG010154@repoman.freebsd.org> From: Ken Smith Date: Mon, 24 Oct 2005 13:29: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: CVSROOT approvers X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 13:29:15 -0000 kensmith 2005-10-24 13:29:14 UTC FreeBSD src repository Modified files: . approvers Log: Require re@ approval for RELENG_6_0 commits. Noticed by: imp, wilko, des Approved by: core (implicitly) Revision Changes Path 1.26 +1 -0 CVSROOT/approvers From owner-cvs-all@FreeBSD.ORG Mon Oct 24 13:46:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7115516A41F; Mon, 24 Oct 2005 13:46:27 +0000 (GMT) (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 9649743D60; Mon, 24 Oct 2005 13:46:26 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9ODkQ4c010760; Mon, 24 Oct 2005 13:46:26 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9ODkQp2010759; Mon, 24 Oct 2005 13:46:26 GMT (envelope-from mnag) Message-Id: <200510241346.j9ODkQp2010759@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 13:46: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/mail/postfix-current 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, 24 Oct 2005 13:46:27 -0000 mnag 2005-10-24 13:46:26 UTC FreeBSD ports repository Modified files: mail/postfix-current Makefile distinfo Log: Update to 2.3-20051014 Revision Changes Path 1.138 +1 -1 ports/mail/postfix-current/Makefile 1.85 +2 -2 ports/mail/postfix-current/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 13:57:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3C9416A41F; Mon, 24 Oct 2005 13:57:01 +0000 (GMT) (envelope-from gnn@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D52243D49; Mon, 24 Oct 2005 13:57:01 +0000 (GMT) (envelope-from gnn@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9ODv1F0011090; Mon, 24 Oct 2005 13:57:01 GMT (envelope-from gnn@repoman.freebsd.org) Received: (from gnn@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9ODv1uv011089; Mon, 24 Oct 2005 13:57:01 GMT (envelope-from gnn) Message-Id: <200510241357.j9ODv1uv011089@repoman.freebsd.org> From: "George V. Neville-Neil" Date: Mon, 24 Oct 2005 13:57:01 +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/events events.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, 24 Oct 2005 13:57:01 -0000 gnn 2005-10-24 13:57:01 UTC FreeBSD doc repository (src committer) Modified files: en/events events.xml Log: Submitted by: Johnny Cho popeye at yahoo-inc.com Reviewed by: gnn simon Added an event for FreeBSD Korea Conference Revision Changes Path 1.57 +22 -0 www/en/events/events.xml From owner-cvs-all@FreeBSD.ORG Mon Oct 24 13:59:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E933516A41F; Mon, 24 Oct 2005 13:59:49 +0000 (GMT) (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 39DFA43D49; Mon, 24 Oct 2005 13:59:49 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9ODxnTv011327; Mon, 24 Oct 2005 13:59:49 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9ODxnkS011326; Mon, 24 Oct 2005 13:59:49 GMT (envelope-from garga) Message-Id: <200510241359.j9ODxnkS011326@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 13:59: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 Makefile ports/net/p5-Net-NetSend Makefile distinfo pkg-descr pkg-plist ports/net/p5-Net-NetSend/work .extract_done.p5-Net-NetSend-0.12._usr_local .patch_done.p5-Net-NetSend-0.12._usr_local ports/net/p5-Net-NetSend/work/Net-NetSend-0.12 Changes MANIFEST Makefile.PL NetSend.pm README test.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, 24 Oct 2005 13:59:50 -0000 garga 2005-10-24 13:59:49 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/p5-Net-NetSend Makefile distinfo pkg-descr pkg-plist net/p5-Net-NetSend/work .extract_done.p5-Net-NetSend-0.12._usr_local .patch_done.p5-Net-NetSend-0.12._usr_local net/p5-Net-NetSend/work/Net-NetSend-0.12 Changes MANIFEST Makefile.PL NetSend.pm README test.pl Log: This module implements a client interface to the Windows Messenger Service, enabling a perl5 application to talk to windows machines. This is a pure Perl implementation that approximates the "net send" command on Windows. Author: Florian Greb WWW: http://search.cpan.org/~greb/Net-NetSend-0.12/ PR: ports/87875 Submitted by: Tsung-Han Yeh Revision Changes Path 1.1561 +1 -0 ports/net/Makefile 1.1 +28 -0 ports/net/p5-Net-NetSend/Makefile (new) 1.1 +2 -0 ports/net/p5-Net-NetSend/distinfo (new) 1.1 +7 -0 ports/net/p5-Net-NetSend/pkg-descr (new) 1.1 +5 -0 ports/net/p5-Net-NetSend/pkg-plist (new) 1.1 +0 -0 ports/net/p5-Net-NetSend/work/.extract_done.p5-Net-NetSend-0.12._usr_local (new) 1.1 +0 -0 ports/net/p5-Net-NetSend/work/.patch_done.p5-Net-NetSend-0.12._usr_local (new) 1.1 +49 -0 ports/net/p5-Net-NetSend/work/Net-NetSend-0.12/Changes (new) 1.1 +6 -0 ports/net/p5-Net-NetSend/work/Net-NetSend-0.12/MANIFEST (new) 1.1 +11 -0 ports/net/p5-Net-NetSend/work/Net-NetSend-0.12/Makefile.PL (new) 1.1 +966 -0 ports/net/p5-Net-NetSend/work/Net-NetSend-0.12/NetSend.pm (new) 1.1 +35 -0 ports/net/p5-Net-NetSend/work/Net-NetSend-0.12/README (new) 1.1 +17 -0 ports/net/p5-Net-NetSend/work/Net-NetSend-0.12/test.pl (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 13:59:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4833016A420; Mon, 24 Oct 2005 13:59:58 +0000 (GMT) (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 C97EA43D53; Mon, 24 Oct 2005 13:59:57 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9ODxvwA011373; Mon, 24 Oct 2005 13:59:57 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9ODxvZT011372; Mon, 24 Oct 2005 13:59:57 GMT (envelope-from garga) Message-Id: <200510241359.j9ODxvZT011372@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 13:59: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: Mon, 24 Oct 2005 13:59:58 -0000 garga 2005-10-24 13:59:57 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-NetSend --> ports/net/p5-Net-NetSend Revision Changes Path 1.13459 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Oct 24 14:02:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EF3516A41F; Mon, 24 Oct 2005 14:02:55 +0000 (GMT) (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 EE9BC43D49; Mon, 24 Oct 2005 14:02:54 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OE2sou011588; Mon, 24 Oct 2005 14:02:54 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OE2sBO011587; Mon, 24 Oct 2005 14:02:54 GMT (envelope-from garga) Message-Id: <200510241402.j9OE2sBO011587@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 14:02: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-NetSend/work/Net-NetSend-0.12 Changes MANIFEST Makefile.PL NetSend.pm README test.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, 24 Oct 2005 14:02:55 -0000 garga 2005-10-24 14:02:54 UTC FreeBSD ports repository Removed files: net/p5-Net-NetSend/work/Net-NetSend-0.12 Changes MANIFEST Makefile.PL NetSend.pm README test.pl Log: Oops! Remove accidentally work dir committed. Revision Changes Path 1.2 +0 -49 ports/net/p5-Net-NetSend/work/Net-NetSend-0.12/Changes (dead) 1.2 +0 -6 ports/net/p5-Net-NetSend/work/Net-NetSend-0.12/MANIFEST (dead) 1.2 +0 -11 ports/net/p5-Net-NetSend/work/Net-NetSend-0.12/Makefile.PL (dead) 1.2 +0 -966 ports/net/p5-Net-NetSend/work/Net-NetSend-0.12/NetSend.pm (dead) 1.2 +0 -35 ports/net/p5-Net-NetSend/work/Net-NetSend-0.12/README (dead) 1.2 +0 -17 ports/net/p5-Net-NetSend/work/Net-NetSend-0.12/test.pl (dead) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 14:04:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4632416A41F; Mon, 24 Oct 2005 14:04:52 +0000 (GMT) (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 6892B43D5C; Mon, 24 Oct 2005 14:04:51 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OE4pme011682; Mon, 24 Oct 2005 14:04:51 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OE4pdW011681; Mon, 24 Oct 2005 14:04:51 GMT (envelope-from garga) Message-Id: <200510241404.j9OE4pdW011681@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 14:04: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-Net-NetSend/work .extract_done.p5-Net-NetSend-0.12._usr_local .patch_done.p5-Net-NetSend-0.12._usr_local X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 14:04:52 -0000 garga 2005-10-24 14:04:51 UTC FreeBSD ports repository Removed files: net/p5-Net-NetSend/work .extract_done.p5-Net-NetSend-0.12._usr_local .patch_done.p5-Net-NetSend-0.12._usr_local Log: Still removing wrong files Revision Changes Path 1.2 +0 -0 ports/net/p5-Net-NetSend/work/.extract_done.p5-Net-NetSend-0.12._usr_local (dead) 1.2 +0 -0 ports/net/p5-Net-NetSend/work/.patch_done.p5-Net-NetSend-0.12._usr_local (dead) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 14:08:37 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AB5B16A421; Mon, 24 Oct 2005 14:08:37 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B24243D48; Mon, 24 Oct 2005 14:08:37 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OE8b60011879; Mon, 24 Oct 2005 14:08:37 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OE8bLR011878; Mon, 24 Oct 2005 14:08:37 GMT (envelope-from bde) Message-Id: <200510241408.j9OE8bLR011878@repoman.freebsd.org> From: Bruce Evans Date: Mon, 24 Oct 2005 14:08: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/lib/msun/src k_cos.c k_cosf.c k_sin.c k_sinf.c s_cos.c s_cosf.c s_sin.c s_sinf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 14:08:37 -0000 bde 2005-10-24 14:08:37 UTC FreeBSD src repository Modified files: lib/msun/src k_cos.c k_cosf.c k_sin.c k_sinf.c s_cos.c s_cosf.c s_sin.c s_sinf.c Log: Moved the optimization for tiny x from __kernel_{cos,sin}[f](x) to {cos_sin}[f](x) so that x doesn't need to be reclassified in the "kernel" functions to determine if it is tiny (it still needs to be reclassified in the cosine case for other reasons that will go away). This optimization is quite large for exponentially distributed x, since x is tiny for almost half of the domain, but it is a pessimization for uniformally distributed x since it takes a little time for all cases but rarely applies. Arg reduction on exponentially distributed x rarely gives a tiny x unless the reduction is null, so it is best to only do the optimization if the initial x is tiny, which is what this commit arranges. The imediate result is an average optimization of 1.4% relative to the previous version in a case that doesn't favour the optimization (double cos(x) on all float x) and a large pessimization for the relatively unimportant cases of lgamma[f][_r](x) on tiny, negative, exponentially distributed x. The optimization should be recovered for lgamma*() as part of fixing lgamma*()'s low-quality arg reduction. Fixed various wrong constants for the cutoff for "tiny". For cosine, the cutoff is when x**2/2! == {FLT or DBL}_EPSILON/2. We round down to an integral power of 2 (and for cos() reduce the power by another 1) because the exact cutoff doesn't matter and would take more work to determine. For sine, the exact cutoff is larger due to the ration of terms being x**2/3! instead of x**2/2!, but we use the same cutoff as for cosine. We now use a cutoff of 2**-27 for double precision and 2**-12 for single precision. 2**-27 was used in all cases but was misspelled 2**27 in comments. Wrong and sloppy cutoffs just cause missed optimizations (provided the rounding mode is to nearest -- other modes just aren't supported). Revision Changes Path 1.9 +0 -3 src/lib/msun/src/k_cos.c 1.9 +0 -3 src/lib/msun/src/k_cosf.c 1.9 +1 -5 src/lib/msun/src/k_sin.c 1.8 +1 -5 src/lib/msun/src/k_sinf.c 1.10 +5 -1 src/lib/msun/src/s_cos.c 1.8 +5 -3 src/lib/msun/src/s_cosf.c 1.10 +5 -1 src/lib/msun/src/s_sin.c 1.8 +5 -1 src/lib/msun/src/s_sinf.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 14:19:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CB3216A420; Mon, 24 Oct 2005 14:19:03 +0000 (GMT) (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 E2AB743D66; Mon, 24 Oct 2005 14:19:00 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OEJ0rg012485; Mon, 24 Oct 2005 14:19:00 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OEJ0PQ012484; Mon, 24 Oct 2005 14:19:00 GMT (envelope-from dinoex) Message-Id: <200510241419.j9OEJ0PQ012484@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 24 Oct 2005 14: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: ports/x11-wm/afterstep Makefile ports/x11-wm/afterstep/files patch-afterstep::icons.c patch-icons.c ports/x11-wm/afterstep/scripts 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: Mon, 24 Oct 2005 14:19:03 -0000 dinoex 2005-10-24 14:19:00 UTC FreeBSD ports repository Modified files: x11-wm/afterstep Makefile Added files: x11-wm/afterstep/files patch-icons.c Removed files: x11-wm/afterstep/files patch-afterstep::icons.c x11-wm/afterstep/scripts configure Log: - take maintainership - make portlint happy - build without perl Revision Changes Path 1.48 +11 -7 ports/x11-wm/afterstep/Makefile 1.2 +0 -21 ports/x11-wm/afterstep/files/patch-afterstep::icons.c (dead) 1.1 +21 -0 ports/x11-wm/afterstep/files/patch-icons.c (new) 1.3 +0 -8 ports/x11-wm/afterstep/scripts/configure (dead) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 14:20:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C225716A41F; Mon, 24 Oct 2005 14:20:44 +0000 (GMT) (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 80BEB43D5A; Mon, 24 Oct 2005 14:20:44 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OEKiQn012615; Mon, 24 Oct 2005 14:20:44 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OEKids012614; Mon, 24 Oct 2005 14:20:44 GMT (envelope-from dinoex) Message-Id: <200510241420.j9OEKids012614@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 24 Oct 2005 14:20: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/irc/zircon 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, 24 Oct 2005 14:20:44 -0000 dinoex 2005-10-24 14:20:44 UTC FreeBSD ports repository Modified files: irc/zircon Makefile Log: - make prefix safe Reported by: kris Revision Changes Path 1.69 +1 -0 ports/irc/zircon/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 14:23:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4E3116A433; Mon, 24 Oct 2005 14:23:42 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6151D43DCA; Mon, 24 Oct 2005 14:23:10 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OEN5Ou012750; Mon, 24 Oct 2005 14:23:05 GMT (envelope-from ups@repoman.freebsd.org) Received: (from ups@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OEN5Ne012749; Mon, 24 Oct 2005 14:23:05 GMT (envelope-from ups) Message-Id: <200510241423.j9OEN5Ne012749@repoman.freebsd.org> From: Stephan Uphoff Date: Mon, 24 Oct 2005 14:23: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_cluster.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 14:23:43 -0000 ups 2005-10-24 14:23:04 UTC FreeBSD src repository Modified files: sys/kern vfs_cluster.c Log: Only set B_RAM (Read ahead mark) on an incore buffers if we can lock it. This fixes a race condition caused by the unlocked write access to the b_flags field. MFC after: 3 days Revision Changes Path 1.168 +8 -3 src/sys/kern/vfs_cluster.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 14:25:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 891A016A41F; Mon, 24 Oct 2005 14:25:29 +0000 (GMT) (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 58DED43D45; Mon, 24 Oct 2005 14:25:27 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OEPR6s012885; Mon, 24 Oct 2005 14:25:27 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OEPRI3012884; Mon, 24 Oct 2005 14:25:27 GMT (envelope-from dinoex) Message-Id: <200510241425.j9OEPRI3012884@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 24 Oct 2005 14:25: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/x11-wm/fvwm Makefile ports/x11-wm/fvwm/files patch-ab patch-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: Mon, 24 Oct 2005 14:25:29 -0000 dinoex 2005-10-24 14:25:27 UTC FreeBSD ports repository Modified files: x11-wm/fvwm Makefile x11-wm/fvwm/files patch-ab patch-ac Log: - make portlint happier - honor PREFIX in defaults and sample.fvwmrc Revision Changes Path 1.37 +7 -0 ports/x11-wm/fvwm/Makefile 1.3 +5 -5 ports/x11-wm/fvwm/files/patch-ab 1.3 +4 -4 ports/x11-wm/fvwm/files/patch-ac From owner-cvs-all@FreeBSD.ORG Mon Oct 24 14:25:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD50D16A420; Mon, 24 Oct 2005 14:25:38 +0000 (GMT) (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 8C02043D67; Mon, 24 Oct 2005 14:25:38 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OEPcqQ013001; Mon, 24 Oct 2005 14:25:38 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OEPcsP013000; Mon, 24 Oct 2005 14:25:38 GMT (envelope-from garga) Message-Id: <200510241425.j9OEPcsP013000@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 14:25: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/mail/bogofilter Makefile pkg-plist ports/mail/bogofilter-qdbm Makefile ports/mail/bogofilter-sqlite 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, 24 Oct 2005 14:25:38 -0000 garga 2005-10-24 14:25:38 UTC FreeBSD ports repository Modified files: mail/bogofilter Makefile pkg-plist mail/bogofilter-qdbm Makefile mail/bogofilter-sqlite Makefile Log: - Fix NOPORTDOCS "make install" and packaging, reported by Stanislaw Halik (bcc'd to protect his mail address). - Clean up CONFLICTS - Run t.lock3 in bogofilter-sqlite again - Bump port revision after pkg-plist change. PR: ports/87890 Submitted by: maintainer Revision Changes Path 1.19 +1 -2 ports/mail/bogofilter-qdbm/Makefile 1.4 +1 -7 ports/mail/bogofilter-sqlite/Makefile 1.65 +13 -10 ports/mail/bogofilter/Makefile 1.15 +13 -0 ports/mail/bogofilter/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Oct 24 14:38:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B92E316A41F; Mon, 24 Oct 2005 14:38:41 +0000 (GMT) (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 53B2943D70; Mon, 24 Oct 2005 14:38:41 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OEcfno013526; Mon, 24 Oct 2005 14:38:41 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OEcflL013525; Mon, 24 Oct 2005 14:38:41 GMT (envelope-from garga) Message-Id: <200510241438.j9OEcflL013525@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 14: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/audio/gramofile 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, 24 Oct 2005 14:38:41 -0000 garga 2005-10-24 14:38:41 UTC FreeBSD ports repository Modified files: audio/gramofile Makefile Log: - Mark it as DEPRECATED and set EXPIRATION_DATE PR: ports/87924 Submitted by: Jean Milanez Melo Approved by: port broken for a long period Revision Changes Path 1.6 +3 -0 ports/audio/gramofile/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 14:39:37 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2A0F16A41F; Mon, 24 Oct 2005 14:39:37 +0000 (GMT) (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 11B1043D6B; Mon, 24 Oct 2005 14:39:37 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OEda4C013588; Mon, 24 Oct 2005 14:39:36 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OEdaYq013587; Mon, 24 Oct 2005 14:39:36 GMT (envelope-from garga) Message-Id: <200510241439.j9OEdaYq013587@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 14:39: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/audio/cdplayer.app 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, 24 Oct 2005 14:39:38 -0000 garga 2005-10-24 14:39:36 UTC FreeBSD ports repository Modified files: audio/cdplayer.app Makefile Log: - Mark it as DEPRECATED and set EXPIRATION_DATE PR: ports/87919 Submitted by: Jean Milanez Melo Approved by: port broken for a long period Revision Changes Path 1.10 +3 -0 ports/audio/cdplayer.app/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 14:56:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4905616A41F; Mon, 24 Oct 2005 14:56:29 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D823143D49; Mon, 24 Oct 2005 14:56:28 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OEuSV7014197; Mon, 24 Oct 2005 14:56:28 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OEuSLR014196; Mon, 24 Oct 2005 14:56:28 GMT (envelope-from vs) Message-Id: <200510241456.j9OEuSLR014196@repoman.freebsd.org> From: Volker Stolz Date: Mon, 24 Oct 2005 14:56: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/editors/psgml-emacs19 Makefile ports/editors/psgml-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: Mon, 24 Oct 2005 14:56:29 -0000 vs 2005-10-24 14:56:28 UTC FreeBSD ports repository Modified files: editors/psgml-emacs19 Makefile editors/psgml-mule Makefile Log: Fix build by falling back to makeinfo Revision Changes Path 1.6 +7 -0 ports/editors/psgml-emacs19/Makefile 1.13 +7 -0 ports/editors/psgml-mule/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 15:06:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C165D16A41F; Mon, 24 Oct 2005 15:06:58 +0000 (GMT) (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 0317D43D49; Mon, 24 Oct 2005 15:06:56 +0000 (GMT) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OF6urT014669; Mon, 24 Oct 2005 15:06:56 GMT (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OF6udI014668; Mon, 24 Oct 2005 15:06:56 GMT (envelope-from olgeni) Message-Id: <200510241506.j9OF6udI014668@repoman.freebsd.org> From: Jimmy Olgeni Date: Mon, 24 Oct 2005 15: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: ports/lang/erlang/files patch-lib_snmp_src_misc_snmp__config.erl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 15:06:58 -0000 olgeni 2005-10-24 15:06:56 UTC FreeBSD ports repository Added files: lang/erlang/files patch-lib_snmp_src_misc_snmp__config.erl Log: Fix typo in sample configuration. Revision Changes Path 1.1 +14 -0 ports/lang/erlang/files/patch-lib_snmp_src_misc_snmp__config.erl (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 15:08:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94DDF16A41F; Mon, 24 Oct 2005 15:08:42 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D45E43D45; Mon, 24 Oct 2005 15:08:42 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OF8gtG014807; Mon, 24 Oct 2005 15:08:42 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OF8grI014806; Mon, 24 Oct 2005 15:08:42 GMT (envelope-from marcus) Message-Id: <200510241508.j9OF8grI014806@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 24 Oct 2005 15:08: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/xscreensaver-gnome Makefile distinfo pkg-plist ports/x11/xscreensaver-gnome/files patch-hacks_glx_antmaze.c ports/x11/xscreensaver-gnome-hacks 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, 24 Oct 2005 15:08:42 -0000 marcus 2005-10-24 15:08:42 UTC FreeBSD ports repository Modified files: x11/xscreensaver-gnome Makefile distinfo pkg-plist x11/xscreensaver-gnome-hacks Makefile pkg-plist Removed files: x11/xscreensaver-gnome/files patch-hacks_glx_antmaze.c Log: Update to 4.23. See http://www.jwz.org/xscreensaver/changelog.html for the list of fixes and new hacks. Revision Changes Path 1.2 +3 -2 ports/x11/xscreensaver-gnome-hacks/Makefile 1.2 +10 -2 ports/x11/xscreensaver-gnome-hacks/pkg-plist 1.46 +4 -3 ports/x11/xscreensaver-gnome/Makefile 1.20 +2 -2 ports/x11/xscreensaver-gnome/distinfo 1.2 +0 -57 ports/x11/xscreensaver-gnome/files/patch-hacks_glx_antmaze.c (dead) 1.22 +10 -2 ports/x11/xscreensaver-gnome/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Oct 24 15:21:37 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F36ED16A41F; Mon, 24 Oct 2005 15:21:36 +0000 (GMT) (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 B109D43D45; Mon, 24 Oct 2005 15:21:36 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OFLaFf015336; Mon, 24 Oct 2005 15:21:36 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OFLaET015335; Mon, 24 Oct 2005 15:21:36 GMT (envelope-from jhb) Message-Id: <200510241521.j9OFLaET015335@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 15:21: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/ddb db_command.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 15:21:37 -0000 jhb 2005-10-24 15:21:36 UTC FreeBSD src repository Modified files: sys/ddb db_command.c Log: - Rename 'traceall' to 'alltrace' so that the 'tr' shortcut for 'trace' still works. Also, this is consistent with 'show pcpu' vs 'show allpcpu'. (And 'show allstacks' on OS X for that matter.) - Add 'bt' as an alias for 'trace'. We already have a 'where' alias as well, so this makes it easier for gdb-wired hands to work in ddb. Ok'd by: rwatson (1) Requested by: scottl (2) MFC after: 1 day Revision Changes Path 1.64 +2 -1 src/sys/ddb/db_command.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 15:42:29 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE32616A41F; Mon, 24 Oct 2005 15:42:29 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06EB543D45; Mon, 24 Oct 2005 15:42:28 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Mon, 24 Oct 2005 11:59:10 -0400 From: John Baldwin To: obrien@freebsd.org Date: Mon, 24 Oct 2005 10:34:25 -0400 User-Agent: KMail/1.8.2 References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> In-Reply-To: <20051024072423.GA34909@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510241034.27073.jhb@freebsd.org> Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cp if_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: Mon, 24 Oct 2005 15:42:30 -0000 On Monday 24 October 2005 03:24 am, David O'Brien wrote: > On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: > > rik 2005-09-27 16:57:45 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/cp if_cp.c > > Log: > > Restore if_cp.c 1.27 > > ---------------------------- > > revision 1.27 > > date: 2005/09/19 03:10:16; author: imp; state: Exp; lines: > > +3 -2 Make sure that we call if_free(ifp) after bus_teardown_intr. Since > > we could get an interrupt after we free the ifp, and the interrupt > > handler depended on the ifp being still alive, this could, in theory, > > cause a crash. Eliminate this possibility by moving the if_free to after > > the bus_teardown_intr() call. > > > > In fact, this change do nothing for this driver. It is protected from > > this by cp_destroy variable. This variable also protects driver from > > initiation of any activity from network stack with disabled intr > > handler with this change applied. > > You should not have backed out my commit without discussing it with me > and understanding the reason for the change. > Do it again and I *will* be taking it Core. Looks like he added some function prototypes and moved the cdevsw up. Does i compile now with gcc 4.0? It seems that his changes were a lot simpler and didn't destroy nearly as much CVS history as your changes. It would really be preferable to use simpler solutions rather than destroying version history with really big diffs. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Oct 24 15:42:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2684516A420; Mon, 24 Oct 2005 15:42:39 +0000 (GMT) (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 D701C43D48; Mon, 24 Oct 2005 15:42:38 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OFgcpn016119; Mon, 24 Oct 2005 15:42:38 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OFgc15016118; Mon, 24 Oct 2005 15:42:38 GMT (envelope-from garga) Message-Id: <200510241542.j9OFgc15016118@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 15:42: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/audio/mziq 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, 24 Oct 2005 15:42:39 -0000 garga 2005-10-24 15:42:38 UTC FreeBSD ports repository Modified files: audio/mziq Makefile Log: - Mark it as DEPRECATED and set EXPIRATION_DATE PR: ports/87930 Submitted by: Jean Milanez Melo Revision Changes Path 1.10 +3 -0 ports/audio/mziq/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 15:53:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38AA716A41F; Mon, 24 Oct 2005 15:53:23 +0000 (GMT) (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 043E843D45; Mon, 24 Oct 2005 15:53:23 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OFrMBW016832; Mon, 24 Oct 2005 15:53:22 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OFrM6a016831; Mon, 24 Oct 2005 15:53:22 GMT (envelope-from garga) Message-Id: <200510241553.j9OFrM6a016831@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 15:53: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 Makefile ports/textproc/p5-XML-Filter-DOMFilter-LibXML 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, 24 Oct 2005 15:53:23 -0000 garga 2005-10-24 15:53:22 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-XML-Filter-DOMFilter-LibXML Makefile distinfo pkg-descr pkg-plist Log: Add p5-XML-Filter-DOMFilter-LibXML 0.02, perl SAX Filter allowing DOM processing of selected subtrees. PR: ports/87902 Submitted by: Andrew Humphrey Revision Changes Path 1.874 +1 -0 ports/textproc/Makefile 1.1 +31 -0 ports/textproc/p5-XML-Filter-DOMFilter-LibXML/Makefile (new) 1.1 +2 -0 ports/textproc/p5-XML-Filter-DOMFilter-LibXML/distinfo (new) 1.1 +3 -0 ports/textproc/p5-XML-Filter-DOMFilter-LibXML/pkg-descr (new) 1.1 +8 -0 ports/textproc/p5-XML-Filter-DOMFilter-LibXML/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 15:54:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6056316A41F; Mon, 24 Oct 2005 15:54:59 +0000 (GMT) (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 DFEED43D5E; Mon, 24 Oct 2005 15:54:58 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OFswLb016906; Mon, 24 Oct 2005 15:54:58 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OFswRa016905; Mon, 24 Oct 2005 15:54:58 GMT (envelope-from garga) Message-Id: <200510241554.j9OFswRa016905@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 15:54: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: Mon, 24 Oct 2005 15:54:59 -0000 garga 2005-10-24 15:54:58 UTC FreeBSD ports repository Modified files: . modules Log: p5-XML-Filter-DOMFilter-LibXML --> ports/textproc/p5-XML-Filter-DOMFilter-LibXML Revision Changes Path 1.13460 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Oct 24 15:57:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A479B16A41F; Mon, 24 Oct 2005 15:57:29 +0000 (GMT) (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 5762743D69; Mon, 24 Oct 2005 15:57:27 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OFvRWT017042; Mon, 24 Oct 2005 15:57:27 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OFvRZ1017041; Mon, 24 Oct 2005 15:57:27 GMT (envelope-from jhb) Message-Id: <200510241557.j9OFvRZ1017041@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 15:57: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/sys/kern subr_taskqueue.c subr_witness.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 15:57:29 -0000 jhb 2005-10-24 15:57:27 UTC FreeBSD src repository Modified files: sys/kern subr_taskqueue.c subr_witness.c Log: Spell hierarchy correctly in comments. Submitted by: Wojciech A. Koszek dunstan at freebsd dot czest dot pl Revision Changes Path 1.28 +19 -0 src/sys/kern/subr_taskqueue.c 1.204 +2 -2 src/sys/kern/subr_witness.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 15:58:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 825C716A41F; Mon, 24 Oct 2005 15:58:22 +0000 (GMT) (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 904A343D5D; Mon, 24 Oct 2005 15:58:21 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OFwLia017138; Mon, 24 Oct 2005 15:58:21 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OFwLtH017137; Mon, 24 Oct 2005 15:58:21 GMT (envelope-from jhb) Message-Id: <200510241558.j9OFwLtH017137@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 15:58: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/kern subr_taskqueue.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 15:58:22 -0000 jhb 2005-10-24 15:58:21 UTC FreeBSD src repository Modified files: sys/kern subr_taskqueue.c Log: Revert previous change to this file. I accidentally committed while fixing spelling in a comment. Revision Changes Path 1.29 +0 -19 src/sys/kern/subr_taskqueue.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 16:11:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FDC716A41F; Mon, 24 Oct 2005 16:11:07 +0000 (GMT) (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 B30F343D45; Mon, 24 Oct 2005 16:11:04 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.204] ([192.168.254.204]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id j9OGB32G020875; Mon, 24 Oct 2005 10:11:03 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <435D0798.2090306@samsco.org> Date: Mon, 24 Oct 2005 10:11:04 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.8) Gecko/20050615 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "David E. O'Brien" References: <200510240440.j9O4ecBQ063762@repoman.freebsd.org> In-Reply-To: <200510240440.j9O4ecBQ063762@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.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.pre.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: Mon, 24 Oct 2005 16:11:07 -0000 David E. O'Brien wrote: > obrien 2005-10-24 04:40:38 UTC > > FreeBSD src repository > > Modified files: > sys/conf kern.pre.mk > Log: > We no longer need INCLUDES+= -I$S/contrib/dev/acpica. > > Revision Changes Path > 1.73 +2 -5 src/sys/conf/kern.pre.mk Why is this so important? Why is it worth conflicts with vendor code? Scott From owner-cvs-all@FreeBSD.ORG Mon Oct 24 16:11:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBEB216A421; Mon, 24 Oct 2005 16:11:17 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D2F843D46; Mon, 24 Oct 2005 16:11:17 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OGBHN0017730; Mon, 24 Oct 2005 16:11:17 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OGBHKR017729; Mon, 24 Oct 2005 16:11:17 GMT (envelope-from jylefort) Message-Id: <200510241611.j9OGBHKR017729@repoman.freebsd.org> From: Jean-Yves Lefort Date: Mon, 24 Oct 2005 16:11: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/audio/musicbox-tag-editor 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: Mon, 24 Oct 2005 16:11:18 -0000 jylefort 2005-10-24 16:11:17 UTC FreeBSD ports repository Modified files: audio/musicbox-tag-editor pkg-descr Log: Remove WWW from pkg-descr, since the URL is no longer valid. PR: ports/87928 Submitted by: Jean Milanez Melo Revision Changes Path 1.3 +0 -2 ports/audio/musicbox-tag-editor/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Oct 24 16:12:09 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7826A16A41F; Mon, 24 Oct 2005 16:12:09 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 357C743D45; Mon, 24 Oct 2005 16:12:09 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OGC9jT017787; Mon, 24 Oct 2005 16:12:09 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OGC9Xs017786; Mon, 24 Oct 2005 16:12:09 GMT (envelope-from jylefort) Message-Id: <200510241612.j9OGC9Xs017786@repoman.freebsd.org> From: Jean-Yves Lefort Date: Mon, 24 Oct 2005 16:12: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/audio/lindele 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: Mon, 24 Oct 2005 16:12:09 -0000 jylefort 2005-10-24 16:12:09 UTC FreeBSD ports repository Modified files: audio/lindele pkg-descr Log: Remove WWW from pkg-descr, since the URL is no longer valid. Revision Changes Path 1.3 +0 -2 ports/audio/lindele/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Oct 24 16:17:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C86816A421; Mon, 24 Oct 2005 16:17:25 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FA0143D48; Mon, 24 Oct 2005 16:17:25 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OGHOx9018023; Mon, 24 Oct 2005 16:17:25 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OGHOrh018022; Mon, 24 Oct 2005 16:17:24 GMT (envelope-from vs) Message-Id: <200510241617.j9OGHOrh018022@repoman.freebsd.org> From: Volker Stolz Date: Mon, 24 Oct 2005 16:17: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/hs-haddock 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, 24 Oct 2005 16:17:25 -0000 vs 2005-10-24 16:17:24 UTC FreeBSD ports repository Modified files: devel/hs-haddock Makefile Log: Hunt down the last docbook dependency Revision Changes Path 1.21 +1 -0 ports/devel/hs-haddock/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 16:54:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2711A16A41F; Mon, 24 Oct 2005 16:54:39 +0000 (GMT) (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 D551343D46; Mon, 24 Oct 2005 16:54:38 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OGscLA026408; Mon, 24 Oct 2005 16:54:38 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OGscQ7026407; Mon, 24 Oct 2005 16:54:38 GMT (envelope-from garga) Message-Id: <200510241654.j9OGscQ7026407@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 16:54: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/databases/phpmyadmin 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, 24 Oct 2005 16:54:39 -0000 garga 2005-10-24 16:54:38 UTC FreeBSD ports repository Modified files: databases/phpmyadmin Makefile distinfo Log: - Update to 2.6.4.pl3 (security fix) Security alert: http://www.phpmyadmin.net/home_page/security.php?issue=PMASA-2005-5 Download details: http://www.phpmyadmin.net PR: ports/87922 Submitted by: maintainer Revision Changes Path 1.37 +2 -2 ports/databases/phpmyadmin/Makefile 1.29 +2 -2 ports/databases/phpmyadmin/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 17:05:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9919B16A41F; Mon, 24 Oct 2005 17:05:38 +0000 (GMT) (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 5508743D45; Mon, 24 Oct 2005 17:05:38 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OH5coE026895; Mon, 24 Oct 2005 17:05:38 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OH5cBd026894; Mon, 24 Oct 2005 17:05:38 GMT (envelope-from garga) Message-Id: <200510241705.j9OH5cBd026894@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 17:05: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/lang/pm3-base 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, 24 Oct 2005 17:05:38 -0000 garga 2005-10-24 17:05:37 UTC FreeBSD ports repository Modified files: lang/pm3-base Makefile pkg-plist Log: - Do not fail with error in pre-fetch target on unsupported architectures. [1] - Make portlint happier PR: ports/87838 [1] Submitted by: Vasil Dimov [1] Reported by: kris [1] Revision Changes Path 1.18 +4 -8 ports/lang/pm3-base/Makefile 1.5 +1 -1 ports/lang/pm3-base/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Oct 24 17:15:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6F5016A41F; Mon, 24 Oct 2005 17:15:26 +0000 (GMT) (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 8305443D49; Mon, 24 Oct 2005 17:15:26 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OHFQZv027440; Mon, 24 Oct 2005 17:15:26 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OHFQjo027439; Mon, 24 Oct 2005 17:15:26 GMT (envelope-from dinoex) Message-Id: <200510241715.j9OHFQjo027439@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 24 Oct 2005 17:15: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/x11-toolkits/gnustep-back 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, 24 Oct 2005 17:15:27 -0000 dinoex 2005-10-24 17:15:26 UTC FreeBSD ports repository Modified files: x11-toolkits/gnustep-back Makefile Log: - disable glitz by default Reported by: Andriy Gapon Revision Changes Path 1.42 +2 -0 ports/x11-toolkits/gnustep-back/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 17:42:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FF5116A41F; Mon, 24 Oct 2005 17:42:14 +0000 (GMT) (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 0BB2D43D46; Mon, 24 Oct 2005 17:42:14 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OHgD9o029160; Mon, 24 Oct 2005 17:42:13 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OHgDb1029156; Mon, 24 Oct 2005 17:42:13 GMT (envelope-from dinoex) Message-Id: <200510241742.j9OHgDb1029156@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 24 Oct 2005 17:42: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/x11-toolkits/gnustep-back 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, 24 Oct 2005 17:42:14 -0000 dinoex 2005-10-24 17:42:13 UTC FreeBSD ports repository Modified files: x11-toolkits/gnustep-back Makefile Log: - new backend option WITH_GNUSTEP_CAIRO (broken, as libcairo.1 is too old) Revision Changes Path 1.43 +17 -11 ports/x11-toolkits/gnustep-back/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 17:47:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B2B416A41F; Mon, 24 Oct 2005 17:47:48 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB79D43D46; Mon, 24 Oct 2005 17:47:47 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OHlluE029620; Mon, 24 Oct 2005 17:47:47 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OHllFH029619; Mon, 24 Oct 2005 17:47:47 GMT (envelope-from wpaul) Message-Id: <200510241747.j9OHllFH029619@repoman.freebsd.org> From: Bill Paul Date: Mon, 24 Oct 2005 17: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/dev/if_ndis if_ndis.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 17:47:48 -0000 wpaul 2005-10-24 17:47:47 UTC FreeBSD src repository Modified files: sys/dev/if_ndis if_ndis.c Log: Do not allow ndis_ticktask() to run after ndis_halt_nic() has been called. (It may have been queued up in one of the workitem threads, and letting it fire after the NIC has been halted will cause a crash in some cases.) Revision Changes Path 1.110 +11 -0 src/sys/dev/if_ndis/if_ndis.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 17:48:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B07F316A41F; Mon, 24 Oct 2005 17:48:47 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C97843D46; Mon, 24 Oct 2005 17:48:47 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OHmlFV029689; Mon, 24 Oct 2005 17:48:47 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OHml5V029688; Mon, 24 Oct 2005 17:48:47 GMT (envelope-from wpaul) Message-Id: <200510241748.j9OHml5V029688@repoman.freebsd.org> From: Bill Paul Date: Mon, 24 Oct 2005 17:48:47 +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/if_ndis if_ndis.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 17:48:47 -0000 wpaul 2005-10-24 17:48:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/if_ndis if_ndis.c Log: MFC: don't allow ndis_ticktask() to run after the NIC has been halted Revision Changes Path 1.69.2.9 +11 -0 src/sys/dev/if_ndis/if_ndis.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 17:55:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 692EA16A41F; Mon, 24 Oct 2005 17:55:17 +0000 (GMT) (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 0AE9D43D4C; Mon, 24 Oct 2005 17:55:17 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OHtGeR030049; Mon, 24 Oct 2005 17:55:16 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OHtGRn030048; Mon, 24 Oct 2005 17:55:16 GMT (envelope-from novel) Message-Id: <200510241755.j9OHtGRn030048@repoman.freebsd.org> From: Roman Bogorodskiy Date: Mon, 24 Oct 2005 17:55: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/x11 Makefile ports/x11/xidle 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: Mon, 24 Oct 2005 17:55:17 -0000 novel 2005-10-24 17:55:16 UTC FreeBSD ports repository Modified files: x11 Makefile Added files: x11/xidle Makefile distinfo pkg-descr Log: Add OpenBSD's xidle, an app to run a program on X inactivity (xautolock replacement). Revision Changes Path 1.560 +1 -0 ports/x11/Makefile 1.1 +31 -0 ports/x11/xidle/Makefile (new) 1.1 +2 -0 ports/x11/xidle/distinfo (new) 1.1 +6 -0 ports/x11/xidle/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 17:55:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3294B16A420; Mon, 24 Oct 2005 17:55:26 +0000 (GMT) (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 E2DDA43D4C; Mon, 24 Oct 2005 17:55:25 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OHtPTQ030127; Mon, 24 Oct 2005 17:55:25 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OHtPPI030126; Mon, 24 Oct 2005 17:55:25 GMT (envelope-from novel) Message-Id: <200510241755.j9OHtPPI030126@repoman.freebsd.org> From: Roman Bogorodskiy Date: Mon, 24 Oct 2005 17:55: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: 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, 24 Oct 2005 17:55:26 -0000 novel 2005-10-24 17:55:25 UTC FreeBSD ports repository Modified files: . modules Log: xidle --> ports/x11/xidle Revision Changes Path 1.13461 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Oct 24 18:03:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A56F16A41F; Mon, 24 Oct 2005 18:03:31 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1636743D4C; Mon, 24 Oct 2005 18:03:31 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OI3UMR030419; Mon, 24 Oct 2005 18:03:30 GMT (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OI3UmQ030418; Mon, 24 Oct 2005 18:03:30 GMT (envelope-from jeh) Message-Id: <200510241803.j9OI3UmQ030418@repoman.freebsd.org> From: "James E. Housley" Date: Mon, 24 Oct 2005 18:03: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/security/uvscan-dat 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, 24 Oct 2005 18:03:31 -0000 jeh 2005-10-24 18:03:30 UTC FreeBSD ports repository Modified files: security/uvscan-dat Makefile distinfo Log: Update to 4611 Revision Changes Path 1.435 +1 -1 ports/security/uvscan-dat/Makefile 1.430 +2 -2 ports/security/uvscan-dat/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 18:22:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9948E16A41F; Mon, 24 Oct 2005 18:22:27 +0000 (GMT) (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 55D6B43D4C; Mon, 24 Oct 2005 18:22:27 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OIMRYA031162; Mon, 24 Oct 2005 18:22:27 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OIMRre031161; Mon, 24 Oct 2005 18:22:27 GMT (envelope-from garga) Message-Id: <200510241822.j9OIMRre031161@repoman.freebsd.org> From: Renato Botelho Date: Mon, 24 Oct 2005 18:22: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/radio 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, 24 Oct 2005 18:22:27 -0000 garga 2005-10-24 18:22:27 UTC FreeBSD ports repository Modified files: audio/radio Makefile Log: - Mark as DEPRECATED and set EXPIRATION_DATE PR: ports/87937 Submitted by: Jean Milanez Melo Revision Changes Path 1.16 +3 -0 ports/audio/radio/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 18:30:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEA5716A420; Mon, 24 Oct 2005 18:30:57 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BC0D43D45; Mon, 24 Oct 2005 18:30:57 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OIUvCV031482; Mon, 24 Oct 2005 18:30:57 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OIUvQr031481; Mon, 24 Oct 2005 18:30:57 GMT (envelope-from njl) Message-Id: <200510241830.j9OIUvQr031481@repoman.freebsd.org> From: Nate Lawson Date: Mon, 24 Oct 2005 18:30: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/dev/acpica acpi_acad.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 18:30:57 -0000 njl 2005-10-24 18:30:57 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_acad.c Log: Invert the check logic. No functional change, but I prefer this version. Revision Changes Path 1.37 +2 -4 src/sys/dev/acpica/acpi_acad.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 18:34:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 883DC16A41F; Mon, 24 Oct 2005 18:34:54 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4590443D46; Mon, 24 Oct 2005 18:34:54 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OIYsdk031573; Mon, 24 Oct 2005 18:34:54 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OIYsUM031572; Mon, 24 Oct 2005 18:34:54 GMT (envelope-from njl) Message-Id: <200510241834.j9OIYsUM031572@repoman.freebsd.org> From: Nate Lawson Date: Mon, 24 Oct 2005 18:34: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/usr.sbin/powerd powerd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 18:34:54 -0000 njl 2005-10-24 18:34:54 UTC FreeBSD src repository Modified files: usr.sbin/powerd powerd.c Log: Create the devd thread after we have called daemon(). Otherwise, it would be killed when the parent exits. Submitted by: Rudolf Cejka Revision Changes Path 1.16 +3 -3 src/usr.sbin/powerd/powerd.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 18:37:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A11616A41F; Mon, 24 Oct 2005 18:37:54 +0000 (GMT) (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 CB8F143D45; Mon, 24 Oct 2005 18:37:53 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OIbr7l031775; Mon, 24 Oct 2005 18:37:53 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OIbrCg031774; Mon, 24 Oct 2005 18:37:53 GMT (envelope-from ehaupt) Message-Id: <200510241837.j9OIbrCg031774@repoman.freebsd.org> From: Emanuel Haupt Date: Mon, 24 Oct 2005 18:37: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/net/naim 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, 24 Oct 2005 18:37:54 -0000 ehaupt 2005-10-24 18:37:53 UTC FreeBSD ports repository Modified files: net/naim Makefile Log: Restore maintainership and unbreak port. There was a problem in the maintainer's datacenter. Revision Changes Path 1.49 +1 -3 ports/net/naim/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 18:56:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C903E16A41F; Mon, 24 Oct 2005 18:56:11 +0000 (GMT) (envelope-from flz@xbsd.org) Received: from smtp.xbsd.org (xbsd.org [82.233.2.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4970543D4C; Mon, 24 Oct 2005 18:56:11 +0000 (GMT) (envelope-from flz@xbsd.org) Received: from localhost (localhost.xbsd.org [127.0.0.1]) by smtp.xbsd.org (Postfix) with ESMTP id 01CEE12170; Mon, 24 Oct 2005 20:56:09 +0200 (CEST) Received: from smtp.xbsd.org ([127.0.0.1]) by localhost (srv1.xbsd.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 81335-10; Mon, 24 Oct 2005 20:56:04 +0200 (CEST) Received: from innercity.xbsd.org (innercity.xbsd.org [192.168.42.3]) by smtp.xbsd.org (Postfix) with ESMTP id 876D91189C; Mon, 24 Oct 2005 20:56:04 +0200 (CEST) From: Florent Thoumie To: Dirk Meyer In-Reply-To: <200510241742.j9OHgDb1029156@repoman.freebsd.org> References: <200510241742.j9OHgDb1029156@repoman.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-K6HgvK8enM2nvvlGBdRn" Date: Mon, 24 Oct 2005 20:56:02 +0200 Message-Id: <1130180162.649.12.camel@innercity.xbsd.org> Mime-Version: 1.0 X-Mailer: Evolution 2.3.6.1 FreeBSD GNOME Team Port X-Virus-Scanned: amavisd-new at xbsd.org Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/x11-toolkits/gnustep-back 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, 24 Oct 2005 18:56:12 -0000 --=-K6HgvK8enM2nvvlGBdRn Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2005-10-24 at 17:42 +0000, Dirk Meyer wrote: >=20 > dinoex 2005-10-24 17:42:13 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > x11-toolkits/gnustep-back Makefile=20 > Log: > - new backend option WITH_GNUSTEP_CAIRO > (broken, as libcairo.1 is too old) > =20 > Revision Changes Path > 1.43 +17 -11 ports/x11-toolkits/gnustep-back/Makefile Since we're trying to standardize knob names, I guess using=20 WITH_CAIRO would be a better choice. --=20 Florent Thoumie flz@FreeBSD.org FreeBSD Committer --=-K6HgvK8enM2nvvlGBdRn Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQBDXS5CMxEkbVFH3PQRAjTLAJoC4PeuDH3NnBPRuhd+26LAYe6RCACfc66p 6vJrc6rdUTFOY+ju/rVUbCs= =zJ3U -----END PGP SIGNATURE----- --=-K6HgvK8enM2nvvlGBdRn-- From owner-cvs-all@FreeBSD.ORG Mon Oct 24 19:26:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3EF316A41F; Mon, 24 Oct 2005 19:26:54 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7160D43D46; Mon, 24 Oct 2005 19:26:54 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OJQsb8033496; Mon, 24 Oct 2005 19:26:54 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OJQsbJ033495; Mon, 24 Oct 2005 19:26:54 GMT (envelope-from brueffer) Message-Id: <200510241926.j9OJQsbJ033495@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 24 Oct 2005 19:26: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: 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: Mon, 24 Oct 2005 19:26:54 -0000 brueffer 2005-10-24 19:26:54 UTC FreeBSD doc repository Modified files: en/donations donors.sgml Log: Sun Fire v210 donation by Chris Elsworth, thanks! Revision Changes Path 1.286 +8 -1 www/en/donations/donors.sgml From owner-cvs-all@FreeBSD.ORG Mon Oct 24 19:40:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D444B16A41F; Mon, 24 Oct 2005 19:40:04 +0000 (GMT) (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 9B7B543D45; Mon, 24 Oct 2005 19:40:04 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OJe4uG034008; Mon, 24 Oct 2005 19:40:04 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OJe4wZ034007; Mon, 24 Oct 2005 19:40:04 GMT (envelope-from mnag) Message-Id: <200510241940.j9OJe4wZ034007@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 19:40: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/postfix-policyd-sf Makefile distinfo ports/mail/postfix-policyd-sf/files patch-Makefile patch-policyd.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, 24 Oct 2005 19:40:05 -0000 mnag 2005-10-24 19:40:04 UTC FreeBSD ports repository Modified files: mail/postfix-policyd-sf Makefile distinfo mail/postfix-policyd-sf/files patch-Makefile Added files: mail/postfix-policyd-sf/files patch-policyd.conf Log: Update to 1.69 PR: 87915 Submitted by: Xavier Beaudouin (maintainer) Revision Changes Path 1.4 +2 -2 ports/mail/postfix-policyd-sf/Makefile 1.3 +2 -2 ports/mail/postfix-policyd-sf/distinfo 1.2 +9 -9 ports/mail/postfix-policyd-sf/files/patch-Makefile 1.1 +11 -0 ports/mail/postfix-policyd-sf/files/patch-policyd.conf (new) From owner-cvs-all@FreeBSD.ORG Mon Oct 24 19:46:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D8FA16A41F; Mon, 24 Oct 2005 19:46:46 +0000 (GMT) (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 4A38743D45; Mon, 24 Oct 2005 19:46:46 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OJkkme034335; Mon, 24 Oct 2005 19:46:46 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OJkk6o034334; Mon, 24 Oct 2005 19:46:46 GMT (envelope-from ehaupt) Message-Id: <200510241946.j9OJkk6o034334@repoman.freebsd.org> From: Emanuel Haupt Date: Mon, 24 Oct 2005 19:46: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/textproc/colordiff 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, 24 Oct 2005 19:46:46 -0000 ehaupt 2005-10-24 19:46:46 UTC FreeBSD ports repository Modified files: textproc/colordiff Makefile Log: Colordiff works fine with PERL_LEVEL < 500600, it just requires devel/p5-Getopt-Long. Revision Changes Path 1.3 +3 -2 ports/textproc/colordiff/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 19:47:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA20416A41F; Mon, 24 Oct 2005 19:47:25 +0000 (GMT) (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 A722843D45; Mon, 24 Oct 2005 19:47:25 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OJlP75034376; Mon, 24 Oct 2005 19:47:25 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OJlPNr034375; Mon, 24 Oct 2005 19:47:25 GMT (envelope-from mnag) Message-Id: <200510241947.j9OJlPNr034375@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 19:47: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/databases/slony1 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, 24 Oct 2005 19:47:26 -0000 mnag 2005-10-24 19:47:25 UTC FreeBSD ports repository Modified files: databases/slony1 Makefile distinfo Log: Update to 1.1.2 PR: 87942 Submitted by: Vivek Khera (maintainer) Revision Changes Path 1.17 +1 -2 ports/databases/slony1/Makefile 1.9 +2 -2 ports/databases/slony1/distinfo From owner-cvs-all@FreeBSD.ORG Mon Oct 24 19:50:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2501B16A41F; Mon, 24 Oct 2005 19:50:38 +0000 (GMT) (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 D676A43D46; Mon, 24 Oct 2005 19:50:37 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OJob21034541; Mon, 24 Oct 2005 19:50:37 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OJobuB034540; Mon, 24 Oct 2005 19:50:37 GMT (envelope-from mnag) Message-Id: <200510241950.j9OJobuB034540@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 19:50: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/audio/wmsmixer 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: Mon, 24 Oct 2005 19:50:38 -0000 mnag 2005-10-24 19:50:37 UTC FreeBSD ports repository Modified files: audio/wmsmixer pkg-descr Log: Update WWW PR: 87950 Notified by: Jean Milanez Melo Revision Changes Path 1.3 +1 -1 ports/audio/wmsmixer/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Oct 24 19:52:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04DC016A41F; Mon, 24 Oct 2005 19:52:24 +0000 (GMT) (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 AEED843D53; Mon, 24 Oct 2005 19:52:23 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OJqN72034590; Mon, 24 Oct 2005 19:52:23 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OJqNg1034589; Mon, 24 Oct 2005 19:52:23 GMT (envelope-from mnag) Message-Id: <200510241952.j9OJqNg1034589@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 19:52: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/audio/timidity++-xskin 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: Mon, 24 Oct 2005 19:52:24 -0000 mnag 2005-10-24 19:52:23 UTC FreeBSD ports repository Modified files: audio/timidity++-xskin pkg-descr Log: Update WWW PR: 87949 Submitted by: Jean Milanez Melo Revision Changes Path 1.3 +1 -1 ports/audio/timidity++-xskin/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Oct 24 19:53:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4175E16A41F; Mon, 24 Oct 2005 19:53:36 +0000 (GMT) (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 F2CB043D46; Mon, 24 Oct 2005 19:53:35 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OJrZbY034664; Mon, 24 Oct 2005 19:53:35 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OJrZL1034663; Mon, 24 Oct 2005 19:53:35 GMT (envelope-from mnag) Message-Id: <200510241953.j9OJrZL1034663@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 19:53: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/audio/timidity++-xaw 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: Mon, 24 Oct 2005 19:53:36 -0000 mnag 2005-10-24 19:53:35 UTC FreeBSD ports repository Modified files: audio/timidity++-xaw pkg-descr Log: Update WWW PR: 87948 Submitted by: Jean Milanez Melo Revision Changes Path 1.3 +1 -1 ports/audio/timidity++-xaw/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Oct 24 19:54:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D49A16A420; Mon, 24 Oct 2005 19:54:52 +0000 (GMT) (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 F160643D53; Mon, 24 Oct 2005 19:54:51 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OJspVD034723; Mon, 24 Oct 2005 19:54:51 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OJspIp034722; Mon, 24 Oct 2005 19:54:51 GMT (envelope-from mnag) Message-Id: <200510241954.j9OJspIp034722@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 19:54: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/audio/timidity++-tcltk 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: Mon, 24 Oct 2005 19:54:52 -0000 mnag 2005-10-24 19:54:51 UTC FreeBSD ports repository Modified files: audio/timidity++-tcltk pkg-descr Log: Update WWW PR: 87947 Submitted by: Jean Milanez Melo Revision Changes Path 1.3 +1 -1 ports/audio/timidity++-tcltk/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Oct 24 19:56:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B219816A420; Mon, 24 Oct 2005 19:56:27 +0000 (GMT) (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 A70FF43D6A; Mon, 24 Oct 2005 19:56:25 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OJuPU2034886; Mon, 24 Oct 2005 19:56:25 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OJuPWK034885; Mon, 24 Oct 2005 19:56:25 GMT (envelope-from mnag) Message-Id: <200510241956.j9OJuPWK034885@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 19:56: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/audio/timidity++-emacs 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: Mon, 24 Oct 2005 19:56:27 -0000 mnag 2005-10-24 19:56:25 UTC FreeBSD ports repository Modified files: audio/timidity++-emacs pkg-descr Log: Update WWW PR: 87493 Submitted by: Jean Milanez Melo Revision Changes Path 1.3 +1 -1 ports/audio/timidity++-emacs/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Oct 24 19:57:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24BD016A41F; Mon, 24 Oct 2005 19:57:34 +0000 (GMT) (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 D363A43D45; Mon, 24 Oct 2005 19:57:33 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OJvXN3035080; Mon, 24 Oct 2005 19:57:33 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OJvXFQ035079; Mon, 24 Oct 2005 19:57:33 GMT (envelope-from mnag) Message-Id: <200510241957.j9OJvXFQ035079@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 19:57: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/audio/timidity++-gtk 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: Mon, 24 Oct 2005 19:57:34 -0000 mnag 2005-10-24 19:57:33 UTC FreeBSD ports repository Modified files: audio/timidity++-gtk pkg-descr Log: Update WWW PR: 87944 Submitted by: Jean Milanez Melo Revision Changes Path 1.3 +1 -1 ports/audio/timidity++-gtk/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Oct 24 19:58:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1273D16A41F; Mon, 24 Oct 2005 19:58:48 +0000 (GMT) (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 8F39A43D46; Mon, 24 Oct 2005 19:58:47 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OJwlGE035192; Mon, 24 Oct 2005 19:58:47 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OJwlaV035191; Mon, 24 Oct 2005 19:58:47 GMT (envelope-from mnag) Message-Id: <200510241958.j9OJwlaV035191@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 19:58: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/audio/timidity++-motif 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: Mon, 24 Oct 2005 19:58:48 -0000 mnag 2005-10-24 19:58:47 UTC FreeBSD ports repository Modified files: audio/timidity++-motif pkg-descr Log: Update WWW PR: 87945 Submitted by: Jean Milanez Melo Revision Changes Path 1.4 +1 -1 ports/audio/timidity++-motif/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Oct 24 19:59:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 782BB16A41F; Mon, 24 Oct 2005 19:59:55 +0000 (GMT) (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 D0D6343D5A; Mon, 24 Oct 2005 19:59:53 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OJxrpC035239; Mon, 24 Oct 2005 19:59:53 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OJxrmu035238; Mon, 24 Oct 2005 19:59:53 GMT (envelope-from mnag) Message-Id: <200510241959.j9OJxrmu035238@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 19:59: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/timidity++-slang 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: Mon, 24 Oct 2005 19:59:55 -0000 mnag 2005-10-24 19:59:53 UTC FreeBSD ports repository Modified files: audio/timidity++-slang pkg-descr Log: Update WWW PR: 87946 Submitted by: Jean Milanez Melo Revision Changes Path 1.3 +1 -1 ports/audio/timidity++-slang/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Oct 24 20:14:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4375E16A41F; Mon, 24 Oct 2005 20:14:29 +0000 (GMT) (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 7B40143D6E; Mon, 24 Oct 2005 20:14:25 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OKEPDH035807; Mon, 24 Oct 2005 20:14:25 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OKEOu8035806; Mon, 24 Oct 2005 20:14:24 GMT (envelope-from jhb) Message-Id: <200510242014.j9OKEOu8035806@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 20:14:24 +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 subr_witness.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 20:14:29 -0000 jhb 2005-10-24 20:14:24 UTC FreeBSD src repository Modified files: sys/kern subr_witness.c Log: Don't panic if a spin lock is initialized that isn't in our static order list. Just warn about it instead. Requested by: scottl MFC after: 1 day Revision Changes Path 1.205 +16 -7 src/sys/kern/subr_witness.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 20:15:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E52416A41F; Mon, 24 Oct 2005 20:15:23 +0000 (GMT) (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 5BA3A43D53; Mon, 24 Oct 2005 20:15:23 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OKFNc3035889; Mon, 24 Oct 2005 20:15:23 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OKFNu9035888; Mon, 24 Oct 2005 20:15:23 GMT (envelope-from jhb) Message-Id: <200510242015.j9OKFNu9035888@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 20:15: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/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: Mon, 24 Oct 2005 20:15:23 -0000 jhb 2005-10-24 20:15:23 UTC FreeBSD src repository Modified files: sys/kern kern_proc.c Log: Document in #ifdef notnow code the actions that proc_fini would need to take if struct procs were actually freed. Revision Changes Path 1.233 +9 -0 src/sys/kern/kern_proc.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 20:31:05 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D51516A41F; Mon, 24 Oct 2005 20:31:05 +0000 (GMT) (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 EB40043D46; Mon, 24 Oct 2005 20:31:04 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OKV4rZ036585; Mon, 24 Oct 2005 20:31:04 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OKV4tr036584; Mon, 24 Oct 2005 20:31:04 GMT (envelope-from jhb) Message-Id: <200510242031.j9OKV4tr036584@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 20: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/sys/kern subr_kdb.c src/sys/amd64/amd64 mp_machdep.c src/sys/i386/i386 mp_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: Mon, 24 Oct 2005 20:31:05 -0000 jhb 2005-10-24 20:31:04 UTC FreeBSD src repository Modified files: sys/kern subr_kdb.c sys/amd64/amd64 mp_machdep.c sys/i386/i386 mp_machdep.c Log: - Various small whitespace and style nits. - Use PCPU_GET(cpumask) in preference to 1 << PCPU_GET(cpuid) in a few places. Revision Changes Path 1.263 +10 -15 src/sys/amd64/amd64/mp_machdep.c 1.255 +10 -14 src/sys/i386/i386/mp_machdep.c 1.14 +10 -11 src/sys/kern/subr_kdb.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 20:37:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95A8316A41F; Mon, 24 Oct 2005 20:37:53 +0000 (GMT) (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 4F2B843D45; Mon, 24 Oct 2005 20:37:53 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OKbrlG036871; Mon, 24 Oct 2005 20:37:53 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OKbrNL036870; Mon, 24 Oct 2005 20:37:53 GMT (envelope-from mnag) Message-Id: <200510242037.j9OKbrNL036870@repoman.freebsd.org> From: Marcus Alves Grando Date: Mon, 24 Oct 2005 20:37: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/swig13 Makefile distinfo pkg-plist ports/devel/swig13/files patch-Lib::runtime.swg X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 20:37:53 -0000 mnag 2005-10-24 20:37:53 UTC FreeBSD ports repository Modified files: devel/swig13 Makefile distinfo pkg-plist Removed files: devel/swig13/files patch-Lib::runtime.swg Log: Update to 1.3.27 PR: 87932 Submitted by: Soeren Straarup (maintainer) Revision Changes Path 1.65 +3 -4 ports/devel/swig13/Makefile 1.26 +2 -2 ports/devel/swig13/distinfo 1.2 +0 -18 ports/devel/swig13/files/patch-Lib::runtime.swg (dead) 1.30 +142 -23 ports/devel/swig13/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Oct 24 20:52:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19B7E16A41F; Mon, 24 Oct 2005 20:52:27 +0000 (GMT) (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 C93C243D45; Mon, 24 Oct 2005 20:52:26 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OKqQSD044778; Mon, 24 Oct 2005 20:52:26 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OKqQcC044777; Mon, 24 Oct 2005 20:52:26 GMT (envelope-from jhb) Message-Id: <200510242052.j9OKqQcC044777@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 20:52: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/amd64/amd64 apic_vector.S src/sys/i386/i386 apic_vector.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: Mon, 24 Oct 2005 20:52:27 -0000 jhb 2005-10-24 20:52:26 UTC FreeBSD src repository Modified files: sys/amd64/amd64 apic_vector.S sys/i386/i386 apic_vector.s Log: Use xchg in Xcpustop to close a race and make cpustop_restartfunc truly one-shot in the SMP case (before using the simple mov / cmp / mov sequence could allow multiple CPUs to execute the restart function on resume). Revision Changes Path 1.104 +3 -2 src/sys/amd64/amd64/apic_vector.S 1.105 +3 -2 src/sys/i386/i386/apic_vector.s From owner-cvs-all@FreeBSD.ORG Mon Oct 24 20:53:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B69A116A41F; Mon, 24 Oct 2005 20:53:52 +0000 (GMT) (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 592EE43D4C; Mon, 24 Oct 2005 20:53:52 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OKrqlW044880; Mon, 24 Oct 2005 20:53:52 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OKrqDa044879; Mon, 24 Oct 2005 20:53:52 GMT (envelope-from jhb) Message-Id: <200510242053.j9OKrqDa044879@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 20:53: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/amd64/amd64 vm_machdep.c src/sys/i386/i386 vm_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: Mon, 24 Oct 2005 20:53:52 -0000 jhb 2005-10-24 20:53:52 UTC FreeBSD src repository Modified files: sys/amd64/amd64 vm_machdep.c sys/i386/i386 vm_machdep.c Log: When restarting the BSP during cpu_reset() use a membar to ensure that the updated cpustop_restartfunc is seen when the BSP resumes execution. This matches the membar already present in restart_cpus(). Revision Changes Path 1.250 +3 -1 src/sys/amd64/amd64/vm_machdep.c 1.264 +4 -1 src/sys/i386/i386/vm_machdep.c From owner-cvs-all@FreeBSD.ORG Mon Oct 24 20:59:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0827716A41F; Mon, 24 Oct 2005 20:59:02 +0000 (GMT) (envelope-from wosch@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA9DA43D45; Mon, 24 Oct 2005 20:59:01 +0000 (GMT) (envelope-from wosch@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OKx1ei045185; Mon, 24 Oct 2005 20:59:01 GMT (envelope-from wosch@repoman.freebsd.org) Received: (from wosch@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OKx173045184; Mon, 24 Oct 2005 20:59:01 GMT (envelope-from wosch) Message-Id: <200510242059.j9OKx173045184@repoman.freebsd.org> From: Wolfram Schneider Date: Mon, 24 Oct 2005 20:59:01 +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 search.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: Mon, 24 Oct 2005 20:59:02 -0000 wosch 2005-10-24 20:59:01 UTC FreeBSD doc repository Modified files: en/cgi search.cgi Log: support search in FreeBSD manual pages Revision Changes Path 1.26 +2 -2 www/en/cgi/search.cgi From owner-cvs-all@FreeBSD.ORG Mon Oct 24 21:02:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32CF516A41F; Mon, 24 Oct 2005 21:02:31 +0000 (GMT) (envelope-from wosch@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E50FD43D46; Mon, 24 Oct 2005 21:02:30 +0000 (GMT) (envelope-from wosch@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OL2UDA045340; Mon, 24 Oct 2005 21:02:30 GMT (envelope-from wosch@repoman.freebsd.org) Received: (from wosch@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OL2UUc045339; Mon, 24 Oct 2005 21:02:30 GMT (envelope-from wosch) Message-Id: <200510242102.j9OL2UUc045339@repoman.freebsd.org> From: Wolfram Schneider Date: Mon, 24 Oct 2005 21:02: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/search search.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, 24 Oct 2005 21:02:31 -0000 wosch 2005-10-24 21:02:30 UTC FreeBSD doc repository Modified files: en/search search.sgml Log: add search in FreeBSD manual pages Revision Changes Path 1.101 +2 -1 www/en/search/search.sgml From owner-cvs-all@FreeBSD.ORG Mon Oct 24 21:04:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E56A016A41F; Mon, 24 Oct 2005 21:04:19 +0000 (GMT) (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 8C6F143D48; Mon, 24 Oct 2005 21:04:19 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OL4JXP045828; Mon, 24 Oct 2005 21:04:19 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OL4J2B045827; Mon, 24 Oct 2005 21:04:19 GMT (envelope-from jhb) Message-Id: <200510242104.j9OL4J2B045827@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 21:04: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 subr_kdb.c subr_smp.c src/sys/amd64/amd64 mp_machdep.c trap.c src/sys/amd64/conf NOTES src/sys/amd64/include smp.h src/sys/conf options.amd64 options.i386 options.pc98 src/sys/i386/conf NOTES src/sys/i386/i386 mp_machdep.c trap.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 21:04:20 -0000 jhb 2005-10-24 21:04:19 UTC FreeBSD src repository Modified files: sys/kern subr_kdb.c subr_smp.c sys/amd64/amd64 mp_machdep.c trap.c sys/amd64/conf NOTES sys/amd64/include smp.h sys/conf options.amd64 options.i386 options.pc98 sys/i386/conf NOTES sys/i386/i386 mp_machdep.c trap.c sys/i386/include smp.h sys/pc98/conf NOTES sys/sys smp.h Log: Rename the KDB_STOP_NMI kernel option to STOP_NMI and make it apply to all IPI_STOP IPIs. - Change the i386 and amd64 MD IPI code to send an NMI if STOP_NMI is enabled if an attempt is made to send an IPI_STOP IPI. If the kernel option is enabled, there is also a sysctl to change the behavior at runtime (debug.stop_cpus_with_nmi which defaults to enabled). This includes removing stop_cpus_nmi() and making ipi_nmi_selected() a private function for i386 and amd64. - Fix ipi_all(), ipi_all_but_self(), and ipi_self() on i386 and amd64 to properly handle bitmapped IPIs as well as IPI_STOP IPIs when STOP_NMI is enabled. - Fix ipi_nmi_handler() to execute the restart function on the first CPU that is restarted making use of atomic_readandclear() rather than assuming that the BSP is always included in the set of restarted CPUs. Also, the NMI handler didn't clear the function pointer meaning that subsequent stop and restarts could execute the function again. - Define a new macro HAVE_STOPPEDPCBS on i386 and amd64 to control the use of stoppedpcbs[] and always enable it for i386 and amd64 instead of being dependent on KDB_STOP_NMI. It works fine in both the NMI and non-NMI cases. Revision Changes Path 1.264 +47 -12 src/sys/amd64/amd64/mp_machdep.c 1.296 +3 -3 src/sys/amd64/amd64/trap.c 1.46 +1 -1 src/sys/amd64/conf/NOTES 1.85 +2 -3 src/sys/amd64/include/smp.h 1.22 +1 -1 src/sys/conf/options.amd64 1.226 +1 -1 src/sys/conf/options.i386 1.190 +1 -1 src/sys/conf/options.pc98 1.1209 +1 -1 src/sys/i386/conf/NOTES 1.256 +44 -9 src/sys/i386/i386/mp_machdep.c 1.283 +3 -3 src/sys/i386/i386/trap.c 1.83 +2 -3 src/sys/i386/include/smp.h 1.15 +8 -35 src/sys/kern/subr_kdb.c 1.197 +0 -32 src/sys/kern/subr_smp.c 1.65 +1 -1 src/sys/pc98/conf/NOTES 1.85 +0 -3 src/sys/sys/smp.h From owner-cvs-all@FreeBSD.ORG Mon Oct 24 21:07:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C22CC16A41F; Mon, 24 Oct 2005 21:07:31 +0000 (GMT) (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 76F4343D46; Mon, 24 Oct 2005 21:07:31 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OL7VsT046326; Mon, 24 Oct 2005 21:07:31 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OL7VbH046325; Mon, 24 Oct 2005 21:07:31 GMT (envelope-from thierry) Message-Id: <200510242107.j9OL7VbH046325@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 24 Oct 2005 21:07: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/sysutils/xvidcap 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, 24 Oct 2005 21:07:31 -0000 thierry 2005-10-24 21:07:31 UTC FreeBSD ports repository Modified files: sysutils/xvidcap Makefile Log: Support non-standard X11BASE. Reported by: dosirak via Kris Revision Changes Path 1.10 +3 -2 ports/sysutils/xvidcap/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 21:36:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A61F616A41F; Mon, 24 Oct 2005 21:36:21 +0000 (GMT) (envelope-from wosch@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12E4E43D49; Mon, 24 Oct 2005 21:36:21 +0000 (GMT) (envelope-from wosch@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OLaKQw047637; Mon, 24 Oct 2005 21:36:20 GMT (envelope-from wosch@repoman.freebsd.org) Received: (from wosch@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OLaKOE047636; Mon, 24 Oct 2005 21:36:20 GMT (envelope-from wosch) Message-Id: <200510242136.j9OLaKOE047636@repoman.freebsd.org> From: Wolfram Schneider Date: Mon, 24 Oct 2005 21:36:20 +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/search search.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, 24 Oct 2005 21:36:21 -0000 wosch 2005-10-24 21:36:20 UTC FreeBSD doc repository Modified files: en/search search.sgml Log: Use a checkbox for web pages search. Allow searches in several databases at once, e.g. english + french Revision Changes Path 1.102 +20 -15 www/en/search/search.sgml From owner-cvs-all@FreeBSD.ORG Mon Oct 24 21:49:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15AAB16A41F; Mon, 24 Oct 2005 21:49:02 +0000 (GMT) (envelope-from yoichi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7AF443D46; Mon, 24 Oct 2005 21:49:01 +0000 (GMT) (envelope-from yoichi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OLn1cd048045; Mon, 24 Oct 2005 21:49:01 GMT (envelope-from yoichi@repoman.freebsd.org) Received: (from yoichi@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OLn14q048044; Mon, 24 Oct 2005 21:49:01 GMT (envelope-from yoichi) Message-Id: <200510242149.j9OLn14q048044@repoman.freebsd.org> From: Yoichi NAKAYAMA Date: Mon, 24 Oct 2005 21: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: ports/editors/eshell-emacs20 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, 24 Oct 2005 21:49:02 -0000 yoichi 2005-10-24 21:49:01 UTC FreeBSD ports repository Modified files: editors/eshell-emacs20 Makefile Log: add prefix=${PREFIX} to MAKE_ARGS for non-standard PREFIX Submitted by: kris Revision Changes Path 1.6 +2 -0 ports/editors/eshell-emacs20/Makefile From owner-cvs-all@FreeBSD.ORG Mon Oct 24 22:32:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C80B616A41F; Mon, 24 Oct 2005 22:32:19 +0000 (GMT) (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 82E8D43D45; Mon, 24 Oct 2005 22:32:19 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OMWJ4W049645; Mon, 24 Oct 2005 22:32:19 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OMWJan049644; Mon, 24 Oct 2005 22:32:19 GMT (envelope-from cperciva) Message-Id: <200510242232.j9OMWJan049644@repoman.freebsd.org> From: Colin Percival Date: Mon, 24 Oct 2005 22:32: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/usr.bin/alias generic.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, 24 Oct 2005 22:32:19 -0000 cperciva 2005-10-24 22:32:19 UTC FreeBSD src repository Modified files: usr.bin/alias generic.sh Log: Use the "builtin" shell function to make sure that the requested command is handled as a shell function. This avoids the following peculiar behaviour when /usr/bin is on a case-insensitive filesystem: # READ foo (... long pause, depending upon the amount of swap space available ...) sh: Resource temporarily unavailable. Reported by: I can't remember; someone on IRC. MFC after: 1 week Revision Changes Path 1.2 +1 -1 src/usr.bin/alias/generic.sh From owner-cvs-all@FreeBSD.ORG Mon Oct 24 23:46:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E4FA16A41F; Mon, 24 Oct 2005 23:46:48 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD76443D46; Mon, 24 Oct 2005 23:46:47 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9ONkl82052149; Mon, 24 Oct 2005 23:46:47 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9ONklBh052148; Mon, 24 Oct 2005 23:46:47 GMT (envelope-from cy) Message-Id: <200510242346.j9ONklBh052148@repoman.freebsd.org> From: Cy Schubert Date: Mon, 24 Oct 2005 23:46: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/security/sudosh 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, 24 Oct 2005 23:46:48 -0000 cy 2005-10-24 23:46:47 UTC FreeBSD ports repository Modified files: security/sudosh Makefile pkg-plist Log: Fix broken port, capture missing file in pkg-plist. Pointy hat to: me Revision Changes Path 1.15 +2 -2 ports/security/sudosh/Makefile 1.2 +1 -0 ports/security/sudosh/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Oct 24 23:54:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9149316A41F; Mon, 24 Oct 2005 23:54:40 +0000 (GMT) (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 099B043D45; Mon, 24 Oct 2005 23:54:40 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9ONsdDR052398; Mon, 24 Oct 2005 23:54:39 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9ONsd0S052397; Mon, 24 Oct 2005 23:54:39 GMT (envelope-from imp) Message-Id: <200510242354.j9ONsd0S052397@repoman.freebsd.org> From: Warner Losh Date: Mon, 24 Oct 2005 23:54: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/conf kern.post.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: Mon, 24 Oct 2005 23:54:40 -0000 imp 2005-10-24 23:54:39 UTC FreeBSD src repository Modified files: sys/conf kern.post.mk Log: Back out most of 1.84. It was unwise to force debug kernels to always be installed. It should have been optional to install a non-debug one, just like it was formerly optional to install a debug one. In order to do that, most of 1.84 had to go. Instead, make installing the debug kernel the default, but create a new option INSTALL_NODEBUG for those people that have small / partitions and good source control habits. This preserves the behavior of 1.84 while allowing it to be overriden for people (like me) that do not have the time to upgrade to get a bigger / and also don't have time for stupid makefile tricks when upgrading their older system, but still want a kernel.debug around if things go south. Revision Changes Path 1.85 +17 -6 src/sys/conf/kern.post.mk From owner-cvs-all@FreeBSD.ORG Tue Oct 25 00:09:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D56D16A41F; Tue, 25 Oct 2005 00:09:59 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00BA843D45; Tue, 25 Oct 2005 00:09:59 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P09wCa052984; Tue, 25 Oct 2005 00:09:58 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P09w2e052983; Tue, 25 Oct 2005 00:09:58 GMT (envelope-from davidxu) Message-Id: <200510250009.j9P09w2e052983@repoman.freebsd.org> From: David Xu Date: Tue, 25 Oct 2005 00:09: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/libthr pthread.map X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 00:09:59 -0000 davidxu 2005-10-25 00:09:58 UTC FreeBSD src repository Modified files: lib/libthr pthread.map Log: Put pthread_condattr_init sorted order. Revision Changes Path 1.8 +1 -1 src/lib/libthr/pthread.map From owner-cvs-all@FreeBSD.ORG Tue Oct 25 02:08:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D856E16A41F; Tue, 25 Oct 2005 02:08:12 +0000 (GMT) (envelope-from mikeh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1298843D55; Tue, 25 Oct 2005 02:08:12 +0000 (GMT) (envelope-from mikeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P28BHr069387; Tue, 25 Oct 2005 02:08:11 GMT (envelope-from mikeh@repoman.freebsd.org) Received: (from mikeh@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P28BFk069383; Tue, 25 Oct 2005 02:08:11 GMT (envelope-from mikeh) Message-Id: <200510250208.j9P28BFk069383@repoman.freebsd.org> From: Mike Heffner Date: Tue, 25 Oct 2005 02:08: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/comms/lirc 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, 25 Oct 2005 02:08:13 -0000 mikeh 2005-10-25 02:08:11 UTC FreeBSD ports repository Modified files: comms/lirc Makefile pkg-plist Log: * Patch for vga on i386. PR: ports/87832 Revision Changes Path 1.14 +6 -0 ports/comms/lirc/Makefile 1.4 +1 -1 ports/comms/lirc/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Oct 25 02:12:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACACC16A41F; Tue, 25 Oct 2005 02:12:07 +0000 (GMT) (envelope-from mikeh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B1CC43D48; Tue, 25 Oct 2005 02:12:07 +0000 (GMT) (envelope-from mikeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P2C77x069822; Tue, 25 Oct 2005 02:12:07 GMT (envelope-from mikeh@repoman.freebsd.org) Received: (from mikeh@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P2C7EO069821; Tue, 25 Oct 2005 02:12:07 GMT (envelope-from mikeh) Message-Id: <200510250212.j9P2C7EO069821@repoman.freebsd.org> From: Mike Heffner Date: Tue, 25 Oct 2005 02:12: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/comms/lirc 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, 25 Oct 2005 02:12:07 -0000 mikeh 2005-10-25 02:12:07 UTC FreeBSD ports repository Modified files: comms/lirc Makefile Log: * Daniel O'Connor has agreed to take over maintainership as I don't actively use this port anymore. Revision Changes Path 1.15 +1 -1 ports/comms/lirc/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 03:49:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EA4C16A41F; Tue, 25 Oct 2005 03:49:25 +0000 (GMT) (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 9965B43D49; Tue, 25 Oct 2005 03:49:24 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P3nOtF075969; Tue, 25 Oct 2005 03:49:24 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P3nOdu075968; Tue, 25 Oct 2005 03:49:24 GMT (envelope-from imp) Message-Id: <200510250349.j9P3nOdu075968@repoman.freebsd.org> From: Warner Losh Date: Tue, 25 Oct 2005 03:49:24 +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/fe if_fe_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 03:49:25 -0000 imp 2005-10-25 03:49:24 UTC FreeBSD src repository Modified files: sys/dev/fe if_fe_pccard.c Log: Preliminary support for Xircom Credit Card Adapter. Not to be confused with the Credit Card Adapter II and its spawn (which the xe driver supports). These changes get my card probing and attaching. I recently won one of these (and a NEC rebadged version) in an lot auction. The NEC didn't work, so I took it apart and found the MB86960A chip and then modified if_fe_pccard.c to attach. I can't test this card further since I have no dongle for this card. Revision Changes Path 1.31 +55 -13 src/sys/dev/fe/if_fe_pccard.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 03:56:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15E1016A41F; Tue, 25 Oct 2005 03:56:22 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC8EA43D45; Tue, 25 Oct 2005 03:56:21 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P3uLq6076335; Tue, 25 Oct 2005 03:56:21 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P3uLn0076334; Tue, 25 Oct 2005 03:56:21 GMT (envelope-from yongari) Message-Id: <200510250356.j9P3uLn0076334@repoman.freebsd.org> From: Pyun YongHyeon Date: Tue, 25 Oct 2005 03:56: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/dev/hme if_hme.c if_hmereg.h if_hmevar.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, 25 Oct 2005 03:56:22 -0000 yongari 2005-10-25 03:56:21 UTC FreeBSD src repository Modified files: sys/dev/hme if_hme.c if_hmereg.h if_hmevar.h Log: - Convert hme(4) to use TX side bus_dmamap_load_mbuf_sg(9). - Move hardware counter reading/zeroing to hme_tick(). This saves 8 register access per interrupt. [1] - Use imax macro for getting max. argument between two integers. - Invoke bus_dmamap_sync(9) first before freeing mbuf. - Check driver queue first to reduce locking operation in hme_start_locked() and interrupt handler. - Simplyfy watchdog timer setup in interrupt handler. - Don't log normal errors such as RX overrun. If we have DMA stuck condition, reinitialize the driver and log it. Reviewed by: marius Obtained from: OpenBSD [1] Revision Changes Path 1.44 +128 -142 src/sys/dev/hme/if_hme.c 1.7 +6 -0 src/sys/dev/hme/if_hmereg.h 1.9 +1 -0 src/sys/dev/hme/if_hmevar.h From owner-cvs-all@FreeBSD.ORG Tue Oct 25 04:01:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1AC516A41F; Tue, 25 Oct 2005 04:01:41 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 912A243D46; Tue, 25 Oct 2005 04:01:41 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P41fnK076624; Tue, 25 Oct 2005 04:01:41 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P41fCY076623; Tue, 25 Oct 2005 04:01:41 GMT (envelope-from yongari) Message-Id: <200510250401.j9P41fCY076623@repoman.freebsd.org> From: Pyun YongHyeon Date: Tue, 25 Oct 2005 04:01: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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 04:01:42 -0000 yongari 2005-10-25 04:01:41 UTC FreeBSD src repository Modified files: sys/modules/sound/driver Makefile Log: Connect es137x build on sparc64. Revision Changes Path 1.17 +1 -1 src/sys/modules/sound/driver/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 04:05:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A84C16A41F; Tue, 25 Oct 2005 04:05:49 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD69F43D45; Tue, 25 Oct 2005 04:05:48 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P45mPU076830; Tue, 25 Oct 2005 04:05:48 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P45mJb076829; Tue, 25 Oct 2005 04:05:48 GMT (envelope-from yongari) Message-Id: <200510250405.j9P45mJb076829@repoman.freebsd.org> From: Pyun YongHyeon Date: Tue, 25 Oct 2005 04:05: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/sys/sparc64/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, 25 Oct 2005 04:05:49 -0000 yongari 2005-10-25 04:05:48 UTC FreeBSD src repository Modified files: sys/sparc64/conf NOTES Log: Remove "nodevice snd_es137x" as it is supported now. Revision Changes Path 1.20 +0 -1 src/sys/sparc64/conf/NOTES From owner-cvs-all@FreeBSD.ORG Tue Oct 25 04:08:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD25A16A41F; Tue, 25 Oct 2005 04:08:38 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C2A043D49; Tue, 25 Oct 2005 04:08:38 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P48cU5076945; Tue, 25 Oct 2005 04:08:38 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P48cdY076944; Tue, 25 Oct 2005 04:08:38 GMT (envelope-from danfe) Message-Id: <200510250408.j9P48cdY076944@repoman.freebsd.org> From: Alexey Dokuchaev Date: Tue, 25 Oct 2005 04:08: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/audio/gtkpod 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, 25 Oct 2005 04:08:39 -0000 danfe 2005-10-25 04:08:38 UTC FreeBSD ports repository Modified files: audio/gtkpod Makefile Log: - Fix RUN_DEPENDS - Take maintainership Revision Changes Path 1.26 +2 -2 ports/audio/gtkpod/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 04:32:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFB8916A41F; Tue, 25 Oct 2005 04:32:42 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E6B743D45; Tue, 25 Oct 2005 04:32:42 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P4Wgpt077870; Tue, 25 Oct 2005 04:32:42 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P4Wgf9077869; Tue, 25 Oct 2005 04:32:42 GMT (envelope-from brueffer) Message-Id: <200510250432.j9P4Wgf9077869@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 25 Oct 2005 04:32: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/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 04:32:43 -0000 brueffer 2005-10-25 04:32:42 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc dev.archlist.txt Log: snd_es137x now works on sparc64. Revision Changes Path 1.70 +1 -1 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-all@FreeBSD.ORG Tue Oct 25 04:43:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 811F616A420; Tue, 25 Oct 2005 04:43:49 +0000 (GMT) Date: Tue, 25 Oct 2005 04:43:49 +0000 From: Alexey Dokuchaev To: Cy Schubert Message-ID: <20051025044349.GA90697@FreeBSD.org> References: <200510211350.j9LDoR1j005020@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200510211350.j9LDoR1j005020@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/x11-wm/fvwm2-devel Makefile pkg-plist ports/x11-wm/fvwm2-devel/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, 25 Oct 2005 04:43:49 -0000 On Fri, Oct 21, 2005 at 01:50:27PM +0000, Cy Schubert wrote: > cy 2005-10-21 13:50:27 UTC > > FreeBSD ports repository > > Modified files: > x11-wm/fvwm2-devel Makefile pkg-plist > x11-wm/fvwm2-devel/files patch-configure > Log: > Unbreak this port. Previous commit was incomplete. Uhm, sorry cy@, but why did you remove all the OPTIONS I've been carefully testing and committed some time ago (with your approval)? You've basically cancelled all my work, including missing dependencies, and lots of other stuff. May I produce a patch that will restore what I've done but be 2.5.14-safe? ./danfe From owner-cvs-all@FreeBSD.ORG Tue Oct 25 04:45:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C44D16A41F; Tue, 25 Oct 2005 04:45:50 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0C1343D45; Tue, 25 Oct 2005 04:45:49 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P4jnJ1078408; Tue, 25 Oct 2005 04:45:49 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P4jnMa078407; Tue, 25 Oct 2005 04:45:49 GMT (envelope-from marcus) Message-Id: <200510250445.j9P4jnMa078407@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 25 Oct 2005 04:45: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/comms/lirc 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, 25 Oct 2005 04:45:50 -0000 marcus 2005-10-25 04:45:49 UTC FreeBSD ports repository Modified files: comms/lirc Makefile Log: Fix INDEX build, and correct broken dependency. Reported by: kris' make index script Approved by: portmgr hat Revision Changes Path 1.16 +1 -1 ports/comms/lirc/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 04:48:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3A3116A41F; Tue, 25 Oct 2005 04:48:06 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6248743D46; Tue, 25 Oct 2005 04:48:06 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P4m6YC085642; Tue, 25 Oct 2005 04:48:06 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P4m6vu085641; Tue, 25 Oct 2005 04:48:06 GMT (envelope-from marcus) Message-Id: <200510250448.j9P4m6vu085641@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 25 Oct 2005 04:48: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/devel/portlint Makefile ports/devel/portlint/src portlint.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, 25 Oct 2005 04:48:06 -0000 marcus 2005-10-25 04:48:06 UTC FreeBSD ports repository Modified files: devel/portlint Makefile devel/portlint/src portlint.pl Log: Correct compilation with perl 5.005. Revision Changes Path 1.98 +1 -0 ports/devel/portlint/Makefile 1.78 +2 -2 ports/devel/portlint/src/portlint.pl From owner-cvs-all@FreeBSD.ORG Tue Oct 25 04:53:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E590716A41F; Tue, 25 Oct 2005 04:53:29 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B816D43D49; Tue, 25 Oct 2005 04:53:29 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P4rTOL085861; Tue, 25 Oct 2005 04:53:29 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P4rTJk085860; Tue, 25 Oct 2005 04:53:29 GMT (envelope-from wpaul) Message-Id: <200510250453.j9P4rTJk085860@repoman.freebsd.org> From: Bill Paul Date: Tue, 25 Oct 2005 04:53: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/i386/pci pci_cfgreg.c src/sys/amd64/pci pci_cfgreg.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 04:53:30 -0000 wpaul 2005-10-25 04:53:29 UTC FreeBSD src repository Modified files: sys/i386/pci pci_cfgreg.c sys/amd64/pci pci_cfgreg.c Log: Modify the pci_cfgdisable() routine to bring it more in line with other OSes (Solaris, Linux, VxWorks). It's not necessary to write a 0 to the config address register when using config mechanism 1 to turn off config access. In fact, it can be downright troublesome, since it seems to confuse the PCI-PCI bridge in the AMD8111 chipset and cause it to sporadically botch reads from some devices. This is the cause of the missing USP ports problem I was experiencing with my Sun Opteron system. Also correct the case for mechanism 2: it's only necessary to write a 0 to the ENABLE port. Revision Changes Path 1.109 +6 -2 src/sys/amd64/pci/pci_cfgreg.c 1.117 +7 -3 src/sys/i386/pci/pci_cfgreg.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 04:58:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5E8A16A41F; Tue, 25 Oct 2005 04:58:56 +0000 (GMT) (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 7324A43D46; Tue, 25 Oct 2005 04:58:56 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P4wu5A086153; Tue, 25 Oct 2005 04:58:56 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P4wuRP086152; Tue, 25 Oct 2005 04:58:56 GMT (envelope-from ache) Message-Id: <200510250458.j9P4wuRP086152@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Tue, 25 Oct 2005 04:58: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: doc/en_US.ISO8859-1/books/handbook/l10n 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: Tue, 25 Oct 2005 04:58:56 -0000 ache 2005-10-25 04:58:56 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/l10n chapter.sgml Log: Replace dead X.language package instructions with xorg-fonts-cyrillic Revision Changes Path 1.113 +5 -12 doc/en_US.ISO8859-1/books/handbook/l10n/chapter.sgml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 05:02:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EEA116A41F; Tue, 25 Oct 2005 05:02:41 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id E338E43D46; Tue, 25 Oct 2005 05:02:40 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9P52e6k062988; Mon, 24 Oct 2005 22:02:40 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9P52exM062987; Mon, 24 Oct 2005 22:02:40 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 22:02:40 -0700 From: "David O'Brien" To: Kirill Ponomarew Message-ID: <20051025050240.GA55330@dragon.NUXI.org> References: <200510240943.j9O9hR8r090890@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510240943.j9O9hR8r090890@repoman.freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/editors/vim Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 05:02:41 -0000 On Mon, Oct 24, 2005 at 09:43:26AM +0000, Kirill Ponomarew wrote: > krion 2005-10-24 09:43:26 UTC > > FreeBSD ports repository > > Modified files: > editors/vim Makefile > Log: > Fix breakage with portupgrade(1). > > Submitted by: mezz > Approved by: portmgr hat > > Revision Changes Path > 1.269 +5 -5 ports/editors/vim/Makefile How did rev 1.268 break portupgrade? $ cd /usr/ports/editors/vim $ echo $? 0 $ make ..snip.. $ echo $? 0 -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 05:08:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52C7716A420; Tue, 25 Oct 2005 05:08:12 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id B693643D62; Tue, 25 Oct 2005 05:08:06 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9P585Ms063061; Mon, 24 Oct 2005 22:08:05 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9P585L4063060; Mon, 24 Oct 2005 22:08:05 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 22:08:05 -0700 From: "David O'Brien" To: Kirill Ponomarew Message-ID: <20051025050805.GB55418@dragon.NUXI.org> References: <200507311707.j6VH7NSk088117@repoman.freebsd.org> <20051024025816.GA2361@dragon.NUXI.org> <20051024075559.GB28532@voodoo.bawue.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051024075559.GB28532@voodoo.bawue.com> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.gcc.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 05:08:12 -0000 On Mon, Oct 24, 2005 at 09:55:59AM +0200, Kirill Ponomarew wrote: > On Sun, Oct 23, 2005 at 07:58:16PM -0700, David O'Brien wrote: > > On Sun, Jul 31, 2005 at 05:07:23PM +0000, Kirill Ponomarew wrote: > > > krion 2005-07-31 17:07:23 UTC > > > > > > FreeBSD ports repository > > > > > > Modified files: > > > Mk bsd.gcc.mk > > > Log: > > > Remove gcc3.1 > > > > Please put this thru an experimental package build next time. > > Why ? What is broken by this commit ? I apologize - what it broke was some fixes I made to allow some ports to build on RELENG_4. But you couldn't know that as they didn't get committed yet (see the thread on "latest schedule graphs uploaded" - yet another ports fix I made during a code freeze and then later forgot to commit). -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 05:13:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 919FA16A41F; Tue, 25 Oct 2005 05:13:10 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CB3F43D55; Tue, 25 Oct 2005 05:13:10 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9P5D9nB066838; Mon, 24 Oct 2005 22:13:09 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9P5D93d066837; Mon, 24 Oct 2005 22:13:09 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 22:13:09 -0700 From: "David O'Brien" To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20051025051309.GC55418@dragon.NUXI.org> References: <200510240128.j9O1Smu7056232@repoman.freebsd.org> <20051024091136.GT1217@droso.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051024091136.GT1217@droso.net> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Subject: Re: cvs commit: ports/editors/vim Makefile distinfo ports/editors/vim/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 05:13:10 -0000 On Mon, Oct 24, 2005 at 11:11:37AM +0200, Erwin Lansing wrote: > On Mon, Oct 24, 2005 at 01:28:48AM +0000, David E. O'Brien wrote: > > obrien 2005-10-24 01:28:48 UTC > > > > FreeBSD ports repository > > > > Modified files: > > editors/vim Makefile distinfo > > editors/vim/files patch-configure > > Log: > > Update to Vim 6.4 release! > > > > 6.4 is a maintenance release - containing additional syntax files, translations > > and all 90 patches to 6.3. It is a "reset" for future patch fixes. > > > This commit was clearly not tested. The commit was fully tested. People need to auctally pay attention and report real breakage: $ make jot: infinite sequences cannot be bounded "Makefile", line 19: warning: "/usr/bin/jot -s " " -w 6.4.%03d 0 1 0" returned non-zero status ===> Vulnerability check disabled, database not found ..snip.. $ ll work/vim64/src/vim -rwxr-x--- 1 obrien ncvs 1.4M Oct 24 22:09 work/vim64/src/vim* There are many Makefiles in the world that issue "warnings" or "errors" but make ignores them and keeps working. Please review the usage of '-' as the first character in actions. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 05:15:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E041516A41F; Tue, 25 Oct 2005 05:15:56 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8808D43D45; Tue, 25 Oct 2005 05:15:56 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9P5FtAI067051; Mon, 24 Oct 2005 22:15:55 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9P5Ftgg067050; Mon, 24 Oct 2005 22:15:55 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 22:15:55 -0700 From: "David O'Brien" To: Alexander Leidinger Message-ID: <20051025051555.GD55418@dragon.NUXI.org> References: <200510240034.j9O0YDgG047096@repoman.freebsd.org> <20051024143613.hu726dyokc4wco88@netchild.homeip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051024143613.hu726dyokc4wco88@netchild.homeip.net> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/editors/vim Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 05:15:57 -0000 On Mon, Oct 24, 2005 at 02:36:13PM +0200, Alexander Leidinger wrote: > "David E. O'Brien" wrote: > > >obrien 2005-10-24 00:34:13 UTC > > > > FreeBSD ports repository > > > > Modified files: > > editors/vim Makefile > > Log: > > Attempt to fix to respect non-standard LOCALBASE/X11BASE settings. > > Let me just take this opportunity to express how much I hate autoconf's > > attempt at containing AI, and note the size of hammer one has to use to > > knock some real knowledge into its head. > > In your commit you use PREFIX instead of LOCALBASE/X11BASE, so this commit > message confuses me. > > I've compiled vim 6.[34] on Solaris 10 recently and I had no problem to use > "--prefix=", Correct. And on FreeBSD too. > so I doubt that replacing /usr/local with PREFIX as a reinplace > command is supposed to fix the destination. The issue is the autoconfig script has /usr/local/include and /usr/local hard coded in it (ac_default_prefix=/usr/local). > But PREFIX is not right for a non-standard LOCALBASE/X11BASE. What is > this commit supposed to do? To tell the truth I'm not sure the exact case Kris was trying to allow. You are right that ac_default_prefix=${LOCALBASE} may be a better substitution. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 05:16:20 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89B3F16A41F; Tue, 25 Oct 2005 05:16:20 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from centrmmtao02.cox.net (centrmmtao02.cox.net [70.168.83.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AC9143D46; Tue, 25 Oct 2005 05:16:17 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.140]) by centrmmtao02.cox.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20051025051613.YSGE21553.centrmmtao02.cox.net@mezz.mezzweb.com>; Tue, 25 Oct 2005 01:16:13 -0400 Date: Tue, 25 Oct 2005 00:16:53 -0500 To: obrien@freebsd.org References: <200510240943.j9O9hR8r090890@repoman.freebsd.org> <20051025050240.GA55330@dragon.NUXI.org> From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: <20051025050240.GA55330@dragon.NUXI.org> User-Agent: Opera M2/8.50 (Linux, build 1358) Cc: cvs-ports@freebsd.org, Kirill Ponomarew , cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/editors/vim 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, 25 Oct 2005 05:16:20 -0000 On Tue, 25 Oct 2005 00:02:40 -0500, David O'Brien wrote: > On Mon, Oct 24, 2005 at 09:43:26AM +0000, Kirill Ponomarew wrote: >> krion 2005-10-24 09:43:26 UTC >> >> FreeBSD ports repository >> >> Modified files: >> editors/vim Makefile >> Log: >> Fix breakage with portupgrade(1). >> >> Submitted by: mezz >> Approved by: portmgr hat >> >> Revision Changes Path >> 1.269 +5 -5 ports/editors/vim/Makefile > > How did rev 1.268 break portupgrade? Not only portupgrade, but also with pkg_version, slave ports and INDEX. With rev 1.268, the error looks in pkg_version like this: ======================================== # pkg_version ImageMagick = ORBit2 = aalib = abiword-devel-gnome = [...] vcdimager = jot: infinite sequences cannot be bounded "Makefile", line 19: warning: "/usr/bin/jot -s " " -w 6.4.%03d 0 1 0" returned non-zero status vim-gtk2 = [...] ======================================== Cheers, Mezz > $ cd /usr/ports/editors/vim > $ echo $? > 0 > $ make > ..snip.. > $ echo $? > 0 -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Tue Oct 25 05:20:21 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 597FF16A41F; Tue, 25 Oct 2005 05:20:21 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id C422F43D5A; Tue, 25 Oct 2005 05:20:18 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9P5KIxh067137; Mon, 24 Oct 2005 22:20:18 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9P5KIcm067136; Mon, 24 Oct 2005 22:20:18 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 22:20:18 -0700 From: "David O'Brien" To: John Baldwin Message-ID: <20051025052018.GE55418@dragon.NUXI.org> References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510241034.27073.jhb@freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 05:20:21 -0000 On Mon, Oct 24, 2005 at 10:34:25AM -0400, John Baldwin wrote: > On Monday 24 October 2005 03:24 am, David O'Brien wrote: > > On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: > > > rik 2005-09-27 16:57:45 UTC > > > FreeBSD src repository > > > Modified files: > > > sys/dev/cp if_cp.c > > > Log: > > > Restore if_cp.c 1.27 ... > > You should not have backed out my commit without discussing it with me > > and understanding the reason for the change. > > Do it again and I *will* be taking it Core. > > Looks like he added some function prototypes and moved the cdevsw up. Does i > compile now with gcc 4.0? It seems that his changes were a lot simpler and > didn't destroy nearly as much CVS history as your changes. It would really > be preferable to use simpler solutions rather than destroying version history > with really big diffs. Doesn't matter -- it was a clear back out of my recent commit. src/MAINTAINERS doesn't list any of these drivers, so what was his authority in unilaterally backing out my commit? It is also port portable to define static functions early in a file, before they are used. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 05:21:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C92F516A41F; Tue, 25 Oct 2005 05:21:30 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89A1C43D48; Tue, 25 Oct 2005 05:21:30 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P5LUYH087032; Tue, 25 Oct 2005 05:21:30 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P5LU4F087031; Tue, 25 Oct 2005 05:21:30 GMT (envelope-from danfe) Message-Id: <200510250521.j9P5LU4F087031@repoman.freebsd.org> From: Alexey Dokuchaev Date: Tue, 25 Oct 2005 05:21: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/graphics/pho 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, 25 Oct 2005 05:21:30 -0000 danfe 2005-10-25 05:21:30 UTC FreeBSD ports repository Modified files: graphics/pho Makefile Log: - Stop looking for non-existent and non-needed tool - Make PREFIX-clean Reported by: krismail Revision Changes Path 1.8 +4 -3 ports/graphics/pho/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 05:24:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED6D016A41F; Tue, 25 Oct 2005 05:24:52 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD88B43D46; Tue, 25 Oct 2005 05:24:52 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P5OqhA087121; Tue, 25 Oct 2005 05:24:52 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P5OqQT087120; Tue, 25 Oct 2005 05:24:52 GMT (envelope-from danfe) Message-Id: <200510250524.j9P5OqQT087120@repoman.freebsd.org> From: Alexey Dokuchaev Date: Tue, 25 Oct 2005 05:24: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/graphics/pho 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, 25 Oct 2005 05:24:53 -0000 danfe 2005-10-25 05:24:52 UTC FreeBSD ports repository Modified files: graphics/pho Makefile distinfo Log: Update to 0.9.5-pre4. Revision Changes Path 1.9 +1 -1 ports/graphics/pho/Makefile 1.5 +2 -2 ports/graphics/pho/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 05:29:32 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2883816A41F; Tue, 25 Oct 2005 05:29:32 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id C866E43D48; Tue, 25 Oct 2005 05:29:31 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9P5TLrJ067682; Mon, 24 Oct 2005 22:29:21 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9P5TLS1067681; Mon, 24 Oct 2005 22:29:21 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 22:29:21 -0700 From: "David O'Brien" To: Jeremy Messenger Message-ID: <20051025052921.GG55418@dragon.NUXI.org> References: <200510240943.j9O9hR8r090890@repoman.freebsd.org> <20051025050240.GA55330@dragon.NUXI.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-ports@freebsd.org, Kirill Ponomarew , cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/editors/vim Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 05:29:32 -0000 On Tue, Oct 25, 2005 at 12:16:53AM -0500, Jeremy Messenger wrote: > On Tue, 25 Oct 2005 00:02:40 -0500, David O'Brien > wrote: > > >On Mon, Oct 24, 2005 at 09:43:26AM +0000, Kirill Ponomarew wrote: > >>krion 2005-10-24 09:43:26 UTC > >> > >> FreeBSD ports repository > >> > >> Modified files: > >> editors/vim Makefile > >> Log: > >> Fix breakage with portupgrade(1). > >> > >> Submitted by: mezz > >> Approved by: portmgr hat > >> > >> Revision Changes Path > >> 1.269 +5 -5 ports/editors/vim/Makefile > > > >How did rev 1.268 break portupgrade? > > Not only portupgrade, but also with pkg_version, slave ports and INDEX. > With rev 1.268, the error looks in pkg_version like this: It seems our tools cannot handling any output other than the single exact line they are looking for. Adding .BEGIN -/usr/bin/falas also seems to break these tools - even though it doesn't break the build and '-' is used in some ports Makefile's build targets. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 05:32:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D7C516A41F; Tue, 25 Oct 2005 05:32:45 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D5BE43D48; Tue, 25 Oct 2005 05:32:45 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P5Wifh087454; Tue, 25 Oct 2005 05:32:44 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P5WiJN087453; Tue, 25 Oct 2005 05:32:44 GMT (envelope-from wpaul) Message-Id: <200510250532.j9P5WiJN087453@repoman.freebsd.org> From: Bill Paul Date: Tue, 25 Oct 2005 05:32: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/i386/pci pci_cfgreg.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 05:32:45 -0000 wpaul 2005-10-25 05:32:44 UTC FreeBSD src repository Modified files: sys/i386/pci pci_cfgreg.c Log: Undo the change to pci_cfgdisable() on i386 for now. It seems to fix the amd64 case, but makes the i386 case fail even more often. Revision Changes Path 1.118 +2 -6 src/sys/i386/pci/pci_cfgreg.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 05:49:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3E3016A41F; Tue, 25 Oct 2005 05:49:41 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5347943D45; Tue, 25 Oct 2005 05:49:41 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9P5nd7e068159; Mon, 24 Oct 2005 22:49:39 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9P5narG068158; Mon, 24 Oct 2005 22:49:36 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 22:49:35 -0700 From: "David O'Brien" To: Scott Long Message-ID: <20051025054935.GH55418@dragon.NUXI.org> References: <200510240440.j9O4ecBQ063762@repoman.freebsd.org> <435D0798.2090306@samsco.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <435D0798.2090306@samsco.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.pre.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 05:49:41 -0000 On Mon, Oct 24, 2005 at 10:11:04AM -0600, Scott Long wrote: > David E. O'Brien wrote: > >obrien 2005-10-24 04:40:38 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/conf kern.pre.mk > > Log: > > We no longer need INCLUDES+= -I$S/contrib/dev/acpica. > > > > Revision Changes Path > > 1.73 +2 -5 src/sys/conf/kern.pre.mk > > Why is this so important? Why is it worth conflicts with vendor code? How does it conflict with vendor code? See the recient archives of why it is wrong to have -I's in kern.pre.mk and how it only started in BSD .mk files when msmith imported acpica (Makefile.i386 rev 2.111). [only to later start mundging the files before importing them.] Warner also seems to have thought it wasn't good to polute the build of all files with global -I's: RCS file: /home/ncvs/src/sys/conf/Makefile.i386,v .. revision 1.265 date: 2005/04/13 14:49:57; author: imp; state: Exp; lines: +0 -2 .. Also, move the -I stuff to the centralized kern.pre.mk. However, it might be better to add these flags to files.conf. .. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 06:13:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A91E16A41F; Tue, 25 Oct 2005 06:13:16 +0000 (GMT) (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 DD94543D45; Tue, 25 Oct 2005 06:13:15 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P6DFb4088812; Tue, 25 Oct 2005 06:13:15 GMT (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P6DFtl088811; Tue, 25 Oct 2005 06:13:15 GMT (envelope-from ale) Message-Id: <200510250613.j9P6DFtl088811@repoman.freebsd.org> From: Alex Dupre Date: Tue, 25 Oct 2005 06:13: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/monotone 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, 25 Oct 2005 06:13:16 -0000 ale 2005-10-25 06:13:15 UTC FreeBSD ports repository Modified files: devel/monotone Makefile Log: - Switch knobs to OPTIONS - Switch back to depend on external libs by default - Install only one info file - Bump PORTREVISION Submitted by: maintainer Revision Changes Path 1.14 +15 -7 ports/devel/monotone/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 06:17:05 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE8AE16A421 for ; Tue, 25 Oct 2005 06:17:05 +0000 (GMT) (envelope-from nate@root.org) Received: from ylpvm12.prodigy.net (ylpvm12-ext.prodigy.net [207.115.57.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68E2B43D48 for ; Tue, 25 Oct 2005 06:17:05 +0000 (GMT) (envelope-from nate@root.org) Received: from pimout5-ext.prodigy.net (pimout5-int.prodigy.net [207.115.4.21]) by ylpvm12.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id j9P6HSTp012716 for ; Tue, 25 Oct 2005 02:17:30 -0400 X-ORBL: [71.139.0.107] Received: from [10.0.0.242] (ppp-71-139-0-107.dsl.snfc21.pacbell.net [71.139.0.107]) by pimout5-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with ESMTP id j9P6GwxW158370; Tue, 25 Oct 2005 02:16:59 -0400 Message-ID: <435DCDE7.4010101@root.org> Date: Mon, 24 Oct 2005 23:17:11 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: obrien@FreeBSD.org References: <200510240440.j9O4ecBQ063762@repoman.freebsd.org> <435D0798.2090306@samsco.org> <20051025054935.GH55418@dragon.NUXI.org> In-Reply-To: <20051025054935.GH55418@dragon.NUXI.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, Scott Long , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.pre.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: Tue, 25 Oct 2005 06:17:06 -0000 David O'Brien wrote: > On Mon, Oct 24, 2005 at 10:11:04AM -0600, Scott Long wrote: > >>David E. O'Brien wrote: >> >>>obrien 2005-10-24 04:40:38 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> sys/conf kern.pre.mk >>> Log: >>> We no longer need INCLUDES+= -I$S/contrib/dev/acpica. >>> >>> Revision Changes Path >>> 1.73 +2 -5 src/sys/conf/kern.pre.mk >> >>Why is this so important? Why is it worth conflicts with vendor code? > > > How does it conflict with vendor code? > See the recient archives of why it is wrong to have -I's in kern.pre.mk > and how it only started in BSD .mk files when msmith imported acpica > (Makefile.i386 rev 2.111). > [only to later start mundging the files before importing them.] > > Warner also seems to have thought it wasn't good to polute the build of > all files with global -I's: > > RCS file: /home/ncvs/src/sys/conf/Makefile.i386,v > .. > revision 1.265 > date: 2005/04/13 14:49:57; author: imp; state: Exp; lines: +0 -2 > .. > Also, move the -I stuff to the centralized kern.pre.mk. However, it > might be better to add these flags to files.conf. > .. I think this is a pretty minor gain also. There are other similar areas that could benefit much more from some Makefile-reworking (especially the handling for .m files at the top of sys/conf/files). However, since we already bash the acpi-ca distro with a hammer (see acpica_prep.sh), this was a minor enough change to tolerate. -Nate From owner-cvs-all@FreeBSD.ORG Tue Oct 25 06:29:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA36516A41F; Tue, 25 Oct 2005 06:29:36 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69C4B43D48; Tue, 25 Oct 2005 06:29:36 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P6TaRp089431; Tue, 25 Oct 2005 06:29:36 GMT (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P6TahP089430; Tue, 25 Oct 2005 06:29:36 GMT (envelope-from osa) Message-Id: <200510250629.j9P6TahP089430@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Tue, 25 Oct 2005 06:29: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/www/nginx 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, 25 Oct 2005 06:29:36 -0000 osa 2005-10-25 06:29:36 UTC FreeBSD ports repository Modified files: www/nginx Makefile distinfo Log: Update to 0.3.6. Revision Changes Path 1.42 +1 -1 ports/www/nginx/Makefile 1.39 +2 -2 ports/www/nginx/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 06:53:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4204016A41F; Tue, 25 Oct 2005 06:53:46 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 110C743D48; Tue, 25 Oct 2005 06:53:46 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P6rj83090260; Tue, 25 Oct 2005 06:53:45 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P6rjT8090259; Tue, 25 Oct 2005 06:53:45 GMT (envelope-from wpaul) Message-Id: <200510250653.j9P6rjT8090259@repoman.freebsd.org> From: Bill Paul Date: Tue, 25 Oct 2005 06:53:45 +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/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: Tue, 25 Oct 2005 06:53:46 -0000 wpaul 2005-10-25 06:53:45 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: Add a 1 microsecond delay in pci_add_children(), right before the read of the PCIR_HDRTYPE register. It's the value returned from this read access that determines whether or not we decide a device is present at the current slot index. For some reason that I can't adequately explain, this read fails on my machine when probing the USB controller on my machine (which happens a multifunction device at slot index 3 hung off the PCI-PCI bridge on the AMD8111 (bus index 1)). The read will return 0xFF even though it should return 0x80 to indicate the presence of a multifunction device. As near as I can tell, there's some timing issue involved with reading the 'dead' slot indexes 0 through 2 that causes the read of the actual device at slot 3 to fail. I tried a couple of different tricks to correct the problem (the patch to amd64/pci/pci_cfgreg.c fixes it for the amd64 arch), but adding this delay is the only thing that always allows the USB controllers to be correctly probed 100% of the time. Whatever the problem is, it's likely confined to the AMD8111 chipset. However, a simple 1us delay is fairly harmless and should have no side effects for other hardware. I consider this to be voodoo, but it's fairly benign voodoo and it makes my USB keyboard and mouse work again. Note that this is the second time that I've had to resort to a 1us delay to fix a PCI-related problem with this AMD8111/Opteron system (the first being a fix I made a while back to the NDISulator). It's possible the delay really belongs in the cfgreg code itself, or that pci_cfgreg needs some custom hackery for an errata in the 8111. (I checked but couldn't find any documented errata on AMD's site that could account for these problems.) Revision Changes Path 1.300 +1 -0 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 07:40:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82C2916A41F; Tue, 25 Oct 2005 07:40:04 +0000 (GMT) (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 9495043D46; Tue, 25 Oct 2005 07:40:02 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5D307.dip.t-dialin.net [84.165.211.7]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id j9P7Kdwb030258; Tue, 25 Oct 2005 09:20:40 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from localhost (localhost [127.0.0.1]) by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id j9P7duve089998; Tue, 25 Oct 2005 09:39:56 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by netchild.homeip.net (Horde MIME library) with HTTP; Tue, 25 Oct 2005 09:39:56 +0200 Message-ID: <20051025093956.aq9wyakvcoww4o84@netchild.homeip.net> X-Priority: 3 (Normal) Date: Tue, 25 Oct 2005 09:39:56 +0200 From: Alexander Leidinger To: obrien@FreeBSD.org References: <200510240034.j9O0YDgG047096@repoman.freebsd.org> <20051024143613.hu726dyokc4wco88@netchild.homeip.net> <20051025051555.GD55418@dragon.NUXI.org> In-Reply-To: <20051025051555.GD55418@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) / FreeBSD-4.11 X-Virus-Scanned: by amavisd-new Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/editors/vim 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, 25 Oct 2005 07:40:04 -0000 David O'Brien wrote: > The issue is the autoconfig script has /usr/local/include and > /usr/local hard coded in it (ac_default_prefix=/usr/local). > >> But PREFIX is not right for a non-standard LOCALBASE/X11BASE. What is >> this commit supposed to do? > > To tell the truth I'm not sure the exact case Kris was trying to allow. > You are right that ac_default_prefix=${LOCALBASE} may be a better > substitution. For GTK and gnome you can use the corresponding options to configure to tell it where they are located. For every other lib it should be enough to add LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" and CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" (not tested...), don't you think too? Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 The person you rejected yesterday could make you happy, if you say yes. From owner-cvs-all@FreeBSD.ORG Tue Oct 25 07:45:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E55EC16A41F; Tue, 25 Oct 2005 07:45:23 +0000 (GMT) (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 A42EA43D67; Tue, 25 Oct 2005 07:45:23 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P7jN3j092081; Tue, 25 Oct 2005 07:45:23 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P7jNm1092080; Tue, 25 Oct 2005 07:45:23 GMT (envelope-from dinoex) Message-Id: <200510250745.j9P7jNm1092080@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 25 Oct 2005 07:45: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/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: Tue, 25 Oct 2005 07:45:24 -0000 dinoex 2005-10-25 07:45:23 UTC FreeBSD ports repository Modified files: Mk bsd.gnustep.mk Log: - new backend option WITH_GNUSTEP_CAIRO Revision Changes Path 1.20 +18 -4 ports/Mk/bsd.gnustep.mk From owner-cvs-all@FreeBSD.ORG Tue Oct 25 07:56:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB24816A41F; Tue, 25 Oct 2005 07:56:19 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97FB743D45; Tue, 25 Oct 2005 07:56:19 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P7uJPu092413; Tue, 25 Oct 2005 07:56:19 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P7uJoS092412; Tue, 25 Oct 2005 07:56:19 GMT (envelope-from vs) Message-Id: <200510250756.j9P7uJoS092412@repoman.freebsd.org> From: Volker Stolz Date: Tue, 25 Oct 2005 07: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/misc/jbidwatcher 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, 25 Oct 2005 07:56:20 -0000 vs 2005-10-25 07:56:18 UTC FreeBSD ports repository Modified files: misc/jbidwatcher Makefile distinfo Log: - Update to 0.9.9 - Assign maintainership to submitter PR: ports/87957 Submitted by: Stephen Hurd Revision Changes Path 1.5 +2 -2 ports/misc/jbidwatcher/Makefile 1.4 +2 -2 ports/misc/jbidwatcher/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 08:01:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3665916A41F; Tue, 25 Oct 2005 08:01:52 +0000 (GMT) (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 E4A5D43D48; Tue, 25 Oct 2005 08:01:51 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P81p1b092659; Tue, 25 Oct 2005 08:01:51 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P81pJK092658; Tue, 25 Oct 2005 08:01:51 GMT (envelope-from dinoex) Message-Id: <200510250801.j9P81pJK092658@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 25 Oct 2005 08:01: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/mldonkey Makefile ports/net/mldonkey/files patch-hashes X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 08:01:52 -0000 dinoex 2005-10-25 08:01:50 UTC FreeBSD ports repository Modified files: net/mldonkey Makefile net/mldonkey/files patch-hashes Log: - fix dependency - fix openssl patch maintainer emailed: 2005-10-08 (no feedback) Approved by: (maintainer timeout) Revision Changes Path 1.28 +1 -0 ports/net/mldonkey/Makefile 1.2 +2 -1 ports/net/mldonkey/files/patch-hashes From owner-cvs-all@FreeBSD.ORG Tue Oct 25 08:03:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D40516A41F; Tue, 25 Oct 2005 08:03:56 +0000 (GMT) (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 4C45D43D46; Tue, 25 Oct 2005 08:03:56 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P83tXD092753; Tue, 25 Oct 2005 08:03:56 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P83t0A092747; Tue, 25 Oct 2005 08:03:55 GMT (envelope-from dinoex) Message-Id: <200510250803.j9P83t0A092747@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 25 Oct 2005 08:03: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/security/openvpn 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, 25 Oct 2005 08:03:56 -0000 dinoex 2005-10-25 08:03:55 UTC FreeBSD ports repository Modified files: security/openvpn Makefile Log: - fix build in jail maintainer emailed 2005-10-04 Approved by: (maintainer timeout) Revision Changes Path 1.19 +2 -0 ports/security/openvpn/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 08:07:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DBCE16A41F; Tue, 25 Oct 2005 08:07:22 +0000 (GMT) (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 2655D43D46; Tue, 25 Oct 2005 08:07:22 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P87Ld9092939; Tue, 25 Oct 2005 08:07:22 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P87Lo9092938; Tue, 25 Oct 2005 08:07:21 GMT (envelope-from dinoex) Message-Id: <200510250807.j9P87Lo9092938@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 25 Oct 2005 08:07: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/emulators/mupen64 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, 25 Oct 2005 08:07:22 -0000 dinoex 2005-10-25 08:07:20 UTC FreeBSD ports repository Modified files: emulators/mupen64 Makefile Log: - require mupen64-rice only in i385 Approved by: maintainer (implict) Revision Changes Path 1.2 +7 -2 ports/emulators/mupen64/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 08:10:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5737D16A41F; Tue, 25 Oct 2005 08:10:39 +0000 (GMT) (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 1496A43D49; Tue, 25 Oct 2005 08:10:39 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P8AcsK093105; Tue, 25 Oct 2005 08:10:38 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P8Ac6t093104; Tue, 25 Oct 2005 08:10:38 GMT (envelope-from dinoex) Message-Id: <200510250810.j9P8Ac6t093104@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 25 Oct 2005 08:10: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/ftp/vsftpd/files vsftpd.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, 25 Oct 2005 08:10:39 -0000 dinoex 2005-10-25 08:10:37 UTC FreeBSD ports repository Modified files: ftp/vsftpd/files vsftpd.sh.in Log: - more fixes for rc_ng script. Problems reported by: Marius Korsmo Revision Changes Path 1.2 +8 -5 ports/ftp/vsftpd/files/vsftpd.sh.in From owner-cvs-all@FreeBSD.ORG Tue Oct 25 08:11:21 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 147C716A41F; Tue, 25 Oct 2005 08:11:21 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C73543D48; Tue, 25 Oct 2005 08:11:20 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.54 (FreeBSD)) id 1EUJtv-0009kZ-9V; Tue, 25 Oct 2005 09:11:19 +0100 Date: Tue, 25 Oct 2005 09:11:19 +0100 From: Ceri Davies To: David O'Brien Message-ID: <20051025081119.GZ7319@submonkey.net> Mail-Followup-To: Ceri Davies , David O'Brien , Jeremy Messenger , cvs-ports@freebsd.org, Kirill Ponomarew , cvs-all@freebsd.org, ports-committers@freebsd.org References: <200510240943.j9O9hR8r090890@repoman.freebsd.org> <20051025050240.GA55330@dragon.NUXI.org> <20051025052921.GG55418@dragon.NUXI.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="xiprIVX1FSGBv8kC" Content-Disposition: inline In-Reply-To: <20051025052921.GG55418@dragon.NUXI.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.11 Sender: Ceri Davies Cc: Jeremy Messenger , ports-committers@freebsd.org, Kirill Ponomarew , cvs-all@freebsd.org, cvs-ports@freebsd.org Subject: Re: cvs commit: ports/editors/vim 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, 25 Oct 2005 08:11:21 -0000 --xiprIVX1FSGBv8kC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 24, 2005 at 10:29:21PM -0700, David O'Brien wrote: > On Tue, Oct 25, 2005 at 12:16:53AM -0500, Jeremy Messenger wrote: > > On Tue, 25 Oct 2005 00:02:40 -0500, David O'Brien = =20 > > wrote: > >=20 > > >On Mon, Oct 24, 2005 at 09:43:26AM +0000, Kirill Ponomarew wrote: > > >>krion 2005-10-24 09:43:26 UTC > > >> > > >> FreeBSD ports repository > > >> > > >> Modified files: > > >> editors/vim Makefile > > >> Log: > > >> Fix breakage with portupgrade(1). > > >> > > >> Submitted by: mezz > > >> Approved by: portmgr hat > > >> > > >> Revision Changes Path > > >> 1.269 +5 -5 ports/editors/vim/Makefile > > > > > >How did rev 1.268 break portupgrade? > >=20 > > Not only portupgrade, but also with pkg_version, slave ports and INDEX.= =20 > > With rev 1.268, the error looks in pkg_version like this: >=20 > It seems our tools cannot handling any output other than the single exact > line they are looking for. You'll probably need to pander to them for now. Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --xiprIVX1FSGBv8kC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDXeinocfcwTS3JF8RAr4MAJ0Zj6RI0Ikl1z0YRLJtPURYnlcIOwCfU1Q2 ujjTKU4XR+4a5uluh9wF91I= =81fA -----END PGP SIGNATURE----- --xiprIVX1FSGBv8kC-- From owner-cvs-all@FreeBSD.ORG Tue Oct 25 08:11:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35AC116A420 for ; Tue, 25 Oct 2005 08:11:52 +0000 (GMT) (envelope-from silby@silby.com) Received: from relay02.pair.com (relay02.pair.com [209.68.5.16]) by mx1.FreeBSD.org (Postfix) with SMTP id DB29043D53 for ; Tue, 25 Oct 2005 08:11:50 +0000 (GMT) (envelope-from silby@silby.com) Received: (qmail 12555 invoked from network); 25 Oct 2005 08:11:49 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 25 Oct 2005 08:11:49 -0000 X-pair-Authenticated: 209.68.2.70 Date: Tue, 25 Oct 2005 03:11:43 -0500 (CDT) From: Mike Silbersack To: Nate Lawson In-Reply-To: <200510230020.j9N0KD4g046756@repoman.freebsd.org> Message-ID: <20051025031002.B911@odysseus.silby.com> References: <200510230020.j9N0KD4g046756@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/dev/acpica acpi_smbat.c acpi_smbus.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, 25 Oct 2005 08:11:52 -0000 On Sun, 23 Oct 2005, Nate Lawson wrote: > njl 2005-10-23 00:20:13 UTC > > FreeBSD src repository > > Added files: > sys/dev/acpica acpi_smbat.c acpi_smbus.h > Log: > Import ACPI smart battery support. Newer systems (Acer, mostly) do not > support the CM-battery interface. Smart batteries can eventually be > supported without ACPI via a separate SMBus interface. The ACPI interface > uses the embedded controller for reading/writing to the SMBus, and normal > ASL definitions for locating the battery controller (since SMBus can't be > enumerated.) Also import definitions for the smart battery interface. > > This was written by Hans Petter Selasky with minor cleanups from myself. Nice, I've been waiting for this for a while. Well, sorta waiting. It turns out that the battery life on my Acer Pentium M laptop is so good that I can estimate when it'll run out mentally. "Has it been more than 2 hours since I wandered away from an outlet? Hm, maybe I should return." Now I just have to wait for this to be MFC'd to RELENG_6. :) Mike "Silby" Silbersack From owner-cvs-all@FreeBSD.ORG Tue Oct 25 08:12:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 423BF16A41F; Tue, 25 Oct 2005 08:12:49 +0000 (GMT) (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 8DD1A43D48; Tue, 25 Oct 2005 08:12:44 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P8ChH7093191; Tue, 25 Oct 2005 08:12:43 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P8ChDv093188; Tue, 25 Oct 2005 08:12:43 GMT (envelope-from dinoex) Message-Id: <200510250812.j9P8ChDv093188@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 25 Oct 2005 08:12: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/emulators/stonx 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, 25 Oct 2005 08:12:49 -0000 dinoex 2005-10-25 08:12:43 UTC FreeBSD ports repository Modified files: emulators/stonx Makefile Log: - fix dependency Approved by: maintainer (implict) Revision Changes Path 1.12 +3 -0 ports/emulators/stonx/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 08:18:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A811616A41F; Tue, 25 Oct 2005 08:18:31 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5FCF43D45; Tue, 25 Oct 2005 08:18:30 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.54 (FreeBSD)) id 1EUK0r-000Ngq-SC; Tue, 25 Oct 2005 09:18:29 +0100 Date: Tue, 25 Oct 2005 09:18:29 +0100 From: Ceri Davies To: "George V. Neville-Neil" Message-ID: <20051025081829.GA7319@submonkey.net> Mail-Followup-To: Ceri Davies , "George V. Neville-Neil" , doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org References: <200510241357.j9ODv1uv011089@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vvRocJ6whMXXNc9q" Content-Disposition: inline In-Reply-To: <200510241357.j9ODv1uv011089@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.11 Sender: Ceri Davies Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/events events.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, 25 Oct 2005 08:18:31 -0000 --vvRocJ6whMXXNc9q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 24, 2005 at 01:57:01PM +0000, George V. Neville-Neil wrote: > gnn 2005-10-24 13:57:01 UTC >=20 > FreeBSD doc repository (src committer) >=20 > Modified files: > en/events events.xml=20 > Log: > Submitted by: Johnny Cho popeye at yahoo-inc.com > Reviewed by: gnn simon > > Added an event for FreeBSD Korea Conference > | + A Conference for Everyone Who is interested in > | + FreeBSD in Korea. What's the deal with all the capital letters? Can I fix that? Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --vvRocJ6whMXXNc9q Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDXepVocfcwTS3JF8RAhpiAKCtP5Kc4z4UNn0MiVz/6F+RM25XxwCfaC9F 4APhz8TAPXmqg1dDCuRk6r0= =cQWz -----END PGP SIGNATURE----- --vvRocJ6whMXXNc9q-- From owner-cvs-all@FreeBSD.ORG Tue Oct 25 08:54:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF7BB16A41F; Tue, 25 Oct 2005 08:54:06 +0000 (GMT) (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 6ED9443D46; Tue, 25 Oct 2005 08:54:06 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P8s6tS001929; Tue, 25 Oct 2005 08:54:06 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P8s5g7001924; Tue, 25 Oct 2005 08:54:05 GMT (envelope-from ceri) Message-Id: <200510250854.j9P8s5g7001924@repoman.freebsd.org> From: Ceri Davies Date: Tue, 25 Oct 2005 08:54: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: www/en/events events.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, 25 Oct 2005 08:54:06 -0000 ceri 2005-10-25 08:54:05 UTC FreeBSD doc repository Modified files: en/events events.xml Log: Add UKUUG LISA/Spring Conference 2006 which has a BSD stream this time round. Revision Changes Path 1.58 +30 -1 www/en/events/events.xml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 08:56:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07A3C16A41F; Tue, 25 Oct 2005 08:56:34 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE17943D48; Tue, 25 Oct 2005 08:56:33 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from freefall.freebsd.org (yar@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9P8uXuG054165; Tue, 25 Oct 2005 08:56:33 GMT (envelope-from yar@freefall.freebsd.org) Received: (from yar@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j9P8uXwR054164; Tue, 25 Oct 2005 08:56:33 GMT (envelope-from yar) Date: Tue, 25 Oct 2005 08:56:33 +0000 From: Yar Tikhiy To: Jung-uk Kim Message-ID: <20051025085633.GA53953@freefall.freebsd.org> References: <200510202150.j9KLoinG035648@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510202150.j9KLoinG035648@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/gnu/usr.bin/grep grep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 08:56:34 -0000 On Thu, Oct 20, 2005 at 09:50:44PM +0000, Jung-uk Kim wrote: > jkim 2005-10-20 21:50:44 UTC > > FreeBSD src repository > > Modified files: > gnu/usr.bin/grep grep.c > Log: > Fix a longstanding buglet in bz-prefixed grep(1). > > Revision Changes Path > 1.32 +5 -5 src/gnu/usr.bin/grep/grep.c IMHO we should either MFC this fix to or drop bz[ef]grep links from RELENG_6_0 in order to avoid shipping deliberately broken command-line tools in 6.0-RELEASE. Yar From owner-cvs-all@FreeBSD.ORG Tue Oct 25 08:58:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AEC416A41F; Tue, 25 Oct 2005 08:58:23 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0E1443D53; Tue, 25 Oct 2005 08:58:22 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.54 (FreeBSD)) id 1EUKdS-000Ean-53; Tue, 25 Oct 2005 09:58:22 +0100 Date: Tue, 25 Oct 2005 09:58:22 +0100 From: Ceri Davies To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20051025085822.GE7319@submonkey.net> Mail-Followup-To: Ceri Davies , doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org References: <200510250854.j9P8s5g7001924@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="s0H35NU0PUc8VBh+" Content-Disposition: inline In-Reply-To: <200510250854.j9P8s5g7001924@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.11 Sender: Ceri Davies Cc: Subject: Re: cvs commit: www/en/events events.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, 25 Oct 2005 08:58:23 -0000 --s0H35NU0PUc8VBh+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 25, 2005 at 08:54:05AM +0000, Ceri Davies wrote: > ceri 2005-10-25 08:54:05 UTC >=20 > FreeBSD doc repository >=20 > Modified files: > en/events events.xml=20 > Log: > Add UKUUG LISA/Spring Conference 2006 which has a BSD stream this time > round. The call for papers is open until December. Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --s0H35NU0PUc8VBh+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDXfOtocfcwTS3JF8RAh6pAKCfwjEsHbqjY8tk1ZDgKcloBljMDACdE8yC i4FRiQbXXLyMdzrrJSTHCbY= =kld+ -----END PGP SIGNATURE----- --s0H35NU0PUc8VBh+-- From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:01:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CCA916A41F; Tue, 25 Oct 2005 09:01:34 +0000 (GMT) (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 DE10543D45; Tue, 25 Oct 2005 09:01:33 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P91Xhf002221; Tue, 25 Oct 2005 09:01:33 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P91Xce002220; Tue, 25 Oct 2005 09:01:33 GMT (envelope-from garga) Message-Id: <200510250901.j9P91Xce002220@repoman.freebsd.org> From: Renato Botelho Date: Tue, 25 Oct 2005 09:01: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/misc/qbrew 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, 25 Oct 2005 09:01:34 -0000 garga 2005-10-25 09:01:33 UTC FreeBSD ports repository Modified files: misc/qbrew Makefile pkg-plist Log: - Honor X11BASE [1] - Use DATADIR macro - Respect NOPORTDOCS - Use PORTDOCS PR: ports/87901 [1] Submitted by: maintainer [1] Requested by: kris [1] Revision Changes Path 1.12 +14 -1 ports/misc/qbrew/Makefile 1.8 +10 -36 ports/misc/qbrew/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:05:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B3B016A41F; Tue, 25 Oct 2005 09:05:08 +0000 (GMT) (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 2343743D49; Tue, 25 Oct 2005 09:05:08 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P958gb002501; Tue, 25 Oct 2005 09:05:08 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9575Z002500; Tue, 25 Oct 2005 09:05:07 GMT (envelope-from ru) Message-Id: <200510250905.j9P9575Z002500@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 25 Oct 2005 09:05: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/release Makefile src/sys/conf kern.post.mk kmod.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: Tue, 25 Oct 2005 09:05:08 -0000 ru 2005-10-25 09:05:07 UTC FreeBSD src repository Modified files: release Makefile sys/conf kern.post.mk kmod.mk Log: Refactor (some more) installation of kernel and module objects. Try to make everyone happy: David (to have debug kernels installed by default), Warner (to be able to override that), and myself (for actually making it all work and to be consistent). Now, if kernel was configured for debugging (through DEBUG=-g in the kernel config file or "config -g"), doing "make install" will install debug versions of kernel and module objects with their canonical names, kernel.debug -> /boot/kernel/kernel if_fxp.ko.debug -> /boot/kernel/if_fxp.ko Installing a kernel not configured for debugging, or debug kernel with INSTALL_NODEBUG variable defined, will install non-debug kernel and module objects. Also, restore the install.debug and reinstall.debug targets that are part of the existing API (they cause some additional gdb(1) scripts to be installed). Revision Changes Path 1.891 +0 -4 src/release/Makefile 1.86 +4 -2 src/sys/conf/kern.post.mk 1.197 +3 -8 src/sys/conf/kmod.mk From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:18:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADF2D16A41F; Tue, 25 Oct 2005 09:18:51 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C82543D45; Tue, 25 Oct 2005 09:18:51 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P9Ippj003343; Tue, 25 Oct 2005 09:18:51 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9Ipe8003342; Tue, 25 Oct 2005 09:18:51 GMT (envelope-from tjr) Message-Id: <200510250918.j9P9Ipe8003342@repoman.freebsd.org> From: "Tim J. Robbins" Date: Tue, 25 Oct 2005 09:18: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/gnu/usr.bin/grep search.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 09:18:51 -0000 tjr 2005-10-25 09:18:50 UTC FreeBSD src repository Modified files: gnu/usr.bin/grep search.c Log: Fix 'grep -Fw' for encodings other than UTF-8 (RH bug #161700). PR: 87969 Obtained from: Fedora (Tim Waugh) Revision Changes Path 1.24 +2 -2 src/gnu/usr.bin/grep/search.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:34:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4F6D16A41F; Tue, 25 Oct 2005 09:34:56 +0000 (GMT) (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 60D0143D45; Tue, 25 Oct 2005 09:34:56 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P9YuQA003926; Tue, 25 Oct 2005 09:34:56 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9YtTd003925; Tue, 25 Oct 2005 09:34:56 GMT (envelope-from skv) Message-Id: <200510250934.j9P9YtTd003925@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 25 Oct 2005 09:34: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/security/p5-Digest 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, 25 Oct 2005 09:34:56 -0000 skv 2005-10-25 09:34:55 UTC FreeBSD ports repository Modified files: security/p5-Digest Makefile distinfo Log: Update to 1.13 PR: ports/87713 Submitted by: Christian Lackas Revision Changes Path 1.13 +1 -1 ports/security/p5-Digest/Makefile 1.10 +2 -2 ports/security/p5-Digest/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:39:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AFDA16A41F; Tue, 25 Oct 2005 09:39:54 +0000 (GMT) (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 3418143D5A; Tue, 25 Oct 2005 09:39:52 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P9dpPv004132; Tue, 25 Oct 2005 09:39:52 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9dpNb004131; Tue, 25 Oct 2005 09:39:51 GMT (envelope-from skv) Message-Id: <200510250939.j9P9dpNb004131@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 25 Oct 2005 09:39: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/www/p5-Apache-Test 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, 25 Oct 2005 09:39:54 -0000 skv 2005-10-25 09:39:51 UTC FreeBSD ports repository Modified files: www/p5-Apache-Test Makefile distinfo Log: Update to 1.27 Changes: http://search.cpan.org/~PGOLLUCCI/Apache-Test/Changes Revision Changes Path 1.20 +1 -1 ports/www/p5-Apache-Test/Makefile 1.17 +2 -2 ports/www/p5-Apache-Test/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:41:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CA3216A41F; Tue, 25 Oct 2005 09:41:57 +0000 (GMT) (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 B139643D46; Tue, 25 Oct 2005 09:41:56 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P9fu0C004274; Tue, 25 Oct 2005 09:41:56 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9fuon004273; Tue, 25 Oct 2005 09:41:56 GMT (envelope-from dinoex) Message-Id: <200510250941.j9P9fuon004273@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 25 Oct 2005 09:41: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/emulators/vice Makefile distinfo pkg-plist ports/emulators/vice/files patch-sound X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 09:41:57 -0000 dinoex 2005-10-25 09:41:56 UTC FreeBSD ports repository Modified files: emulators/vice Makefile distinfo pkg-plist emulators/vice/files patch-sound Log: - update to 1.17 - new MASTER_SITES - honor SDL_CONFIG Revision Changes Path 1.39 +13 -6 ports/emulators/vice/Makefile 1.13 +2 -2 ports/emulators/vice/distinfo 1.4 +25 -63 ports/emulators/vice/files/patch-sound 1.16 +1 -1 ports/emulators/vice/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:43:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BA1116A41F; Tue, 25 Oct 2005 09:43:13 +0000 (GMT) (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 9159A43D5C; Tue, 25 Oct 2005 09:43:12 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P9hC7e004365; Tue, 25 Oct 2005 09:43:12 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9hCI8004364; Tue, 25 Oct 2005 09:43:12 GMT (envelope-from skv) Message-Id: <200510250943.j9P9hCI8004364@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 25 Oct 2005 09:43: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/p5-Class-Inspector 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, 25 Oct 2005 09:43:13 -0000 skv 2005-10-25 09:43:12 UTC FreeBSD ports repository Modified files: devel/p5-Class-Inspector Makefile distinfo Log: Update to 1.13 Changes: http://search.cpan.org/src/ADAMK/Class-Inspector-1.13/Changes Revision Changes Path 1.12 +1 -1 ports/devel/p5-Class-Inspector/Makefile 1.11 +2 -2 ports/devel/p5-Class-Inspector/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:44:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 584A216A41F; Tue, 25 Oct 2005 09:44:17 +0000 (GMT) (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 14EF243D46; Tue, 25 Oct 2005 09:44:17 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P9iGH0004434; Tue, 25 Oct 2005 09:44:16 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9iG0v004433; Tue, 25 Oct 2005 09:44:16 GMT (envelope-from skv) Message-Id: <200510250944.j9P9iG0v004433@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 25 Oct 2005 09:44: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/devel/p5-Class-Handle 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, 25 Oct 2005 09:44:17 -0000 skv 2005-10-25 09:44:16 UTC FreeBSD ports repository Modified files: devel/p5-Class-Handle Makefile distinfo Log: Update to 1.04 Changes: http://search.cpan.org/src/ADAMK/Class-Handle-1.04/Changes Revision Changes Path 1.2 +1 -1 ports/devel/p5-Class-Handle/Makefile 1.2 +2 -2 ports/devel/p5-Class-Handle/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:46:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FC4E16A41F; Tue, 25 Oct 2005 09:46:46 +0000 (GMT) (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 D5BB243D46; Tue, 25 Oct 2005 09:46:45 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P9kjbO004597; Tue, 25 Oct 2005 09:46:45 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9kjh4004596; Tue, 25 Oct 2005 09:46:45 GMT (envelope-from skv) Message-Id: <200510250946.j9P9kjh4004596@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 25 Oct 2005 09:46: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/devel/p5-Data-Lazy 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, 25 Oct 2005 09:46:46 -0000 skv 2005-10-25 09:46:45 UTC FreeBSD ports repository Modified files: devel/p5-Data-Lazy Makefile distinfo Log: Update to 0.6 Changes: http://search.cpan.org/src/SAMV/Data-Lazy-0.6/Changes Revision Changes Path 1.2 +2 -2 ports/devel/p5-Data-Lazy/Makefile 1.2 +2 -2 ports/devel/p5-Data-Lazy/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:50:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C77016A41F; Tue, 25 Oct 2005 09:50:31 +0000 (GMT) (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 06D0F43D46; Tue, 25 Oct 2005 09:50:31 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P9oUfw004746; Tue, 25 Oct 2005 09:50:30 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9oU8J004745; Tue, 25 Oct 2005 09:50:30 GMT (envelope-from skv) Message-Id: <200510250950.j9P9oU8J004745@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 25 Oct 2005 09:50: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/p5-POE-Component-RSS 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: Tue, 25 Oct 2005 09:50:31 -0000 skv 2005-10-25 09:50:30 UTC FreeBSD ports repository Modified files: devel/p5-POE-Component-RSS Makefile distinfo pkg-descr Log: Update to 0.08 Revision Changes Path 1.4 +1 -1 ports/devel/p5-POE-Component-RSS/Makefile 1.4 +2 -2 ports/devel/p5-POE-Component-RSS/distinfo 1.3 +0 -3 ports/devel/p5-POE-Component-RSS/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:53:05 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B75AB16A41F; Tue, 25 Oct 2005 09:53:05 +0000 (GMT) (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 7455243D45; Tue, 25 Oct 2005 09:53:05 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P9r50A004827; Tue, 25 Oct 2005 09:53:05 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9r5sm004826; Tue, 25 Oct 2005 09:53:05 GMT (envelope-from garga) Message-Id: <200510250953.j9P9r5sm004826@repoman.freebsd.org> From: Renato Botelho Date: Tue, 25 Oct 2005 09:53: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/databases/dbow 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, 25 Oct 2005 09:53:05 -0000 garga 2005-10-25 09:53:04 UTC FreeBSD ports repository Modified files: databases/dbow Makefile distinfo Log: - Update to 0.7 PR: ports/87974 Submitted by: maintainer Revision Changes Path 1.4 +1 -1 ports/databases/dbow/Makefile 1.4 +2 -2 ports/databases/dbow/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:54:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25EB116A41F; Tue, 25 Oct 2005 09:54:10 +0000 (GMT) (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 D5A5643D45; Tue, 25 Oct 2005 09:54:09 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P9s94x004904; Tue, 25 Oct 2005 09:54:09 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9s9WJ004903; Tue, 25 Oct 2005 09:54:09 GMT (envelope-from skv) Message-Id: <200510250954.j9P9s9WJ004903@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 25 Oct 2005 09:54: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/p5-Test-Unit 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, 25 Oct 2005 09:54:10 -0000 skv 2005-10-25 09:54:09 UTC FreeBSD ports repository Modified files: devel/p5-Test-Unit Makefile distinfo Log: Update to 0.25 Changes: http://search.cpan.org/src/MCAST/Test-Unit-0.25/ChangeLog Revision Changes Path 1.8 +1 -1 ports/devel/p5-Test-Unit/Makefile 1.3 +2 -2 ports/devel/p5-Test-Unit/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 09:57:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DDF516A41F; Tue, 25 Oct 2005 09:57:04 +0000 (GMT) (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 5906143D48; Tue, 25 Oct 2005 09:57:04 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P9v4vp005018; Tue, 25 Oct 2005 09:57:04 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9v4Ir005017; Tue, 25 Oct 2005 09:57:04 GMT (envelope-from skv) Message-Id: <200510250957.j9P9v4Ir005017@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 25 Oct 2005 09:57: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/graphics/p5-SWF-Builder 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, 25 Oct 2005 09:57:04 -0000 skv 2005-10-25 09:57:03 UTC FreeBSD ports repository Modified files: graphics/p5-SWF-Builder Makefile distinfo Log: Update to 0.14 Changes: http://search.cpan.org/src/YSAS/SWF-Builder-0.14/Changes Revision Changes Path 1.10 +1 -1 ports/graphics/p5-SWF-Builder/Makefile 1.9 +2 -2 ports/graphics/p5-SWF-Builder/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 10:01:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED0AE16A41F; Tue, 25 Oct 2005 10:01:20 +0000 (GMT) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9D4543D45; Tue, 25 Oct 2005 10:01:20 +0000 (GMT) (envelope-from az@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PA1KN7005187; Tue, 25 Oct 2005 10:01:20 GMT (envelope-from az@repoman.freebsd.org) Received: (from az@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PA1KSe005186; Tue, 25 Oct 2005 10:01:20 GMT (envelope-from az) Message-Id: <200510251001.j9PA1KSe005186@repoman.freebsd.org> From: Andrej Zverev Date: Tue, 25 Oct 2005 10:01: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/gap 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, 25 Oct 2005 10:01:21 -0000 az 2005-10-25 10:01:19 UTC FreeBSD ports repository Modified files: math/gap Makefile distinfo Log: - Sync ports version to latest packages update (2005_10_19-13_48_UTC) PR: ports/87870 Submitted by: Johan van Selst (maintainer) Approved by: sem (mentor) Revision Changes Path 1.16 +1 -1 ports/math/gap/Makefile 1.12 +2 -2 ports/math/gap/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 10:05:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5029716A41F; Tue, 25 Oct 2005 10:05:02 +0000 (GMT) (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 1905043D45; Tue, 25 Oct 2005 10:05:02 +0000 (GMT) (envelope-from bvs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PA51k2005343; Tue, 25 Oct 2005 10:05:01 GMT (envelope-from bvs@repoman.freebsd.org) Received: (from bvs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PA51M5005342; Tue, 25 Oct 2005 10:05:01 GMT (envelope-from bvs) Message-Id: <200510251005.j9PA51M5005342@repoman.freebsd.org> From: Vitaly Bogdanov Date: Tue, 25 Oct 2005 10:05:01 +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/ru_RU.KOI8-R/articles Makefile doc/ru_RU.KOI8-R/articles/version-guide Makefile 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: Tue, 25 Oct 2005 10:05:02 -0000 bvs 2005-10-25 10:05:01 UTC FreeBSD doc repository Modified files: ru_RU.KOI8-R/articles Makefile Added files: ru_RU.KOI8-R/articles/version-guide Makefile article.sgml Log: Add article version-guide in sync with original english revisions: version-guide/Makefile:1.3 version-guide/artcile.sgml:1.6 Makefile: Add to the build Obtained from: The FreeBSD Russian Documentation Project Approved by: marck(mentor) Revision Changes Path 1.27 +1 -0 doc/ru_RU.KOI8-R/articles/Makefile 1.1 +24 -0 doc/ru_RU.KOI8-R/articles/version-guide/Makefile (new) 1.1 +401 -0 doc/ru_RU.KOI8-R/articles/version-guide/article.sgml (new) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 10:13:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 301E116A41F; Tue, 25 Oct 2005 10:13:44 +0000 (GMT) (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 DC14843D45; Tue, 25 Oct 2005 10:13:43 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PADhde005820; Tue, 25 Oct 2005 10:13:43 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PADhmk005819; Tue, 25 Oct 2005 10:13:43 GMT (envelope-from skv) Message-Id: <200510251013.j9PADhmk005819@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 25 Oct 2005 10:13: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/textproc Makefile ports/textproc/p5-XML-Driver-HTML 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: Tue, 25 Oct 2005 10:13:44 -0000 skv 2005-10-25 10:13:43 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-XML-Driver-HTML Makefile distinfo pkg-descr Log: Add p5-XML-Driver-HTML 0.06, Perl SAX Driver for non wellformed HTML. Revision Changes Path 1.875 +1 -0 ports/textproc/Makefile 1.1 +32 -0 ports/textproc/p5-XML-Driver-HTML/Makefile (new) 1.1 +2 -0 ports/textproc/p5-XML-Driver-HTML/distinfo (new) 1.1 +8 -0 ports/textproc/p5-XML-Driver-HTML/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 10:14:00 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A37016A41F; Tue, 25 Oct 2005 10:14:00 +0000 (GMT) (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 3B98343D46; Tue, 25 Oct 2005 10:14:00 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PAE0TS005866; Tue, 25 Oct 2005 10:14:00 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PAE0Kw005865; Tue, 25 Oct 2005 10:14:00 GMT (envelope-from skv) Message-Id: <200510251014.j9PAE0Kw005865@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 25 Oct 2005 10:14: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: Tue, 25 Oct 2005 10:14:00 -0000 skv 2005-10-25 10:14:00 UTC FreeBSD ports repository Modified files: . modules Log: p5-XML-Driver-HTML --> ports/textproc/p5-XML-Driver-HTML Revision Changes Path 1.13462 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Oct 25 10:16:23 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5C6116A420 for ; Tue, 25 Oct 2005 10:16:23 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id C501843D4C for ; Tue, 25 Oct 2005 10:16:21 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru (8.13.0/vak/3.0) id j9PADGYC080711 for cvs-all@freebsd.org.checked; Tue, 25 Oct 2005 14:13:16 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from [144.206.181.94] (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru (8.13.0/vak/3.0) with ESMTP id j9PAAgo7080662; Tue, 25 Oct 2005 14:10:43 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <435E04AA.3080605@cronyx.ru> Date: Tue, 25 Oct 2005 14:10:50 +0400 From: Roman Kurakin User-Agent: Mozilla Thunderbird 0.9 (Windows/20041103) X-Accept-Language: en-us, en MIME-Version: 1.0 To: obrien@freebsd.org References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> In-Reply-To: <20051025052018.GE55418@dragon.NUXI.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/sys/dev/cp if_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: Tue, 25 Oct 2005 10:16:23 -0000 David O'Brien wrote: >On Mon, Oct 24, 2005 at 10:34:25AM -0400, John Baldwin wrote: > > >>On Monday 24 October 2005 03:24 am, David O'Brien wrote: >> >> >>>On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: >>> >>> >>>>rik 2005-09-27 16:57:45 UTC >>>> FreeBSD src repository >>>> Modified files: >>>> sys/dev/cp if_cp.c >>>> Log: >>>> Restore if_cp.c 1.27 >>>> >>>> >... > > >>>You should not have backed out my commit without discussing it with me >>>and understanding the reason for the change. >>>Do it again and I *will* be taking it Core. >>> >>> >>Looks like he added some function prototypes and moved the cdevsw up. Does i >>compile now with gcc 4.0? It seems that his changes were a lot simpler and >>didn't destroy nearly as much CVS history as your changes. It would really >>be preferable to use simpler solutions rather than destroying version history >>with really big diffs. >> >> > >Doesn't matter -- it was a clear back out of my recent commit. >src/MAINTAINERS doesn't list any of these drivers, so what was his > > I do not want to list them in src/MAINTAINERS cause I think it is better to allow any commits. Cases such this one is rare. Since I didn't get reply from you within a week and I do not like function relocation and didn't find explanation from commit log I've backout function relocation, not fix of forward variable declaration. The commit log didn't state what was the problem variable forward declaration or/and function forward declaration. rik >authority in unilaterally backing out my commit? >It is also port portable to define static functions early in a file, >before they are used. > > > From owner-cvs-all@FreeBSD.ORG Tue Oct 25 10:18:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A613A16A41F; Tue, 25 Oct 2005 10:18:26 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6488843D49; Tue, 25 Oct 2005 10:18:26 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PAIQRA006047; Tue, 25 Oct 2005 10:18:26 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PAIQfI006046; Tue, 25 Oct 2005 10:18:26 GMT (envelope-from danfe) Message-Id: <200510251018.j9PAIQfI006046@repoman.freebsd.org> From: Alexey Dokuchaev Date: Tue, 25 Oct 2005 10:18: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/archivers/dzip 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, 25 Oct 2005 10:18:26 -0000 danfe 2005-10-25 10:18:25 UTC FreeBSD ports repository Modified files: archivers/dzip Makefile Log: Unbreak on sparc64. Tested on: panther Revision Changes Path 1.4 +3 -8 ports/archivers/dzip/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 11:38:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B62A16A41F; Tue, 25 Oct 2005 11:38:12 +0000 (GMT) (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 15D9443D45; Tue, 25 Oct 2005 11:38:12 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PBcBM7008749; Tue, 25 Oct 2005 11:38:11 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PBcBAK008748; Tue, 25 Oct 2005 11:38:11 GMT (envelope-from garga) Message-Id: <200510251138.j9PBcBAK008748@repoman.freebsd.org> From: Renato Botelho Date: Tue, 25 Oct 2005 11:38: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/mail/postfix-policyd-sf 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, 25 Oct 2005 11:38:12 -0000 garga 2005-10-25 11:38:11 UTC FreeBSD ports repository Modified files: mail/postfix-policyd-sf distinfo Log: - Fix distinfo, tarball was rerolled because README file was incorrect. PR: ports/87971 Submitted by: maintainer Revision Changes Path 1.4 +2 -2 ports/mail/postfix-policyd-sf/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 11:39:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BCEC16A41F; Tue, 25 Oct 2005 11:39:35 +0000 (GMT) (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 C306F43D46; Tue, 25 Oct 2005 11:39:34 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PBdYSk008839; Tue, 25 Oct 2005 11:39:34 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PBdYwj008838; Tue, 25 Oct 2005 11:39:34 GMT (envelope-from ceri) Message-Id: <200510251139.j9PBdYwj008838@repoman.freebsd.org> From: Ceri Davies Date: Tue, 25 Oct 2005 11:39:34 +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/events events.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, 25 Oct 2005 11:39:35 -0000 ceri 2005-10-25 11:39:34 UTC FreeBSD doc repository Modified files: en/events events.xml Log: The next time I start work at 5:55 I should stay away from CVS. Fix the end date for UKUUG's LISA 2006. Noticed by: Gavin Atkinson Revision Changes Path 1.59 +2 -2 www/en/events/events.xml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 11:51:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55B9416A41F; Tue, 25 Oct 2005 11:51:50 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F396143D49; Tue, 25 Oct 2005 11:51:48 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PBpmdE009312; Tue, 25 Oct 2005 11:51:48 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PBpmk2009311; Tue, 25 Oct 2005 11:51:48 GMT (envelope-from nork) Message-Id: <200510251151.j9PBpmk2009311@repoman.freebsd.org> From: Norikatsu Shigemura Date: Tue, 25 Oct 2005 11:51: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/iiimf-gtk/files patch-iiimgcf_Makefile.am X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 11:51:50 -0000 nork 2005-10-25 11:51:48 UTC FreeBSD ports repository Modified files: textproc/iiimf-gtk/files patch-iiimgcf_Makefile.am Log: Respect LOCALBASE. PR: ports/87965 Submitted by: Masanori OZAWA (maintainer) Revision Changes Path 1.5 +1 -1 ports/textproc/iiimf-gtk/files/patch-iiimgcf_Makefile.am From owner-cvs-all@FreeBSD.ORG Tue Oct 25 11:53:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 862B116A420; Tue, 25 Oct 2005 11:53:51 +0000 (GMT) (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 3CAF343D53; Tue, 25 Oct 2005 11:53:51 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PBrppF009371; Tue, 25 Oct 2005 11:53:51 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PBrpxB009370; Tue, 25 Oct 2005 11:53:51 GMT (envelope-from kuriyama) Message-Id: <200510251153.j9PBrpxB009370@repoman.freebsd.org> From: Jun Kuriyama Date: Tue, 25 Oct 2005 11:53: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/databases/p5-Class-DBI-Plugin-AbstractCount 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, 25 Oct 2005 11:53:51 -0000 kuriyama 2005-10-25 11:53:51 UTC FreeBSD ports repository Modified files: databases/p5-Class-DBI-Plugin-AbstractCount Makefile Log: Add dependency on SQL::Abstract. Approved by: lth (maintainer) Revision Changes Path 1.4 +3 -1 ports/databases/p5-Class-DBI-Plugin-AbstractCount/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 12:13:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32DDA16A41F; Tue, 25 Oct 2005 12:13:38 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F302C43D46; Tue, 25 Oct 2005 12:13:37 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PCDbwJ010109; Tue, 25 Oct 2005 12:13:37 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PCDbBp010108; Tue, 25 Oct 2005 12:13:37 GMT (envelope-from bde) Message-Id: <200510251213.j9PCDbBp010108@repoman.freebsd.org> From: Bruce Evans Date: Tue, 25 Oct 2005 12:13: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/lib/msun/src e_rem_pio2f.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 12:13:38 -0000 bde 2005-10-25 12:13:37 UTC FreeBSD src repository Modified files: lib/msun/src e_rem_pio2f.c Log: More fixes for arg reduction near pi/2 on systems with broken assignment to floats (mainly i386's). All errors of more than 1 ulp for float precision trig functions were supposed to have been fixed; however, compiling with gcc -O2 uncovered 18250 more such errors for cosf(), with a maximum error of 1.409 ulps. Use essentially the same fix as in rev.1.8 of k_rem_pio2f.c (access a non-volatile variable as a volatile). Here the -O1 case apparently worked because the variable is in a 2-element array and it takes -O2 to mess up such a variable by putting it in a register. The maximum error for cosf() on i386 with gcc -O2 is now 0.5467 (it is still 0.5650 with gcc -O1). This shows that -O2 still causes some extra precision, but the extra precision is now good. Extra precision is harmful mainly for implementing extra precision in software. We want to represent x+y as w+r where both "+" operations are in infinite precision and r is tiny compared with w. There is a standard algorithm for this (Knuth (1981) 4.2.2 Theorem C), and fdlibm uses this routinely, but the algorithm requires w and r to have the same precision as x and y. w is just x+y (calculated in the same finite precision as x and y), and r is a tiny correction term. The i386 gcc bugs tend to give extra precision in w, and then using this extra precision in the calculation of r results in the correction mostly staying in w and being missing from r. There still tends to be no problem if the result is a simple expression involving w and r -- modulo spills, w keeps its extra precision and r remains the right correction for this wrong w. However, here we want to pass w and r to extern functions. Extra precision is not retained in function args, so w gets fixed up, but the change to the tiny r is tinier, so r almost remains as a wrong correction for the right w. Revision Changes Path 1.12 +8 -5 src/lib/msun/src/e_rem_pio2f.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 12:16:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AC2916A41F; Tue, 25 Oct 2005 12:16:07 +0000 (GMT) (envelope-from rizzo@icir.org) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id C193843D45; Tue, 25 Oct 2005 12:16:06 +0000 (GMT) (envelope-from rizzo@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j9PCG6jx049190; Tue, 25 Oct 2005 05:16:06 -0700 (PDT) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j9PCG6fB049189; Tue, 25 Oct 2005 05:16:06 -0700 (PDT) (envelope-from rizzo) Date: Tue, 25 Oct 2005 05:16:06 -0700 From: Luigi Rizzo To: Bruce Evans Message-ID: <20051025051606.A49155@xorpc.icir.org> References: <200510251213.j9PCDbBp010108@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200510251213.j9PCDbBp010108@repoman.freebsd.org>; from bde@FreeBSD.org on Tue, Oct 25, 2005 at 12:13:37PM +0000 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/msun/src e_rem_pio2f.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 12:16:07 -0000 wow now this is a commit message!!! On Tue, Oct 25, 2005 at 12:13:37PM +0000, Bruce Evans wrote: > bde 2005-10-25 12:13:37 UTC > > FreeBSD src repository > > Modified files: > lib/msun/src e_rem_pio2f.c > Log: > More fixes for arg reduction near pi/2 on systems with broken assignment > to floats (mainly i386's). All errors of more than 1 ulp for float > precision trig functions were supposed to have been fixed; however, > compiling with gcc -O2 uncovered 18250 more such errors for cosf(), > with a maximum error of 1.409 ulps. > > Use essentially the same fix as in rev.1.8 of k_rem_pio2f.c (access a > non-volatile variable as a volatile). Here the -O1 case apparently > worked because the variable is in a 2-element array and it takes -O2 > to mess up such a variable by putting it in a register. > > The maximum error for cosf() on i386 with gcc -O2 is now 0.5467 (it > is still 0.5650 with gcc -O1). This shows that -O2 still causes some > extra precision, but the extra precision is now good. > > Extra precision is harmful mainly for implementing extra precision in > software. We want to represent x+y as w+r where both "+" operations > are in infinite precision and r is tiny compared with w. There is a > standard algorithm for this (Knuth (1981) 4.2.2 Theorem C), and fdlibm > uses this routinely, but the algorithm requires w and r to have the > same precision as x and y. w is just x+y (calculated in the same > finite precision as x and y), and r is a tiny correction term. The > i386 gcc bugs tend to give extra precision in w, and then using this > extra precision in the calculation of r results in the correction > mostly staying in w and being missing from r. There still tends to > be no problem if the result is a simple expression involving w and r > -- modulo spills, w keeps its extra precision and r remains the right > correction for this wrong w. However, here we want to pass w and r > to extern functions. Extra precision is not retained in function args, > so w gets fixed up, but the change to the tiny r is tinier, so r almost > remains as a wrong correction for the right w. > > Revision Changes Path > 1.12 +8 -5 src/lib/msun/src/e_rem_pio2f.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 12:34:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9503216A41F; Tue, 25 Oct 2005 12:34:10 +0000 (GMT) (envelope-from lesi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FC2E43D46; Tue, 25 Oct 2005 12:34:10 +0000 (GMT) (envelope-from lesi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PCYAp5010799; Tue, 25 Oct 2005 12:34:10 GMT (envelope-from lesi@repoman.freebsd.org) Received: (from lesi@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PCYAWr010798; Tue, 25 Oct 2005 12:34:10 GMT (envelope-from lesi) Message-Id: <200510251234.j9PCYAWr010798@repoman.freebsd.org> From: Dejan Lesjak Date: Tue, 25 Oct 2005 12:34: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/misc/compat5x 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, 25 Oct 2005 12:34:10 -0000 lesi 2005-10-25 12:34:10 UTC FreeBSD ports repository Modified files: misc/compat5x Makefile distinfo Log: Upgrade to 5.4-RELEASE-p8 libraries for potential SSL 2.0 rollback vulnerability. While here, add a note about libc.so.5 tweak for localedata. Reminded by: delphij Security: FreeBSD-SA-05:21.openssl Revision Changes Path 1.3 +5 -3 ports/misc/compat5x/Makefile 1.2 +8 -8 ports/misc/compat5x/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 12:49:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 152B516A41F; Tue, 25 Oct 2005 12:49:57 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C498543D4C; Tue, 25 Oct 2005 12:49:56 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PCnuvv018666; Tue, 25 Oct 2005 12:49:56 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PCnusA018665; Tue, 25 Oct 2005 12:49:56 GMT (envelope-from marius) Message-Id: <200510251249.j9PCnusA018665@repoman.freebsd.org> From: Marius Strobl Date: Tue, 25 Oct 2005 12:49: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/boot/ofw/libofw devicename.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 12:49:57 -0000 marius 2005-10-25 12:49:56 UTC FreeBSD src repository Modified files: sys/boot/ofw/libofw devicename.c Log: In ofw_parsedev() check the return value of malloc() and protect against a NULL pointer dereference when ofw_parsedev() is called with a NULL path argument. Tested on: powerpc (grehan), sparc64 Revision Changes Path 1.16 +5 -1 src/sys/boot/ofw/libofw/devicename.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 12:51:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F4FB16A41F; Tue, 25 Oct 2005 12:51:32 +0000 (GMT) (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 2802943D46; Tue, 25 Oct 2005 12:51:32 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PCpW0i018803; Tue, 25 Oct 2005 12:51:32 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PCpWeY018802; Tue, 25 Oct 2005 12:51:32 GMT (envelope-from mnag) Message-Id: <200510251251.j9PCpWeY018802@repoman.freebsd.org> From: Marcus Alves Grando Date: Tue, 25 Oct 2005 12:51: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/sysutils/gnomebaker Makefile pkg-plist ports/sysutils/gnomebaker/files patch-help-C-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: Tue, 25 Oct 2005 12:51:32 -0000 mnag 2005-10-25 12:51:31 UTC FreeBSD ports repository Modified files: sysutils/gnomebaker Makefile pkg-plist Added files: sysutils/gnomebaker/files patch-help-C-Makefile.in Log: Fix path for documentation PR: 87935 Submitted by: dominique.goncalves@gmail.com (maintainer) Revision Changes Path 1.5 +1 -0 ports/sysutils/gnomebaker/Makefile 1.1 +12 -0 ports/sysutils/gnomebaker/files/patch-help-C-Makefile.in (new) 1.5 +14 -16 ports/sysutils/gnomebaker/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Oct 25 12:51:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C61C16A41F; Tue, 25 Oct 2005 12:51:50 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16C6A43D48; Tue, 25 Oct 2005 12:51:50 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PCpnSg018832; Tue, 25 Oct 2005 12:51:49 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PCpn6E018831; Tue, 25 Oct 2005 12:51:49 GMT (envelope-from marius) Message-Id: <200510251251.j9PCpn6E018831@repoman.freebsd.org> From: Marius Strobl Date: Tue, 25 Oct 2005 12:51: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/boot/ofw/libofw ofw_disk.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 12:51:50 -0000 marius 2005-10-25 12:51:49 UTC FreeBSD src repository Modified files: sys/boot/ofw/libofw ofw_disk.c Log: - Add a workaround for the fact that OFW doesn't guarantee that devices can be opened multiple times simultaneously but we're expected to be able to do so by the rest of the loader. This fixes booting from disks attached to the on-board SCSI controller of Sun Ultra 1 (previously this triggered a trap) and probably also of AX1115 boards. - While here, remove unused variables and add empty lines where style(9) requires such. Tested on: powerpc (grehan), sparc64 MFC after: 1 month Revision Changes Path 1.13 +57 -6 src/sys/boot/ofw/libofw/ofw_disk.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 13:45:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5865D16A41F; Tue, 25 Oct 2005 13:45:08 +0000 (GMT) (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 0D79643D48; Tue, 25 Oct 2005 13:45:08 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PDj7eW020647; Tue, 25 Oct 2005 13:45:07 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PDj7AZ020646; Tue, 25 Oct 2005 13:45:07 GMT (envelope-from ceri) Message-Id: <200510251345.j9PDj7AZ020646@repoman.freebsd.org> From: Ceri Davies Date: Tue, 25 Oct 2005 13:45: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/sbin/geom/class/mirror geom_mirror.c gmirror.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: Tue, 25 Oct 2005 13:45:08 -0000 ceri 2005-10-25 13:45:07 UTC FreeBSD src repository Modified files: sbin/geom/class/mirror geom_mirror.c gmirror.8 Log: gmirror.8: Note the default balancing algorithm and stripe size. geom_mirror.c: Slightly friendlier error message. Reviewed by: pjd Revision Changes Path 1.11 +1 -1 src/sbin/geom/class/mirror/geom_mirror.c 1.18 +3 -1 src/sbin/geom/class/mirror/gmirror.8 From owner-cvs-all@FreeBSD.ORG Tue Oct 25 14:07:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 538F916A41F; Tue, 25 Oct 2005 14:07:22 +0000 (GMT) (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 0ED4F43D45; Tue, 25 Oct 2005 14:07:22 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PE7LJq021420; Tue, 25 Oct 2005 14:07:21 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PE7LDd021419; Tue, 25 Oct 2005 14:07:21 GMT (envelope-from oliver) Message-Id: <200510251407.j9PE7LDd021419@repoman.freebsd.org> From: Oliver Lehmann Date: Tue, 25 Oct 2005 14:07: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/eris 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, 25 Oct 2005 14:07:22 -0000 oliver 2005-10-25 14:07:21 UTC FreeBSD ports repository Modified files: devel/eris Makefile distinfo pkg-plist Log: update to 1.3.9 Revision Changes Path 1.9 +1 -1 ports/devel/eris/Makefile 1.5 +2 -2 ports/devel/eris/distinfo 1.5 +1 -1 ports/devel/eris/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Oct 25 14:44:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C75716A41F; Tue, 25 Oct 2005 14:44:44 +0000 (GMT) (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 5B15943D46; Tue, 25 Oct 2005 14:44:44 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PEiivW022750; Tue, 25 Oct 2005 14:44:44 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PEiiih022749; Tue, 25 Oct 2005 14:44:44 GMT (envelope-from garga) Message-Id: <200510251444.j9PEiiih022749@repoman.freebsd.org> From: Renato Botelho Date: Tue, 25 Oct 2005 14:44: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/audio/cdplayer.app Makefile pkg-plist ports/audio/cdplayer.app/files patch-Makefile 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: Tue, 25 Oct 2005 14:44:44 -0000 garga 2005-10-25 14:44:44 UTC FreeBSD ports repository Modified files: audio/cdplayer.app Makefile Added files: audio/cdplayer.app/files patch-Makefile Removed files: audio/cdplayer.app pkg-plist audio/cdplayer.app/files patch-aa Log: - Provide new MASTER_SITE - Remove DEPRECATED and EXPIRATION_DATE - Pass maintainership to submitter - Remove 3 lines pkg-plist PR: ports/87983 Submitted by: martin hudec Approved by: Denis Shaposhnikov (ex-maintainer) Revision Changes Path 1.11 +5 -6 ports/audio/cdplayer.app/Makefile 1.1 +12 -0 ports/audio/cdplayer.app/files/patch-Makefile (new) 1.4 +0 -12 ports/audio/cdplayer.app/files/patch-aa (dead) 1.4 +0 -3 ports/audio/cdplayer.app/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 15:25:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67B9A16A41F; Tue, 25 Oct 2005 15:25:27 +0000 (GMT) (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 E298643D55; Tue, 25 Oct 2005 15:25:26 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PFPQmH024195; Tue, 25 Oct 2005 15:25:26 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PFPQYD024194; Tue, 25 Oct 2005 15:25:26 GMT (envelope-from skv) Message-Id: <200510251525.j9PFPQYD024194@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 25 Oct 2005 15:25: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/p5-XML-SAX 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: Tue, 25 Oct 2005 15:25:27 -0000 skv 2005-10-25 15:25:26 UTC FreeBSD ports repository Modified files: textproc/p5-XML-SAX Makefile distinfo pkg-descr Log: Update to 0.13 Changes: http://search.cpan.org/src/MSERGEANT/XML-SAX-0.13/Changes Revision Changes Path 1.8 +1 -1 ports/textproc/p5-XML-SAX/Makefile 1.8 +2 -2 ports/textproc/p5-XML-SAX/distinfo 1.4 +0 -3 ports/textproc/p5-XML-SAX/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Oct 25 15:29:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0DB116A420; Tue, 25 Oct 2005 15:29:07 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A96C143D4C; Tue, 25 Oct 2005 15:29:07 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PFT7vg024382; Tue, 25 Oct 2005 15:29:07 GMT (envelope-from mich@repoman.freebsd.org) Received: (from mich@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PFT7TX024381; Tue, 25 Oct 2005 15:29:07 GMT (envelope-from mich) Message-Id: <200510251529.j9PFT7TX024381@repoman.freebsd.org> From: "Michael L. Hostbaek" Date: Tue, 25 Oct 2005 15:29: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/audio/amarok Makefile distinfo pkg-plist ports/audio/amarok/files patch-amarok_src_collectiondb.cpp patch-amarok_src_smartplaylisteditor.cpp patch-amarok_src_socketserver.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: Tue, 25 Oct 2005 15:29:08 -0000 mich 2005-10-25 15:29:07 UTC FreeBSD ports repository Modified files: audio/amarok Makefile distinfo pkg-plist Added files: audio/amarok/files patch-amarok_src_collectiondb.cpp Removed files: audio/amarok/files patch-amarok_src_smartplaylisteditor.cpp patch-amarok_src_socketserver.cpp Log: o Update to -> 1.3.5 Changelog: http://amarok.kde.org/content/view/64/66/ o Retire patches that have been comitted upstream o Add patch to fix "auto scan" with PostgreSQL Revision Changes Path 1.35 +1 -2 ports/audio/amarok/Makefile 1.10 +2 -2 ports/audio/amarok/distinfo 1.1 +91 -0 ports/audio/amarok/files/patch-amarok_src_collectiondb.cpp (new) 1.2 +0 -54 ports/audio/amarok/files/patch-amarok_src_smartplaylisteditor.cpp (dead) 1.2 +0 -16 ports/audio/amarok/files/patch-amarok_src_socketserver.cpp (dead) 1.10 +11 -1 ports/audio/amarok/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Oct 25 15:37:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6392C16A41F; Tue, 25 Oct 2005 15:37:38 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFBEE43D49; Tue, 25 Oct 2005 15:37:35 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from niksun.com (anuket [10.70.0.5]) by anuket.mj.niksun.com (8.13.1/8.13.1) with ESMTP id j9PFjs2P080035; Tue, 25 Oct 2005 11:45:54 -0400 (EDT) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: Yar Tikhiy , "Tim J. Robbins" Date: Tue, 25 Oct 2005 11:37:18 -0400 User-Agent: KMail/1.6.2 References: <200510202150.j9KLoinG035648@repoman.freebsd.org> <20051025085633.GA53953@freefall.freebsd.org> In-Reply-To: <20051025085633.GA53953@freefall.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="euc-kr" Content-Transfer-Encoding: 7bit Message-Id: <200510251137.21617.jkim@FreeBSD.org> X-Virus-Scanned: ClamAV devel-20050919/1146/Fri Oct 21 00:36:48 2005 on anuket.mj.niksun.com X-Virus-Status: Clean Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/grep grep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 15:37:38 -0000 On Tuesday 25 October 2005 04:56 am, Yar Tikhiy wrote: > On Thu, Oct 20, 2005 at 09:50:44PM +0000, Jung-uk Kim wrote: > > jkim 2005-10-20 21:50:44 UTC > > > > FreeBSD src repository > > > > Modified files: > > gnu/usr.bin/grep grep.c > > Log: > > Fix a longstanding buglet in bz-prefixed grep(1). > > > > Revision Changes Path > > 1.32 +5 -5 src/gnu/usr.bin/grep/grep.c > > IMHO we should either MFC this fix to or drop bz[ef]grep links from > RELENG_6_0 in order to avoid shipping deliberately broken > command-line tools in 6.0-RELEASE. I agree. And this fix should be MFC'd also: http://docs.freebsd.org/cgi/mid.cgi?200510250918.j9P9Ipe8003342 BTW, thanks for letting me know there was a PR. Jung-uk Kim > Yar From owner-cvs-all@FreeBSD.ORG Tue Oct 25 15:43:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8CA116A41F; Tue, 25 Oct 2005 15:43:22 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71EB943D53; Tue, 25 Oct 2005 15:43:22 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PFhMm8024892; Tue, 25 Oct 2005 15:43:22 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PFhMXW024891; Tue, 25 Oct 2005 15:43:22 GMT (envelope-from cy) Message-Id: <200510251543.j9PFhMXW024891@repoman.freebsd.org> From: Cy Schubert Date: Tue, 25 Oct 2005 15:43: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/x11-wm/fvwm2-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, 25 Oct 2005 15:43:22 -0000 cy 2005-10-25 15:43:21 UTC FreeBSD ports repository Modified files: x11-wm/fvwm2-devel Makefile Log: Merge in r1.76. Revision Changes Path 1.81 +48 -28 ports/x11-wm/fvwm2-devel/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 15:49:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1249A16A41F; Tue, 25 Oct 2005 15:49:06 +0000 (GMT) (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 C44F943D48; Tue, 25 Oct 2005 15:49:05 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PFn5k8025111; Tue, 25 Oct 2005 15:49:05 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PFn52x025110; Tue, 25 Oct 2005 15:49:05 GMT (envelope-from novel) Message-Id: <200510251549.j9PFn52x025110@repoman.freebsd.org> From: Roman Bogorodskiy Date: Tue, 25 Oct 2005 15:49: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/misc/py-osd 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, 25 Oct 2005 15:49:06 -0000 novel 2005-10-25 15:49:05 UTC FreeBSD ports repository Modified files: misc/py-osd Makefile Log: Make it respect X11BASE. Reported by: pointyhat via kris Revision Changes Path 1.11 +1 -1 ports/misc/py-osd/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 16:14:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3CAF16A41F; Tue, 25 Oct 2005 16:14:35 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E61E43D53; Tue, 25 Oct 2005 16:14:35 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PGEZvh026117; Tue, 25 Oct 2005 16:14:35 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PGEZF3026116; Tue, 25 Oct 2005 16:14:35 GMT (envelope-from wpaul) Message-Id: <200510251614.j9PGEZF3026116@repoman.freebsd.org> From: Bill Paul Date: Tue, 25 Oct 2005 16:14: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/if_ndis if_ndis.c if_ndisvar.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, 25 Oct 2005 16:14:36 -0000 wpaul 2005-10-25 16:14:34 UTC FreeBSD src repository Modified files: sys/dev/if_ndis if_ndis.c if_ndisvar.h Log: Correct some __FreeBSD_version conditionals to use version bumps closer to the actual dates when code actually changed. Also add special case link state change handling for RELENG_5, which doesn't have if_link_state_change(). No actual operational changes are done. Revision Changes Path 1.111 +26 -11 src/sys/dev/if_ndis/if_ndis.c 1.26 +1 -1 src/sys/dev/if_ndis/if_ndisvar.h From owner-cvs-all@FreeBSD.ORG Tue Oct 25 16:16:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8941916A41F; Tue, 25 Oct 2005 16:16:01 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45EC443D46; Tue, 25 Oct 2005 16:16:01 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PGG1bp026210; Tue, 25 Oct 2005 16:16:01 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PGG14n026209; Tue, 25 Oct 2005 16:16:01 GMT (envelope-from wpaul) Message-Id: <200510251616.j9PGG14n026209@repoman.freebsd.org> From: Bill Paul Date: Tue, 25 Oct 2005 16:16: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/sys/dev/if_ndis if_ndis.c if_ndisvar.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, 25 Oct 2005 16:16:01 -0000 wpaul 2005-10-25 16:16:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/if_ndis if_ndis.c if_ndisvar.h Log: MFC: correct some __FreeBSD_version conditionals, fix link state change notifications for RELENG_5. Revision Changes Path 1.69.2.10 +26 -11 src/sys/dev/if_ndis/if_ndis.c 1.15.2.5 +1 -1 src/sys/dev/if_ndis/if_ndisvar.h From owner-cvs-all@FreeBSD.ORG Tue Oct 25 16:31:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5E0316A420; Tue, 25 Oct 2005 16:31:10 +0000 (GMT) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29C7743D45; Tue, 25 Oct 2005 16:31:10 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.200] ([10.0.0.200]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id j9PGV1pU009396 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 25 Oct 2005 09:31:03 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <435E5DB6.5020400@errno.com> Date: Tue, 25 Oct 2005 09:30:46 -0700 From: Sam Leffler User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050927) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Roman Kurakin References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> <435E04AA.3080605@cronyx.ru> In-Reply-To: <435E04AA.3080605@cronyx.ru> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Roman Kurakin , src-committers@FreeBSD.org, John Baldwin , cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, obrien@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cp if_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: Tue, 25 Oct 2005 16:31:10 -0000 Roman Kurakin wrote: > David O'Brien wrote: > >> On Mon, Oct 24, 2005 at 10:34:25AM -0400, John Baldwin wrote: >> >> >>> On Monday 24 October 2005 03:24 am, David O'Brien wrote: >>> >>> >>>> On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: >>>> >>>> >>>>> rik 2005-09-27 16:57:45 UTC >>>>> FreeBSD src repository >>>>> Modified files: >>>>> sys/dev/cp if_cp.c >>>>> Log: >>>>> Restore if_cp.c 1.27 >>>>> >> >> ... >> >> >>>> You should not have backed out my commit without discussing it with me >>>> and understanding the reason for the change. >>>> Do it again and I *will* be taking it Core. >>>> >>> >>> Looks like he added some function prototypes and moved the cdevsw >>> up. Does i compile now with gcc 4.0? It seems that his changes were >>> a lot simpler and didn't destroy nearly as much CVS history as your >>> changes. It would really be preferable to use simpler solutions >>> rather than destroying version history with really big diffs. >>> >> >> >> Doesn't matter -- it was a clear back out of my recent commit. >> src/MAINTAINERS doesn't list any of these drivers, so what was his >> >> > I do not want to list them in src/MAINTAINERS cause I think it is better > to allow any commits. > Cases such this one is rare. > > Since I didn't get reply from you within a week and I do not like > function relocation and didn't > find explanation from commit log I've backout function relocation, not > fix of forward variable > declaration. > > The commit log didn't state what was the problem variable forward > declaration or/and function > forward declaration. > > rik > >> authority in unilaterally backing out my commit? >> It is also port portable to define static functions early in a file, >> before they are used. Roman, I very much agree with your view on maintainership--when someone is given commit privileges we should trust them to commit changes to any piece of the system. If they are not certain their change is good and/or correct then they should get review (and in many cases review is a good habit regardless). There have been a spate of changes of the above sort that go against this tenet. It's made me stop working on freebsd and I suspect the continued practice will make others find a different place to spend their time. Sam From owner-cvs-all@FreeBSD.ORG Tue Oct 25 16:38:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D60316A41F; Tue, 25 Oct 2005 16:38:42 +0000 (GMT) (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 50A9543D46; Tue, 25 Oct 2005 16:38:42 +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 1B79D1A3C28; Tue, 25 Oct 2005 09:38:42 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 10D3451376; Tue, 25 Oct 2005 12:38:40 -0400 (EDT) Date: Tue, 25 Oct 2005 12:38:40 -0400 From: Kris Kennaway To: Renato Botelho Message-ID: <20051025163840.GA16812@xor.obsecurity.org> References: <200510241705.j9OH5cBd026894@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KsGdsel6WgEHnImy" Content-Disposition: inline In-Reply-To: <200510241705.j9OH5cBd026894@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/lang/pm3-base 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, 25 Oct 2005 16:38:42 -0000 --KsGdsel6WgEHnImy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Oct 24, 2005 at 05:05:37PM +0000, Renato Botelho wrote: > | +IGNORE= Not supported on ${ARCH} This is miscapitalized. ONLY_FOR_ARCHS is appropriate here anyway. Kris --KsGdsel6WgEHnImy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDXl+PWry0BWjoQKURAqKIAJ0Vyl07kycokXHpscZevDX91O8TmACg0JrN hKhW6kHG5pSxG6tTNSkCij0= =VsSt -----END PGP SIGNATURE----- --KsGdsel6WgEHnImy-- From owner-cvs-all@FreeBSD.ORG Tue Oct 25 16:39:00 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C33B416A41F; Tue, 25 Oct 2005 16:39:00 +0000 (GMT) (envelope-from kwm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78C3E43D48; Tue, 25 Oct 2005 16:39:00 +0000 (GMT) (envelope-from kwm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PGd0Ko027051; Tue, 25 Oct 2005 16:39:00 GMT (envelope-from kwm@repoman.freebsd.org) Received: (from kwm@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PGd0UF027050; Tue, 25 Oct 2005 16:39:00 GMT (envelope-from kwm) Message-Id: <200510251639.j9PGd0UF027050@repoman.freebsd.org> From: Koop Mast Date: Tue, 25 Oct 2005 16:39: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/multimedia/gstreamer-ffmpeg Makefile distinfo ports/multimedia/gstreamer-ffmpeg/files patch-upstream-fixes X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 16:39:00 -0000 kwm 2005-10-25 16:39:00 UTC FreeBSD ports repository Modified files: multimedia/gstreamer-ffmpeg Makefile distinfo Removed files: multimedia/gstreamer-ffmpeg/files patch-upstream-fixes Log: Update to 0.8.7. Remove gnomehack and gnomeprefix from USE_GNOME they don't do anything. Revision Changes Path 1.15 +2 -4 ports/multimedia/gstreamer-ffmpeg/Makefile 1.8 +2 -2 ports/multimedia/gstreamer-ffmpeg/distinfo 1.2 +0 -61 ports/multimedia/gstreamer-ffmpeg/files/patch-upstream-fixes (dead) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 16:42:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CA5716A41F; Tue, 25 Oct 2005 16:42:33 +0000 (GMT) (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 28B6743D55; Tue, 25 Oct 2005 16:42:24 +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 0CDAB1A3C29; Tue, 25 Oct 2005 09:42:24 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id DD031531F8; Tue, 25 Oct 2005 12:42:22 -0400 (EDT) Date: Tue, 25 Oct 2005 12:42:22 -0400 From: Kris Kennaway To: John Baldwin Message-ID: <20051025164222.GB16812@xor.obsecurity.org> References: <200510242104.j9OL4J2B045827@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ftEhullJWpWg/VHq" Content-Disposition: inline In-Reply-To: <200510242104.j9OL4J2B045827@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 subr_kdb.c subr_smp.c src/sys/amd64/amd64 mp_machdep.c trap.c src/sys/amd64/conf NOTES src/sys/amd64/include smp.h src/sys/conf options.amd64 options.i386 options.pc98 src/sys/i386/conf NOTES src/sys/i386/i386 mp_machdep.c trap.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 16:42:33 -0000 --ftEhullJWpWg/VHq Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 24, 2005 at 09:04:19PM +0000, John Baldwin wrote: > jhb 2005-10-24 21:04:19 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/kern subr_kdb.c subr_smp.c=20 > sys/amd64/amd64 mp_machdep.c trap.c=20 > sys/amd64/conf NOTES=20 > sys/amd64/include smp.h=20 > sys/conf options.amd64 options.i386 options.pc98=20 > sys/i386/conf NOTES=20 > sys/i386/i386 mp_machdep.c trap.c=20 > sys/i386/include smp.h=20 > sys/pc98/conf NOTES=20 > sys/sys smp.h=20 > Log: > Rename the KDB_STOP_NMI kernel option to STOP_NMI and make it apply to = all > IPI_STOP IPIs. I thought we were going to make KDB_STOP_NMI the default (since it's necessary to avoid hangs on panic on SMP machines). That seems like it's more risky now that it's bound up with other code. Kris --ftEhullJWpWg/VHq Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDXmBtWry0BWjoQKURAsCuAKCVuyPdTKPPvXKtQvW/CHLOiY6HrwCg9gMK MHnk4yajRellor+gcBtcdAs= =fq/V -----END PGP SIGNATURE----- --ftEhullJWpWg/VHq-- From owner-cvs-all@FreeBSD.ORG Tue Oct 25 16:45:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1432B16A41F; Tue, 25 Oct 2005 16:45:04 +0000 (GMT) (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 A0D6243D55; Tue, 25 Oct 2005 16:45:03 +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 7EA7C1A3C29; Tue, 25 Oct 2005 09:45:03 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id B72B153269; Tue, 25 Oct 2005 12:45:02 -0400 (EDT) Date: Tue, 25 Oct 2005 12:45:02 -0400 From: Kris Kennaway To: Cy Schubert Message-ID: <20051025164502.GC16812@xor.obsecurity.org> References: <200510242346.j9ONklBh052148@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XMCwj5IQnwKtuyBG" Content-Disposition: inline In-Reply-To: <200510242346.j9ONklBh052148@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/sudosh 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, 25 Oct 2005 16:45:04 -0000 --XMCwj5IQnwKtuyBG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 24, 2005 at 11:46:47PM +0000, Cy Schubert wrote: > cy 2005-10-24 23:46:47 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > security/sudosh Makefile pkg-plist=20 > Log: > Fix broken port, capture missing file in pkg-plist. > =20 > Pointy hat to: me Adding it to the pkg-plist is wrong, since user customizations will be removed when they update the package. Look at how other ports handle config files instead. > | +etc/sudosh.conf Kris --XMCwj5IQnwKtuyBG Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDXmENWry0BWjoQKURAr+zAJ41DHGRslOCJ92ntcu4DrwO8yHNfQCdF3ko 2yEUKUxrAzpf3L8hFGgC2yg= =8JQK -----END PGP SIGNATURE----- --XMCwj5IQnwKtuyBG-- From owner-cvs-all@FreeBSD.ORG Tue Oct 25 16:48:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6AF616A41F; Tue, 25 Oct 2005 16:48:33 +0000 (GMT) (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 8EAED43D6B; Tue, 25 Oct 2005 16:48:18 +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 3E39C1A3C2E; Tue, 25 Oct 2005 09:48:18 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 5988252B44; Tue, 25 Oct 2005 12:48:16 -0400 (EDT) Date: Tue, 25 Oct 2005 12:48:15 -0400 From: Kris Kennaway To: David O'Brien Message-ID: <20051025164813.GD16812@xor.obsecurity.org> References: <200510240034.j9O0YDgG047096@repoman.freebsd.org> <20051024143613.hu726dyokc4wco88@netchild.homeip.net> <20051025051555.GD55418@dragon.NUXI.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3Pql8miugIZX0722" Content-Disposition: inline In-Reply-To: <20051025051555.GD55418@dragon.NUXI.org> User-Agent: Mutt/1.4.2.1i Cc: Alexander Leidinger , cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/editors/vim 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, 25 Oct 2005 16:48:33 -0000 --3Pql8miugIZX0722 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Oct 24, 2005 at 10:15:55PM -0700, David O'Brien wrote: > To tell the truth I'm not sure the exact case Kris was trying to allow. > You are right that ac_default_prefix=${LOCALBASE} may be a better > substitution. Perhaps you should have asked if you were unclear. PREFIX is where this port will install, LOCALBASE is where other ports did install. They may be different in some allowed cases. Kris --3Pql8miugIZX0722 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDXmHMWry0BWjoQKURAmhPAJ0bMdcX9/tUES5ZO+MLR82F8PWyTwCgrhLq DCwBmioyeG7f4dC+2NAUre8= =aoIO -----END PGP SIGNATURE----- --3Pql8miugIZX0722-- From owner-cvs-all@FreeBSD.ORG Tue Oct 25 16:52:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30A3516A41F; Tue, 25 Oct 2005 16:52:25 +0000 (GMT) (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 E3F6643D48; Tue, 25 Oct 2005 16:52:24 +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 C5DE41A3C28; Tue, 25 Oct 2005 09:52:24 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 9CD3952B4F; Tue, 25 Oct 2005 12:52:23 -0400 (EDT) Date: Tue, 25 Oct 2005 12:52:23 -0400 From: Kris Kennaway To: Dirk Meyer Message-ID: <20051025165220.GE16812@xor.obsecurity.org> References: <200510250812.j9P8ChDv093188@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="maH1Gajj2nflutpK" Content-Disposition: inline In-Reply-To: <200510250812.j9P8ChDv093188@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/emulators/stonx 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, 25 Oct 2005 16:52:25 -0000 --maH1Gajj2nflutpK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 25, 2005 at 08:12:43AM +0000, Dirk Meyer wrote: > dinoex 2005-10-25 08:12:43 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > emulators/stonx Makefile=20 > Log: > - fix dependency > Approved by: maintainer (implict) > | +BUILD_DEPENDS=3D bdftopcf:${X_CLIENTS_PORT} > | + > | MAINTAINER=3D treif@mayn.de > | COMMENT=3D AtariST emulator > | =20 > | RESTRICTED=3D "tos.img is copyrighted" > | +IS_INTERACTIVE=3D needs running x11 That's incorrect, x11 is present automatically on package builds when Xvfb is present (i.e. a dependency). Look at other ports to see how to do this. Kris --maH1Gajj2nflutpK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDXmLDWry0BWjoQKURAu4YAKDF5AhzJ3iYYAdKwjlP1ZUhLmlqAQCeLPIn KEhXOE5m+n5Bf+qNiUSd1OQ= =wmuH -----END PGP SIGNATURE----- --maH1Gajj2nflutpK-- From owner-cvs-all@FreeBSD.ORG Tue Oct 25 17:07:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15CFA16A41F; Tue, 25 Oct 2005 17:07:52 +0000 (GMT) (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 D4E2E43D48; Tue, 25 Oct 2005 17:07:51 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PH7pQq035187; Tue, 25 Oct 2005 17:07:51 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PH7pLF035186; Tue, 25 Oct 2005 17:07:51 GMT (envelope-from garga) Message-Id: <200510251707.j9PH7pLF035186@repoman.freebsd.org> From: Renato Botelho Date: Tue, 25 Oct 2005 17:07: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/www/dansguardian-devel Makefile distinfo pkg-plist ports/www/dansguardian-devel/files patch-autoconf::fbsd.in patch-configure patch-dansguardian.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: Tue, 25 Oct 2005 17:07:52 -0000 garga 2005-10-25 17:07:51 UTC FreeBSD ports repository Modified files: www/dansguardian-devel Makefile distinfo pkg-plist Removed files: www/dansguardian-devel/files patch-autoconf::fbsd.in patch-configure patch-dansguardian.8 Log: - Update to 2.9.0.1 PR: ports/87962 Submitted by: maintainer Revision Changes Path 1.16 +41 -20 ports/www/dansguardian-devel/Makefile 1.9 +2 -2 ports/www/dansguardian-devel/distinfo 1.7 +0 -88 ports/www/dansguardian-devel/files/patch-autoconf::fbsd.in (dead) 1.5 +0 -20 ports/www/dansguardian-devel/files/patch-configure (dead) 1.4 +0 -11 ports/www/dansguardian-devel/files/patch-dansguardian.8 (dead) 1.6 +245 -155 ports/www/dansguardian-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Oct 25 17:19:40 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B315816A420; Tue, 25 Oct 2005 17:19:40 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3732443D58; Tue, 25 Oct 2005 17:19:38 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Tue, 25 Oct 2005 13:36:22 -0400 From: John Baldwin To: obrien@freebsd.org Date: Tue, 25 Oct 2005 13:09:30 -0400 User-Agent: KMail/1.8.2 References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> In-Reply-To: <20051025052018.GE55418@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510251309.31811.jhb@freebsd.org> Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cp if_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: Tue, 25 Oct 2005 17:19:41 -0000 On Tuesday 25 October 2005 01:20 am, David O'Brien wrote: > On Mon, Oct 24, 2005 at 10:34:25AM -0400, John Baldwin wrote: > > On Monday 24 October 2005 03:24 am, David O'Brien wrote: > > > On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: > > > > rik 2005-09-27 16:57:45 UTC > > > > FreeBSD src repository > > > > Modified files: > > > > sys/dev/cp if_cp.c > > > > Log: > > > > Restore if_cp.c 1.27 > > ... > > > > You should not have backed out my commit without discussing it with me > > > and understanding the reason for the change. > > > Do it again and I *will* be taking it Core. > > > > Looks like he added some function prototypes and moved the cdevsw up. > > Does i compile now with gcc 4.0? It seems that his changes were a lot > > simpler and didn't destroy nearly as much CVS history as your changes. > > It would really be preferable to use simpler solutions rather than > > destroying version history with really big diffs. > > Doesn't matter -- it was a clear back out of my recent commit. > src/MAINTAINERS doesn't list any of these drivers, so what was his > authority in unilaterally backing out my commit? > It is also port portable to define static functions early in a file, > before they are used. Oh wanh. Does the code as it stands now compile ok with gcc 4.0 or is it still broken? Can you at least answer that question? Also, why is it so bad to use prototypes for static functions and then use them before they are defined? A whole bunch of drivers in the tree do that depending on where they put their cdevsw or DEVICE_METHOD() defintions! Also, anyone with half a brain that reads commit mail knows that rik works on cp(4) and cx(4), so I think that your lack-of-MAINTAINERS claim is just a bunch of hot air personally. The goal here is not to be able to point at someone and say "look, he didn't follow the exact letter of sub-section 7 of rule8 !!!!", the goal is to turn out a non-suck OS in an environment via a rather diverse (geographic and otherwise) group of developers. This means that as developers we all need to be more like the software we supposedly work on: strict on what we "send" (how we work with other folks), and liberal on what we "receive" (how we handle interactions with other folks). Rules are not there for people to nitpick. They are there to help enable us to achieve the end goal, but you need to evaluation actions as far as how best to achieve the end goal. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Tue Oct 25 17:19:41 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA56C16A422; Tue, 25 Oct 2005 17:19:40 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78DD743D5A; Tue, 25 Oct 2005 17:19:39 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Tue, 25 Oct 2005 13:36:22 -0400 From: John Baldwin To: Kris Kennaway Date: Tue, 25 Oct 2005 13:16:07 -0400 User-Agent: KMail/1.8.2 References: <200510242104.j9OL4J2B045827@repoman.freebsd.org> <20051025164222.GB16812@xor.obsecurity.org> In-Reply-To: <20051025164222.GB16812@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510251316.08672.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern subr_kdb.c subr_smp.c src/sys/amd64/amd64 mp_machdep.c trap.c src/sys/amd64/conf NOTES src/sys/amd64/include smp.h src/sys/conf options.amd64 options.i386 options.pc98 src/sys/i386/conf NOTES src/sys/i386/i386 mp_machdep.c trap.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 17:19:41 -0000 On Tuesday 25 October 2005 12:42 pm, Kris Kennaway wrote: > On Mon, Oct 24, 2005 at 09:04:19PM +0000, John Baldwin wrote: > > jhb 2005-10-24 21:04:19 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/kern subr_kdb.c subr_smp.c > > sys/amd64/amd64 mp_machdep.c trap.c > > sys/amd64/conf NOTES > > sys/amd64/include smp.h > > sys/conf options.amd64 options.i386 options.pc98 > > sys/i386/conf NOTES > > sys/i386/i386 mp_machdep.c trap.c > > sys/i386/include smp.h > > sys/pc98/conf NOTES > > sys/sys smp.h > > Log: > > Rename the KDB_STOP_NMI kernel option to STOP_NMI and make it apply to > > all IPI_STOP IPIs. > > I thought we were going to make KDB_STOP_NMI the default (since it's > necessary to avoid hangs on panic on SMP machines). That seems like > it's more risky now that it's bound up with other code. Well, the MI parts of KDB_STOP_NMI (using stoppedpcbs[] on x86) now is the default. All this does is make it so that all IPI_STOP IPIs (such as those used during shutdown, which is currently the only use outside of KDB) are able to use NMIs now. Also, it makes it simpler to enable stoppedpcbs[] on other archs like sparc64. If you want to turn STOP_NMI on by default that would be fine with me. The NMIs can still be disabled via sysctl/tunable even with the option on. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Tue Oct 25 17:41:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8569716A422; Tue, 25 Oct 2005 17:41:48 +0000 (GMT) (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 25E2943D45; Tue, 25 Oct 2005 17:41:48 +0000 (GMT) (envelope-from sergei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PHfmSn036457; Tue, 25 Oct 2005 17:41:48 GMT (envelope-from sergei@repoman.freebsd.org) Received: (from sergei@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PHfloJ036456; Tue, 25 Oct 2005 17:41:47 GMT (envelope-from sergei) Message-Id: <200510251741.j9PHfloJ036456@repoman.freebsd.org> From: Sergei Kolobov Date: Tue, 25 Oct 2005 17:41: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/mailfront Makefile distinfo pkg-plist ports/mail/mailfront/files extra-patch-mailfront-0.92-dw-auth X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 17:41:48 -0000 sergei 2005-10-25 17:41:47 UTC FreeBSD ports repository Modified files: mail/mailfront Makefile distinfo pkg-plist Added files: mail/mailfront/files extra-patch-mailfront-0.92-dw-auth Log: - Update to 0.97 - Introduce OPTIONS: WITH_DW_AUTH - include Dale Woolridge's experimental auth patch [1] Submitted by: Dale Woolridge (via e-mail) Revision Changes Path 1.12 +10 -2 ports/mail/mailfront/Makefile 1.10 +4 -4 ports/mail/mailfront/distinfo 1.1 +21 -0 ports/mail/mailfront/files/extra-patch-mailfront-0.92-dw-auth (new) 1.6 +1 -2 ports/mail/mailfront/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Oct 25 17:43:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 025B516A41F; Tue, 25 Oct 2005 17:43:38 +0000 (GMT) (envelope-from nate@root.org) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id A308843D46; Tue, 25 Oct 2005 17:43:37 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.33] (adsl-67-119-74-222.dsl.sntc01.pacbell.net [67.119.74.222]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id j9PHhZxq020589 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 25 Oct 2005 10:43:36 -0700 Message-ID: <435E6EC7.1050308@root.org> Date: Tue, 25 Oct 2005 10:43:35 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mike Silbersack References: <200510230020.j9N0KD4g046756@repoman.freebsd.org> <20051025031002.B911@odysseus.silby.com> In-Reply-To: <20051025031002.B911@odysseus.silby.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/sys/dev/acpica acpi_smbat.c acpi_smbus.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, 25 Oct 2005 17:43:38 -0000 Mike Silbersack wrote: > > On Sun, 23 Oct 2005, Nate Lawson wrote: > >> njl 2005-10-23 00:20:13 UTC >> >> FreeBSD src repository >> >> Added files: >> sys/dev/acpica acpi_smbat.c acpi_smbus.h >> Log: >> Import ACPI smart battery support. Newer systems (Acer, mostly) do not >> support the CM-battery interface. Smart batteries can eventually be >> supported without ACPI via a separate SMBus interface. The ACPI >> interface >> uses the embedded controller for reading/writing to the SMBus, and >> normal >> ASL definitions for locating the battery controller (since SMBus >> can't be >> enumerated.) Also import definitions for the smart battery interface. >> >> This was written by Hans Petter Selasky with minor cleanups from myself. > > > Nice, I've been waiting for this for a while. Well, sorta waiting. It > turns out that the battery life on my Acer Pentium M laptop is so good > that I can estimate when it'll run out mentally. "Has it been more than > 2 hours since I wandered away from an outlet? Hm, maybe I should return." > > Now I just have to wait for this to be MFC'd to RELENG_6. :) I'd appreciate testing feedback before MFC. And the MFC will be after 6.0. -- Nate From owner-cvs-all@FreeBSD.ORG Tue Oct 25 17:58:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E760516A41F; Tue, 25 Oct 2005 17:58:39 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A203D43D49; Tue, 25 Oct 2005 17:58:39 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PHwd84037140; Tue, 25 Oct 2005 17:58:39 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PHwdr5037139; Tue, 25 Oct 2005 17:58:39 GMT (envelope-from jkoshy) Message-Id: <200510251758.j9PHwdr5037139@repoman.freebsd.org> From: Joseph Koshy Date: Tue, 25 Oct 2005 17:58: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/lang/drscheme 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, 25 Oct 2005 17:58:40 -0000 jkoshy 2005-10-25 17:58:39 UTC FreeBSD ports repository Modified files: lang/drscheme Makefile Log: X11BASE and portlint cleanups. Revision Changes Path 1.21 +5 -3 ports/lang/drscheme/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:09:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 116D316A41F; Tue, 25 Oct 2005 18:09:11 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D127843D45; Tue, 25 Oct 2005 18:09:10 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PI9ADt037582; Tue, 25 Oct 2005 18:09:10 GMT (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PI9Apk037581; Tue, 25 Oct 2005 18:09:10 GMT (envelope-from fenner) Message-Id: <200510251809.j9PI9Apk037581@repoman.freebsd.org> From: Bill Fenner Date: Tue, 25 Oct 2005 18:09: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/benchmarks/lmbench Makefile distinfo pkg-plist ports/benchmarks/lmbench/files Makefile patch-aa patch-config-run patch-getbg X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 18:09:11 -0000 fenner 2005-10-25 18:09:10 UTC FreeBSD ports repository Modified files: benchmarks/lmbench Makefile distinfo pkg-plist benchmarks/lmbench/files Makefile Removed files: benchmarks/lmbench/files patch-aa patch-config-run patch-getbg Log: Update to lmbench 3alpha4. As described by the authors, "It auto sizes, has more stuff, etc., etc." Revision Changes Path 1.18 +32 -22 ports/benchmarks/lmbench/Makefile 1.5 +2 -2 ports/benchmarks/lmbench/distinfo 1.3 +4 -1 ports/benchmarks/lmbench/files/Makefile 1.4 +0 -38 ports/benchmarks/lmbench/files/patch-aa (dead) 1.2 +0 -37 ports/benchmarks/lmbench/files/patch-config-run (dead) 1.2 +0 -214 ports/benchmarks/lmbench/files/patch-getbg (dead) 1.7 +90 -126 ports/benchmarks/lmbench/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:15:18 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE8E316A41F; Tue, 25 Oct 2005 18:15:18 +0000 (GMT) (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 9E16443D46; Tue, 25 Oct 2005 18:15:18 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIFISg037855; Tue, 25 Oct 2005 18:15:18 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIFIBr037854; Tue, 25 Oct 2005 18:15:18 GMT (envelope-from garga) Message-Id: <200510251815.j9PIFIBr037854@repoman.freebsd.org> From: Renato Botelho Date: Tue, 25 Oct 2005 18:15:17 +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: Tue, 25 Oct 2005 18:15:19 -0000 garga 2005-10-25 18:15:17 UTC FreeBSD doc repository (ports committer) Modified files: en/community mailinglists.sgml Log: - Point to a valid Brazillian Portuguese mail list. Approved by: remko Revision Changes Path 1.5 +3 -2 www/en/community/mailinglists.sgml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:22:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9709216A41F; Tue, 25 Oct 2005 18:22:01 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53D0443D45; Tue, 25 Oct 2005 18:22:01 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIM11d038127; Tue, 25 Oct 2005 18:22:01 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIM1Q5038122; Tue, 25 Oct 2005 18:22:01 GMT (envelope-from remko) Message-Id: <200510251822.j9PIM1Q5038122@repoman.freebsd.org> From: Remko Lodder Date: Tue, 25 Oct 2005 18:21: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: www/en/commercial isp.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, 25 Oct 2005 18:22:01 -0000 remko 2005-10-25 18:21:59 UTC FreeBSD doc repository Modified files: en/commercial isp.xml Log: Add Inetassociation.com to the isp list. PR: www/87524 Requested by: Justin Franks Submitted by: Daniel Gerzo Revision Changes Path 1.32 +16 -1 www/en/commercial/isp.xml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:34:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BF5216A420; Tue, 25 Oct 2005 18:34:39 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CC0643D60; Tue, 25 Oct 2005 18:34:38 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIYbCV038668; Tue, 25 Oct 2005 18:34:37 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIYbNi038667; Tue, 25 Oct 2005 18:34:37 GMT (envelope-from remko) Message-Id: <200510251834.j9PIYbNi038667@repoman.freebsd.org> From: Remko Lodder Date: Tue, 25 Oct 2005 18:34:37 +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/commercial consult.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, 25 Oct 2005 18:34:39 -0000 remko 2005-10-25 18:34:37 UTC FreeBSD doc repository Modified files: en/commercial consult.xml Log: Add GNUnetworks to the consulting list. PR: www/87567 Requested by: Kenneth Peiruza Submitted by: Daniel Gerzo Revision Changes Path 1.52 +14 -1 www/en/commercial/consult.xml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:35:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1BEB16A41F; Tue, 25 Oct 2005 18:35:20 +0000 (GMT) (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 93E3C43D5C; Tue, 25 Oct 2005 18:35:20 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIZK2O038783; Tue, 25 Oct 2005 18:35:20 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIZK6f038782; Tue, 25 Oct 2005 18:35:20 GMT (envelope-from ehaupt) Message-Id: <200510251835.j9PIZK6f038782@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 25 Oct 2005 18: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/misc/gopod Makefile distinfo ports/misc/gopod/files extra-patch-main.c 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: Tue, 25 Oct 2005 18:35:21 -0000 ehaupt 2005-10-25 18:35:20 UTC FreeBSD ports repository Modified files: misc/gopod Makefile distinfo Added files: misc/gopod/files extra-patch-main.c Removed files: misc/gopod/files patch-main.c Log: Update to 1.3 and split into master and slave port Revision Changes Path 1.5 +30 -42 ports/misc/gopod/Makefile 1.2 +2 -2 ports/misc/gopod/distinfo 1.1 +19 -0 ports/misc/gopod/files/extra-patch-main.c (new) 1.2 +0 -32 ports/misc/gopod/files/patch-main.c (dead) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:36:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A97AE16A41F; Tue, 25 Oct 2005 18:36:52 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93D7B43D49; Tue, 25 Oct 2005 18:36:49 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIankJ039006; Tue, 25 Oct 2005 18:36:49 GMT (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIandR039005; Tue, 25 Oct 2005 18:36:49 GMT (envelope-from fenner) Message-Id: <200510251836.j9PIandR039005@repoman.freebsd.org> From: Bill Fenner Date: Tue, 25 Oct 2005 18: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/editors/openoffice.org-1.0 Makefile ports/editors/openoffice.org-1.1 Makefile ports/editors/openoffice.org-1.1-devel Makefile ports/editors/openoffice.org-2.0 Makefile ports/editors/openoffice.org-2.0-devel Makefile ports/lang/gcc-ooo 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, 25 Oct 2005 18:36:52 -0000 fenner 2005-10-25 18:36:49 UTC FreeBSD ports repository Modified files: editors/openoffice.org-1.0 Makefile editors/openoffice.org-1.1 Makefile editors/openoffice.org-1.1-devel Makefile editors/openoffice.org-2.0 Makefile editors/openoffice.org-2.0-devel Makefile lang/gcc-ooo Makefile Log: Fix ${MASTER_SITE_foo} usage. - Use the proper syntax for grouping when using ${MASTER_SITE_foo} - Don't use ${MASTER_SITE_LOCAL} with no local user subdir. Approved by: MAINTAINER timeout (2 weeks) Revision Changes Path 1.204 +9 -5 ports/editors/openoffice.org-1.0/Makefile 1.193 +9 -4 ports/editors/openoffice.org-1.1-devel/Makefile 1.201 +10 -5 ports/editors/openoffice.org-1.1/Makefile 1.212 +2 -1 ports/editors/openoffice.org-2.0-devel/Makefile 1.210 +2 -1 ports/editors/openoffice.org-2.0/Makefile 1.198 +1 -2 ports/lang/gcc-ooo/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:37:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2875016A41F; Tue, 25 Oct 2005 18:37:29 +0000 (GMT) (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 2F53F43D68; Tue, 25 Oct 2005 18:37:27 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIbR12039085; Tue, 25 Oct 2005 18:37:27 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIbRod039084; Tue, 25 Oct 2005 18:37:27 GMT (envelope-from ehaupt) Message-Id: <200510251837.j9PIbRod039084@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 25 Oct 2005 18:37: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 Makefile ports/misc/gtk-gopod 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, 25 Oct 2005 18:37:29 -0000 ehaupt 2005-10-25 18:37:27 UTC FreeBSD ports repository Modified files: misc Makefile Added files: misc/gtk-gopod Makefile pkg-plist Log: Add slave port of misc/gopod, a GTK Utility to cap/uncap an iPod Revision Changes Path 1.766 +1 -0 ports/misc/Makefile 1.1 +23 -0 ports/misc/gtk-gopod/Makefile (new) 1.1 +8 -0 ports/misc/gtk-gopod/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:37:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C36B16A420; Tue, 25 Oct 2005 18:37:38 +0000 (GMT) (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 CDC5443D48; Tue, 25 Oct 2005 18:37:37 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIbb07039131; Tue, 25 Oct 2005 18:37:37 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIbbLx039130; Tue, 25 Oct 2005 18:37:37 GMT (envelope-from ehaupt) Message-Id: <200510251837.j9PIbbLx039130@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 25 Oct 2005 18:37: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: Tue, 25 Oct 2005 18:37:38 -0000 ehaupt 2005-10-25 18:37:37 UTC FreeBSD ports repository Modified files: . modules Log: gtk-gopod --> ports/misc/gtk-gopod Revision Changes Path 1.13463 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:40:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE17416A41F; Tue, 25 Oct 2005 18:40:26 +0000 (GMT) (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 69F6443D48; Tue, 25 Oct 2005 18:40:26 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIeQLT039243; Tue, 25 Oct 2005 18:40:26 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIeQ7H039242; Tue, 25 Oct 2005 18:40:26 GMT (envelope-from ehaupt) Message-Id: <200510251840.j9PIeQ7H039242@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 25 Oct 2005 18:40: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 LEGAL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 18:40:26 -0000 ehaupt 2005-10-25 18:40:26 UTC FreeBSD ports repository Modified files: . LEGAL Log: Modify pattern for misc/gopod to also match misc/gtk-gopod Revision Changes Path 1.428 +2 -2 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:42:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C48E416A41F; Tue, 25 Oct 2005 18:42:35 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1C7343D64; Tue, 25 Oct 2005 18:42:32 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIgWZC039356; Tue, 25 Oct 2005 18:42:32 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIgW6U039355; Tue, 25 Oct 2005 18:42:32 GMT (envelope-from remko) Message-Id: <200510251842.j9PIgW6U039355@repoman.freebsd.org> From: Remko Lodder Date: Tue, 25 Oct 2005 18:42:32 +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/commercial software.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, 25 Oct 2005 18:42:36 -0000 remko 2005-10-25 18:42:32 UTC FreeBSD doc repository Modified files: en/commercial software.xml Log: Add Nettix Peru to the software list. PR: www/87226 Requested by: Martin Garcia Submitted by: Daniel Gerzo Revision Changes Path 1.24 +12 -1 www/en/commercial/software.xml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:46:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B75916A41F; Tue, 25 Oct 2005 18:46:59 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38A2F43D49; Tue, 25 Oct 2005 18:46:59 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIkx9k039566; Tue, 25 Oct 2005 18:46:59 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIkxdF039565; Tue, 25 Oct 2005 18:46:59 GMT (envelope-from remko) Message-Id: <200510251846.j9PIkxdF039565@repoman.freebsd.org> From: Remko Lodder Date: Tue, 25 Oct 2005 18:46: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: www/en/commercial isp.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, 25 Oct 2005 18:46:59 -0000 remko 2005-10-25 18:46:59 UTC FreeBSD doc repository Modified files: en/commercial isp.xml Log: Add Venigo Internet Services to the ISP list. PR: www/87002 Requested by: Baylac Jean-Dominique Submitted by: Daniel Gerzo Revision Changes Path 1.33 +13 -1 www/en/commercial/isp.xml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:47:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D505616A441; Tue, 25 Oct 2005 18:47:12 +0000 (GMT) (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 9F7AB43D48; Tue, 25 Oct 2005 18:47:12 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIlCfD039607; Tue, 25 Oct 2005 18:47:12 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIlCqn039606; Tue, 25 Oct 2005 18:47:12 GMT (envelope-from rwatson) Message-Id: <200510251847.j9PIlCqn039606@repoman.freebsd.org> From: Robert Watson Date: Tue, 25 Oct 2005 18:47: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/tools/tools/netrate/httpd httpd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 18:47:13 -0000 rwatson 2005-10-25 18:47:12 UTC FreeBSD src repository Modified files: tools/tools/netrate/httpd httpd.c Log: Updates and enhancements to the multi-threaded httpd performance test tool: - Use uname(3) to query the OS name to report in the HTTP headers. This is probably more useful than hard-coding FreeBSD. - If no path is specified, create a 1k temporary file and send that instead. Pass a file descriptor into http_serve() rather than using a global fd. - Add more carriage returns to the HTTP headers to be a bit more correct. (Suggested by: andre) - Read to a buffer rather than a single character to reduce the number of recv() system calls pulling in the HTTP request. - Properly wait for two, not one, \n's on input. Revision Changes Path 1.4 +92 -33 src/tools/tools/netrate/httpd/httpd.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:52:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFA9016A41F; Tue, 25 Oct 2005 18:52:50 +0000 (GMT) (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 9A47243D46; Tue, 25 Oct 2005 18:52:50 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIqo9C039837; Tue, 25 Oct 2005 18:52:50 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIqose039836; Tue, 25 Oct 2005 18:52:50 GMT (envelope-from ehaupt) Message-Id: <200510251852.j9PIqose039836@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 25 Oct 2005 18:52: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/misc/gopod Makefile ports/misc/gtk-gopod 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, 25 Oct 2005 18:52:51 -0000 ehaupt 2005-10-25 18:52:50 UTC FreeBSD ports repository Modified files: misc/gopod Makefile misc/gtk-gopod Makefile Log: Also add RESTRICTED to slave port [1] and quote RESTRICTED message Discussed with: linimon [1] Revision Changes Path 1.6 +1 -1 ports/misc/gopod/Makefile 1.2 +2 -0 ports/misc/gtk-gopod/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:55:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EF7916A41F; Tue, 25 Oct 2005 18:55:16 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF62643D49; Tue, 25 Oct 2005 18:55:15 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PItFfl039960; Tue, 25 Oct 2005 18:55:15 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PItF5f039959; Tue, 25 Oct 2005 18:55:15 GMT (envelope-from remko) Message-Id: <200510251855.j9PItF5f039959@repoman.freebsd.org> From: Remko Lodder Date: Tue, 25 Oct 2005 18:55: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: www/en/commercial hardware.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, 25 Oct 2005 18:55:16 -0000 remko 2005-10-25 18:55:15 UTC FreeBSD doc repository Modified files: en/commercial hardware.xml Log: Add Pyramid-USA to the hardware vendor list. PR: www/87572 Requested by: William Rohrs Revision Changes Path 1.10 +21 -1 www/en/commercial/hardware.xml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:56:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9148516A41F; Tue, 25 Oct 2005 18:56:47 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C9EF43D4C; Tue, 25 Oct 2005 18:56:47 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIuklt040095; Tue, 25 Oct 2005 18:56:46 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIukAp040094; Tue, 25 Oct 2005 18:56:46 GMT (envelope-from cy) Message-Id: <200510251856.j9PIukAp040094@repoman.freebsd.org> From: Cy Schubert Date: Tue, 25 Oct 2005 18:56: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/security/sudosh Makefile pkg-message pkg-plist ports/security/sudosh/files patch-src::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: Tue, 25 Oct 2005 18:56:47 -0000 cy 2005-10-25 18:56:46 UTC FreeBSD ports repository Modified files: security/sudosh Makefile pkg-plist Added files: security/sudosh pkg-message security/sudosh/files patch-src::Makefile.in Log: Adjust port to installl sudoers.conf.sample as a reference sample file. Conditionally install sudoers.conf. Revision Changes Path 1.16 +4 -1 ports/security/sudosh/Makefile 1.1 +10 -0 ports/security/sudosh/files/patch-src::Makefile.in (new) 1.1 +13 -0 ports/security/sudosh/pkg-message (new) 1.3 +1 -1 ports/security/sudosh/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:57:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B47C616A41F; Tue, 25 Oct 2005 18:57:03 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 709CC43D45; Tue, 25 Oct 2005 18:57:03 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIv3TE040134; Tue, 25 Oct 2005 18:57:03 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIv3wm040133; Tue, 25 Oct 2005 18:57:03 GMT (envelope-from brueffer) Message-Id: <200510251857.j9PIv3wm040133@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 25 Oct 2005 18:57: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/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: Tue, 25 Oct 2005 18:57:03 -0000 brueffer 2005-10-25 18:57:03 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 bge.4 Log: Xref polling(4). Revision Changes Path 1.22 +2 -1 src/share/man/man4/bge.4 From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:58:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E8F616A41F; Tue, 25 Oct 2005 18:58:10 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72CBC43D53; Tue, 25 Oct 2005 18:58:03 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIw3dU040203; Tue, 25 Oct 2005 18:58:03 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIw303040202; Tue, 25 Oct 2005 18:58:03 GMT (envelope-from cy) Message-Id: <200510251858.j9PIw303040202@repoman.freebsd.org> From: Cy Schubert Date: Tue, 25 Oct 2005 18:58: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/security/sudosh 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, 25 Oct 2005 18:58:10 -0000 cy 2005-10-25 18:58:03 UTC FreeBSD ports repository Modified files: security/sudosh Makefile Log: Cosmetic formatting change. Revision Changes Path 1.17 +1 -1 ports/security/sudosh/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 18:59:00 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5927916A41F; Tue, 25 Oct 2005 18:59:00 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 954EC43D62; Tue, 25 Oct 2005 18:58:53 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIwrBc040310; Tue, 25 Oct 2005 18:58:53 GMT (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIwrFS040309; Tue, 25 Oct 2005 18:58:53 GMT (envelope-from fenner) Message-Id: <200510251858.j9PIwrFS040309@repoman.freebsd.org> From: Bill Fenner Date: Tue, 25 Oct 2005 18:58: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/apache2 Makefile ports/www/apache20 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, 25 Oct 2005 18:59:00 -0000 fenner 2005-10-25 18:58:53 UTC FreeBSD ports repository Modified files: www/apache2 Makefile www/apache20 Makefile Log: Use the proper syntax for groups when using ${MASTER_SITE_foo} Approved by: MAINTAINER timeout (2 weeks) Revision Changes Path 1.231 +2 -1 ports/www/apache2/Makefile 1.227 +2 -1 ports/www/apache20/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 19:04:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A0C516A423; Tue, 25 Oct 2005 19:04:21 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 502CE43DC0; Tue, 25 Oct 2005 19:04:12 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJ4AEm041407; Tue, 25 Oct 2005 19:04:10 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJ4AQO041406; Tue, 25 Oct 2005 19:04:10 GMT (envelope-from remko) Message-Id: <200510251904.j9PJ4AQO041406@repoman.freebsd.org> From: Remko Lodder Date: Tue, 25 Oct 2005 19:04:10 +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/commercial hardware.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, 25 Oct 2005 19:04:21 -0000 remko 2005-10-25 19:04:10 UTC FreeBSD doc repository Modified files: en/commercial hardware.xml Log: Add Rackmountmart to the hardware vendor list. PR: www/87470 Requested by: amanda X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6C5A16A422; Tue, 25 Oct 2005 19:14:13 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF46F43D9B; Tue, 25 Oct 2005 19:13:55 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJDt6g041820; Tue, 25 Oct 2005 19:13:55 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJDtHj041819; Tue, 25 Oct 2005 19:13:55 GMT (envelope-from remko) Message-Id: <200510251913.j9PJDtHj041819@repoman.freebsd.org> From: Remko Lodder Date: Tue, 25 Oct 2005 19:13: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/news news.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: Tue, 25 Oct 2005 19:14:14 -0000 remko 2005-10-25 19:13:55 UTC FreeBSD doc repository Modified files: en/news news.sgml Log: Add BSDForums.org to the Other Sites list. Requested by: Dan in private email. Revision Changes Path 1.44 +7 -1 www/en/news/news.sgml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 19:23:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50B3016A41F; Tue, 25 Oct 2005 19:23:16 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CD6543D76; Tue, 25 Oct 2005 19:23:16 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJNFff042278; Tue, 25 Oct 2005 19:23:15 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJNFSj042277; Tue, 25 Oct 2005 19:23:15 GMT (envelope-from remko) Message-Id: <200510251923.j9PJNFSj042277@repoman.freebsd.org> From: Remko Lodder Date: Tue, 25 Oct 2005 19:23: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: www/en/commercial hardware.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, 25 Oct 2005 19:23:16 -0000 remko 2005-10-25 19:23:15 UTC FreeBSD doc repository Modified files: en/commercial hardware.xml Log: Update FreeBSD Systems' entry. PR: www/87652 Requested by: Lanny Revision Changes Path 1.12 +16 -16 www/en/commercial/hardware.xml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 19:29:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59B8816A41F; Tue, 25 Oct 2005 19:29:03 +0000 (GMT) (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 1672743D46; Tue, 25 Oct 2005 19:29:03 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJT28J042511; Tue, 25 Oct 2005 19:29:02 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJT2AX042510; Tue, 25 Oct 2005 19:29:02 GMT (envelope-from jhb) Message-Id: <200510251929.j9PJT2AX042510@repoman.freebsd.org> From: John Baldwin Date: Tue, 25 Oct 2005 19:29: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/kern subr_taskqueue.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 19:29:03 -0000 jhb 2005-10-25 19:29:02 UTC FreeBSD src repository Modified files: sys/kern subr_taskqueue.c Log: Use shorter names for the Giant and fast taskqueues so that their names actually fit. Revision Changes Path 1.30 +2 -2 src/sys/kern/subr_taskqueue.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 19:33:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 677C716A41F; Tue, 25 Oct 2005 19:33:34 +0000 (GMT) (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 4DA0543D7B; Tue, 25 Oct 2005 19:33:29 +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 2F2061A3C28; Tue, 25 Oct 2005 12:33:29 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id A3D9B51248; Tue, 25 Oct 2005 15:33:28 -0400 (EDT) Date: Tue, 25 Oct 2005 15:33:28 -0400 From: Kris Kennaway To: Cy Schubert Message-ID: <20051025193328.GA80489@xor.obsecurity.org> References: <200510251856.j9PIukAp040094@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8t9RHnE3ZwKMSgU+" Content-Disposition: inline In-Reply-To: <200510251856.j9PIukAp040094@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/sudosh Makefile pkg-message pkg-plist ports/security/sudosh/files patch-src::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: Tue, 25 Oct 2005 19:33:34 -0000 --8t9RHnE3ZwKMSgU+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 25, 2005 at 06:56:46PM +0000, Cy Schubert wrote: > cy 2005-10-25 18:56:46 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > security/sudosh Makefile pkg-plist=20 > Added files: > security/sudosh pkg-message=20 > security/sudosh/files patch-src::Makefile.in=20 > Log: > Adjust port to installl sudoers.conf.sample as a reference sample file. > Conditionally install sudoers.conf. Where do you conditionally install this? This is usually done with an @exec statement in pkg-plist and a corresponding @unexec cmp to remove both files at deinstall time if they are the same. Kris > | +++ ports/security/sudosh/pkg-plist 2005/10/25 18:56:46 1.3 > | @@ -1,3 +1,3 @@ > | bin/sudosh > | bin/sudosh-replay > | -etc/sudosh.conf > | +etc/sudosh.conf.sample >=20 --8t9RHnE3ZwKMSgU+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDXoiIWry0BWjoQKURAiViAJ0RaBwbUoAoNqs0t3w9oV06yKJ3jACg6raZ /9SlhCy7+OTMJRKy0ywee3c= =mqQ3 -----END PGP SIGNATURE----- --8t9RHnE3ZwKMSgU+-- From owner-cvs-all@FreeBSD.ORG Tue Oct 25 19:36:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E64CF16A41F; Tue, 25 Oct 2005 19:36:07 +0000 (GMT) (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 9EF5743D46; Tue, 25 Oct 2005 19:36:07 +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 7F77A1A3C29; Tue, 25 Oct 2005 12:36:07 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id EBD0C5121A; Tue, 25 Oct 2005 15:36:06 -0400 (EDT) Date: Tue, 25 Oct 2005 15:36:06 -0400 From: Kris Kennaway To: Kris Kennaway Message-ID: <20051025193606.GA80844@xor.obsecurity.org> References: <200510251856.j9PIukAp040094@repoman.freebsd.org> <20051025193328.GA80489@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="17pEHd4RhPHOinZp" Content-Disposition: inline In-Reply-To: <20051025193328.GA80489@xor.obsecurity.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, ports-committers@FreeBSD.org, cvs-all@FreeBSD.org, Cy Schubert Subject: Re: cvs commit: ports/security/sudosh Makefile pkg-message pkg-plist ports/security/sudosh/files patch-src::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: Tue, 25 Oct 2005 19:36:08 -0000 --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 25, 2005 at 03:33:28PM -0400, Kris Kennaway wrote: > On Tue, Oct 25, 2005 at 06:56:46PM +0000, Cy Schubert wrote: > > cy 2005-10-25 18:56:46 UTC > >=20 > > FreeBSD ports repository > >=20 > > Modified files: > > security/sudosh Makefile pkg-plist=20 > > Added files: > > security/sudosh pkg-message=20 > > security/sudosh/files patch-src::Makefile.in=20 > > Log: > > Adjust port to installl sudoers.conf.sample as a reference sample fil= e. > > Conditionally install sudoers.conf. >=20 > Where do you conditionally install this? This is usually done with an > @exec statement in pkg-plist and a corresponding @unexec cmp to remove > both files at deinstall time if they are the same. OK, I see. It won't work if you install from a package, though - you need to do it in the pkg-plist as above. Kris --17pEHd4RhPHOinZp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDXokmWry0BWjoQKURAvhhAJ0Z1C0VQGYuYkSWCGT77yFgm91fYQCff0bY CPjz8KS/dophjlxdn/HwyGE= =uq7+ -----END PGP SIGNATURE----- --17pEHd4RhPHOinZp-- From owner-cvs-all@FreeBSD.ORG Tue Oct 25 19:37:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC31316A41F; Tue, 25 Oct 2005 19:37:53 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CBB643D45; Tue, 25 Oct 2005 19:37:53 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJbr4K042895; Tue, 25 Oct 2005 19:37:53 GMT (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJbrPN042894; Tue, 25 Oct 2005 19:37:53 GMT (envelope-from fenner) Message-Id: <200510251937.j9PJbrPN042894@repoman.freebsd.org> From: Bill Fenner Date: Tue, 25 Oct 2005 19:37: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/Mk bsd.sites.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: Tue, 25 Oct 2005 19:37:53 -0000 fenner 2005-10-25 19:37:53 UTC FreeBSD ports repository Modified files: Mk bsd.sites.mk Log: Some minor cleanups of sites that have fewer than 25% of the files we try to fetch from them. MASTER_SITE_KDE: remove ftp.tu-clausthal.de; it no longer has a /pub/mirror/kde directory. MASTER_SITE_SUSE: remove ftp.linux.org.tr; it has 0 of the 58 files we fetch from suse. remove ftp.uni-bremen.de; it has 3 of the 58 files we fetch from suse remove linux.mathematik.tu-darmstadt.de; it has 3 of the 58 files we fetch from suse change ops.tamu.edu to mirror.tamu.edu to chase a 302 redirect. MASTER_SITE_NETBSD: remove ftp.weird.com; it has 5 of the 41 files we fetch from netbsd. Revision Changes Path 1.341 +2 -7 ports/Mk/bsd.sites.mk From owner-cvs-all@FreeBSD.ORG Tue Oct 25 19:45:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82AFD16A41F; Tue, 25 Oct 2005 19:45:17 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from storm.uk.FreeBSD.org (storm.uk.FreeBSD.org [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3DE543D45; Tue, 25 Oct 2005 19:45:16 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from storm.uk.FreeBSD.org (uucp@localhost [127.0.0.1]) by storm.uk.FreeBSD.org (8.13.4/8.13.4) with ESMTP id j9PJjFRv028348; Tue, 25 Oct 2005 20:45:15 +0100 (BST) (envelope-from markm@FreeBSD.org) Received: (from uucp@localhost) by storm.uk.FreeBSD.org (8.13.4/8.12.11/Submit) with UUCP id j9PJjFkr028347; Tue, 25 Oct 2005 20:45:15 +0100 (BST) (envelope-from markm@FreeBSD.org) Received: from grondar.org (localhost [127.0.0.1]) by grunt.grondar.org (8.13.4/8.13.4) with ESMTP id j9PJiFKx021173; Tue, 25 Oct 2005 20:44:15 +0100 (BST) (envelope-from markm@FreeBSD.org) Message-Id: <200510251944.j9PJiFKx021173@grunt.grondar.org> To: John Baldwin From: Mark Murray From: Mark Murray Date: Tue, 25 Oct 2005 20:44:15 +0100 Cc: Roman Kurakin , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, obrien@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cp if_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: Tue, 25 Oct 2005 19:45:17 -0000 John Baldwin writes: >Also, anyone with half a brain that reads commit mail knows that rik works on >cp(4) and cx(4), so I think that your lack-of-MAINTAINERS claim is just a >bunch of hot air personally. The goal here is not to be able to point at >someone and say "look, he didn't follow the exact letter of sub-section 7 of >rule8 !!!!", the goal is to turn out a non-suck OS in an environment via a >rather diverse (geographic and otherwise) group of developers. This means >that as developers we all need to be more like the software we supposedly >work on: strict on what we "send" (how we work with other folks), and liberal >on what we "receive" (how we handle interactions with other folks). Rules are not there for people to nitpick. They are there to help enable us to >achieve the end goal, but you need to evaluation actions as far as how best >to achieve the end goal. Brilliantly said!! Mr Baldwin, take a bow. M -- Mark R V Murray What is the most interesting question you have asked? What, if any, was the answer? From owner-cvs-all@FreeBSD.ORG Tue Oct 25 19:46:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B24916A41F; Tue, 25 Oct 2005 19:46:17 +0000 (GMT) (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 9D6BA43D4C; Tue, 25 Oct 2005 19:46:15 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJkFtE043411; Tue, 25 Oct 2005 19:46:15 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJkF7J043410; Tue, 25 Oct 2005 19:46:15 GMT (envelope-from delphij) Message-Id: <200510251946.j9PJkF7J043410@repoman.freebsd.org> From: Xin LI Date: Tue, 25 Oct 2005 19:46: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/ufs/ufs ufs_bmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 19:46:17 -0000 delphij 2005-10-25 19:46:15 UTC FreeBSD src repository Modified files: sys/ufs/ufs ufs_bmap.c Log: Remove an unneeded "a" from comment. Revision Changes Path 1.65 +1 -1 src/sys/ufs/ufs/ufs_bmap.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 19:48:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A36616A41F; Tue, 25 Oct 2005 19:48:49 +0000 (GMT) (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 D714943D48; Tue, 25 Oct 2005 19:48:48 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJmm47043892; Tue, 25 Oct 2005 19:48:48 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJmmmj043891; Tue, 25 Oct 2005 19:48:48 GMT (envelope-from jhb) Message-Id: <200510251948.j9PJmmmj043891@repoman.freebsd.org> From: John Baldwin Date: Tue, 25 Oct 2005 19:48: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/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_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: Tue, 25 Oct 2005 19:48:49 -0000 jhb 2005-10-25 19:48:48 UTC FreeBSD src repository Modified files: sys/alpha/alpha interrupt.c sys/alpha/isa isa.c sys/amd64/amd64 intr_machdep.c sys/amd64/include intr_machdep.h sys/amd64/isa atpic.c sys/arm/arm intr.c sys/dev/sio sio.c sys/dev/uart uart_kbd_sun.c uart_tty.c sys/i386/i386 intr_machdep.c sys/i386/include intr_machdep.h sys/i386/isa atpic.c sys/ia64/ia64 interrupt.c sys/kern kern_clock.c kern_intr.c subr_witness.c sys/powerpc/include intr_machdep.h sys/powerpc/powerpc intr_machdep.c sys/sparc64/include intr_machdep.h sys/sparc64/sparc64 intr_machdep.c sys/sys interrupt.h proc.h Log: Reorganize the interrupt handling code a bit to make a few things cleaner and increase flexibility to allow various different approaches to be tried in the future. - Split struct ithd up into two pieces. struct intr_event holds the list of interrupt handlers associated with interrupt sources. struct intr_thread contains the data relative to an interrupt thread. Currently we still provide a 1:1 relationship of events to threads with the exception that events only have an associated thread if there is at least one threaded interrupt handler attached to the event. This means that on x86 we no longer have 4 bazillion interrupt threads with no handlers. It also means that interrupt events with only INTR_FAST handlers no longer have an associated thread either. - Renamed struct intrhand to struct intr_handler to follow the struct intr_foo naming convention. This did require renaming the powerpc MD struct intr_handler to struct ppc_intr_handler. - INTR_FAST no longer implies INTR_EXCL on all architectures except for powerpc. This means that multiple INTR_FAST handlers can attach to the same interrupt and that INTR_FAST and non-INTR_FAST handlers can attach to the same interrupt. Sharing INTR_FAST handlers may not always be desirable, but having sio(4) and uhci(4) fight over an IRQ isn't fun either. Drivers can always still use INTR_EXCL to ask for an interrupt exclusively. The way this sharing works is that when an interrupt comes in, all the INTR_FAST handlers are executed first, and if any threaded handlers exist, the interrupt thread is scheduled afterwards. This type of layout also makes it possible to investigate using interrupt filters ala OS X where the filter determines whether or not its companion threaded handler should run. - Aside from the INTR_FAST changes above, the impact on MD interrupt code is mostly just 's/ithread/intr_event/'. - A new MI ddb command 'show intrs' walks the list of interrupt events dumping their state. It also has a '/v' verbose switch which dumps info about all of the handlers attached to each event. - We currently don't destroy an interrupt thread when the last threaded handler is removed because it would suck for things like ppbus(8)'s braindead behavior. The code is present, though, it is just under #if 0 for now. - Move the code to actually execute the threaded handlers for an interrrupt event into a separate function so that ithread_loop() becomes more readable. Previously this code was all in the middle of ithread_loop() and indented halfway across the screen. - Made struct intr_thread private to kern_intr.c and replaced td_ithd with a thread private flag TDP_ITHREAD. - In statclock, check curthread against idlethread directly rather than curthread's proc against idlethread's proc. (Not really related to intr changes) Tested on: alpha, amd64, i386, sparc64 Tested on: arm, ia64 (older version of patch by cognet and marcel) Revision Changes Path 1.88 +43 -29 src/sys/alpha/alpha/interrupt.c 1.38 +5 -5 src/sys/alpha/isa/isa.c 1.16 +58 -52 src/sys/amd64/amd64/intr_machdep.c 1.6 +1 -1 src/sys/amd64/include/intr_machdep.h 1.16 +2 -2 src/sys/amd64/isa/atpic.c 1.11 +28 -22 src/sys/arm/arm/intr.c 1.462 +2 -2 src/sys/dev/sio/sio.c 1.6 +1 -1 src/sys/dev/uart/uart_kbd_sun.c 1.24 +2 -2 src/sys/dev/uart/uart_tty.c 1.15 +58 -52 src/sys/i386/i386/intr_machdep.c 1.8 +1 -1 src/sys/i386/include/intr_machdep.h 1.21 +2 -2 src/sys/i386/isa/atpic.c 1.52 +32 -25 src/sys/ia64/ia64/interrupt.c 1.180 +3 -2 src/sys/kern/kern_clock.c 1.127 +437 -270 src/sys/kern/kern_intr.c 1.206 +0 -1 src/sys/kern/subr_witness.c 1.6 +3 -3 src/sys/powerpc/include/intr_machdep.h 1.7 +35 -32 src/sys/powerpc/powerpc/intr_machdep.c 1.14 +1 -1 src/sys/sparc64/include/intr_machdep.h 1.24 +43 -36 src/sys/sparc64/sparc64/intr_machdep.c 1.32 +36 -36 src/sys/sys/interrupt.h 1.440 +1 -3 src/sys/sys/proc.h From owner-cvs-all@FreeBSD.ORG Tue Oct 25 19:52:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C2C416A41F; Tue, 25 Oct 2005 19:52:38 +0000 (GMT) (envelope-from lesi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA7E243D48; Tue, 25 Oct 2005 19:52:37 +0000 (GMT) (envelope-from lesi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJqbgj044157; Tue, 25 Oct 2005 19:52:37 GMT (envelope-from lesi@repoman.freebsd.org) Received: (from lesi@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJqbh7044156; Tue, 25 Oct 2005 19:52:37 GMT (envelope-from lesi) Message-Id: <200510251952.j9PJqbh7044156@repoman.freebsd.org> From: Dejan Lesjak Date: Tue, 25 Oct 2005 19:52: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/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, 25 Oct 2005 19:52:38 -0000 lesi 2005-10-25 19:52:37 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Add misc/compat5x to "openssl -- potential SSL 2.0 rollback". Reviewed by: simon Revision Changes Path 1.865 +9 -2 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 19:54:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15BFE16A41F; Tue, 25 Oct 2005 19:54:26 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 472ED43D5A; Tue, 25 Oct 2005 19:54:25 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJsPt0044233; Tue, 25 Oct 2005 19:54:25 GMT (envelope-from wollman@repoman.freebsd.org) Received: (from wollman@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJsPpG044232; Tue, 25 Oct 2005 19:54:25 GMT (envelope-from wollman) Message-Id: <200510251954.j9PJsPpG044232@repoman.freebsd.org> From: Garrett Wollman Date: Tue, 25 Oct 2005 19:54: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/sys unistd.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, 25 Oct 2005 19:54:26 -0000 wollman 2005-10-25 19:54:25 UTC FreeBSD src repository Modified files: sys/sys unistd.h Log: We've supported the _POSIX_MONOTONIC_CLOCK option for a long time. Advertise it. MFC after: 1 week Revision Changes Path 1.43 +1 -1 src/sys/sys/unistd.h From owner-cvs-all@FreeBSD.ORG Tue Oct 25 19:59:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E34B16A41F; Tue, 25 Oct 2005 19:59:23 +0000 (GMT) (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 448C343D53; Tue, 25 Oct 2005 19:59:23 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJxNV1044536; Tue, 25 Oct 2005 19:59:23 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJxNLp044535; Tue, 25 Oct 2005 19:59:23 GMT (envelope-from imp) Message-Id: <200510251959.j9PJxNLp044535@repoman.freebsd.org> From: Warner Losh Date: Tue, 25 Oct 2005 19:59: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/sbin/devd devd.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, 25 Oct 2005 19:59:23 -0000 imp 2005-10-25 19:59:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/devd devd.cc Log: MFC: 1.26 remove 'string' to avoid shadowing a variable we want to change. Approved by: re@ (scottl) Revision Changes Path 1.22.2.4 +1 -1 src/sbin/devd/devd.cc From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:05:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 440F216A41F; Tue, 25 Oct 2005 20:05:49 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C158443D6E; Tue, 25 Oct 2005 20:05:44 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PK5i0R044823; Tue, 25 Oct 2005 20:05:44 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PK5iVW044822; Tue, 25 Oct 2005 20:05:44 GMT (envelope-from njl) Message-Id: <200510252005.j9PK5iVW044822@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 20:05: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/usr.sbin/powerd powerd.8 powerd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 20:05:49 -0000 njl 2005-10-25 20:05:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/powerd powerd.8 powerd.c Log: MFC: Warn, don't error out when we temporarily can't set the frequency. Accept "maximum" and "minimum" keywords. Set signals in the right place. Approved by: re (scottl) Revision Changes Path 1.5.2.1 +1 -1 src/usr.sbin/powerd/powerd.8 1.6.2.3 +34 -17 src/usr.sbin/powerd/powerd.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:07:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C94616A41F; Tue, 25 Oct 2005 20:07:48 +0000 (GMT) (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 6882A43D6E; Tue, 25 Oct 2005 20:07:47 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PK7lbw044956; Tue, 25 Oct 2005 20:07:47 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PK7l9F044955; Tue, 25 Oct 2005 20:07:47 GMT (envelope-from imp) Message-Id: <200510252007.j9PK7l9F044955@repoman.freebsd.org> From: Warner Losh Date: Tue, 25 Oct 2005 20:07:47 +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/sbin/devd devd.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, 25 Oct 2005 20:07:48 -0000 imp 2005-10-25 20:07:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sbin/devd devd.cc Log: MFC: 1.26 Approved by: re@ (scottl) Revision Changes Path 1.22.2.3.2.1 +1 -1 src/sbin/devd/devd.cc From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:07:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B14416A420; Tue, 25 Oct 2005 20:07:53 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F177643D4C; Tue, 25 Oct 2005 20:07:51 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PK7pW4044988; Tue, 25 Oct 2005 20:07:51 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PK7pWK044987; Tue, 25 Oct 2005 20:07:51 GMT (envelope-from njl) Message-Id: <200510252007.j9PK7pWK044987@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 20:07:51 +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/usr.sbin/powerd powerd.8 powerd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 20:07:53 -0000 njl 2005-10-25 20:07:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) usr.sbin/powerd powerd.8 powerd.c Log: MFC: powerd.c rev 1.6.2.3, powerd.8 rev 1.5.2.1 Approved by: re (scottl) Revision Changes Path 1.5.6.1 +1 -1 src/usr.sbin/powerd/powerd.8 1.6.2.2.2.1 +34 -17 src/usr.sbin/powerd/powerd.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:10:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 769E416A41F; Tue, 25 Oct 2005 20:10:59 +0000 (GMT) (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 D2FD943D6B; Tue, 25 Oct 2005 20:10:56 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKAu0Y045148; Tue, 25 Oct 2005 20:10:56 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKAuES045147; Tue, 25 Oct 2005 20:10:56 GMT (envelope-from jhb) Message-Id: <200510252010.j9PKAuES045147@repoman.freebsd.org> From: John Baldwin Date: Tue, 25 Oct 2005 20:10: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/ddb db_command.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 20:10:59 -0000 jhb 2005-10-25 20:10:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ddb db_command.c Log: MFC: Rename 'traceall' to 'alltrace' and add a 'bt' alias for 'trace'. Approved by: re (scottl) Revision Changes Path 1.60.2.2 +2 -1 src/sys/ddb/db_command.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:11:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9ED616A41F; Tue, 25 Oct 2005 20:11:51 +0000 (GMT) (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 4C3DE43D48; Tue, 25 Oct 2005 20:11:51 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKBpU1045223; Tue, 25 Oct 2005 20:11:51 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKBp0K045222; Tue, 25 Oct 2005 20:11:51 GMT (envelope-from oliver) Message-Id: <200510252011.j9PKBp0K045222@repoman.freebsd.org> From: Oliver Lehmann Date: Tue, 25 Oct 2005 20:11: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/cyphesis 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, 25 Oct 2005 20:11:51 -0000 oliver 2005-10-25 20:11:51 UTC FreeBSD ports repository Modified files: net/cyphesis Makefile distinfo Log: update to 0.5.2 Revision Changes Path 1.5 +2 -2 ports/net/cyphesis/Makefile 1.3 +2 -2 ports/net/cyphesis/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:11:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D520B16A420; Tue, 25 Oct 2005 20:11:58 +0000 (GMT) (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 92CD743D46; Tue, 25 Oct 2005 20:11:58 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKBwrX045252; Tue, 25 Oct 2005 20:11:58 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKBwnm045251; Tue, 25 Oct 2005 20:11:58 GMT (envelope-from jhb) Message-Id: <200510252011.j9PKBwnm045251@repoman.freebsd.org> From: John Baldwin Date: Tue, 25 Oct 2005 20:11:58 +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/sys/ddb db_command.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 20:11:59 -0000 jhb 2005-10-25 20:11:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/ddb db_command.c Log: MF6: Rename 'traceall' to 'alltrace' and add a 'bt' alias for 'trace'. Approved by: re (scottl) Revision Changes Path 1.60.2.1.2.1 +2 -1 src/sys/ddb/db_command.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:14:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B8CC16A41F; Tue, 25 Oct 2005 20:14:10 +0000 (GMT) (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 420CE43D55; Tue, 25 Oct 2005 20:14:05 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKE5i5045375; Tue, 25 Oct 2005 20:14:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKE5JS045374; Tue, 25 Oct 2005 20:14:05 GMT (envelope-from jhb) Message-Id: <200510252014.j9PKE5JS045374@repoman.freebsd.org> From: John Baldwin Date: Tue, 25 Oct 2005 20:14: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/sys/kern subr_witness.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 20:14:10 -0000 jhb 2005-10-25 20:14:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern subr_witness.c Log: MFC: Don't panic if a spin lock is initialized that isn't in our static order list. Just warn about it instead. Approved by: re (scottl) Revision Changes Path 1.195.2.4 +16 -7 src/sys/kern/subr_witness.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:17:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C97A216A41F; Tue, 25 Oct 2005 20:17:11 +0000 (GMT) (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 869AE43D4C; Tue, 25 Oct 2005 20:17:11 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKHB5D045535; Tue, 25 Oct 2005 20:17:11 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKHBgM045534; Tue, 25 Oct 2005 20:17:11 GMT (envelope-from jhb) Message-Id: <200510252017.j9PKHBgM045534@repoman.freebsd.org> From: John Baldwin Date: Tue, 25 Oct 2005 20:17:11 +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/sys/kern subr_witness.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 20:17:12 -0000 jhb 2005-10-25 20:17:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/kern subr_witness.c Log: MF6: Don't panic if a spin lock is initialized that isn't in our static order list. Just warn about it instead. Approved by: re (scottl) Revision Changes Path 1.195.2.3.2.1 +16 -7 src/sys/kern/subr_witness.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:28:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 978B516A41F; Tue, 25 Oct 2005 20:28:14 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5135343D48; Tue, 25 Oct 2005 20:28:14 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKSEiv046138; Tue, 25 Oct 2005 20:28:14 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKSEHs046137; Tue, 25 Oct 2005 20:28:14 GMT (envelope-from remko) Message-Id: <200510252028.j9PKSEHs046137@repoman.freebsd.org> From: Remko Lodder Date: Tue, 25 Oct 2005 20:28: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/share/sgml usergroups.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, 25 Oct 2005 20:28:14 -0000 remko 2005-10-25 20:28:14 UTC FreeBSD doc repository Modified files: share/sgml usergroups.xml Log: Fix a lot of typo's and faults i made when typing over the old usergroups to XML. PR: www/87307 Submitted by: Rudolf Cejka Revision Changes Path 1.17 +34 -34 www/share/sgml/usergroups.xml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:29:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D023616A41F; Tue, 25 Oct 2005 20:29:28 +0000 (GMT) (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 226A643D78; Tue, 25 Oct 2005 20:29:24 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKTOTV046223; Tue, 25 Oct 2005 20:29:24 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKTOZY046222; Tue, 25 Oct 2005 20:29:24 GMT (envelope-from markus) Message-Id: <200510252029.j9PKTOZY046222@repoman.freebsd.org> From: Markus Brueffer Date: Tue, 25 Oct 2005 20:29: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/deskutils/superkaramba 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, 25 Oct 2005 20:29:29 -0000 markus 2005-10-25 20:29:23 UTC FreeBSD ports repository Modified files: deskutils/superkaramba Makefile Log: - Don't overwrite LIB_DEPENDS and RUN_DEPENDS if options are set - Bump PORTREVISION PR: ports/87489 Submitted by: Antonin Bonte Revision Changes Path 1.15 +3 -3 ports/deskutils/superkaramba/Makefile From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:33:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D09316A41F; Tue, 25 Oct 2005 20:33:32 +0000 (GMT) (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 099C143D45; Tue, 25 Oct 2005 20:33:32 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKXVAT046405; Tue, 25 Oct 2005 20:33:31 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKXVu4046404; Tue, 25 Oct 2005 20:33:31 GMT (envelope-from kris) Message-Id: <200510252033.j9PKXVu4046404@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 25 Oct 2005 20:33:31 +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/nullfs null_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, 25 Oct 2005 20:33:32 -0000 kris 2005-10-25 20:33:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/fs/nullfs null_vfsops.c Log: MFC 1.73: Reflect mpsafety of the underlying filesystem in the nullfs image. Approved by: re (scottl) Revision Changes Path 1.72.2.1 +1 -0 src/sys/fs/nullfs/null_vfsops.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:34:00 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7572716A41F; Tue, 25 Oct 2005 20:34:00 +0000 (GMT) (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 32E2343D4C; Tue, 25 Oct 2005 20:34:00 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKY0ua046455; Tue, 25 Oct 2005 20:34:00 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKY0vs046454; Tue, 25 Oct 2005 20:34:00 GMT (envelope-from kris) Message-Id: <200510252034.j9PKY0vs046454@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 25 Oct 2005 20:34:00 +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/sys/fs/nullfs null_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, 25 Oct 2005 20:34:00 -0000 kris 2005-10-25 20:34:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/fs/nullfs null_vfsops.c Log: MFC 1.73: Reflect mpsafety of the underlying filesystem in the nullfs image. Approved by: re (scottl) Revision Changes Path 1.72.4.1 +1 -0 src/sys/fs/nullfs/null_vfsops.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:42:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84E7616A41F; Tue, 25 Oct 2005 20:42:07 +0000 (GMT) (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 42A4C43D48; Tue, 25 Oct 2005 20:42:07 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKg7UC046804; Tue, 25 Oct 2005 20:42:07 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKg7PR046803; Tue, 25 Oct 2005 20:42:07 GMT (envelope-from kris) Message-Id: <200510252042.j9PKg7PR046803@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 25 Oct 2005 20:42: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/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: Tue, 25 Oct 2005 20:42:07 -0000 kris 2005-10-25 20:42:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_subr.c Log: MFC r1.650: Default to mpsafevfs=1 on sparc64 Approved by: re (scottl) Revision Changes Path 1.635.2.10 +2 -1 src/sys/kern/vfs_subr.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:43:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F2F216A41F; Tue, 25 Oct 2005 20:43:26 +0000 (GMT) (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 E08A143D46; Tue, 25 Oct 2005 20:43:25 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKhP33046891; Tue, 25 Oct 2005 20:43:25 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKhPuq046890; Tue, 25 Oct 2005 20:43:25 GMT (envelope-from kris) Message-Id: <200510252043.j9PKhPuq046890@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 25 Oct 2005 20:43:25 +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/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: Tue, 25 Oct 2005 20:43:26 -0000 kris 2005-10-25 20:43:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/kern vfs_subr.c Log: MFC r1.650: Default to mpsafevfs=1 on sparc64 Approved by: re (scottl) Revision Changes Path 1.635.2.9.2.1 +2 -1 src/sys/kern/vfs_subr.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:51:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFA7416A41F; Tue, 25 Oct 2005 20:51:25 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE07743D46; Tue, 25 Oct 2005 20:51:25 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKpPEu054517; Tue, 25 Oct 2005 20:51:25 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKpPMT054516; Tue, 25 Oct 2005 20:51:25 GMT (envelope-from njl) Message-Id: <200510252051.j9PKpPMT054516@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 20:51: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/dev/acpica acpi.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 20:51:26 -0000 njl 2005-10-25 20:51:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/acpica acpi.c Log: MFC rev 1.216: Don't disable PCI link devices even when they're !enabled Approved by: re (scottl) Revision Changes Path 1.214.2.1 +6 -1 src/sys/dev/acpica/acpi.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:51:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E04816A41F; Tue, 25 Oct 2005 20:51:59 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFC6543D53; Tue, 25 Oct 2005 20:51:58 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKpwBr054563; Tue, 25 Oct 2005 20:51:58 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKpwMT054562; Tue, 25 Oct 2005 20:51:58 GMT (envelope-from njl) Message-Id: <200510252051.j9PKpwMT054562@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 20:51:58 +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/sys/dev/acpica acpi.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 20:51:59 -0000 njl 2005-10-25 20:51:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/acpica acpi.c Log: MFC rev 1.214.2.1: Don't disable PCI link devices even when they're !enabled Approved by: re (scottl) Revision Changes Path 1.214.4.1 +6 -1 src/sys/dev/acpica/acpi.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:52:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8901D16A41F; Tue, 25 Oct 2005 20:52:44 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4741043D46; Tue, 25 Oct 2005 20:52:44 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKqivE054606; Tue, 25 Oct 2005 20:52:44 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKqib2054605; Tue, 25 Oct 2005 20:52:44 GMT (envelope-from njl) Message-Id: <200510252052.j9PKqib2054605@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 20:52: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/cpufreq p4tcc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 20:52:44 -0000 njl 2005-10-25 20:52:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/i386/cpufreq p4tcc.c Log: MFC rev 1.12: set to 100% on boot Approved by: re (scottl) Revision Changes Path 1.11.2.1 +8 -0 src/sys/i386/cpufreq/p4tcc.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:53:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4548516A41F; Tue, 25 Oct 2005 20:53:23 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0388843D45; Tue, 25 Oct 2005 20:53:23 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKrMGE054684; Tue, 25 Oct 2005 20:53:22 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKrMFH054683; Tue, 25 Oct 2005 20:53:22 GMT (envelope-from njl) Message-Id: <200510252053.j9PKrMFH054683@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 20:53:22 +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/sys/i386/cpufreq p4tcc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 20:53:23 -0000 njl 2005-10-25 20:53:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/i386/cpufreq p4tcc.c Log: MFC rev 1.11.2.1: set to 100% on boot Approved by: re (scottl) Revision Changes Path 1.11.6.1 +8 -0 src/sys/i386/cpufreq/p4tcc.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:56:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8904416A41F; Tue, 25 Oct 2005 20:56:12 +0000 (GMT) (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 48FF843D45; Tue, 25 Oct 2005 20:56:12 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKuC25054880; Tue, 25 Oct 2005 20:56:12 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKuC6F054879; Tue, 25 Oct 2005 20:56:12 GMT (envelope-from ru) Message-Id: <200510252056.j9PKuC6F054879@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 25 Oct 2005 20:56: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/netgraph ng_split.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, 25 Oct 2005 20:56:12 -0000 ru 2005-10-25 20:56:12 UTC FreeBSD src repository Modified files: sys/netgraph ng_split.h Log: Make the cookie constant name canonical. Revision Changes Path 1.5 +1 -1 src/sys/netgraph/ng_split.h From owner-cvs-all@FreeBSD.ORG Tue Oct 25 20:58:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DF2316A41F; Tue, 25 Oct 2005 20:58:31 +0000 (GMT) (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 F19D643D4C; Tue, 25 Oct 2005 20:58:30 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKwULm054996; Tue, 25 Oct 2005 20:58:30 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKwUp0054995; Tue, 25 Oct 2005 20:58:30 GMT (envelope-from ru) Message-Id: <200510252058.j9PKwUp0054995@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 25 Oct 2005 20:58: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/lib/libnetgraph 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: Tue, 25 Oct 2005 20:58:31 -0000 ru 2005-10-25 20:58:30 UTC FreeBSD src repository Modified files: lib/libnetgraph debug.c Log: Recognize all current standard node types. Revision Changes Path 1.9 +42 -4 src/lib/libnetgraph/debug.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 21:15:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9B3016A41F; Tue, 25 Oct 2005 21:15:47 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9A1B43D45; Tue, 25 Oct 2005 21:15:47 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PLFlq5055906; Tue, 25 Oct 2005 21:15:47 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PLFl72055905; Tue, 25 Oct 2005 21:15:47 GMT (envelope-from njl) Message-Id: <200510252115.j9PLFl72055905@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 21:15: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/dev/acpica acpi_cpu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 21:15:48 -0000 njl 2005-10-25 21:15:47 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_cpu.c Log: If we're trying to use C2/3 and reads from the register are returning immediately, back off to the next higher Cx sleep state. Some machines with a Via chipset report a valid C3 but a register read doesn't actually halt the CPU. This would cause the machine to appear unresponsive as it repeatedly called cpu_idle() which immediately returned. Causing interrupts (i.e. by pressing the power button) would cause the system to make forward progress, showing that it wasn't actually hung. Also, enable interrupts a little earlier. We don't need them disabled to calculate the delta time for the read. Reported by: silby MFC after: 2 weeks Revision Changes Path 1.59 +24 -3 src/sys/dev/acpica/acpi_cpu.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 21:31:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7035316A41F; Tue, 25 Oct 2005 21:31:23 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E8E743D48; Tue, 25 Oct 2005 21:31:23 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PLVNWv059346; Tue, 25 Oct 2005 21:31:23 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PLVNfw059339; Tue, 25 Oct 2005 21:31:23 GMT (envelope-from grehan) Message-Id: <200510252131.j9PLVNfw059339@repoman.freebsd.org> From: Peter Grehan Date: Tue, 25 Oct 2005 21:31: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/zs zs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 21:31:23 -0000 grehan 2005-10-25 21:31:22 UTC FreeBSD src repository Modified files: sys/dev/zs zs.c Log: Catch up with interrupt-thread changes. Revision Changes Path 1.32 +1 -1 src/sys/dev/zs/zs.c From owner-cvs-all@FreeBSD.ORG Tue Oct 25 21:35:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C802E16A41F; Tue, 25 Oct 2005 21:35:24 +0000 (GMT) (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 5366543D48; Tue, 25 Oct 2005 21:35:24 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PLZOux061913; Tue, 25 Oct 2005 21:35:24 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PLZO1G061909; Tue, 25 Oct 2005 21:35:24 GMT (envelope-from dinoex) Message-Id: <200510252135.j9PLZO1G061909@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 25 Oct 2005 21:35: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-wm/afterstep 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, 25 Oct 2005 21:35:25 -0000 dinoex 2005-10-25 21:35:24 UTC FreeBSD ports repository Modified files: x11-wm/afterstep Makefile pkg-plist Log: - fix option WITH_HICOLOR_ICONS Revision Changes Path 1.49 +3 -1 ports/x11-wm/afterstep/Makefile 1.18 +1 -0 ports/x11-wm/afterstep/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Oct 25 21:36:18 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B393316A41F; Tue, 25 Oct 2005 21:36:18 +0000 (GMT) (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 703C543D45; Tue, 25 Oct 2005 21:36:18 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PLaIwn062186; Tue, 25 Oct 2005 21:36:18 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PLaIbx062185; Tue, 25 Oct 2005 21:36:18 GMT (envelope-from ehaupt) Message-Id: <200510252136.j9PLaIbx062185@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 25 Oct 2005 21: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/security/cksfv 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, 25 Oct 2005 21:36:18 -0000 ehaupt 2005-10-25 21:36:18 UTC FreeBSD ports repository Modified files: security/cksfv Makefile distinfo Log: - Update to 1.3.7 - Provide PORTDOCS - Provide additional master site Revision Changes Path 1.11 +16 -4 ports/security/cksfv/Makefile 1.7 +2 -2 ports/security/cksfv/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 21:58:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 084FB16A41F; Tue, 25 Oct 2005 21:58:11 +0000 (GMT) (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 B7F9C43D46; Tue, 25 Oct 2005 21:58:10 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PLwAJo070307; Tue, 25 Oct 2005 21:58:10 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PLwAK0070306; Tue, 25 Oct 2005 21:58:10 GMT (envelope-from ehaupt) Message-Id: <200510252158.j9PLwAK0070306@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 25 Oct 2005 21:58: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/textproc/uni2ascii 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, 25 Oct 2005 21:58:11 -0000 ehaupt 2005-10-25 21:58:10 UTC FreeBSD ports repository Modified files: textproc/uni2ascii Makefile distinfo Log: Update to 2.6 Revision Changes Path 1.5 +2 -2 ports/textproc/uni2ascii/Makefile 1.4 +2 -2 ports/textproc/uni2ascii/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 22:06:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2863A16A41F; Tue, 25 Oct 2005 22:06:22 +0000 (GMT) (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 D954343D48; Tue, 25 Oct 2005 22:06:21 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PM6LEh074904; Tue, 25 Oct 2005 22:06:21 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PM6LKF074903; Tue, 25 Oct 2005 22:06:21 GMT (envelope-from thierry) Message-Id: <200510252206.j9PM6LKF074903@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 25 Oct 2005 22:06: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/x11/rxvt-unicode 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, 25 Oct 2005 22:06:22 -0000 thierry 2005-10-25 22:06:21 UTC FreeBSD ports repository Modified files: x11/rxvt-unicode Makefile distinfo Log: Upgrade to 5.8. Changelog at . Revision Changes Path 1.83 +1 -2 ports/x11/rxvt-unicode/Makefile 1.37 +2 -2 ports/x11/rxvt-unicode/distinfo From owner-cvs-all@FreeBSD.ORG Tue Oct 25 22:15:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66F1C16A41F; Tue, 25 Oct 2005 22:15:19 +0000 (GMT) (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 23BB643D46; Tue, 25 Oct 2005 22:15:19 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PMFI8T078617; Tue, 25 Oct 2005 22:15:19 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PMFIVe078616; Tue, 25 Oct 2005 22:15:18 GMT (envelope-from ehaupt) Message-Id: <200510252215.j9PMFIVe078616@repoman.freebsd.org> From: Emanuel Haupt Date: Tue, 25 Oct 2005 22:15: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/comms/xastir 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, 25 Oct 2005 22:15:19 -0000 ehaupt 2005-10-25 22:15:18 UTC FreeBSD ports repository Modified files: comms/xastir Makefile distinfo pkg-plist Log: Update to 1.7.0 PR: 87976 Submitted by: Carl Makin (maintainer) Revision Changes Path 1.5 +1 -1 ports/comms/xastir/Makefile 1.5 +2 -2 ports/comms/xastir/distinfo 1.5 +7 -1 ports/comms/xastir/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Oct 25 22:45:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1050516A41F; Tue, 25 Oct 2005 22:45:41 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD41F43D48; Tue, 25 Oct 2005 22:45:40 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 639753093; Tue, 25 Oct 2005 17:45:40 -0500 (CDT) Date: Tue, 25 Oct 2005 17:45:40 -0500 To: John Baldwin Message-ID: <20051025224540.GB4123@soaustin.net> References: <200510251948.j9PJmmmj043891@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510251948.j9PJmmmj043891@repoman.freebsd.org> User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_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: Tue, 25 Oct 2005 22:45:41 -0000 On Tue, Oct 25, 2005 at 07:48:48PM +0000, John Baldwin wrote: > Reorganize the interrupt handling code a bit to make a few things cleaner > and increase flexibility to allow various different approaches to be tried > in the future. Wow. Having (in a previous existance) worked on real-time OS interrupt handlers I can likely guess how much work went into this. Nice. mcl From owner-cvs-all@FreeBSD.ORG Tue Oct 25 22:55:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8994916A41F; Tue, 25 Oct 2005 22:55:11 +0000 (GMT) (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 42D0C43D49; Tue, 25 Oct 2005 22:55:11 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PMtB3t089900; Tue, 25 Oct 2005 22:55:11 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PMtAqL089895; Tue, 25 Oct 2005 22:55:10 GMT (envelope-from ceri) Message-Id: <200510252255.j9PMtAqL089895@repoman.freebsd.org> From: Ceri Davies Date: Tue, 25 Oct 2005 22:55:10 +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: Tue, 25 Oct 2005 22:55:11 -0000 ceri 2005-10-25 22:55:10 UTC FreeBSD doc repository Modified files: en/donations wantlist.sgml Log: The power adapter on my laptop just melted itself in fast. Nice. Revision Changes Path 1.368 +4 -3 www/en/donations/wantlist.sgml From owner-cvs-all@FreeBSD.ORG Tue Oct 25 23:53:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7992116A41F; Tue, 25 Oct 2005 23:53:36 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AE7B43D58; Tue, 25 Oct 2005 23:53:34 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PNrYhX005067; Tue, 25 Oct 2005 23:53:34 GMT (envelope-from jcamou@repoman.freebsd.org) Received: (from jcamou@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PNrYa5005063; Tue, 25 Oct 2005 23:53:34 GMT (envelope-from jcamou) Message-Id: <200510252353.j9PNrYa5005063@repoman.freebsd.org> From: "Jesus R. Camou" Date: Tue, 25 Oct 2005 23:53:34 +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/es about.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: Tue, 25 Oct 2005 23:53:36 -0000 jcamou 2005-10-25 23:53:34 UTC FreeBSD doc repository Modified files: es about.sgml Log: o Use lowercase tags for consistency. o Fix some words. o General indentation cleaning. Approved by: jesusr (mentor) Revision Changes Path 1.3 +12 -15 www/es/about.sgml From owner-cvs-all@FreeBSD.ORG Wed Oct 26 00:06:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC31D16A41F; Wed, 26 Oct 2005 00:06:58 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9CBB43D45; Wed, 26 Oct 2005 00:06:58 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q06wF5007594; Wed, 26 Oct 2005 00:06:58 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q06wkG007593; Wed, 26 Oct 2005 00:06:58 GMT (envelope-from peter) Message-Id: <200510260006.j9Q06wkG007593@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 00:06: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/lib/libkvm kvm_amd64.c kvm_i386.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 00:06:59 -0000 peter 2005-10-26 00:06:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libkvm kvm_amd64.c kvm_i386.c Log: MFC: Fix fencepost error that made libkvm fail to read crashdumps. Approved by: re Revision Changes Path 1.18.2.1 +3 -3 src/lib/libkvm/kvm_amd64.c 1.17.2.1 +4 -4 src/lib/libkvm/kvm_i386.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 00:07:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4075716A423; Wed, 26 Oct 2005 00:07:26 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A80F243D5D; Wed, 26 Oct 2005 00:07:25 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q07P66007677; Wed, 26 Oct 2005 00:07:25 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q07Pl8007676; Wed, 26 Oct 2005 00:07:25 GMT (envelope-from peter) Message-Id: <200510260007.j9Q07Pl8007676@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 00:07:25 +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/lib/libkvm kvm_amd64.c kvm_i386.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 00:07:26 -0000 peter 2005-10-26 00:07:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) lib/libkvm kvm_amd64.c kvm_i386.c Log: MFC: Fix fencepost error that made libkvm fail to read crashdumps. Approved by: re Revision Changes Path 1.18.4.1 +3 -3 src/lib/libkvm/kvm_amd64.c 1.17.4.1 +4 -4 src/lib/libkvm/kvm_i386.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 00:15:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06F0516A41F; Wed, 26 Oct 2005 00:15:47 +0000 (GMT) (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 A952E43D48; Wed, 26 Oct 2005 00:15:46 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q0FkEW009201; Wed, 26 Oct 2005 00:15:46 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q0FkDM009200; Wed, 26 Oct 2005 00:15:46 GMT (envelope-from mnag) Message-Id: <200510260015.j9Q0FkDM009200@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 00:15: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/deskutils/gdesklets 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, 26 Oct 2005 00:15:47 -0000 mnag 2005-10-26 00:15:46 UTC FreeBSD ports repository Modified files: deskutils/gdesklets Makefile distinfo pkg-plist Log: Update to 0.35.2 PR: 87980 Submitted by: Franz Klammer (maintainer) Revision Changes Path 1.40 +1 -2 ports/deskutils/gdesklets/Makefile 1.20 +2 -2 ports/deskutils/gdesklets/distinfo 1.18 +10 -1 ports/deskutils/gdesklets/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 00:30:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45B2F16A41F; Wed, 26 Oct 2005 00:30:47 +0000 (GMT) (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 0CAE143D45; Wed, 26 Oct 2005 00:30:47 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q0UkLT012154; Wed, 26 Oct 2005 00:30:46 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q0Uk11012153; Wed, 26 Oct 2005 00:30:46 GMT (envelope-from mnag) Message-Id: <200510260030.j9Q0Uk11012153@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 00: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/www/awstats Makefile pkg-message ports/www/awstats/files patch-tools-awstats_buildstaticpages.pl patch-tools-awstats_configure.pl patch-tools-awstats_updateall.pl patch-wwwroot-cgi-bin-awstats.pl 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: Wed, 26 Oct 2005 00:30:47 -0000 mnag 2005-10-26 00:30:46 UTC FreeBSD ports repository Modified files: www/awstats Makefile Added files: www/awstats/files patch-tools-awstats_buildstaticpages.pl patch-tools-awstats_configure.pl patch-tools-awstats_updateall.pl patch-wwwroot-cgi-bin-awstats.pl pkg-message.in Removed files: www/awstats pkg-message Log: Respect PREFIX PR: 86481 Submitted by: Naram Qashat Approved by: webmaster@lightningfire.net (maintainer timeout, 32 days) Revision Changes Path 1.25 +15 -7 ports/www/awstats/Makefile 1.1 +13 -0 ports/www/awstats/files/patch-tools-awstats_buildstaticpages.pl (new) 1.1 +17 -0 ports/www/awstats/files/patch-tools-awstats_configure.pl (new) 1.1 +13 -0 ports/www/awstats/files/patch-tools-awstats_updateall.pl (new) 1.1 +11 -0 ports/www/awstats/files/patch-wwwroot-cgi-bin-awstats.pl (new) 1.1 +22 -0 ports/www/awstats/files/pkg-message.in (new) 1.2 +0 -22 ports/www/awstats/pkg-message (dead) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 00:39:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EA7116A41F; Wed, 26 Oct 2005 00:39:01 +0000 (GMT) (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 E3E8843D48; Wed, 26 Oct 2005 00:39:00 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q0d0Ar013590; Wed, 26 Oct 2005 00:39:00 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q0d057013589; Wed, 26 Oct 2005 00:39:00 GMT (envelope-from mnag) Message-Id: <200510260039.j9Q0d057013589@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 00:39: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/py-gdchart2 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, 26 Oct 2005 00:39:01 -0000 mnag 2005-10-26 00:39:00 UTC FreeBSD ports repository Modified files: graphics/py-gdchart2 Makefile Log: Resolve duplicate LATEST_LINK PR: 87999 Submitted by: Choe, Cheng-Dae (maintainer) Revision Changes Path 1.2 +2 -0 ports/graphics/py-gdchart2/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 00:54:05 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5CA916A41F; Wed, 26 Oct 2005 00:54:05 +0000 (GMT) (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 948D543D46; Wed, 26 Oct 2005 00:54:05 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q0s5gV022818; Wed, 26 Oct 2005 00:54:05 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q0s5OA022817; Wed, 26 Oct 2005 00:54:05 GMT (envelope-from mnag) Message-Id: <200510260054.j9Q0s5OA022817@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 00: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/devel/id-utils Makefile distinfo pkg-plist ports/devel/id-utils/files patch-Makefile.in patch-lib::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, 26 Oct 2005 00:54:05 -0000 mnag 2005-10-26 00:54:04 UTC FreeBSD ports repository Modified files: devel/id-utils Makefile distinfo pkg-plist Removed files: devel/id-utils/files patch-Makefile.in patch-lib::Makefile.in Log: Update to 4.0 PR: 87992 Submitted by: Vasil Dimov Revision Changes Path 1.27 +2 -2 ports/devel/id-utils/Makefile 1.4 +2 -2 ports/devel/id-utils/distinfo 1.2 +0 -11 ports/devel/id-utils/files/patch-Makefile.in (dead) 1.2 +0 -45 ports/devel/id-utils/files/patch-lib::Makefile.in (dead) 1.7 +2 -0 ports/devel/id-utils/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 00:55:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 445E316A41F; Wed, 26 Oct 2005 00:55:23 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D071743D58; Wed, 26 Oct 2005 00:55:22 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q0tMpf023021; Wed, 26 Oct 2005 00:55:22 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q0tMk8023020; Wed, 26 Oct 2005 00:55:22 GMT (envelope-from grehan) Message-Id: <200510260055.j9Q0tMk8023020@repoman.freebsd.org> From: Peter Grehan Date: Wed, 26 Oct 2005 00:55: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/mii brgphy.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 00:55:23 -0000 grehan 2005-10-26 00:55:22 UTC FreeBSD src repository Modified files: sys/dev/mii brgphy.c Log: Oops, forgot to add in r1.36 - MFC after: 1 day (it's been in HEAD for quite a while now..) Revision Changes Path 1.37 +0 -0 src/sys/dev/mii/brgphy.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 01:01:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6302516A41F; Wed, 26 Oct 2005 01:01:31 +0000 (GMT) (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 20BA343D45; Wed, 26 Oct 2005 01:01:31 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q11VvR024290; Wed, 26 Oct 2005 01:01:31 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q11UPh024289; Wed, 26 Oct 2005 01:01:30 GMT (envelope-from mnag) Message-Id: <200510260101.j9Q11UPh024289@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 01: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/devel/py-ll-core 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, 26 Oct 2005 01:01:31 -0000 mnag 2005-10-26 01:01:30 UTC FreeBSD ports repository Modified files: devel/py-ll-core Makefile distinfo pkg-plist Log: Update to 1.0.2 PR: 87994 Submitted by: Choe, Cheng-Dae (maintainer) Revision Changes Path 1.2 +1 -1 ports/devel/py-ll-core/Makefile 1.2 +2 -2 ports/devel/py-ll-core/distinfo 1.2 +24 -1 ports/devel/py-ll-core/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 01:21:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5CEA16A41F; Wed, 26 Oct 2005 01:21:42 +0000 (GMT) (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 7234143D45; Wed, 26 Oct 2005 01:21:42 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q1LgnQ028008; Wed, 26 Oct 2005 01:21:42 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q1LgBw028007; Wed, 26 Oct 2005 01:21:42 GMT (envelope-from mnag) Message-Id: <200510260121.j9Q1LgBw028007@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 01:21: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/pear-HTML_Template_Sigma 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, 26 Oct 2005 01:21:42 -0000 mnag 2005-10-26 01:21:42 UTC FreeBSD ports repository Modified files: devel/pear-HTML_Template_Sigma Makefile distinfo Log: Update to 1.1.3 PR: 87979 Submitted by: Franz Klammer (maintainer) Revision Changes Path 1.2 +1 -1 ports/devel/pear-HTML_Template_Sigma/Makefile 1.2 +2 -2 ports/devel/pear-HTML_Template_Sigma/distinfo From owner-cvs-all@FreeBSD.ORG Wed Oct 26 01:30:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C60BC16A41F; Wed, 26 Oct 2005 01:30:48 +0000 (GMT) (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 814FF43D46; Wed, 26 Oct 2005 01:30:48 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q1Umv3030165; Wed, 26 Oct 2005 01:30:48 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q1UmgO030164; Wed, 26 Oct 2005 01:30:48 GMT (envelope-from mnag) Message-Id: <200510260130.j9Q1UmgO030164@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 01:30: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/py-beautifulsoup 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, 26 Oct 2005 01:30:49 -0000 mnag 2005-10-26 01:30:48 UTC FreeBSD ports repository Modified files: www/py-beautifulsoup Makefile distinfo pkg-plist Log: Update to 2.1.1 PR: 86358 Submitted by: Choe, Cheng-Dae Approved by: mwm@mired.org (maintainer timeout, 35 days) Revision Changes Path 1.2 +2 -4 ports/www/py-beautifulsoup/Makefile 1.2 +2 -2 ports/www/py-beautifulsoup/distinfo 1.2 +6 -6 ports/www/py-beautifulsoup/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 01:42:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1574116A41F; Wed, 26 Oct 2005 01:42:19 +0000 (GMT) (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 C8D6C43D45; Wed, 26 Oct 2005 01:42:18 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q1gIxY032072; Wed, 26 Oct 2005 01:42:18 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q1gIU2032071; Wed, 26 Oct 2005 01:42:18 GMT (envelope-from mnag) Message-Id: <200510260142.j9Q1gIU2032071@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 01:42: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/amap 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, 26 Oct 2005 01:42:19 -0000 mnag 2005-10-26 01:42:18 UTC FreeBSD ports repository Modified files: security/amap Makefile distinfo Log: Update to 5.2 PR: 87401 Submitted by: Frank Laszlo Approved by: Jonatan B (maintainer) Revision Changes Path 1.15 +1 -1 ports/security/amap/Makefile 1.13 +2 -2 ports/security/amap/distinfo From owner-cvs-all@FreeBSD.ORG Wed Oct 26 01:49:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30F3816A41F; Wed, 26 Oct 2005 01:49:12 +0000 (GMT) (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 E2EF343D45; Wed, 26 Oct 2005 01:49:11 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q1nBpW032831; Wed, 26 Oct 2005 01:49:11 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q1nBEN032830; Wed, 26 Oct 2005 01:49:11 GMT (envelope-from marcel) Message-Id: <200510260149.j9Q1nBEN032830@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 26 Oct 2005 01:49: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/dev/uart uart_bus_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: Wed, 26 Oct 2005 01:49:12 -0000 marcel 2005-10-26 01:49:11 UTC FreeBSD src repository Modified files: sys/dev/uart uart_bus_pci.c Log: Remove PCI IDs for multiport cards: o Oxford Semiconductor PCI Dual Port Serial o Netmos Nm9845 PCI Bridge with Dual UART Add PCI IDs for single-port cards: o Various SIIG Cyber Serial o Oxford Semiconductor OXCB950 UART Update description as per puc(4). Revision Changes Path 1.6 +15 -10 src/sys/dev/uart/uart_bus_pci.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 01:56:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93A4916A41F; Wed, 26 Oct 2005 01:56:06 +0000 (GMT) (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 6411143D46; Wed, 26 Oct 2005 01:56:06 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q1u6gk034579; Wed, 26 Oct 2005 01:56:06 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q1u6k6034578; Wed, 26 Oct 2005 01:56:06 GMT (envelope-from kuriyama) Message-Id: <200510260156.j9Q1u6k6034578@repoman.freebsd.org> From: Jun Kuriyama Date: Wed, 26 Oct 2005 01:56: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/devel Makefile ports/devel/p5-UNIVERSAL-require 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, 26 Oct 2005 01:56:06 -0000 kuriyama 2005-10-26 01:56:06 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-UNIVERSAL-require Makefile distinfo pkg-descr pkg-plist Log: Add p5-UNIVERSAL-require 0.10, perl module to require() from a variable. Revision Changes Path 1.2008 +1 -0 ports/devel/Makefile 1.1 +22 -0 ports/devel/p5-UNIVERSAL-require/Makefile (new) 1.1 +2 -0 ports/devel/p5-UNIVERSAL-require/distinfo (new) 1.1 +17 -0 ports/devel/p5-UNIVERSAL-require/pkg-descr (new) 1.1 +5 -0 ports/devel/p5-UNIVERSAL-require/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 01:56:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D714716A420; Wed, 26 Oct 2005 01:56:17 +0000 (GMT) (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 9791343D45; Wed, 26 Oct 2005 01:56:17 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q1uHTT034631; Wed, 26 Oct 2005 01:56:17 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q1uH6I034630; Wed, 26 Oct 2005 01:56:17 GMT (envelope-from kuriyama) Message-Id: <200510260156.j9Q1uH6I034630@repoman.freebsd.org> From: Jun Kuriyama Date: Wed, 26 Oct 2005 01:56: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: Wed, 26 Oct 2005 01:56:18 -0000 kuriyama 2005-10-26 01:56:17 UTC FreeBSD ports repository Modified files: . modules Log: p5-UNIVERSAL-require --> ports/devel/p5-UNIVERSAL-require Revision Changes Path 1.13464 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Oct 26 02:17:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46A0616A41F; Wed, 26 Oct 2005 02:17:17 +0000 (GMT) (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 044FE43D45; Wed, 26 Oct 2005 02:17:17 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q2HG8i039406; Wed, 26 Oct 2005 02:17:16 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q2HGN4039405; Wed, 26 Oct 2005 02:17:16 GMT (envelope-from mnag) Message-Id: <200510260217.j9Q2HGN4039405@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 02:17: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/x11-clocks/wmbday/files BSDmakefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 02:17:17 -0000 mnag 2005-10-26 02:17:16 UTC FreeBSD ports repository Modified files: x11-clocks/wmbday/files BSDmakefile Log: Respect X11BASE PR: 87970 Submitted by: Ulrich Spoerlein (maintainer) Notified by: kris Revision Changes Path 1.2 +2 -2 ports/x11-clocks/wmbday/files/BSDmakefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 02:22:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C94916A41F; Wed, 26 Oct 2005 02:22:30 +0000 (GMT) (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 54D9D43D68; Wed, 26 Oct 2005 02:22:28 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q2MS2Q039926; Wed, 26 Oct 2005 02:22:28 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q2MSfF039925; Wed, 26 Oct 2005 02:22:28 GMT (envelope-from marcel) Message-Id: <200510260222.j9Q2MSfF039925@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 26 Oct 2005 02:22: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/gnu/usr.bin/gdb/kgdb 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, 26 Oct 2005 02:22:30 -0000 marcel 2005-10-26 02:22:28 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/kgdb main.c Log: Fix dump of the unread portion of the kernel message buffer. PR: bin/87964 Submitted by: Frank Mayhar frank at exit dot com Revision Changes Path 1.10 +4 -0 src/gnu/usr.bin/gdb/kgdb/main.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 03:24:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B49216A41F; Wed, 26 Oct 2005 03:24:29 +0000 (GMT) (envelope-from takawata@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EECF243D45; Wed, 26 Oct 2005 03:24:28 +0000 (GMT) (envelope-from takawata@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q3OSKd045830; Wed, 26 Oct 2005 03:24:28 GMT (envelope-from takawata@repoman.freebsd.org) Received: (from takawata@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q3OSVf045829; Wed, 26 Oct 2005 03:24:28 GMT (envelope-from takawata) Message-Id: <200510260324.j9Q3OSVf045829@repoman.freebsd.org> From: Takanori Watanabe Date: Wed, 26 Oct 2005 03:24: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/geom/label g_label_ntfs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 03:24:29 -0000 takawata 2005-10-26 03:24:28 UTC FreeBSD src repository Modified files: sys/geom/label g_label_ntfs.c Log: Add checking for File record magic. Revision Changes Path 1.3 +6 -0 src/sys/geom/label/g_label_ntfs.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 04:06:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id C27B516A420; Wed, 26 Oct 2005 04:06:57 +0000 (GMT) Date: Wed, 26 Oct 2005 04:06:57 +0000 From: Alexey Dokuchaev To: Cy Schubert Message-ID: <20051026040657.GA28192@FreeBSD.org> References: <200510251543.j9PFhMXW024891@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200510251543.j9PFhMXW024891@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/x11-wm/fvwm2-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, 26 Oct 2005 04:06:57 -0000 On Tue, Oct 25, 2005 at 03:43:21PM +0000, Cy Schubert wrote: > cy 2005-10-25 15:43:21 UTC > > FreeBSD ports repository > > Modified files: > x11-wm/fvwm2-devel Makefile > Log: > Merge in r1.76. > > Revision Changes Path > 1.81 +48 -28 ports/x11-wm/fvwm2-devel/Makefile Hi there, Thanks. However, could you please merge my changes to pkg-plist as well (utilization of %%DATADIR%%). I'll also revive my patch-configure, since we still might need it. I'm under impression that osa@ might actually fix that just before your massive commit, so correct version might be already in repository. ./danfe From owner-cvs-all@FreeBSD.ORG Wed Oct 26 04:12:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 810A216A41F; Wed, 26 Oct 2005 04:12:35 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E28443D46; Wed, 26 Oct 2005 04:12:35 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q4CZjR053255; Wed, 26 Oct 2005 04:12:35 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q4CZfP053254; Wed, 26 Oct 2005 04:12:35 GMT (envelope-from yar) Message-Id: <200510260412.j9Q4CZfP053254@repoman.freebsd.org> From: Yar Tikhiy Date: Wed, 26 Oct 2005 04:12: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/etc rc.subr src/share/man/man8 rc.subr.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: Wed, 26 Oct 2005 04:12:35 -0000 yar 2005-10-26 04:12:34 UTC FreeBSD src repository Modified files: etc rc.subr share/man/man8 rc.subr.8 Log: Document that `reload' is not provided by default yet it can be enabled when applicable. Revision Changes Path 1.41 +2 -0 src/etc/rc.subr 1.7 +11 -1 src/share/man/man8/rc.subr.8 From owner-cvs-all@FreeBSD.ORG Wed Oct 26 04:20:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CA1C16A41F; Wed, 26 Oct 2005 04:20:19 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFAC743D48; Wed, 26 Oct 2005 04:20:18 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q4KICf054313; Wed, 26 Oct 2005 04:20:18 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q4KIaO054312; Wed, 26 Oct 2005 04:20:18 GMT (envelope-from yar) Message-Id: <200510260420.j9Q4KIaO054312@repoman.freebsd.org> From: Yar Tikhiy Date: Wed, 26 Oct 2005 04:20: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/share/man/man8 rc.subr.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: Wed, 26 Oct 2005 04:20:19 -0000 yar 2005-10-26 04:20:18 UTC FreeBSD src repository Modified files: share/man/man8 rc.subr.8 Log: Use consistent punctuation and vertical indenting around .Dl's. Wrap a too long line. Revision Changes Path 1.8 +10 -8 src/share/man/man8/rc.subr.8 From owner-cvs-all@FreeBSD.ORG Wed Oct 26 04:32:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B4CB16A41F; Wed, 26 Oct 2005 04:32:32 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE9B843D45; Wed, 26 Oct 2005 04:32:31 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q4WVkO055223; Wed, 26 Oct 2005 04:32:31 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q4WVBq055222; Wed, 26 Oct 2005 04:32:31 GMT (envelope-from yar) Message-Id: <200510260432.j9Q4WVBq055222@repoman.freebsd.org> From: Yar Tikhiy Date: Wed, 26 Oct 2005 04:32: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/etc rc.subr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 04:32:32 -0000 yar 2005-10-26 04:32:31 UTC FreeBSD src repository Modified files: etc rc.subr Log: Override $command with $foo_program only if $command has been set in the first place. This should reduce unwanted side-effects in rc.d scripts that don't mean to use $command and rc.subr(8) methods associated with it at all. Discussed with: brooks Reviewed by: -rc (silence) Revision Changes Path 1.42 +1 -3 src/etc/rc.subr From owner-cvs-all@FreeBSD.ORG Wed Oct 26 04:37:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E798016A41F; Wed, 26 Oct 2005 04:37:16 +0000 (GMT) (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 A717943D46; Wed, 26 Oct 2005 04:37:16 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q4bGpx055602; Wed, 26 Oct 2005 04:37:16 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q4bGsu055601; Wed, 26 Oct 2005 04:37:16 GMT (envelope-from ahze) Message-Id: <200510260437.j9Q4bGsu055601@repoman.freebsd.org> From: Michael Johnson Date: Wed, 26 Oct 2005 04: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/x11-themes/beastie 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, 26 Oct 2005 04:37:17 -0000 ahze 2005-10-26 04:37:16 UTC FreeBSD ports repository Modified files: x11-themes/beastie Makefile distinfo Log: - Update to 05.10.26 Revision Changes Path 1.3 +1 -1 ports/x11-themes/beastie/Makefile 1.2 +2 -2 ports/x11-themes/beastie/distinfo From owner-cvs-all@FreeBSD.ORG Wed Oct 26 05:57:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA99B16A41F; Wed, 26 Oct 2005 05:57:35 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9729B43D49; Wed, 26 Oct 2005 05:57:35 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q5vZp2076712; Wed, 26 Oct 2005 05:57:35 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q5vZ7J076711; Wed, 26 Oct 2005 05:57:35 GMT (envelope-from yar) Message-Id: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> From: Yar Tikhiy Date: Wed, 26 Oct 2005 05: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/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: Wed, 26 Oct 2005 05:57:36 -0000 yar 2005-10-26 05:57:35 UTC FreeBSD src repository Modified files: sys/netinet ip_carp.c Log: Since carp(4) interfaces presently are kinda fake yet possess IP addresses, mark them with LOOPBACK so that routing daemons take them easy for link-state routing protocols. Reviewed by: glebius Revision Changes Path 1.34 +1 -1 src/sys/netinet/ip_carp.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 06:17:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEDA416A421; Wed, 26 Oct 2005 06:17:02 +0000 (GMT) (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 9CB7643D46; Wed, 26 Oct 2005 06:17:02 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6H2eS081967; Wed, 26 Oct 2005 06:17:02 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6H2sg081963; Wed, 26 Oct 2005 06:17:02 GMT (envelope-from kris) Message-Id: <200510260617.j9Q6H2sg081963@repoman.freebsd.org> From: Kris Kennaway Date: Wed, 26 Oct 2005 06:17: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/devel/bugzilla 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, 26 Oct 2005 06:17:03 -0000 kris 2005-10-26 06:17:02 UTC FreeBSD ports repository Modified files: devel/bugzilla Makefile Log: BROKEN: Missing perl dependency Revision Changes Path 1.41 +2 -0 ports/devel/bugzilla/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 06:17:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6CB216A41F; Wed, 26 Oct 2005 06:17:28 +0000 (GMT) (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 EB01843D5C; Wed, 26 Oct 2005 06:17:27 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6HRKp082377; Wed, 26 Oct 2005 06:17:27 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6HRqh082376; Wed, 26 Oct 2005 06:17:27 GMT (envelope-from ru) Message-Id: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 26 Oct 2005 06:17: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/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 06:17:28 -0000 ru 2005-10-26 06:17:27 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c Log: Catch up with new interrupt handling code. Revision Changes Path 1.16 +3 -3 src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 06:18:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D847C16A41F; Wed, 26 Oct 2005 06:18:02 +0000 (GMT) (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 97B1843D48; Wed, 26 Oct 2005 06:18:02 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6I2vi082987; Wed, 26 Oct 2005 06:18:02 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6I2x2082986; Wed, 26 Oct 2005 06:18:02 GMT (envelope-from kris) Message-Id: <200510260618.j9Q6I2x2082986@repoman.freebsd.org> From: Kris Kennaway Date: Wed, 26 Oct 2005 06:18: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/devel/colorer 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, 26 Oct 2005 06:18:03 -0000 kris 2005-10-26 06:18:02 UTC FreeBSD ports repository Modified files: devel/colorer Makefile Log: BROKEN: Does not build Revision Changes Path 1.7 +2 -0 ports/devel/colorer/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 06:40:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C045316A41F; Wed, 26 Oct 2005 06:40:22 +0000 (GMT) (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 7D44643D45; Wed, 26 Oct 2005 06:40:22 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6eM1T087562; Wed, 26 Oct 2005 06:40:22 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6eMHQ087561; Wed, 26 Oct 2005 06:40:22 GMT (envelope-from ru) Message-Id: <200510260640.j9Q6eMHQ087561@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 26 Oct 2005 06:40: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/cy cy.c src/sys/dev/rc rc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 06:40:22 -0000 ru 2005-10-26 06:40:22 UTC FreeBSD src repository Modified files: sys/dev/cy cy.c sys/dev/rc rc.c Log: Catch up with new interrupt handling code. Revision Changes Path 1.162 +2 -2 src/sys/dev/cy/cy.c 1.101 +2 -2 src/sys/dev/rc/rc.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 06:44:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAA6B16A41F; Wed, 26 Oct 2005 06:44:59 +0000 (GMT) (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 66D9843D4C; Wed, 26 Oct 2005 06:44:59 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6ixnF088882; Wed, 26 Oct 2005 06:44:59 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6ixmT088881; Wed, 26 Oct 2005 06:44:59 GMT (envelope-from ru) Message-Id: <200510260644.j9Q6ixmT088881@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 26 Oct 2005 06:44: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/dev/cx if_cx.c src/sys/dev/sab sab.c src/sys/pc98/cbus sio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 06:44:59 -0000 ru 2005-10-26 06:44:59 UTC FreeBSD src repository Modified files: sys/dev/cx if_cx.c sys/dev/sab sab.c sys/pc98/cbus sio.c Log: Catch up with new interrupt handling code. Revision Changes Path 1.50 +2 -2 src/sys/dev/cx/if_cx.c 1.41 +1 -1 src/sys/dev/sab/sab.c 1.238 +2 -2 src/sys/pc98/cbus/sio.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 06:52:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE74D16A41F; Wed, 26 Oct 2005 06:52:58 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D30543D46; Wed, 26 Oct 2005 06:52:58 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6qwBu090002; Wed, 26 Oct 2005 06:52:58 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6qwQb090001; Wed, 26 Oct 2005 06:52:58 GMT (envelope-from wpaul) Message-Id: <200510260652.j9Q6qwQb090001@repoman.freebsd.org> From: Bill Paul Date: Wed, 26 Oct 2005 06:52: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/compat/ndis kern_ndis.c ntoskrnl_var.h subr_ndis.c subr_ntoskrnl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 06:52:58 -0000 wpaul 2005-10-26 06:52:58 UTC FreeBSD src repository Modified files: sys/compat/ndis kern_ndis.c ntoskrnl_var.h subr_ndis.c subr_ntoskrnl.c Log: Get rid of the timer tracking and reaping code in NdisMInitializeTimer() and ndis_halt_nic(). It's been disabled for some time anyway, and it turns out there's a possible deadlock in NdisMInitializeTimer() when acquiring the miniport block lock to modify the timer list: it's possible for a driver to call NdisMInitializeTimer() when the miniport block lock has already been acquired by an earlier piece of code. You can't acquire the same spinlock twice, so this can deadlock. Also, implement MmMapIoSpace() and MmUnmapIoSpace(), and make NdisMMapIoSpace() and NdisMUnmapIoSpace() use them. There are some drivers that want MmMapIoSpace() and MmUnmapIoSpace() so that they can map arbitrary register spaces not directly associated with their device resources. For example, there's an Atheros driver for a miniPci card (0x168C:0x1014) on the IBM Thinkpad x40 that wants to map some I/O spaces at 0xF00000 and 0xE00000 which are held by the acpi0 device. I don't know what it wants these ranges for, but if it can't map and access them, the MiniportInitialize() method fails. Revision Changes Path 1.89 +0 -23 src/sys/compat/ndis/kern_ndis.c 1.41 +2 -0 src/sys/compat/ndis/ntoskrnl_var.h 1.98 +3 -24 src/sys/compat/ndis/subr_ndis.c 1.78 +113 -0 src/sys/compat/ndis/subr_ntoskrnl.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 06:55:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AFDC16A41F; Wed, 26 Oct 2005 06:55:52 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9037443D80; Wed, 26 Oct 2005 06:55:46 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6tkPb090415; Wed, 26 Oct 2005 06:55:46 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6tkeI090414; Wed, 26 Oct 2005 06:55:46 GMT (envelope-from davidxu) Message-Id: <200510260655.j9Q6tkeI090414@repoman.freebsd.org> From: David Xu Date: Wed, 26 Oct 2005 06:55: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/sys umtx.h src/sys/kern kern_thr.c kern_umtx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 06:55:52 -0000 davidxu 2005-10-26 06:55:46 UTC FreeBSD src repository Modified files: sys/sys umtx.h sys/kern kern_thr.c kern_umtx.c Log: do umtx_wake at userland thread exit address, so that others userland threads can wait for a thread to exit, and safely assume that the thread has left userland and is no longer using its userland stack, this is necessary for pthread_join when a thread is waiting for another thread to exit which has user customized stack, after pthread_join returns, the userland stack can be reused for other purposes, without this change, the joiner thread has to spin at the address to ensure the thread is really exited. Revision Changes Path 1.36 +5 -1 src/sys/kern/kern_thr.c 1.34 +3 -3 src/sys/kern/kern_umtx.c 1.17 +2 -0 src/sys/sys/umtx.h From owner-cvs-all@FreeBSD.ORG Wed Oct 26 06:56:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5808116A41F; Wed, 26 Oct 2005 06:56:23 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1298643D73; Wed, 26 Oct 2005 06:56:23 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6uMbH090483; Wed, 26 Oct 2005 06:56:22 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6uMM9090482; Wed, 26 Oct 2005 06:56:22 GMT (envelope-from wpaul) Message-Id: <200510260656.j9Q6uMM9090482@repoman.freebsd.org> From: Bill Paul Date: Wed, 26 Oct 2005 06:56:22 +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/compat/ndis kern_ndis.c ntoskrnl_var.h subr_ndis.c subr_ntoskrnl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 06:56:23 -0000 wpaul 2005-10-26 06:56:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/compat/ndis kern_ndis.c ntoskrnl_var.h subr_ndis.c subr_ntoskrnl.c Log: MFC: implement MmMapIoSpace() and MmUnmapIoSpace(), remove old timer tracking code to fix deadlock in NdisMInitializeTimer(). Revision Changes Path 1.60.2.8 +0 -23 src/sys/compat/ndis/kern_ndis.c 1.17.2.10 +2 -0 src/sys/compat/ndis/ntoskrnl_var.h 1.67.2.11 +3 -24 src/sys/compat/ndis/subr_ndis.c 1.43.2.11 +113 -0 src/sys/compat/ndis/subr_ntoskrnl.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 07:11:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57DDD16A428; Wed, 26 Oct 2005 07:11:44 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1240B43D45; Wed, 26 Oct 2005 07:11:44 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q7Bh79092201; Wed, 26 Oct 2005 07:11:43 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q7BhRu092197; Wed, 26 Oct 2005 07:11:43 GMT (envelope-from davidxu) Message-Id: <200510260711.j9Q7BhRu092197@repoman.freebsd.org> From: David Xu Date: Wed, 26 Oct 2005 07:11: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/libthr/thread thr_exit.c thr_join.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 07:11:44 -0000 davidxu 2005-10-26 07:11:43 UTC FreeBSD src repository Modified files: lib/libthr/thread thr_exit.c thr_join.c Log: Follow the change in kernel, joiner thread just waits at thread id address, let kernel wake it up. Revision Changes Path 1.19 +5 -2 src/lib/libthr/thread/thr_exit.c 1.18 +5 -4 src/lib/libthr/thread/thr_join.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 07:16:32 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E97FC16A41F; Wed, 26 Oct 2005 07:16:32 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A043743D48; Wed, 26 Oct 2005 07:16:32 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9Q7GS77059606; Wed, 26 Oct 2005 07:16:29 GMT (envelope-from davidxu@freebsd.org) Message-ID: <435F2D4F.4090601@freebsd.org> Date: Wed, 26 Oct 2005 15:16:31 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20050928 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Xu References: <200510260711.j9Q7BhRu092197@repoman.freebsd.org> In-Reply-To: <200510260711.j9Q7BhRu092197@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libthr/thread thr_exit.c thr_join.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 07:16:33 -0000 David Xu wrote: > davidxu 2005-10-26 07:11:43 UTC > > FreeBSD src repository > > Modified files: > lib/libthr/thread thr_exit.c thr_join.c > Log: > Follow the change in kernel, joiner thread just waits at thread id > address, let kernel wake it up. > > Revision Changes Path > 1.19 +5 -2 src/lib/libthr/thread/thr_exit.c > 1.18 +5 -4 src/lib/libthr/thread/thr_join.c > > Forgot to say: MFC: after 3 days. From owner-cvs-all@FreeBSD.ORG Wed Oct 26 07:18:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4380116A41F; Wed, 26 Oct 2005 07:18:38 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F05A743D48; Wed, 26 Oct 2005 07:18:37 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q7Ib3E092953; Wed, 26 Oct 2005 07:18:37 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q7Ib6V092952; Wed, 26 Oct 2005 07:18:37 GMT (envelope-from glebius) Message-Id: <200510260718.j9Q7Ib6V092952@repoman.freebsd.org> From: Gleb Smirnoff Date: Wed, 26 Oct 2005 07: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/sys/kern kern_exit.c src/sys/nfsclient nfs_lock.c nlminfo.h src/sys/sys lockf.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, 26 Oct 2005 07:18:38 -0000 glebius 2005-10-26 07:18:37 UTC FreeBSD src repository Modified files: sys/kern kern_exit.c sys/nfsclient nfs_lock.c nlminfo.h sys/sys lockf.h Log: - Fix leak of struct nlminfo on process exit. - Fix malloc type collision, that made the above problem difficult to understand. Reported by: Vladimir Sharun Revision Changes Path 1.269 +9 -0 src/sys/kern/kern_exit.c 1.41 +15 -1 src/sys/nfsclient/nfs_lock.c 1.3 +1 -3 src/sys/nfsclient/nlminfo.h 1.19 +0 -4 src/sys/sys/lockf.h From owner-cvs-all@FreeBSD.ORG Wed Oct 26 07:27:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F05D216A42A; Wed, 26 Oct 2005 07:27:18 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 896FC43D49; Wed, 26 Oct 2005 07:27:18 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q7RIGV093739; Wed, 26 Oct 2005 07:27:18 GMT (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q7RIR3093738; Wed, 26 Oct 2005 07:27:18 GMT (envelope-from osa) Message-Id: <200510260727.j9Q7RIR3093738@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Wed, 26 Oct 2005 07: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/www/nginx Makefile ports/www/nginx/files patch-src-os-unix-ngx_atomic.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, 26 Oct 2005 07:27:19 -0000 osa 2005-10-26 07:27:17 UTC FreeBSD ports repository Modified files: www/nginx Makefile Added files: www/nginx/files patch-src-os-unix-ngx_atomic.h Log: Fix build for freebsd7-ia64. Bump PORTREVISION. Notice from: kris via pointyhat Patch from: Igor Sysoev (author) Revision Changes Path 1.43 +1 -0 ports/www/nginx/Makefile 1.1 +22 -0 ports/www/nginx/files/patch-src-os-unix-ngx_atomic.h (new) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 08:17:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D571B16A421; Wed, 26 Oct 2005 08:17:51 +0000 (GMT) (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 C09E143D70; Wed, 26 Oct 2005 08:17:47 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q8HlOr099274; Wed, 26 Oct 2005 08:17:47 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q8Hlip099273; Wed, 26 Oct 2005 08:17:47 GMT (envelope-from lth) Message-Id: <200510260817.j9Q8Hlip099273@repoman.freebsd.org> From: Lars Thegler Date: Wed, 26 Oct 2005 08:17: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/textproc Makefile ports/textproc/p5-Perl-MinimumVersion 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, 26 Oct 2005 08:17:52 -0000 lth 2005-10-26 08:17:46 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Perl-MinimumVersion Makefile distinfo pkg-descr pkg-plist Log: Add p5-Perl-MinimumVersion 0.10, find a minimum required version of perl for Perl code. Revision Changes Path 1.876 +1 -0 ports/textproc/Makefile 1.1 +38 -0 ports/textproc/p5-Perl-MinimumVersion/Makefile (new) 1.1 +2 -0 ports/textproc/p5-Perl-MinimumVersion/distinfo (new) 1.1 +5 -0 ports/textproc/p5-Perl-MinimumVersion/pkg-descr (new) 1.1 +6 -0 ports/textproc/p5-Perl-MinimumVersion/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 08:18:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7366116A41F; Wed, 26 Oct 2005 08:18:13 +0000 (GMT) (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 8FE8443D7E; Wed, 26 Oct 2005 08:18:08 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q8I8Qw099417; Wed, 26 Oct 2005 08:18:08 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q8I8Ig099416; Wed, 26 Oct 2005 08:18:08 GMT (envelope-from lth) Message-Id: <200510260818.j9Q8I8Ig099416@repoman.freebsd.org> From: Lars Thegler Date: Wed, 26 Oct 2005 08: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: 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, 26 Oct 2005 08:18:13 -0000 lth 2005-10-26 08:18:08 UTC FreeBSD ports repository Modified files: . modules Log: p5-Perl-MinimumVersion --> ports/textproc/p5-Perl-MinimumVersion Revision Changes Path 1.13465 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Oct 26 08:26:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55F6F16A41F; Wed, 26 Oct 2005 08:26:55 +0000 (GMT) (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 4498B43D66; Wed, 26 Oct 2005 08:26:53 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q8Qqq9000998; Wed, 26 Oct 2005 08:26:53 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q8QqPi000997; Wed, 26 Oct 2005 08:26:52 GMT (envelope-from skv) Message-Id: <200510260826.j9Q8QqPi000997@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 26 Oct 2005 08:26: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/bugzilla 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, 26 Oct 2005 08:26:55 -0000 skv 2005-10-26 08:26:52 UTC FreeBSD ports repository Modified files: devel/bugzilla Makefile Log: Unbreak build. Revision Changes Path 1.42 +1 -2 ports/devel/bugzilla/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 09:11:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A58916A41F; Wed, 26 Oct 2005 09:11:12 +0000 (GMT) (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 E4A2143D58; Wed, 26 Oct 2005 09:11:11 +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 104C946BB3; Wed, 26 Oct 2005 05:11:09 -0400 (EDT) Date: Wed, 26 Oct 2005 10:11:08 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: John Baldwin In-Reply-To: <200510252010.j9PKAuES045147@repoman.freebsd.org> Message-ID: <20051026101024.A32255@fledge.watson.org> References: <200510252010.j9PKAuES045147@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/ddb db_command.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 09:11:12 -0000 On Tue, 25 Oct 2005, John Baldwin wrote: > jhb 2005-10-25 20:10:56 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/ddb db_command.c > Log: > MFC: Rename 'traceall' to 'alltrace' and add a 'bt' alias for 'trace'. > > Approved by: re (scottl) Might want to send a note to current@ and stable@ about the recent debugger additions and renames. The additions are useful, and the renames are for things that haven't been around long, but it would prevent some toe-stubbing I suspect. Thanks! Robert N M Watson From owner-cvs-all@FreeBSD.ORG Wed Oct 26 09:15:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F3D916A41F; Wed, 26 Oct 2005 09:15:24 +0000 (GMT) (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 D450043D60; Wed, 26 Oct 2005 09:15:10 +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 12EBB46B93; Wed, 26 Oct 2005 05:15:10 -0400 (EDT) Date: Wed, 26 Oct 2005 10:15:09 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Yar Tikhiy In-Reply-To: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> Message-ID: <20051026101319.A32255@fledge.watson.org> References: <200510260557.j9Q5vZ7J076711@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 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: Wed, 26 Oct 2005 09:15:24 -0000 On Wed, 26 Oct 2005, Yar Tikhiy wrote: > Since carp(4) interfaces presently are kinda fake yet possess > IP addresses, mark them with LOOPBACK so that routing daemons > take them easy for link-state routing protocols. > > Reviewed by: glebius Be aware that several network protocols, including IPv4 and IPv6, have special-case handling for interfaces tagged as IFF_LOOPBACK. I don't know whether this is a problem or not, but it's something you might want to investigate. I've previously run into problems with if_disc because it's marked as IFF_LOOPBACK and IPv6 has tried to use it for things that are not appropriate with if_disc -- unfortunately, I don't remember the details. I think we may actually be in need of either a new flag, IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable way for protocols to ask if an interface is a loopback interface or not. Robert N M Watson From owner-cvs-all@FreeBSD.ORG Wed Oct 26 09:35:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EA2A16A41F; Wed, 26 Oct 2005 09:35:39 +0000 (GMT) (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 8870E43D46; Wed, 26 Oct 2005 09:35:38 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.3/8.13.3) with ESMTP id j9Q9Zawb092489 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 26 Oct 2005 13:35:37 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.3/8.13.1/Submit) id j9Q9ZaXp092488; Wed, 26 Oct 2005 13:35:36 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Wed, 26 Oct 2005 13:35:36 +0400 From: Gleb Smirnoff To: Robert Watson Message-ID: <20051026093536.GF41520@cell.sick.ru> References: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> <20051026101319.A32255@fledge.watson.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20051026101319.A32255@fledge.watson.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, Yar Tikhiy , 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: Wed, 26 Oct 2005 09:35:39 -0000 On Wed, Oct 26, 2005 at 10:15:09AM +0100, Robert Watson wrote: R> I think we may actually be in need of either a new flag, R> IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable way R> for protocols to ask if an interface is a loopback interface or not. I'd prefer to rewrite those subsystems that use interface layer but aren't actually interfaces. I have plans to do this for CARP. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Wed Oct 26 09:36:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B59F716A420; Wed, 26 Oct 2005 09:36:02 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A33C43D4C; Wed, 26 Oct 2005 09:36:02 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q9a2vt016496; Wed, 26 Oct 2005 09:36:02 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q9a1EG016495; Wed, 26 Oct 2005 09:36:01 GMT (envelope-from danfe) Message-Id: <200510260936.j9Q9a1EG016495@repoman.freebsd.org> From: Alexey Dokuchaev Date: Wed, 26 Oct 2005 09:36: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/mvdsv/files 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, 26 Oct 2005 09:36:03 -0000 danfe 2005-10-26 09:36:01 UTC FreeBSD ports repository Modified files: games/mvdsv/files Makefile Log: Try to outwit make(1). This should stop strange reports of ``target is up to date'' messages kris@ has been nagging me with for a while. Revision Changes Path 1.7 +2 -2 ports/games/mvdsv/files/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 09:53:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49DAE16A41F; Wed, 26 Oct 2005 09:53:41 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01E0643D45; Wed, 26 Oct 2005 09:53:41 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q9reHK017746; Wed, 26 Oct 2005 09:53:40 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q9reRN017745; Wed, 26 Oct 2005 09:53:40 GMT (envelope-from danfe) Message-Id: <200510260953.j9Q9reRN017745@repoman.freebsd.org> From: Alexey Dokuchaev Date: Wed, 26 Oct 2005 09:53: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/mvdsv Makefile distinfo ports/games/mvdsv/files 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, 26 Oct 2005 09:53:41 -0000 danfe 2005-10-26 09:53:40 UTC FreeBSD ports repository Modified files: games/mvdsv Makefile distinfo games/mvdsv/files Makefile Log: - Update to version 0.19. We had finally happened to agree on version numbering scheme, so this is pretty official now. Bump PORTEPOCH, hopefully the last time - Provide better MASTER_SITES locations Revision Changes Path 1.15 +5 -4 ports/games/mvdsv/Makefile 1.9 +2 -2 ports/games/mvdsv/distinfo 1.8 +13 -2 ports/games/mvdsv/files/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 09:58:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E59316A41F; Wed, 26 Oct 2005 09:58:44 +0000 (GMT) (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 DE8FE43D58; Wed, 26 Oct 2005 09:58:43 +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 642D446B8E; Wed, 26 Oct 2005 05:58:43 -0400 (EDT) Date: Wed, 26 Oct 2005 10:58:43 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Gleb Smirnoff In-Reply-To: <20051026093536.GF41520@cell.sick.ru> Message-ID: <20051026105820.X32255@fledge.watson.org> References: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> <20051026101319.A32255@fledge.watson.org> <20051026093536.GF41520@cell.sick.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, Yar Tikhiy , 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: Wed, 26 Oct 2005 09:58:44 -0000 On Wed, 26 Oct 2005, Gleb Smirnoff wrote: > On Wed, Oct 26, 2005 at 10:15:09AM +0100, Robert Watson wrote: > R> I think we may actually be in need of either a new flag, > R> IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable way > R> for protocols to ask if an interface is a loopback interface or not. > > I'd prefer to rewrite those subsystems that use interface layer but > aren't actually interfaces. I have plans to do this for CARP. At least in the case of if_disc, this won't help. I'm not quite sure why if_disc is IFF_LOOPBACK. Robert N M Watson From owner-cvs-all@FreeBSD.ORG Wed Oct 26 10:00:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A72516A420; Wed, 26 Oct 2005 10:00:27 +0000 (GMT) (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 92EA243D58; Wed, 26 Oct 2005 10:00:19 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QA0J1n018256; Wed, 26 Oct 2005 10:00:19 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QA0IYL018255; Wed, 26 Oct 2005 10:00:18 GMT (envelope-from simon) Message-Id: <200510261000.j9QA0IYL018255@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Wed, 26 Oct 2005 10:00: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/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: Wed, 26 Oct 2005 10:00:27 -0000 simon 2005-10-26 10:00:18 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: - Mark linux-firefox 1.0.7 as fixed wrt. 8665ebb9-2237-11da-978e-0001020eed82 (Mozilla/firefox IDN buffer overflow) [1]. - Correct some of the the earlier linux-firefox entries to match versions before 1.0.7, not after (whoops)... Prodded by: Andrew P. [1] Revision Changes Path 1.866 +7 -6 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Wed Oct 26 10:55:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9682C16A41F; Wed, 26 Oct 2005 10:55:29 +0000 (GMT) (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 672B343D4C; Wed, 26 Oct 2005 10:55:29 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QAtSfv024824; Wed, 26 Oct 2005 10:55:29 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QAtSVK024823; Wed, 26 Oct 2005 10:55:28 GMT (envelope-from garga) Message-Id: <200510261055.j9QAtSVK024823@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 10: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/obby 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, 26 Oct 2005 10:55:29 -0000 garga 2005-10-26 10:55:27 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/obby Makefile distinfo pkg-descr pkg-plist Log: libobby is a library which provides synced document buffers. It supports multiple documents in one session and is portable to both Windows and Unix-like platforms. WWW: http://gobby.0x539.de PR: ports/87687 Submitted by: Andreas Kohn Revision Changes Path 1.2009 +1 -0 ports/devel/Makefile 1.1 +45 -0 ports/devel/obby/Makefile (new) 1.1 +2 -0 ports/devel/obby/distinfo (new) 1.1 +5 -0 ports/devel/obby/pkg-descr (new) 1.1 +37 -0 ports/devel/obby/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 10:55:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A33516A420; Wed, 26 Oct 2005 10:55:39 +0000 (GMT) (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 29F7F43D45; Wed, 26 Oct 2005 10:55:39 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QAtdvn024882; Wed, 26 Oct 2005 10:55:39 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QAtd7q024881; Wed, 26 Oct 2005 10:55:39 GMT (envelope-from garga) Message-Id: <200510261055.j9QAtd7q024881@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 10:55: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: Wed, 26 Oct 2005 10:55:39 -0000 garga 2005-10-26 10:55:38 UTC FreeBSD ports repository Modified files: . modules Log: obby --> ports/devel/obby Revision Changes Path 1.13466 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Oct 26 11:01:09 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2CDB16A41F; Wed, 26 Oct 2005 11:01:09 +0000 (GMT) (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 9CE5243D49; Wed, 26 Oct 2005 11:01:09 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QB19df025785; Wed, 26 Oct 2005 11:01:09 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QB19K6025784; Wed, 26 Oct 2005 11:01:09 GMT (envelope-from garga) Message-Id: <200510261101.j9QB19K6025784@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 11:01: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/net Makefile ports/net/sobby 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, 26 Oct 2005 11:01:10 -0000 garga 2005-10-26 11:01:09 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/sobby Makefile distinfo pkg-descr Log: Sobby is a stand-alone server for the collaborative editor gobby and other obby users. WWW: http://gobby.0x539.de PR: ports/87692 Submitted by: Andreas Kohn Revision Changes Path 1.1562 +1 -0 ports/net/Makefile 1.1 +32 -0 ports/net/sobby/Makefile (new) 1.1 +2 -0 ports/net/sobby/distinfo (new) 1.1 +4 -0 ports/net/sobby/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 11:01:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B74C316A41F; Wed, 26 Oct 2005 11:01:20 +0000 (GMT) (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 6CB3A43D49; Wed, 26 Oct 2005 11:01:20 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QB1KFf025840; Wed, 26 Oct 2005 11:01:20 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QB1Kbv025839; Wed, 26 Oct 2005 11:01:20 GMT (envelope-from garga) Message-Id: <200510261101.j9QB1Kbv025839@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 11:01: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: 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, 26 Oct 2005 11:01:21 -0000 garga 2005-10-26 11:01:20 UTC FreeBSD ports repository Modified files: . modules Log: sobby --> ports/net/sobby Revision Changes Path 1.13467 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Oct 26 11:03:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07BBA16A41F; Wed, 26 Oct 2005 11:03:29 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B549343D45; Wed, 26 Oct 2005 11:03:28 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QB3SY8026186; Wed, 26 Oct 2005 11:03:28 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QB3SUp026185; Wed, 26 Oct 2005 11:03:28 GMT (envelope-from danfe) Message-Id: <200510261103.j9QB3SUp026185@repoman.freebsd.org> From: Alexey Dokuchaev Date: Wed, 26 Oct 2005 11:03: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/x11-fm Makefile ports/x11-fm/tdfsb 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, 26 Oct 2005 11:03:29 -0000 danfe 2005-10-26 11:03:28 UTC FreeBSD ports repository Modified files: x11-fm Makefile Added files: x11-fm/tdfsb Makefile distinfo pkg-descr Log: Add tdfsb 0.0.9, a 3D filesystem browser. PR: ports/84414 Submitted by: Alejandro Pulver Revision Changes Path 1.54 +1 -0 ports/x11-fm/Makefile 1.1 +52 -0 ports/x11-fm/tdfsb/Makefile (new) 1.1 +2 -0 ports/x11-fm/tdfsb/distinfo (new) 1.1 +9 -0 ports/x11-fm/tdfsb/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 11:03:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6ECB16A41F; Wed, 26 Oct 2005 11:03:59 +0000 (GMT) (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 EADC943D4C; Wed, 26 Oct 2005 11:03:58 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QB3w63026311; Wed, 26 Oct 2005 11:03:58 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QB3wf5026310; Wed, 26 Oct 2005 11:03:58 GMT (envelope-from novel) Message-Id: <200510261103.j9QB3wf5026310@repoman.freebsd.org> From: Roman Bogorodskiy Date: Wed, 26 Oct 2005 11:03: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/sysutils/conky 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, 26 Oct 2005 11:03:59 -0000 novel 2005-10-26 11:03:58 UTC FreeBSD ports repository Modified files: sysutils/conky Makefile Log: An attempt to make it respect X11BASE. Reported by: pointyhat via kris Revision Changes Path 1.6 +2 -0 ports/sysutils/conky/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 11:06:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0F2416A41F; Wed, 26 Oct 2005 11:06:03 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F9A743D49; Wed, 26 Oct 2005 11:06:03 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QB63JW026650; Wed, 26 Oct 2005 11:06:03 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QB6303026649; Wed, 26 Oct 2005 11:06:03 GMT (envelope-from danfe) Message-Id: <200510261106.j9QB6303026649@repoman.freebsd.org> From: Alexey Dokuchaev Date: Wed, 26 Oct 2005 11:06: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: 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, 26 Oct 2005 11:06:04 -0000 danfe 2005-10-26 11:06:03 UTC FreeBSD ports repository Modified files: . modules Log: tdfsb --> ports/x11-fm/tdfsb Revision Changes Path 1.13468 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Oct 26 11:08:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 074DB16A41F; Wed, 26 Oct 2005 11:08:33 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA16243D45; Wed, 26 Oct 2005 11:08:32 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QB8WfA027190; Wed, 26 Oct 2005 11:08:32 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QB8Wwg027186; Wed, 26 Oct 2005 11:08:32 GMT (envelope-from davidxu) Message-Id: <200510261108.j9QB8Wwg027186@repoman.freebsd.org> From: David Xu Date: Wed, 26 Oct 2005 11:08:32 +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/libthr/thread thr_timer.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 11:08:33 -0000 davidxu 2005-10-26 11:08:32 UTC FreeBSD src repository Added files: lib/libthr/thread thr_timer.c Log: Add experiment code to implement POSIX timer's SIGEV_THREAD notification. Revision Changes Path 1.1 +168 -0 src/lib/libthr/thread/thr_timer.c (new) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 11:19:59 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B9AE16A41F; Wed, 26 Oct 2005 11:19:59 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66CED43D45; Wed, 26 Oct 2005 11:19:59 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9QBJu4h092225; Wed, 26 Oct 2005 11:19:57 GMT (envelope-from davidxu@freebsd.org) Message-ID: <435F665F.5030502@freebsd.org> Date: Wed, 26 Oct 2005 19:19:59 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20050928 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Xu References: <200510261108.j9QB8Wwg027186@repoman.freebsd.org> In-Reply-To: <200510261108.j9QB8Wwg027186@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libthr/thread thr_timer.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 11:19:59 -0000 David Xu wrote: > davidxu 2005-10-26 11:08:32 UTC > > FreeBSD src repository > > Added files: > lib/libthr/thread thr_timer.c > Log: > Add experiment code to implement POSIX timer's SIGEV_THREAD notification. > > Revision Changes Path > 1.1 +168 -0 src/lib/libthr/thread/thr_timer.c (new) > > I hope soon we can add sigev_notify_function and sigev_notify_attributes in to structure sigevent (see signal.h), Some information can be found at here: http://groups.google.com/group/comp.programming.threads/browse_thread/thread/31f762c00076f4b0/043c76ee3e5c4bdd?lnk=st&q=timer_create&rnum=9#043c76ee3e5c4bdd David Xu From owner-cvs-all@FreeBSD.ORG Wed Oct 26 11:27:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5706816A421; Wed, 26 Oct 2005 11:27:54 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41AF643D5C; Wed, 26 Oct 2005 11:27:53 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QBRqHK031057; Wed, 26 Oct 2005 11:27:52 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QBRq4R031056; Wed, 26 Oct 2005 11:27:52 GMT (envelope-from cy) Message-Id: <200510261127.j9QBRq4R031056@repoman.freebsd.org> From: Cy Schubert Date: Wed, 26 Oct 2005 11:27: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/x11-wm/fvwm2-devel 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, 26 Oct 2005 11:27:54 -0000 cy 2005-10-26 11:27:52 UTC FreeBSD ports repository Modified files: x11-wm/fvwm2-devel pkg-plist Log: Merge 1.34 and 1.35 back into this file. Pointy hat to: me Revision Changes Path 1.37 +397 -380 ports/x11-wm/fvwm2-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 11:30:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 359A816A41F; Wed, 26 Oct 2005 11:30:28 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5C6843D48; Wed, 26 Oct 2005 11:30:27 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QBURM1031633; Wed, 26 Oct 2005 11:30:27 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QBURQW031632; Wed, 26 Oct 2005 11:30:27 GMT (envelope-from danfe) Message-Id: <200510261130.j9QBURQW031632@repoman.freebsd.org> From: Alexey Dokuchaev Date: Wed, 26 Oct 2005 11:30: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/games/mvdsv Makefile ports/games/mvdsv/files 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, 26 Oct 2005 11:30:28 -0000 danfe 2005-10-26 11:30:27 UTC FreeBSD ports repository Modified files: games/mvdsv Makefile games/mvdsv/files Makefile Log: Remove controversial and GCC version-specific optimization options. Revision Changes Path 1.16 +1 -18 ports/games/mvdsv/Makefile 1.9 +0 -5 ports/games/mvdsv/files/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 11:37:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12C6E16A41F; Wed, 26 Oct 2005 11:37:48 +0000 (GMT) (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 C161D43D46; Wed, 26 Oct 2005 11:37:47 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QBbl4K032567; Wed, 26 Oct 2005 11:37:47 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QBblTr032566; Wed, 26 Oct 2005 11:37:47 GMT (envelope-from dinoex) Message-Id: <200510261137.j9QBblTr032566@repoman.freebsd.org> From: Dirk Meyer Date: Wed, 26 Oct 2005 11:37: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/emulators/stonx Makefile pkg-plist ports/emulators/stonx/files patch-makefonts.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, 26 Oct 2005 11:37:48 -0000 dinoex 2005-10-26 11:37:47 UTC FreeBSD ports repository Modified files: emulators/stonx Makefile pkg-plist Added files: emulators/stonx/files patch-makefonts.sh Log: - make build without X running Requested by: kris Revision Changes Path 1.13 +7 -4 ports/emulators/stonx/Makefile 1.1 +10 -0 ports/emulators/stonx/files/patch-makefonts.sh (new) 1.3 +3 -0 ports/emulators/stonx/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 12:02:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BA0716A41F; Wed, 26 Oct 2005 12:02:33 +0000 (GMT) (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 F147643D46; Wed, 26 Oct 2005 12:02:32 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QC2WNW036436; Wed, 26 Oct 2005 12:02:32 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QC2Wig036435; Wed, 26 Oct 2005 12:02:32 GMT (envelope-from mnag) Message-Id: <200510261202.j9QC2Wig036435@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 12:02: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/audio/jack 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, 26 Oct 2005 12:02:33 -0000 mnag 2005-10-26 12:02:32 UTC FreeBSD ports repository Modified files: audio/jack Makefile distinfo pkg-plist Log: Update to 0.100.0 PR: 87239 Submitted by: James mcNaughton Revision Changes Path 1.21 +1 -1 ports/audio/jack/Makefile 1.4 +2 -2 ports/audio/jack/distinfo 1.8 +11 -4 ports/audio/jack/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 12:04:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56AB916A41F; Wed, 26 Oct 2005 12:04:23 +0000 (GMT) (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 8916743D77; Wed, 26 Oct 2005 12:04:19 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QC4JvL036590; Wed, 26 Oct 2005 12:04:19 GMT (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QC4Jsj036589; Wed, 26 Oct 2005 12:04:19 GMT (envelope-from ale) Message-Id: <200510261204.j9QC4Jsj036589@repoman.freebsd.org> From: Alex Dupre Date: Wed, 26 Oct 2005 12:04: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/databases/mysql50-server 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, 26 Oct 2005 12:04:23 -0000 ale 2005-10-26 12:04:19 UTC FreeBSD ports repository Modified files: databases/mysql50-server Makefile distinfo pkg-plist Log: Update to 5.0.15 release, the first Generally Available (GA) version! Revision Changes Path 1.201 +1 -3 ports/databases/mysql50-server/Makefile 1.82 +2 -2 ports/databases/mysql50-server/distinfo 1.69 +1 -0 ports/databases/mysql50-server/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 12:06:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E70816A41F; Wed, 26 Oct 2005 12:06:52 +0000 (GMT) (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 1849C43D49; Wed, 26 Oct 2005 12:06:52 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QC6phh036962; Wed, 26 Oct 2005 12:06:51 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QC6p7e036955; Wed, 26 Oct 2005 12:06:51 GMT (envelope-from mnag) Message-Id: <200510261206.j9QC6p7e036955@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 12:06: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/x11-wm/ion-3ds 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, 26 Oct 2005 12:06:52 -0000 mnag 2005-10-26 12:06:51 UTC FreeBSD ports repository Modified files: x11-wm/ion-3ds Makefile distinfo pkg-plist Log: Update to 20051023 PR: 87960 Submitted by: Ed Schouten (maintainer) Revision Changes Path 1.5 +1 -1 ports/x11-wm/ion-3ds/Makefile 1.5 +2 -2 ports/x11-wm/ion-3ds/distinfo 1.4 +0 -2 ports/x11-wm/ion-3ds/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 12:07:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38B2116A41F; Wed, 26 Oct 2005 12:07:24 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D246C43D58; Wed, 26 Oct 2005 12:07:23 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QC7Ne3037050; Wed, 26 Oct 2005 12:07:23 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QC7N9D037049; Wed, 26 Oct 2005 12:07:23 GMT (envelope-from keramida) Message-Id: <200510261207.j9QC7N9D037049@repoman.freebsd.org> From: Giorgos Keramidas Date: Wed, 26 Oct 2005 12:07: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/contrib/top top.X X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 12:07:24 -0000 keramida 2005-10-26 12:07:23 UTC FreeBSD src repository (doc committer) Modified files: contrib/top top.X Log: Typo. PR: docs/88015 Submitted by: Marian Cerny MFC after: 3 days Revision Changes Path 1.13 +1 -1 src/contrib/top/top.X From owner-cvs-all@FreeBSD.ORG Wed Oct 26 12:14:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0B2916A41F; Wed, 26 Oct 2005 12:14:48 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DD3643D4C; Wed, 26 Oct 2005 12:14:48 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QCEmZo037971; Wed, 26 Oct 2005 12:14:48 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QCEm2r037970; Wed, 26 Oct 2005 12:14:48 GMT (envelope-from keramida) Message-Id: <200510261214.j9QCEm2r037970@repoman.freebsd.org> From: Giorgos Keramidas Date: Wed, 26 Oct 2005 12:14:47 +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/mailing-list-faq 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: Wed, 26 Oct 2005 12:14:49 -0000 keramida 2005-10-26 12:14:47 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/mailing-list-faq article.sgml Log: Fix a broken link to our "Books and Articles" online page. PR: docs/87595 Submitted by: Toby Burress Revision Changes Path 1.7 +1 -3 doc/en_US.ISO8859-1/articles/mailing-list-faq/article.sgml From owner-cvs-all@FreeBSD.ORG Wed Oct 26 12:16:03 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A887216A422; Wed, 26 Oct 2005 12:16:03 +0000 (GMT) (envelope-from max@love2party.net) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BBE543D53; Wed, 26 Oct 2005 12:16:02 +0000 (GMT) (envelope-from max@love2party.net) Received: from p54A3C62B.dip.t-dialin.net [84.163.198.43] (helo=donor.laier.local) by mrelayeu.kundenserver.de with ESMTP (Nemesis), id 0MKwtQ-1EUkCH0NqJ-0002em; Wed, 26 Oct 2005 14:16:01 +0200 From: Max Laier To: Robert Watson Date: Wed, 26 Oct 2005 14:15:47 +0200 User-Agent: KMail/1.8.2 References: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> <20051026093536.GF41520@cell.sick.ru> <20051026105820.X32255@fledge.watson.org> In-Reply-To: <20051026105820.X32255@fledge.watson.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1391944.u5ptIuUrKn"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200510261416.09346.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de login:61c499deaeeba3ba5be80f48ecc83056 Cc: cvs-src@freebsd.org, Yar Tikhiy , Gleb Smirnoff , 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: Wed, 26 Oct 2005 12:16:03 -0000 --nextPart1391944.u5ptIuUrKn Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Wednesday 26 October 2005 11:58, Robert Watson wrote: > On Wed, 26 Oct 2005, Gleb Smirnoff wrote: > > On Wed, Oct 26, 2005 at 10:15:09AM +0100, Robert Watson wrote: > > R> I think we may actually be in need of either a new flag, > > R> IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable > > way R> for protocols to ask if an interface is a loopback interface or > > not. > > > > I'd prefer to rewrite those subsystems that use interface layer but > > aren't actually interfaces. I have plans to do this for CARP. > > At least in the case of if_disc, this won't help. I'm not quite sure why > if_disc is IFF_LOOPBACK. Sad answer seems to be: copy and paste. IFF_LOOPBACK is part of 1.1 which= =20 also contains the following comment: /* * Discard interface driver for protocol testing and timing. * (Based on the loopback.) */ So it might be a good idea to get rid of it and work from there. =2D-=20 /"\ Best regards, | mlaier@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mlaier@EFnet / \ ASCII Ribbon Campaign | Against HTML Mail and News --nextPart1391944.u5ptIuUrKn Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDX3OJXyyEoT62BG0RAnHxAJ9Qg9t6x/Zu+JHZE+UmS986W9KO3QCfVDzs aRWDTyxsRbJy2gc9+D0ZbOE= =POH8 -----END PGP SIGNATURE----- --nextPart1391944.u5ptIuUrKn-- From owner-cvs-all@FreeBSD.ORG Wed Oct 26 12:23:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E995816A41F; Wed, 26 Oct 2005 12:23:39 +0000 (GMT) (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 A7F2A43D45; Wed, 26 Oct 2005 12:23:39 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QCNdWo039745; Wed, 26 Oct 2005 12:23:39 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QCNdtV039744; Wed, 26 Oct 2005 12:23:39 GMT (envelope-from tobez) Message-Id: <200510261223.j9QCNdtV039744@repoman.freebsd.org> From: Anton Berezin Date: Wed, 26 Oct 2005 12:23: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: Wed, 26 Oct 2005 12:23:40 -0000 tobez 2005-10-26 12:23:39 UTC FreeBSD ports repository Modified files: devel/p5-Time-HiRes Makefile distinfo Log: Update to 1.76. Revision Changes Path 1.28 +1 -1 ports/devel/p5-Time-HiRes/Makefile 1.21 +2 -2 ports/devel/p5-Time-HiRes/distinfo From owner-cvs-all@FreeBSD.ORG Wed Oct 26 12:30:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6307216A41F; Wed, 26 Oct 2005 12:30:06 +0000 (GMT) (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 5FABC43D58; Wed, 26 Oct 2005 12:29:59 +0000 (GMT) (envelope-from bvs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QCTxt7041110; Wed, 26 Oct 2005 12:29:59 GMT (envelope-from bvs@repoman.freebsd.org) Received: (from bvs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QCTxXn041109; Wed, 26 Oct 2005 12:29:59 GMT (envelope-from bvs) Message-Id: <200510261229.j9QCTxXn041109@repoman.freebsd.org> From: Vitaly Bogdanov Date: Wed, 26 Oct 2005 12:29: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: www/ru about.sgml art.sgml availability.sgml includes.navabout.sgml includes.navdevelopers.sgml includes.navdocs.sgml includes.navdownload.sgml includes.navsupport.sgml includes.sgml includes.xsl index.xsl support.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, 26 Oct 2005 12:30:06 -0000 bvs 2005-10-26 12:29:59 UTC FreeBSD doc repository Modified files: ru about.sgml art.sgml availability.sgml includes.navabout.sgml includes.navdevelopers.sgml includes.navdocs.sgml includes.navdownload.sgml includes.navsupport.sgml includes.sgml includes.xsl index.xsl support.sgml Log: Some translation fixes after ru/ Emily Boyd's New Design merge To be merged to: The FreeBSD Russian Documentation Project Approved by: marck (mentor) Revision Changes Path 1.3 +2 -2 www/ru/about.sgml 1.3 +2 -2 www/ru/art.sgml 1.11 +2 -2 www/ru/availability.sgml 1.2 +14 -14 www/ru/includes.navabout.sgml 1.2 +9 -9 www/ru/includes.navdevelopers.sgml 1.2 +11 -11 www/ru/includes.navdocs.sgml 1.2 +8 -8 www/ru/includes.navdownload.sgml 1.2 +13 -13 www/ru/includes.navsupport.sgml 1.32 +10 -10 www/ru/includes.sgml 1.14 +55 -55 www/ru/includes.xsl 1.28 +19 -19 www/ru/index.xsl 1.43 +4 -4 www/ru/support.sgml From owner-cvs-all@FreeBSD.ORG Wed Oct 26 12:35:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 715B716A41F; Wed, 26 Oct 2005 12:35:53 +0000 (GMT) (envelope-from simon@eddie.nitro.dk) Received: from eddie.nitro.dk (cpe.atm2-0-71337.0x535ccf26.taanxx2.customer.tele.dk [83.92.207.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id D312743D46; Wed, 26 Oct 2005 12:35:52 +0000 (GMT) (envelope-from simon@eddie.nitro.dk) Received: by eddie.nitro.dk (Postfix, from userid 1000) id E3B5C119C50; Wed, 26 Oct 2005 14:35:51 +0200 (CEST) Date: Wed, 26 Oct 2005 14:35:51 +0200 From: "Simon L. Nielsen" To: Vitaly Bogdanov Message-ID: <20051026123551.GC14113@eddie.nitro.dk> References: <200510261229.j9QCTxXn041109@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="eRtJSFbw+EEWtPj3" Content-Disposition: inline In-Reply-To: <200510261229.j9QCTxXn041109@repoman.freebsd.org> User-Agent: Mutt/1.5.11 Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/ru about.sgml art.sgml availability.sgml includes.navabout.sgml includes.navdevelopers.sgml includes.navdocs.sgml includes.navdownload.sgml includes.navsupport.sgml includes.sgml includes.xsl index.xsl support.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, 26 Oct 2005 12:35:53 -0000 --eRtJSFbw+EEWtPj3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2005.10.26 12:29:59 +0000, Vitaly Bogdanov wrote: > bvs 2005-10-26 12:29:59 UTC >=20 > FreeBSD doc repository >=20 > Modified files: > ru about.sgml art.sgml availability.sgml=20 > includes.navabout.sgml=20 > includes.navdevelopers.sgml=20 > includes.navdocs.sgml=20 > includes.navdownload.sgml=20 > includes.navsupport.sgml includes.sgml=20 > includes.xsl index.xsl support.sgml=20 > Log: > Some translation fixes after ru/ Emily Boyd's New Design merge Great! I hope I didn't mess up stuff too much when importing Emily's new design. --=20 Simon L. Nielsen --eRtJSFbw+EEWtPj3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDX3gnh9pcDSc1mlERAiuRAKDH/CQxtYGraus3NoPaQ6EZv5bCZQCghpOT +/rD5Mq/YzFbYVBSvp66cf0= =UruV -----END PGP SIGNATURE----- --eRtJSFbw+EEWtPj3-- From owner-cvs-all@FreeBSD.ORG Wed Oct 26 12:36:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AABC16A41F; Wed, 26 Oct 2005 12:36:19 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD06643D46; Wed, 26 Oct 2005 12:36:18 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QCaI0h041602; Wed, 26 Oct 2005 12:36:18 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QCaI5s041601; Wed, 26 Oct 2005 12:36:18 GMT (envelope-from bde) Message-Id: <200510261236.j9QCaI5s041601@repoman.freebsd.org> From: Bruce Evans Date: Wed, 26 Oct 2005 12:36: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/msun/src k_cos.c k_cosf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 12:36:19 -0000 bde 2005-10-26 12:36:18 UTC FreeBSD src repository Modified files: lib/msun/src k_cos.c k_cosf.c Log: Use a better algorithm for reducing the error in __kernel_cos[f](). This supersedes the fix for the old algorithm in rev.1.8 of k_cosf.c. I want this change mainly because it is an optimization. It helps make software cos[f](x) and sin[f](x) faster than the i387 hardware versions for small x. It is also a simplification, and reduces the maximum relative error for cosf() and sinf() on machines like amd64 from about 0.87 ulps to about 0.80 ulps. It was validated for cosf() and sinf() by exhaustive testing. Exhaustive testing is not possible for cos() and sin(), but ucbtest reports a similar reduction for the worst case found by non-exhaustive testing. ucbtest's non-exhaustive testing seems to be good enough to find problems in algorithms but not maximum relative errors when there are spikes. E.g., short runs of it find only 3 ulp error where the i387 hardware cos() has an error of about 2**40 ulps near pi/2. Revision Changes Path 1.10 +17 -24 src/lib/msun/src/k_cos.c 1.10 +5 -27 src/lib/msun/src/k_cosf.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 12:46:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AA3616A41F; Wed, 26 Oct 2005 12:46:02 +0000 (GMT) (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 D451D43D4C; Wed, 26 Oct 2005 12:46:01 +0000 (GMT) (envelope-from bvs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QCk1NH042472; Wed, 26 Oct 2005 12:46:01 GMT (envelope-from bvs@repoman.freebsd.org) Received: (from bvs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QCk1e3042471; Wed, 26 Oct 2005 12:46:01 GMT (envelope-from bvs) Message-Id: <200510261246.j9QCk1e3042471@repoman.freebsd.org> From: Vitaly Bogdanov Date: Wed, 26 Oct 2005 12:46:01 +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/ru docs.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, 26 Oct 2005 12:46:02 -0000 bvs 2005-10-26 12:46:01 UTC FreeBSD doc repository Modified files: ru docs.sgml Log: Link to the russian version of the version-guide Submitted by: marck Needs to be merged to: The FreeBSD Russian Documentation Project Revision Changes Path 1.33 +2 -2 www/ru/docs.sgml From owner-cvs-all@FreeBSD.ORG Wed Oct 26 13:02:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9CEF16A422; Wed, 26 Oct 2005 13:02:50 +0000 (GMT) (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 71FEA43D46; Wed, 26 Oct 2005 13:02:50 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QD2ohl051112; Wed, 26 Oct 2005 13:02:50 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QD2o0w051111; Wed, 26 Oct 2005 13:02:50 GMT (envelope-from mnag) Message-Id: <200510261302.j9QD2o0w051111@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 13:02: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/mail/bogofilter Makefile distinfo pkg-plist ports/mail/bogofilter/files patch-mimetypes X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 13:02:51 -0000 mnag 2005-10-26 13:02:49 UTC FreeBSD ports repository Modified files: mail/bogofilter Makefile distinfo pkg-plist Added files: mail/bogofilter/files patch-mimetypes Log: Update to 0.96.3 PR: 88016 Submitted by: Matthias Andree (maintainer) Revision Changes Path 1.66 +8 -4 ports/mail/bogofilter/Makefile 1.45 +2 -2 ports/mail/bogofilter/distinfo 1.1 +11 -0 ports/mail/bogofilter/files/patch-mimetypes (new) 1.16 +3 -0 ports/mail/bogofilter/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 13:15:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2925B16A41F; Wed, 26 Oct 2005 13:15:20 +0000 (GMT) (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 3FD1D43D53; Wed, 26 Oct 2005 13:15:19 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QDFJ1I052061; Wed, 26 Oct 2005 13:15:19 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QDFIlX052060; Wed, 26 Oct 2005 13:15:18 GMT (envelope-from mnag) Message-Id: <200510261315.j9QDFIlX052060@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 13:15: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/textproc/py-excelerator 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, 26 Oct 2005 13:15:20 -0000 mnag 2005-10-26 13:15:18 UTC FreeBSD ports repository Modified files: textproc/py-excelerator Makefile distinfo pkg-plist Log: Update to 0.6.3a PR: 88017 Submitted by: Choe, Cheng-Dae (maintainer) Revision Changes Path 1.5 +1 -1 ports/textproc/py-excelerator/Makefile 1.5 +2 -2 ports/textproc/py-excelerator/distinfo 1.5 +3 -3 ports/textproc/py-excelerator/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 13:20:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38E6C16A41F; Wed, 26 Oct 2005 13:20:33 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB15643D45; Wed, 26 Oct 2005 13:20:32 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QDKWRY052542; Wed, 26 Oct 2005 13:20:32 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QDKWGa052541; Wed, 26 Oct 2005 13:20:32 GMT (envelope-from vs) Message-Id: <200510261320.j9QDKWGa052541@repoman.freebsd.org> From: Volker Stolz Date: Wed, 26 Oct 2005 13:20: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/misc/xgas 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: Wed, 26 Oct 2005 13:20:33 -0000 vs 2005-10-26 13:20:32 UTC FreeBSD ports repository Modified files: misc/xgas Makefile Removed files: misc/xgas pkg-plist Log: Drop two-line plist Revision Changes Path 1.12 +1 -0 ports/misc/xgas/Makefile 1.3 +0 -2 ports/misc/xgas/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 13:39:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A46616A420; Wed, 26 Oct 2005 13:39:35 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F06A43D76; Wed, 26 Oct 2005 13:39:29 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QDdS37055120; Wed, 26 Oct 2005 13:39:28 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QDdSBW055119; Wed, 26 Oct 2005 13:39:28 GMT (envelope-from vs) Message-Id: <200510261339.j9QDdSBW055119@repoman.freebsd.org> From: Volker Stolz Date: Wed, 26 Oct 2005 13: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/misc/birthday Makefile ports/misc/birthday/files patch-Makefile patch-getopt.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, 26 Oct 2005 13:39:35 -0000 vs 2005-10-26 13:39:28 UTC FreeBSD ports repository Modified files: misc/birthday Makefile Removed files: misc/birthday/files patch-Makefile patch-getopt.h Log: Drop patches Revision Changes Path 1.7 +12 -0 ports/misc/birthday/Makefile 1.3 +0 -65 ports/misc/birthday/files/patch-Makefile (dead) 1.2 +0 -29 ports/misc/birthday/files/patch-getopt.h (dead) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 13:47:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B43F216A41F; Wed, 26 Oct 2005 13:47:03 +0000 (GMT) (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 7295A43D46; Wed, 26 Oct 2005 13:47:03 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QDl3tN056097; Wed, 26 Oct 2005 13:47:03 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QDl3xZ056096; Wed, 26 Oct 2005 13:47:03 GMT (envelope-from erwin) Message-Id: <200510261347.j9QDl3xZ056096@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 26 Oct 2005 13:47: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/chinese/cwtex 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, 26 Oct 2005 13:47:03 -0000 erwin 2005-10-26 13:47:03 UTC FreeBSD ports repository Modified files: chinese/cwtex pkg-descr Log: Remove WWW, site no longer exists. PR: 88033 Submitted by: Jean Milanez Melo Revision Changes Path 1.2 +0 -4 ports/chinese/cwtex/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Oct 26 14:11:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D96216A422; Wed, 26 Oct 2005 14:11:07 +0000 (GMT) (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 AC3A743D68; Wed, 26 Oct 2005 14:11:06 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QEB6D0058145; Wed, 26 Oct 2005 14:11:06 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QEB6nu058144; Wed, 26 Oct 2005 14:11:06 GMT (envelope-from mnag) Message-Id: <200510261411.j9QEB6nu058144@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 14:11: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/chinese/hanzim 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, 26 Oct 2005 14:11:07 -0000 mnag 2005-10-26 14:11:06 UTC FreeBSD ports repository Modified files: chinese/hanzim Makefile Log: Change MASTER_SITES PR: 88035 Submitted by: Jean Milanez Melo Revision Changes Path 1.11 +1 -1 ports/chinese/hanzim/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 14:13:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A527516A41F; Wed, 26 Oct 2005 14:13:07 +0000 (GMT) (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 4322643D46; Wed, 26 Oct 2005 14:13:07 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QED7Be058358; Wed, 26 Oct 2005 14:13:07 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QED7VQ058357; Wed, 26 Oct 2005 14:13:07 GMT (envelope-from mnag) Message-Id: <200510261413.j9QED7VQ058357@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 14:13: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/chinese/cwtexttf 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, 26 Oct 2005 14:13:07 -0000 mnag 2005-10-26 14:13:07 UTC FreeBSD ports repository Modified files: chinese/cwtexttf pkg-descr Log: Remove WWW PR: 88034 Submitted by: Jean Milanez Melo Revision Changes Path 1.2 +0 -2 ports/chinese/cwtexttf/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Oct 26 14:18:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4474816A41F; Wed, 26 Oct 2005 14:18:31 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C449743D49; Wed, 26 Oct 2005 14:18:30 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QEIUZ4058863; Wed, 26 Oct 2005 14:18:30 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QEIUw1058862; Wed, 26 Oct 2005 14:18:30 GMT (envelope-from vs) Message-Id: <200510261418.j9QEIUw1058862@repoman.freebsd.org> From: Volker Stolz Date: Wed, 26 Oct 2005 14:18: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/dirtree 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: Wed, 26 Oct 2005 14:18:31 -0000 vs 2005-10-26 14:18:30 UTC FreeBSD ports repository Modified files: misc/dirtree Makefile pkg-descr Removed files: misc/dirtree pkg-plist Log: - Nuke two-line plist - Unconditionally links against libintl - Add URL Revision Changes Path 1.17 +6 -6 ports/misc/dirtree/Makefile 1.4 +2 -0 ports/misc/dirtree/pkg-descr 1.3 +0 -2 ports/misc/dirtree/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 14:28:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 879F916A41F; Wed, 26 Oct 2005 14:28:31 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F43743D46; Wed, 26 Oct 2005 14:28:31 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QESUEY059621; Wed, 26 Oct 2005 14:28:30 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QESU2m059620; Wed, 26 Oct 2005 14:28:30 GMT (envelope-from cy) Message-Id: <200510261428.j9QESU2m059620@repoman.freebsd.org> From: Cy Schubert Date: Wed, 26 Oct 2005 14:28: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-wm/fvwm2-devel Makefile ports/x11-wm/fvwm2-devel/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: Wed, 26 Oct 2005 14:28:31 -0000 cy 2005-10-26 14:28:30 UTC FreeBSD ports repository Modified files: x11-wm/fvwm2-devel Makefile x11-wm/fvwm2-devel/files patch-configure Log: Merge patch-configure r1.4 and 1.5. Revision Changes Path 1.82 +1 -1 ports/x11-wm/fvwm2-devel/Makefile 1.7 +182 -10 ports/x11-wm/fvwm2-devel/files/patch-configure From owner-cvs-all@FreeBSD.ORG Wed Oct 26 14:33:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 794A716A41F; Wed, 26 Oct 2005 14:33:57 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F151D43D48; Wed, 26 Oct 2005 14:33:56 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QEXuVe060357; Wed, 26 Oct 2005 14:33:56 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QEXu3Y060356; Wed, 26 Oct 2005 14:33:56 GMT (envelope-from bland) Message-Id: <200510261433.j9QEXu3Y060356@repoman.freebsd.org> From: Alexander Nedotsukov Date: Wed, 26 Oct 2005 14:33: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/x11/sisctrl 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, 26 Oct 2005 14:33:57 -0000 bland 2005-10-26 14:33:56 UTC FreeBSD ports repository Modified files: x11/sisctrl Makefile distinfo pkg-descr Log: - Update to 0.0.20051025 - Make PREFIX compliant. [1] Reported by: krismail Revision Changes Path 1.6 +2 -1 ports/x11/sisctrl/Makefile 1.3 +2 -2 ports/x11/sisctrl/distinfo 1.2 +1 -1 ports/x11/sisctrl/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Oct 26 14:55:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16A5216A421; Wed, 26 Oct 2005 14:55:40 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E730243D6E; Wed, 26 Oct 2005 14:55:37 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QEtb8A061930; Wed, 26 Oct 2005 14:55:37 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QEtb2A061929; Wed, 26 Oct 2005 14:55:37 GMT (envelope-from vs) Message-Id: <200510261455.j9QEtb2A061929@repoman.freebsd.org> From: Volker Stolz Date: Wed, 26 Oct 2005 14: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/sysutils/fileschanged Makefile ports/sysutils/fileschanged/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: Wed, 26 Oct 2005 14:55:40 -0000 vs 2005-10-26 14:55:37 UTC FreeBSD ports repository Modified files: sysutils/fileschanged Makefile Removed files: sysutils/fileschanged/files patch-configure Log: Use CONFIGURE_ARGS Revision Changes Path 1.4 +2 -1 ports/sysutils/fileschanged/Makefile 1.2 +0 -11 ports/sysutils/fileschanged/files/patch-configure (dead) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:02:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6188816A41F; Wed, 26 Oct 2005 15:02:43 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E2A943D45; Wed, 26 Oct 2005 15:02:43 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QF2huJ062220; Wed, 26 Oct 2005 15:02:43 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QF2gM0062219; Wed, 26 Oct 2005 15:02:42 GMT (envelope-from vs) Message-Id: <200510261502.j9QF2gM0062219@repoman.freebsd.org> From: Volker Stolz Date: Wed, 26 Oct 2005 15:02: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/misc/help2man 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, 26 Oct 2005 15:02:43 -0000 vs 2005-10-26 15:02:42 UTC FreeBSD ports repository Modified files: misc/help2man Makefile distinfo pkg-plist Log: Update to 1.36.1 Revision Changes Path 1.14 +5 -6 ports/misc/help2man/Makefile 1.8 +2 -2 ports/misc/help2man/distinfo 1.6 +3 -0 ports/misc/help2man/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:14:23 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34AC616A420; Wed, 26 Oct 2005 15:14:23 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 127F143D49; Wed, 26 Oct 2005 15:14:21 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 26 Oct 2005 11:31:06 -0400 From: John Baldwin To: Ruslan Ermilov Date: Wed, 26 Oct 2005 11:00:53 -0400 User-Agent: KMail/1.8.2 References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> In-Reply-To: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261100.55974.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 15:14:23 -0000 On Wednesday 26 October 2005 02:17 am, Ruslan Ermilov wrote: > ru 2005-10-26 06:17:27 UTC > > FreeBSD src repository > > Modified files: > sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c > Log: > Catch up with new interrupt handling code. > > Revision Changes Path > 1.16 +3 -3 > src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c Sorry about that, will be fixing it more cleanly. BTW, does anyone know why this driver allocates its softc manualn in its attach routine? -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:14:23 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E16316A422; Wed, 26 Oct 2005 15:14:23 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07B0B43D48; Wed, 26 Oct 2005 15:14:21 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 26 Oct 2005 11:31:06 -0400 From: John Baldwin To: Peter Grehan Date: Wed, 26 Oct 2005 10:42:44 -0400 User-Agent: KMail/1.8.2 References: <200510252131.j9PLVNfw059339@repoman.freebsd.org> In-Reply-To: <200510252131.j9PLVNfw059339@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261042.45569.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/zs zs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 15:14:23 -0000 On Tuesday 25 October 2005 05:31 pm, Peter Grehan wrote: > grehan 2005-10-25 21:31:22 UTC > > FreeBSD src repository > > Modified files: > sys/dev/zs zs.c > Log: > Catch up with interrupt-thread changes. Sorry, I must have missed several files in my tree-wide sweeps. I should probably also add a real remove() function for swi's to make that interface more consistent and to avoid violating the swi abstraction. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:31:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77DDC16A41F; Wed, 26 Oct 2005 15:31:12 +0000 (GMT) (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 11D3443D49; Wed, 26 Oct 2005 15:31:12 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFVBUC065187; Wed, 26 Oct 2005 15:31:11 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFVB3G065186; Wed, 26 Oct 2005 15:31:11 GMT (envelope-from mnag) Message-Id: <200510261531.j9QFVB3G065186@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 15:31: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/chinese/pyDict 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, 26 Oct 2005 15:31:12 -0000 mnag 2005-10-26 15:31:11 UTC FreeBSD ports repository Modified files: chinese/pyDict pkg-descr Log: Remove WWW PR: 88036 Submitted by: Jean Milanez Melo Revision Changes Path 1.3 +0 -1 ports/chinese/pyDict/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:33:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A80FE16A420; Wed, 26 Oct 2005 15:33:54 +0000 (GMT) (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 665A343D46; Wed, 26 Oct 2005 15:33:54 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFXs0d065322; Wed, 26 Oct 2005 15:33:54 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFXsdX065321; Wed, 26 Oct 2005 15:33:54 GMT (envelope-from mnag) Message-Id: <200510261533.j9QFXsdX065321@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 15:33: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/chinese/qe 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, 26 Oct 2005 15:33:54 -0000 mnag 2005-10-26 15:33:54 UTC FreeBSD ports repository Modified files: chinese/qe pkg-descr Log: Change pkg-descr and fix WWW PR: 88038 Submitted by: Jean Milanez Melo Revision Changes Path 1.2 +1 -8 ports/chinese/qe/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:43:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76B9716A41F; Wed, 26 Oct 2005 15:43:46 +0000 (GMT) (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 3A4B843D48; Wed, 26 Oct 2005 15:43:46 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFhkn1066436; Wed, 26 Oct 2005 15:43:46 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFhkAR066435; Wed, 26 Oct 2005 15:43:46 GMT (envelope-from garga) Message-Id: <200510261543.j9QFhkAR066435@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 15:43: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/news Makefile ports/news/husky-base-devel Makefile Makefile.inc distinfo pkg-descr pkg-install pkg-plist ports/news/husky-base-devel/files patch-huskymak.cfg X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 15:43:46 -0000 garga 2005-10-26 15:43:45 UTC FreeBSD ports repository Modified files: news Makefile Added files: news/husky-base-devel Makefile Makefile.inc distinfo pkg-descr pkg-install pkg-plist news/husky-base-devel/files patch-huskymak.cfg Log: Common files for Husky Fidosoft Project. Development version. Husky is complete freeware suite of Fidonet applications. WWW: http://husky.sourceforge.net/ PR: ports/88022 Submitted by: Oleg Sharoiko Revision Changes Path 1.115 +1 -0 ports/news/Makefile 1.1 +39 -0 ports/news/husky-base-devel/Makefile (new) 1.1 +25 -0 ports/news/husky-base-devel/Makefile.inc (new) 1.1 +2 -0 ports/news/husky-base-devel/distinfo (new) 1.1 +120 -0 ports/news/husky-base-devel/files/patch-huskymak.cfg (new) 1.1 +6 -0 ports/news/husky-base-devel/pkg-descr (new) 1.1 +72 -0 ports/news/husky-base-devel/pkg-install (new) 1.1 +4 -0 ports/news/husky-base-devel/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:43:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1656916A420; Wed, 26 Oct 2005 15:43:55 +0000 (GMT) (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 CA75A43D46; Wed, 26 Oct 2005 15:43:54 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFhsda066482; Wed, 26 Oct 2005 15:43:54 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFhsJL066481; Wed, 26 Oct 2005 15:43:54 GMT (envelope-from garga) Message-Id: <200510261543.j9QFhsJL066481@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 15:43: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: Wed, 26 Oct 2005 15:43:55 -0000 garga 2005-10-26 15:43:54 UTC FreeBSD ports repository Modified files: . modules Log: husky-base-devel --> ports/news/husky-base-devel Revision Changes Path 1.13469 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:44:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CD2316A41F; Wed, 26 Oct 2005 15:44:13 +0000 (GMT) (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 BCFA243D48; Wed, 26 Oct 2005 15:44:12 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFiCw1066520; Wed, 26 Oct 2005 15:44:12 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFiC2k066519; Wed, 26 Oct 2005 15:44:12 GMT (envelope-from mnag) Message-Id: <200510261544.j9QFiC2k066519@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 15: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/chinese/tocps 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, 26 Oct 2005 15:44:13 -0000 mnag 2005-10-26 15:44:12 UTC FreeBSD ports repository Modified files: chinese/tocps Makefile Log: Change MASTER_SITES Fix DISTNAME PR: 88039 Submitted by: Jean Milanez Melo Revision Changes Path 1.6 +2 -2 ports/chinese/tocps/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:45:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D99E16A420; Wed, 26 Oct 2005 15:45:26 +0000 (GMT) (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 2F5D843D58; Wed, 26 Oct 2005 15:45:25 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFjP5V066709; Wed, 26 Oct 2005 15:45:25 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFjPuj066708; Wed, 26 Oct 2005 15:45:25 GMT (envelope-from garga) Message-Id: <200510261545.j9QFjPuj066708@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 15:45: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/news Makefile ports/news/husky-smapi-devel Makefile distinfo pkg-descr pkg-plist ports/news/husky-smapi-devel/files patch-Makefile patch-makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 15:45:26 -0000 garga 2005-10-26 15:45:25 UTC FreeBSD ports repository Modified files: news Makefile Added files: news/husky-smapi-devel Makefile distinfo pkg-descr pkg-plist news/husky-smapi-devel/files patch-Makefile patch-makefile.inc1 Log: MSGAPI for Husky Fidosoft Project. Development version. Husky is complete freeware suite of Fidonet applications. WWW: http://husky.sourceforge.net/ PR: ports/88024 Submitted by: Oleg Sharoiko Revision Changes Path 1.116 +1 -0 ports/news/Makefile 1.1 +22 -0 ports/news/husky-smapi-devel/Makefile (new) 1.1 +2 -0 ports/news/husky-smapi-devel/distinfo (new) 1.1 +73 -0 ports/news/husky-smapi-devel/files/patch-Makefile (new) 1.1 +11 -0 ports/news/husky-smapi-devel/files/patch-makefile.inc1 (new) 1.1 +6 -0 ports/news/husky-smapi-devel/pkg-descr (new) 1.1 +16 -0 ports/news/husky-smapi-devel/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:45:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E76116A41F; Wed, 26 Oct 2005 15:45:35 +0000 (GMT) (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 C0B9243D4C; Wed, 26 Oct 2005 15:45:34 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFjYXp066755; Wed, 26 Oct 2005 15:45:34 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFjYN9066754; Wed, 26 Oct 2005 15:45:34 GMT (envelope-from garga) Message-Id: <200510261545.j9QFjYN9066754@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 15:45: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: Wed, 26 Oct 2005 15:45:35 -0000 garga 2005-10-26 15:45:34 UTC FreeBSD ports repository Modified files: . modules Log: husky-smapi-devel --> ports/news/husky-smapi-devel Revision Changes Path 1.13470 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:46:18 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9004316A41F; Wed, 26 Oct 2005 15:46:18 +0000 (GMT) (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 4959043D48; Wed, 26 Oct 2005 15:46:18 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFkIpR066888; Wed, 26 Oct 2005 15:46:18 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFkIks066887; Wed, 26 Oct 2005 15:46:18 GMT (envelope-from garga) Message-Id: <200510261546.j9QFkIks066887@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 15:46: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/news Makefile ports/news/husky-fidoconf-devel Makefile distinfo pkg-descr pkg-plist ports/news/husky-fidoconf-devel/files patch-Makefile patch-doc::Makefile patch-makefile.inc patch-man::Makefile patch-man::linkedto.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: Wed, 26 Oct 2005 15:46:18 -0000 garga 2005-10-26 15:46:18 UTC FreeBSD ports repository Modified files: news Makefile Added files: news/husky-fidoconf-devel Makefile distinfo pkg-descr pkg-plist news/husky-fidoconf-devel/files patch-Makefile patch-doc::Makefile patch-makefile.inc patch-man::Makefile patch-man::linkedto.1 patch-tparser.c Log: Configuration library for Husky Fidosoft Project. Development version. Husky is complete freeware suite of Fidonet applications. WWW: http://husky.sourceforge.net/ PR: ports/88025 Submitted by: Oleg Sharoiko Revision Changes Path 1.117 +1 -0 ports/news/Makefile 1.1 +49 -0 ports/news/husky-fidoconf-devel/Makefile (new) 1.1 +2 -0 ports/news/husky-fidoconf-devel/distinfo (new) 1.1 +49 -0 ports/news/husky-fidoconf-devel/files/patch-Makefile (new) 1.1 +31 -0 ports/news/husky-fidoconf-devel/files/patch-doc::Makefile (new) 1.1 +10 -0 ports/news/husky-fidoconf-devel/files/patch-makefile.inc (new) 1.1 +20 -0 ports/news/husky-fidoconf-devel/files/patch-man::Makefile (new) 1.1 +11 -0 ports/news/husky-fidoconf-devel/files/patch-man::linkedto.1 (new) 1.1 +11 -0 ports/news/husky-fidoconf-devel/files/patch-tparser.c (new) 1.1 +6 -0 ports/news/husky-fidoconf-devel/pkg-descr (new) 1.1 +34 -0 ports/news/husky-fidoconf-devel/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:46:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 070EB16A421; Wed, 26 Oct 2005 15:46:27 +0000 (GMT) (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 9E90843D49; Wed, 26 Oct 2005 15:46:26 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFkQkU066934; Wed, 26 Oct 2005 15:46:26 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFkQ0j066933; Wed, 26 Oct 2005 15:46:26 GMT (envelope-from garga) Message-Id: <200510261546.j9QFkQ0j066933@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 15:46: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, 26 Oct 2005 15:46:27 -0000 garga 2005-10-26 15:46:26 UTC FreeBSD ports repository Modified files: . modules Log: husky-fidoconf-devel --> ports/news/husky-fidoconf-devel Revision Changes Path 1.13471 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:46:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5573916A41F; Wed, 26 Oct 2005 15:46:58 +0000 (GMT) (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 21DDE43D45; Wed, 26 Oct 2005 15:46:58 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFkwKQ067045; Wed, 26 Oct 2005 15:46:58 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFkwsO067044; Wed, 26 Oct 2005 15:46:58 GMT (envelope-from garga) Message-Id: <200510261546.j9QFkwsO067044@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 15:46: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/news Makefile ports/news/husky-hpt-devel Makefile distinfo pkg-descr pkg-plist ports/news/husky-hpt-devel/files patch-doc::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, 26 Oct 2005 15:46:58 -0000 garga 2005-10-26 15:46:57 UTC FreeBSD ports repository Modified files: news Makefile Added files: news/husky-hpt-devel Makefile distinfo pkg-descr pkg-plist news/husky-hpt-devel/files patch-doc::Makefile Log: Highly Portable Tosser (full-featured FTN tosser) HPT is a part of Husky Fidosoft Project. Husky is complete freeware suite of Fidonet applications. WWW: http://husky.sourceforge.net/ PR: ports/88026 Submitted by: Oleg Sharoiko Revision Changes Path 1.118 +1 -0 ports/news/Makefile 1.1 +56 -0 ports/news/husky-hpt-devel/Makefile (new) 1.1 +2 -0 ports/news/husky-hpt-devel/distinfo (new) 1.1 +31 -0 ports/news/husky-hpt-devel/files/patch-doc::Makefile (new) 1.1 +6 -0 ports/news/husky-hpt-devel/pkg-descr (new) 1.1 +5 -0 ports/news/husky-hpt-devel/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:47:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8C5D16A420; Wed, 26 Oct 2005 15:47:06 +0000 (GMT) (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 8401443D48; Wed, 26 Oct 2005 15:47:06 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFl6b8067095; Wed, 26 Oct 2005 15:47:06 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFl6GF067094; Wed, 26 Oct 2005 15:47:06 GMT (envelope-from garga) Message-Id: <200510261547.j9QFl6GF067094@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 15:47: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: Wed, 26 Oct 2005 15:47:07 -0000 garga 2005-10-26 15:47:06 UTC FreeBSD ports repository Modified files: . modules Log: husky-hpt-devel --> ports/news/husky-hpt-devel Revision Changes Path 1.13472 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:48:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2096216A421; Wed, 26 Oct 2005 15:48:23 +0000 (GMT) (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 CC9E743D45; Wed, 26 Oct 2005 15:48:22 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFmM9m067293; Wed, 26 Oct 2005 15:48:22 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFmMkM067292; Wed, 26 Oct 2005 15:48:22 GMT (envelope-from garga) Message-Id: <200510261548.j9QFmMkM067292@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 15:48: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/news/husky-base Makefile ports/news/husky-fidoconf Makefile ports/news/husky-hpt Makefile ports/news/husky-smapi 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, 26 Oct 2005 15:48:23 -0000 garga 2005-10-26 15:48:22 UTC FreeBSD ports repository Modified files: news/husky-base Makefile news/husky-fidoconf Makefile news/husky-hpt Makefile news/husky-smapi Makefile Log: - Register CONFLICTS with husky-*-devel Revision Changes Path 1.8 +2 -0 ports/news/husky-base/Makefile 1.14 +2 -0 ports/news/husky-fidoconf/Makefile 1.11 +2 -0 ports/news/husky-hpt/Makefile 1.8 +2 -0 ports/news/husky-smapi/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:51:05 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A60C116A41F; Wed, 26 Oct 2005 15:51:05 +0000 (GMT) (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 61C0043D45; Wed, 26 Oct 2005 15:51:05 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFp5Yx067510; Wed, 26 Oct 2005 15:51:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFp5aZ067509; Wed, 26 Oct 2005 15:51:05 GMT (envelope-from jhb) Message-Id: <200510261551.j9QFp5aZ067509@repoman.freebsd.org> From: John Baldwin Date: Wed, 26 Oct 2005 15: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 kern_intr.c src/sys/sys interrupt.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, 26 Oct 2005 15:51:05 -0000 jhb 2005-10-26 15:51:05 UTC FreeBSD src repository Modified files: sys/kern kern_intr.c sys/sys interrupt.h Log: Add a swi_remove() function to teardown software interrupt handlers. For now it just calls intr_event_remove_handler(), but at some point it might also be responsible for tearing down interrupt events created via swi_add. Revision Changes Path 1.128 +17 -0 src/sys/kern/kern_intr.c 1.33 +1 -0 src/sys/sys/interrupt.h From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:52:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7A7416A41F; Wed, 26 Oct 2005 15:52:19 +0000 (GMT) (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 155CE43D6B; Wed, 26 Oct 2005 15:52:17 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFqGuw067672; Wed, 26 Oct 2005 15:52:16 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFqGDs067671; Wed, 26 Oct 2005 15:52:16 GMT (envelope-from jhb) Message-Id: <200510261552.j9QFqGDs067671@repoman.freebsd.org> From: John Baldwin Date: Wed, 26 Oct 2005 15:52: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/cx if_cx.c src/sys/dev/rc rc.c src/sys/dev/sab sab.c src/sys/dev/uart uart_tty.c src/sys/dev/zs zs.c src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 15:52:19 -0000 jhb 2005-10-26 15:52:16 UTC FreeBSD src repository Modified files: sys/dev/cx if_cx.c sys/dev/rc rc.c sys/dev/sab sab.c sys/dev/uart uart_tty.c sys/dev/zs zs.c sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c Log: - Use swi_remove() to teardown swi handlers rather than intr_event_remove_handler(). - Remove tty: prefix from a couple of swi handler names. Revision Changes Path 1.51 +1 -1 src/sys/dev/cx/if_cx.c 1.102 +2 -2 src/sys/dev/rc/rc.c 1.42 +1 -1 src/sys/dev/sab/sab.c 1.25 +1 -1 src/sys/dev/uart/uart_tty.c 1.33 +1 -1 src/sys/dev/zs/zs.c 1.17 +2 -2 src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:57:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2ED0316A41F; Wed, 26 Oct 2005 15:57:57 +0000 (GMT) (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 CE33643D69; Wed, 26 Oct 2005 15:57:51 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFvp4I068210; Wed, 26 Oct 2005 15:57:51 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFvpoo068209; Wed, 26 Oct 2005 15:57:51 GMT (envelope-from garga) Message-Id: <200510261557.j9QFvpoo068209@repoman.freebsd.org> From: Renato Botelho Date: Wed, 26 Oct 2005 15:57: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/chinese/ve 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, 26 Oct 2005 15:57:57 -0000 garga 2005-10-26 15:57:51 UTC FreeBSD ports repository Modified files: chinese/ve Makefile Log: - Mark it as DEPRECATED - Set EXPIRATION_DATE PR: ports/88040 Submitted by: Jean Milanez Melo Revision Changes Path 1.10 +3 -0 ports/chinese/ve/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 15:59:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E94416A41F; Wed, 26 Oct 2005 15:59:26 +0000 (GMT) (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 2DCAE43D46; Wed, 26 Oct 2005 15:59:26 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFxQ06068331; Wed, 26 Oct 2005 15:59:26 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFxQru068330; Wed, 26 Oct 2005 15:59:26 GMT (envelope-from skv) Message-Id: <200510261559.j9QFxQru068330@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 26 Oct 2005 15: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/mail/p5-Mail-DomainKeys 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, 26 Oct 2005 15:59:26 -0000 skv 2005-10-26 15:59:26 UTC FreeBSD ports repository Modified files: mail/p5-Mail-DomainKeys Makefile Log: Add missed manpage. Pointed by: pointyhat (kris) Revision Changes Path 1.5 +2 -0 ports/mail/p5-Mail-DomainKeys/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 16:03:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AD9716A41F; Wed, 26 Oct 2005 16:03:49 +0000 (GMT) (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 3EC0943D60; Wed, 26 Oct 2005 16:03:48 +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 26F711A3C19; Wed, 26 Oct 2005 09:03:48 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 5207852ADF; Wed, 26 Oct 2005 12:03:46 -0400 (EDT) Date: Wed, 26 Oct 2005 12:03:46 -0400 From: Kris Kennaway To: Dirk Meyer Message-ID: <20051026160345.GB31676@xor.obsecurity.org> References: <200510261137.j9QBblTr032566@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DBIVS5p969aUjpLe" Content-Disposition: inline In-Reply-To: <200510261137.j9QBblTr032566@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/emulators/stonx Makefile pkg-plist ports/emulators/stonx/files patch-makefonts.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, 26 Oct 2005 16:03:49 -0000 --DBIVS5p969aUjpLe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 26, 2005 at 11:37:47AM +0000, Dirk Meyer wrote: > dinoex 2005-10-26 11:37:47 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > emulators/stonx Makefile pkg-plist=20 > Added files: > emulators/stonx/files patch-makefonts.sh=20 > Log: > - make build without X running > Requested by: kris Well, that's not quite what I requested. I tried to explain to you a way for the package build to obtain a running X server. Kris --DBIVS5p969aUjpLe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDX6jhWry0BWjoQKURAl//AJ9FHrTppuwQbKCbp4uKjZE8sOwtDQCfUw9N xNmLTab+13LNS/ntIgVEJ3Q= =QsWs -----END PGP SIGNATURE----- --DBIVS5p969aUjpLe-- From owner-cvs-all@FreeBSD.ORG Wed Oct 26 16:04:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F40B616A41F; Wed, 26 Oct 2005 16:04:52 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 839BD43D4C; Wed, 26 Oct 2005 16:04:52 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QG4qwt068639; Wed, 26 Oct 2005 16:04:52 GMT (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QG4qEm068636; Wed, 26 Oct 2005 16:04:52 GMT (envelope-from jeh) Message-Id: <200510261604.j9QG4qEm068636@repoman.freebsd.org> From: "James E. Housley" Date: Wed, 26 Oct 2005 16:04: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/uvscan-dat 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, 26 Oct 2005 16:04:53 -0000 jeh 2005-10-26 16:04:52 UTC FreeBSD ports repository Modified files: security/uvscan-dat Makefile distinfo Log: Update to DAT 4613 Revision Changes Path 1.436 +1 -1 ports/security/uvscan-dat/Makefile 1.431 +2 -2 ports/security/uvscan-dat/distinfo From owner-cvs-all@FreeBSD.ORG Wed Oct 26 16:05:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9D2116A421; Wed, 26 Oct 2005 16:05:03 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59AC343D5A; Wed, 26 Oct 2005 16:05:03 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QG53vc068722; Wed, 26 Oct 2005 16:05:03 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QG53r3068721; Wed, 26 Oct 2005 16:05:03 GMT (envelope-from vs) Message-Id: <200510261605.j9QG53r3068721@repoman.freebsd.org> From: Volker Stolz Date: Wed, 26 Oct 2005 16:05: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/misc/libutf Makefile pkg-descr ports/misc/libutf/files 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: Wed, 26 Oct 2005 16:05:04 -0000 vs 2005-10-26 16:05:03 UTC FreeBSD ports repository Modified files: misc/libutf Makefile pkg-descr Removed files: misc/libutf/files patch-Makefile.in Log: Use MAKE_ARGS, fix location mentioned in pkg-descr Revision Changes Path 1.6 +1 -1 ports/misc/libutf/Makefile 1.2 +0 -24 ports/misc/libutf/files/patch-Makefile.in (dead) 1.2 +1 -1 ports/misc/libutf/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Oct 26 16:11:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ECED16A420; Wed, 26 Oct 2005 16:11:42 +0000 (GMT) (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 D2C0943D48; Wed, 26 Oct 2005 16:11:41 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QGBfJq069295; Wed, 26 Oct 2005 16:11:41 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QGBfqv069294; Wed, 26 Oct 2005 16:11:41 GMT (envelope-from mnag) Message-Id: <200510261611.j9QGBfqv069294@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 16:11: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/py-ice 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: Wed, 26 Oct 2005 16:11:42 -0000 mnag 2005-10-26 16:11:41 UTC FreeBSD ports repository Modified files: devel/py-ice Makefile pkg-descr Log: Added second MASTER_SITES Add GPL comment in pkg-descr Submitted by: Boris Samorodov (maintainer via email) Revision Changes Path 1.2 +2 -1 ports/devel/py-ice/Makefile 1.2 +2 -0 ports/devel/py-ice/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Oct 26 16:17:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC11C16A41F; Wed, 26 Oct 2005 16:17:34 +0000 (GMT) (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 8A16443D4C; Wed, 26 Oct 2005 16:17:34 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QGHYHj069660; Wed, 26 Oct 2005 16:17:34 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QGHYEG069659; Wed, 26 Oct 2005 16:17:34 GMT (envelope-from novel) Message-Id: <200510261617.j9QGHYEG069659@repoman.freebsd.org> From: Roman Bogorodskiy Date: Wed, 26 Oct 2005 16:17: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/sysutils/conky 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, 26 Oct 2005 16:17:35 -0000 novel 2005-10-26 16:17:34 UTC FreeBSD ports repository Modified files: sysutils/conky Makefile Log: Do not override CFLAGS and CONFIGURE_ENV. Reported by: kris Pointy hat to: novel Revision Changes Path 1.7 +2 -2 ports/sysutils/conky/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 16:23:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB98916A41F; Wed, 26 Oct 2005 16:23:48 +0000 (GMT) (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 690CE43D49; Wed, 26 Oct 2005 16:23:48 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QGNmkq070016; Wed, 26 Oct 2005 16:23:48 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QGNmca070015; Wed, 26 Oct 2005 16:23:48 GMT (envelope-from tobez) Message-Id: <200510261623.j9QGNmca070015@repoman.freebsd.org> From: Anton Berezin Date: Wed, 26 Oct 2005 16:23: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 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, 26 Oct 2005 16:23:48 -0000 tobez 2005-10-26 16:23:48 UTC FreeBSD ports repository Modified files: . access Log: Welcome Aaron Dalton (aaron) as a new ports committer. In his new role he will continue his excellent work on many p5 ports (and hopefully more). I'll be his mentor. Aaron also supplants ache as the first entry in the access file. Approved by: portmgr Account created by: simon Revision Changes Path 1.672 +1 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Wed Oct 26 16:26:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB62116A41F; Wed, 26 Oct 2005 16:26:34 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A55943D45; Wed, 26 Oct 2005 16:26:34 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QGQYZM070257; Wed, 26 Oct 2005 16:26:34 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QGQYD8070256; Wed, 26 Oct 2005 16:26:34 GMT (envelope-from vs) Message-Id: <200510261626.j9QGQYD8070256@repoman.freebsd.org> From: Volker Stolz Date: Wed, 26 Oct 2005 16:26: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/x11-toolkits/gtkglarea-- Makefile ports/x11-toolkits/gtkglarea--/files patch-examples::pickmm::pick.cc patch-examples::planetmm::planet.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: Wed, 26 Oct 2005 16:26:35 -0000 vs 2005-10-26 16:26:34 UTC FreeBSD ports repository Modified files: x11-toolkits/gtkglarea-- Makefile x11-toolkits/gtkglarea--/files patch-examples::pickmm::pick.cc patch-examples::planetmm::planet.cc Log: DISTNAME affects WRKSRC-generation, sigh. Fix build-issue while here Noticed by: kris Revision Changes Path 1.16 +1 -0 ports/x11-toolkits/gtkglarea--/Makefile 1.2 +18 -6 ports/x11-toolkits/gtkglarea--/files/patch-examples::pickmm::pick.cc 1.2 +18 -6 ports/x11-toolkits/gtkglarea--/files/patch-examples::planetmm::planet.cc From owner-cvs-all@FreeBSD.ORG Wed Oct 26 16:28:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BF8616A420; Wed, 26 Oct 2005 16:28:19 +0000 (GMT) (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 71F4C43D94; Wed, 26 Oct 2005 16:28:18 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QGSIqE070363; Wed, 26 Oct 2005 16:28:18 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QGSINi070362; Wed, 26 Oct 2005 16:28:18 GMT (envelope-from flz) Message-Id: <200510261628.j9QGSINi070362@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 26 Oct 2005 16:28: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-wm/tpager 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, 26 Oct 2005 16:28:19 -0000 flz 2005-10-26 16:28:18 UTC FreeBSD ports repository Modified files: x11-wm/tpager Makefile Log: - Remove hardcoded X11BASE. Reported by: kris Revision Changes Path 1.5 +4 -0 ports/x11-wm/tpager/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 16:32:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE19416A41F; Wed, 26 Oct 2005 16:32:55 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A4A843D45; Wed, 26 Oct 2005 16:32:55 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QGWtt2070697; Wed, 26 Oct 2005 16:32:55 GMT (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QGWtVd070696; Wed, 26 Oct 2005 16:32:55 GMT (envelope-from fenner) Message-Id: <200510261632.j9QGWtVd070696@repoman.freebsd.org> From: Bill Fenner Date: Wed, 26 Oct 2005 16:32: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/benchmarks/lmbench 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: Wed, 26 Oct 2005 16:32:56 -0000 fenner 2005-10-26 16:32:55 UTC FreeBSD ports repository Modified files: benchmarks/lmbench Makefile pkg-plist Log: Use scripts/version to get the lmbench version instead of using the port's version. Clean up leftover .o files from the build before installing. On some systems there are also .s files for no apparent reason, so clean those up too. Revision Changes Path 1.19 +6 -1 ports/benchmarks/lmbench/Makefile 1.8 +0 -9 ports/benchmarks/lmbench/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 16:33:18 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48DAE16A41F for ; Wed, 26 Oct 2005 16:33:18 +0000 (GMT) (envelope-from maksim.yevmenkin@gmail.com) Received: from nproxy.gmail.com (nproxy.gmail.com [64.233.182.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CB8043D48 for ; Wed, 26 Oct 2005 16:33:16 +0000 (GMT) (envelope-from maksim.yevmenkin@gmail.com) Received: by nproxy.gmail.com with SMTP id p48so41567nfa for ; Wed, 26 Oct 2005 09:33:15 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=QHvqEDVN8CY9W5TBC51u0HWUldbnFQBt+zsysYb25DV4mwR0epNZzaQr+yPo4DVV8BFEoxUQJgp6htX/H3CW2WjEO0qCAPYNVkqsL5qbv4FTF06tHgHHXjdAm1TjFqE/W8Iujqwo+jHrYyWFpnH/ztECZMZNIoOgNbOk1TckV0k= Received: by 10.48.236.12 with SMTP id j12mr279251nfh; Wed, 26 Oct 2005 09:33:15 -0700 (PDT) Received: by 10.48.127.20 with HTTP; Wed, 26 Oct 2005 09:33:15 -0700 (PDT) Message-ID: Date: Wed, 26 Oct 2005 09:33:15 -0700 From: Maksim Yevmenkin To: John Baldwin In-Reply-To: <200510261100.55974.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> <200510261100.55974.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 16:33:18 -0000 John, [...] > Sorry about that, will be fixing it more cleanly. BTW, does anyone know = why > this driver allocates its softc manualn in its attach routine? ng_bt3c(4) is a netgraph device driver. there could be failures in both device part (i/o port, interrupts etc.) as well as in netgraph part (could not create node). so decided to do it this way. right now i can not recall any other reason :) thanks, max From owner-cvs-all@FreeBSD.ORG Wed Oct 26 16:44:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3623A16A41F; Wed, 26 Oct 2005 16:44:22 +0000 (GMT) (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 7360243D4C; Wed, 26 Oct 2005 16:44:21 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QGiLHX071207; Wed, 26 Oct 2005 16:44:21 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QGiLcU071206; Wed, 26 Oct 2005 16:44:21 GMT (envelope-from flz) Message-Id: <200510261644.j9QGiLcU071206@repoman.freebsd.org> From: Florent Thoumie Date: Wed, 26 Oct 2005 16:44: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/graphics/icoconvert 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, 26 Oct 2005 16:44:22 -0000 flz 2005-10-26 16:44:21 UTC FreeBSD ports repository Modified files: graphics/icoconvert Makefile Log: - Remove hardcoded LOCALBASE. Reported by: kris Revision Changes Path 1.4 +2 -2 ports/graphics/icoconvert/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:01:41 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FCB116A427; Wed, 26 Oct 2005 17:01:41 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id A09CC43D46; Wed, 26 Oct 2005 17:01:40 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9QH1d78099706; Wed, 26 Oct 2005 10:01:39 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9QH1doT099705; Wed, 26 Oct 2005 10:01:39 -0700 (PDT) (envelope-from obrien) Date: Wed, 26 Oct 2005 10:01:39 -0700 From: "David O'Brien" To: John Baldwin Message-ID: <20051026170139.GA99571@dragon.NUXI.org> References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> <200510251309.31811.jhb@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510251309.31811.jhb@freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 17:01:41 -0000 On Tue, Oct 25, 2005 at 01:09:30PM -0400, John Baldwin wrote: > Also, anyone with half a brain that reads commit mail knows that rik works on > cp(4) and cx(4), so I think that your lack-of-MAINTAINERS claim is just a > bunch of hot air personally. What ever. Others have complained that we have a situation where poeple claim mainatainership, but make it too hard to figure out. The number of files one changes to please a new compiler makes it too large a task to do a 'cvs log' on every file change. We have an offical centralized mechanism to state mainaintership AND a special location for source code - so that others can easily know. If it isn't used, then the maintainer shouldn't be claiming an issue about maintainership. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:05:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8411116A41F; Wed, 26 Oct 2005 17:05:03 +0000 (GMT) (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 3B2C143D49; Wed, 26 Oct 2005 17:05:03 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QH53kc079409; Wed, 26 Oct 2005 17:05:03 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QH52Qc079408; Wed, 26 Oct 2005 17:05:02 GMT (envelope-from erwin) Message-Id: <200510261705.j9QH52Qc079408@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 26 Oct 2005 17:05: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/p5-HTML-TableExtract 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, 26 Oct 2005 17:05:03 -0000 erwin 2005-10-26 17:05:02 UTC FreeBSD ports repository Modified files: www/p5-HTML-TableExtract Makefile Log: The package name is printed before the value of ${IGNORE} so make it a real sentence. Submitted by: barner Reviewed by: tobez Revision Changes Path 1.20 +1 -1 ports/www/p5-HTML-TableExtract/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:08:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 755B616A41F; Wed, 26 Oct 2005 17:08:11 +0000 (GMT) (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 DA66743D45; Wed, 26 Oct 2005 17:08:06 +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 j9QH84rK032338; Wed, 26 Oct 2005 11:08:05 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <435FB7F4.6020700@samsco.org> Date: Wed, 26 Oct 2005 11:08:04 -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: Maksim Yevmenkin References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> <200510261100.55974.jhb@freebsd.org> In-Reply-To: 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.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Ruslan Ermilov , cvs-all@FreeBSD.org, John Baldwin Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 17:08:11 -0000 Maksim Yevmenkin wrote: > John, > > [...] > > >>Sorry about that, will be fixing it more cleanly. BTW, does anyone know why >>this driver allocates its softc manualn in its attach routine? > > > ng_bt3c(4) is a netgraph device driver. there could be failures in > both device part (i/o port, interrupts etc.) as well as in netgraph > part (could not create node). so decided to do it this way. right now > i can not recall any other reason :) > > thanks, > max If the driver is attaching via normal newbus methods, and the bluetooth stack hasn't done something strange to override this, then there is no need to not trust the softc that is automatically provided. Scott From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:13:51 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FB8916A41F; Wed, 26 Oct 2005 17:13:51 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC4F843D48; Wed, 26 Oct 2005 17:13:50 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 26 Oct 2005 13:30:35 -0400 From: John Baldwin To: obrien@freebsd.org Date: Wed, 26 Oct 2005 13:14:45 -0400 User-Agent: KMail/1.8.2 References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <200510251309.31811.jhb@freebsd.org> <20051026170139.GA99571@dragon.NUXI.org> In-Reply-To: <20051026170139.GA99571@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261314.46614.jhb@freebsd.org> Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cp if_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: Wed, 26 Oct 2005 17:13:51 -0000 On Wednesday 26 October 2005 01:01 pm, David O'Brien wrote: > On Tue, Oct 25, 2005 at 01:09:30PM -0400, John Baldwin wrote: > > Also, anyone with half a brain that reads commit mail knows that rik > > works on cp(4) and cx(4), so I think that your lack-of-MAINTAINERS claim > > is just a bunch of hot air personally. > > What ever. Others have complained that we have a situation where poeple > claim mainatainership, but make it too hard to figure out. The number of > files one changes to please a new compiler makes it too large a task to > do a 'cvs log' on every file change. We have an offical centralized > mechanism to state mainaintership AND a special location for source code > - so that others can easily know. If it isn't used, then the maintainer > shouldn't be claiming an issue about maintainership. He didn't claim that, you put that in his mouth. He just backed out your changes and replaced them with a much simpler version. If anything, his argument was to avoid rediculously large diffs and repo churn. Surely you of all people can understand those arguments give your history of jumping up and down over vendor branch stuff. You jumped up and down about how dare he back out your changes WITHOUT REGARD for the fact that he might have addressed your gcc 4.0 concerns already when he did his updates (I guess you couldn't be bothered to check that part even though it only took me about 5 clicks via cvsweb to find the relevant diff for the net changes). Given that he didn't just revert your changes entirely but solved the underlying problem in a different way it seems to me that his change is not a "backout" per se and that the argument should have ended right there. In fact, here's the cvsweb URL. You can see clearly how he changed things such that his commit wasn't a direct backout of your changes: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/cp/if_cp.c.diff?r1=1.28&r2=1.24.2.1&f=h Please have the courtesy to read the commit log (where rik mentioned the use of forward static function declarations, etc.) and then check the diff before going off half-coked making wild and baseless accusations complete with threats about bringing the whole mess up to core if the targeted developer doesn't cower in fear and cater to your whims. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:13:51 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBF0716A420; Wed, 26 Oct 2005 17:13:51 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3700D43D49; Wed, 26 Oct 2005 17:13:51 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 26 Oct 2005 13:30:34 -0400 From: John Baldwin To: Maksim Yevmenkin Date: Wed, 26 Oct 2005 12:58:49 -0400 User-Agent: KMail/1.8.2 References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> <200510261100.55974.jhb@freebsd.org> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261258.51651.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 17:13:52 -0000 On Wednesday 26 October 2005 12:33 pm, Maksim Yevmenkin wrote: > John, > > [...] > > > Sorry about that, will be fixing it more cleanly. BTW, does anyone know > > why this driver allocates its softc manualn in its attach routine? > > ng_bt3c(4) is a netgraph device driver. there could be failures in > both device part (i/o port, interrupts etc.) as well as in netgraph > part (could not create node). so decided to do it this way. right now > i can not recall any other reason :) Even if netgraph fails then new-bus will still free it for you when attach returns ENXIO. All you have to do is set the size in your driver_t and axe the malloc, free, and device_set_softc calls and you should be done. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:14:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FDA816A426; Wed, 26 Oct 2005 17:14:40 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A0CD43D48; Wed, 26 Oct 2005 17:14:39 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QHEdB6080112; Wed, 26 Oct 2005 17:14:39 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QHEdaX080111; Wed, 26 Oct 2005 17:14:39 GMT (envelope-from cy) Message-Id: <200510261714.j9QHEdaX080111@repoman.freebsd.org> From: Cy Schubert Date: Wed, 26 Oct 2005 17: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/security/sudosh Makefile pkg-message pkg-plist ports/security/sudosh/files patch-src::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, 26 Oct 2005 17:14:40 -0000 cy 2005-10-26 17:14:39 UTC FreeBSD ports repository Modified files: security/sudosh Makefile pkg-plist security/sudosh/files patch-src::Makefile.in Removed files: security/sudosh pkg-message Log: Make this port sysinstall friendly. Revision Changes Path 1.18 +1 -4 ports/security/sudosh/Makefile 1.2 +3 -2 ports/security/sudosh/files/patch-src::Makefile.in 1.2 +0 -13 ports/security/sudosh/pkg-message (dead) 1.4 +2 -0 ports/security/sudosh/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:16:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8035B16A41F; Wed, 26 Oct 2005 17:16:30 +0000 (GMT) (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 3BCB543D46; Wed, 26 Oct 2005 17:16:30 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QHGUID080266; Wed, 26 Oct 2005 17:16:30 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QHGUxH080265; Wed, 26 Oct 2005 17:16:30 GMT (envelope-from thierry) Message-Id: <200510261716.j9QHGUxH080265@repoman.freebsd.org> From: Thierry Thomas Date: Wed, 26 Oct 2005 17:16: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/www/tidy-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: Wed, 26 Oct 2005 17:16:30 -0000 thierry 2005-10-26 17:16:30 UTC FreeBSD ports repository Modified files: www/tidy-devel Makefile distinfo Log: Updare to 051025. Revision Changes Path 1.149 +1 -1 ports/www/tidy-devel/Makefile 1.131 +2 -2 ports/www/tidy-devel/distinfo From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:22:53 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A89816A41F; Wed, 26 Oct 2005 17:22:53 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id C41AE43D48; Wed, 26 Oct 2005 17:22:52 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 26 Oct 2005 13:39:37 -0400 From: John Baldwin To: Mark Linimon Date: Wed, 26 Oct 2005 13:20:45 -0400 User-Agent: KMail/1.8.2 References: <200510251948.j9PJmmmj043891@repoman.freebsd.org> <20051025224540.GB4123@soaustin.net> In-Reply-To: <20051025224540.GB4123@soaustin.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261320.46985.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_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, 26 Oct 2005 17:22:53 -0000 On Tuesday 25 October 2005 06:45 pm, Mark Linimon wrote: > On Tue, Oct 25, 2005 at 07:48:48PM +0000, John Baldwin wrote: > > Reorganize the interrupt handling code a bit to make a few things > > cleaner and increase flexibility to allow various different approaches to > > be tried in the future. > > Wow. Having (in a previous existance) worked on real-time OS interrupt > handlers I can likely guess how much work went into this. Nice. Actually, this diff wasn't a huge deal, it was mostly just a refactoring of what was already there. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:24:48 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33E8416A41F for ; Wed, 26 Oct 2005 17:24:48 +0000 (GMT) (envelope-from maksim.yevmenkin@gmail.com) Received: from nproxy.gmail.com (nproxy.gmail.com [64.233.182.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 988AA43D45 for ; Wed, 26 Oct 2005 17:24:44 +0000 (GMT) (envelope-from maksim.yevmenkin@gmail.com) Received: by nproxy.gmail.com with SMTP id p48so43971nfa for ; Wed, 26 Oct 2005 10:24:42 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=LQjXCaFZ52sUHQKxJ8UGWA7nFSJVU/3L9nwEVkl6dbGZ6zbx2M7WDTrBu3bq+veUBFveKehe5jijYLIxsqHXy+Mxg1n5DbGSVNFAYfdps80+uWxNJ5tYJsiOVeE6RPSs6zHEvsoS634Xs9KGHvpcz54w4iryWHIdDuEQlxm/iFk= Received: by 10.48.240.15 with SMTP id n15mr288547nfh; Wed, 26 Oct 2005 10:24:42 -0700 (PDT) Received: by 10.48.127.20 with HTTP; Wed, 26 Oct 2005 10:24:42 -0700 (PDT) Message-ID: Date: Wed, 26 Oct 2005 10:24:42 -0700 From: Maksim Yevmenkin To: John Baldwin In-Reply-To: <200510261258.51651.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> <200510261100.55974.jhb@freebsd.org> <200510261258.51651.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 17:24:48 -0000 On 10/26/05, John Baldwin wrote: > On Wednesday 26 October 2005 12:33 pm, Maksim Yevmenkin wrote: > > John, > > > > [...] > > > > > Sorry about that, will be fixing it more cleanly. BTW, does anyone k= now > > > why this driver allocates its softc manualn in its attach routine? > > > > ng_bt3c(4) is a netgraph device driver. there could be failures in > > both device part (i/o port, interrupts etc.) as well as in netgraph > > part (could not create node). so decided to do it this way. right now > > i can not recall any other reason :) > > Even if netgraph fails then new-bus will still free it for you when attac= h > returns ENXIO. All you have to do is set the size in your driver_t and a= xe > the malloc, free, and device_set_softc calls and you should be done. would something like this do? or am i missing something? please note: i have not tested the patch. cvs diff: Diffing . Index: ng_bt3c_pccard.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard= .c,v retrieving revision 1.17 diff -u -r1.17 ng_bt3c_pccard.c --- ng_bt3c_pccard.c 26 Oct 2005 15:52:16 -0000 1.17 +++ ng_bt3c_pccard.c 26 Oct 2005 17:23:02 -0000 @@ -612,11 +612,7 @@ static int bt3c_pccard_attach(device_t dev) { - bt3c_softc_p sc =3D NULL; - - sc =3D (bt3c_softc_p) malloc(sizeof(*sc), M_BT3C, M_NOWAIT|M_ZERO); - if (sc =3D=3D NULL) - return (ENOMEM); + bt3c_softc_p sc =3D (bt3c_softc_p) device_get_softc(dev); /* Allocate I/O ports */ sc->iobase_rid =3D 0; @@ -677,7 +673,6 @@ sc->want =3D 1; NG_NODE_SET_PRIVATE(sc->node, sc); - device_set_softc(dev, sc); return (0); bad: @@ -705,8 +700,6 @@ sc->iobase_rid =3D 0; } - free(sc, M_BT3C); - return (ENXIO); } /* bt3c_pccacd_attach */ @@ -1197,7 +1190,7 @@ static driver_t bt3c_pccard_driver =3D { NG_BT3C_NODE_TYPE, bt3c_pccard_methods, - 0 + sizeof(bt3c_softc_t) }; static devclass_t bt3c_devclass; =3D=3D max From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:27:54 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D894C16A41F; Wed, 26 Oct 2005 17:27:54 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACFD043D49; Wed, 26 Oct 2005 17:27:51 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9QHRZAG010918; Wed, 26 Oct 2005 10:27:35 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9QHRYRK010917; Wed, 26 Oct 2005 10:27:34 -0700 (PDT) (envelope-from obrien) Date: Wed, 26 Oct 2005 10:27:34 -0700 From: "David O'Brien" To: Roman Kurakin Message-ID: <20051026172734.GA99901@dragon.NUXI.org> References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> <435E04AA.3080605@cronyx.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <435E04AA.3080605@cronyx.ru> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 17:27:55 -0000 On Tue, Oct 25, 2005 at 02:10:50PM +0400, Roman Kurakin wrote: > The commit log didn't state what was the problem variable forward > declaration or/and function > forward declaration. Since you became a committer 2003/12/18, I guess you haven't been part of FreeBSD when we've worked on a GCC compiler upgrade. We make these type of changes to make a new version of GCC build FreeBSD. The other choice is to disconnect these drivers from the build. The commits done where typical of what's been done for the past decade. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:32:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADB4C16A41F; Wed, 26 Oct 2005 17:32:24 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FB7443D46; Wed, 26 Oct 2005 17:32:24 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9QHWN6u011056; Wed, 26 Oct 2005 10:32:23 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9QHWM9K011055; Wed, 26 Oct 2005 10:32:22 -0700 (PDT) (envelope-from obrien) Date: Wed, 26 Oct 2005 10:32:22 -0700 From: "David O'Brien" To: Kris Kennaway Message-ID: <20051026173222.GB99571@dragon.NUXI.org> References: <200510240034.j9O0YDgG047096@repoman.freebsd.org> <20051024143613.hu726dyokc4wco88@netchild.homeip.net> <20051025051555.GD55418@dragon.NUXI.org> <20051025164813.GD16812@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051025164813.GD16812@xor.obsecurity.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Alexander Leidinger , cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/editors/vim Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 17:32:24 -0000 On Tue, Oct 25, 2005 at 12:48:15PM -0400, Kris Kennaway wrote: > On Mon, Oct 24, 2005 at 10:15:55PM -0700, David O'Brien wrote: > > To tell the truth I'm not sure the exact case Kris was trying to allow. > > You are right that ac_default_prefix=${LOCALBASE} may be a better > > substitution. > > Perhaps you should have asked if you were unclear. Maybe. Or maybe the set of emails I got could have been more clear. I spent several hours trying to whack ports into shape due to your emails - rather than ignore them. Figuring out how to whack this one on the head was particularly time consuming due to its obtuse build. Rather than be curt, now that I know how to change it - simply saying "XYZ" is a better subsitution would be nice. :-) > They may be different in some allowed cases. So I guess you were testing PREFIX=/foo LOCALBASE=/bar X11BASE=/baz. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:37:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0993F16A41F; Wed, 26 Oct 2005 17:37:56 +0000 (GMT) (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 BD21143D72; Wed, 26 Oct 2005 17:37:55 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QHbtLV082667; Wed, 26 Oct 2005 17:37:55 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QHbtnd082666; Wed, 26 Oct 2005 17:37:55 GMT (envelope-from jhb) Message-Id: <200510261737.j9QHbtnd082666@repoman.freebsd.org> From: John Baldwin Date: Wed, 26 Oct 2005 17:37: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/usr.bin/pr pr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 17:37:56 -0000 jhb 2005-10-26 17:37:55 UTC FreeBSD src repository Modified files: usr.bin/pr pr.c Log: Fix misspelled 'argument' and try to make the sentence into English. Submitted by: Andre Guibert de Bruet andy at siliconlandmark dot com Revision Changes Path 1.19 +1 -1 src/usr.bin/pr/pr.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:39:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5635616A41F; Wed, 26 Oct 2005 17:39:36 +0000 (GMT) (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 11ECD43D6B; Wed, 26 Oct 2005 17:39:36 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QHdZog082964; Wed, 26 Oct 2005 17:39:35 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QHdZus082963; Wed, 26 Oct 2005 17:39:35 GMT (envelope-from jhb) Message-Id: <200510261739.j9QHdZus082963@repoman.freebsd.org> From: John Baldwin Date: Wed, 26 Oct 2005 17:39: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/share/examples/ipfilter ipf-howto.txt X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 17:39:36 -0000 jhb 2005-10-26 17:39:35 UTC FreeBSD src repository Modified files: share/examples/ipfilter ipf-howto.txt Log: Spell 'argument' correctly. Submitted by: Andre Guibert de Bruet andy at siliconlandmark dot com Revision Changes Path 1.3 +1 -1 src/share/examples/ipfilter/ipf-howto.txt From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:43:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA99A16A422; Wed, 26 Oct 2005 17:43:51 +0000 (GMT) (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 9AFCD43DB4; Wed, 26 Oct 2005 17:43:11 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QHhB26083233; Wed, 26 Oct 2005 17:43:11 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QHhBhY083232; Wed, 26 Oct 2005 17:43:11 GMT (envelope-from lofi) Message-Id: <200510261743.j9QHhBhY083232@repoman.freebsd.org> From: Michael Nottebrock Date: Wed, 26 Oct 2005 17:43: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/graphics/xfig Makefile ports/graphics/xfig/files patch-Fig-color.ad patch-Fig.ad X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 17:43:52 -0000 lofi 2005-10-26 17:43:11 UTC FreeBSD ports repository Modified files: graphics/xfig Makefile Added files: graphics/xfig/files patch-Fig-color.ad patch-Fig.ad Log: Don't race and run away when run under KDE with KDE-modified X resources. Patch obtained from: Debian Revision Changes Path 1.55 +1 -1 ports/graphics/xfig/Makefile 1.1 +17 -0 ports/graphics/xfig/files/patch-Fig-color.ad (new) 1.1 +17 -0 ports/graphics/xfig/files/patch-Fig.ad (new) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 17:48:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 066F316A41F; Wed, 26 Oct 2005 17:48:13 +0000 (GMT) (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 B7D1C43D45; Wed, 26 Oct 2005 17:48:12 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QHmCe8083522; Wed, 26 Oct 2005 17:48:12 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QHmCi5083521; Wed, 26 Oct 2005 17:48:12 GMT (envelope-from ehaupt) Message-Id: <200510261748.j9QHmCi5083521@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 26 Oct 2005 17:48: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/misc/esniper 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, 26 Oct 2005 17:48:13 -0000 ehaupt 2005-10-26 17:48:12 UTC FreeBSD ports repository Modified files: misc/esniper Makefile distinfo Log: Update to 2.14.0 PR: 88043 Submitted by: Lewis Thompson (maintainer) Revision Changes Path 1.2 +1 -1 ports/misc/esniper/Makefile 1.2 +2 -2 ports/misc/esniper/distinfo From owner-cvs-all@FreeBSD.ORG Wed Oct 26 18:15:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AC6716A41F; Wed, 26 Oct 2005 18:15:58 +0000 (GMT) (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 1ABC943D45; Wed, 26 Oct 2005 18:15:58 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QIFvg5085164; Wed, 26 Oct 2005 18:15:57 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QIFvFf085163; Wed, 26 Oct 2005 18:15:57 GMT (envelope-from hrs) Message-Id: <200510261815.j9QIFvFf085163@repoman.freebsd.org> From: Hiroki Sato Date: Wed, 26 Oct 2005 18:15: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: www/ja 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: Wed, 26 Oct 2005 18:15:58 -0000 hrs 2005-10-26 18:15:57 UTC FreeBSD doc repository Modified files: ja index.xsl Log: Merge changes from the English version: 1.135 -> 1.137 ja/index.xsl Revision Changes Path 1.46 +8 -5 www/ja/index.xsl From owner-cvs-all@FreeBSD.ORG Wed Oct 26 18:20:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EF9616A41F; Wed, 26 Oct 2005 18:20:32 +0000 (GMT) (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 5A65343D45; Wed, 26 Oct 2005 18:20:32 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QIKWZv085566; Wed, 26 Oct 2005 18:20:32 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QIKWTG085564; Wed, 26 Oct 2005 18:20:32 GMT (envelope-from hrs) Message-Id: <200510261820.j9QIKWTG085564@repoman.freebsd.org> From: Hiroki Sato Date: Wed, 26 Oct 2005 18:20:32 +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 where.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, 26 Oct 2005 18:20:32 -0000 hrs 2005-10-26 18:20:32 UTC FreeBSD doc repository Modified files: en where.sgml Log: Add a link to 6.0-RC1/ppc ISO image. Revision Changes Path 1.75 +7 -1 www/en/where.sgml From owner-cvs-all@FreeBSD.ORG Wed Oct 26 18:25:30 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C31FB16A41F; Wed, 26 Oct 2005 18:25:30 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 228D143D48; Wed, 26 Oct 2005 18:25:30 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 26 Oct 2005 14:42:12 -0400 From: John Baldwin To: Maksim Yevmenkin Date: Wed, 26 Oct 2005 14:23:47 -0400 User-Agent: KMail/1.8.2 References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> <200510261258.51651.jhb@freebsd.org> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261423.49602.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 18:25:31 -0000 On Wednesday 26 October 2005 01:24 pm, Maksim Yevmenkin wrote: > On 10/26/05, John Baldwin wrote: > > On Wednesday 26 October 2005 12:33 pm, Maksim Yevmenkin wrote: > > > John, > > > > > > [...] > > > > > > > Sorry about that, will be fixing it more cleanly. BTW, does anyone > > > > know why this driver allocates its softc manualn in its attach > > > > routine? > > > > > > ng_bt3c(4) is a netgraph device driver. there could be failures in > > > both device part (i/o port, interrupts etc.) as well as in netgraph > > > part (could not create node). so decided to do it this way. right now > > > i can not recall any other reason :) > > > > Even if netgraph fails then new-bus will still free it for you when > > attach returns ENXIO. All you have to do is set the size in your > > driver_t and axe the malloc, free, and device_set_softc calls and you > > should be done. > > would something like this do? or am i missing something? please note: > i have not tested the patch. > > cvs diff: Diffing . > Index: ng_bt3c_pccard.c > =================================================================== > RCS file: > /home/ncvs/src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c,v > retrieving revision 1.17 > diff -u -r1.17 ng_bt3c_pccard.c > --- ng_bt3c_pccard.c 26 Oct 2005 15:52:16 -0000 1.17 > +++ ng_bt3c_pccard.c 26 Oct 2005 17:23:02 -0000 > @@ -612,11 +612,7 @@ > static int > bt3c_pccard_attach(device_t dev) > { > - bt3c_softc_p sc = NULL; > - > - sc = (bt3c_softc_p) malloc(sizeof(*sc), M_BT3C, M_NOWAIT|M_ZERO); > - if (sc == NULL) > - return (ENOMEM); > + bt3c_softc_p sc = (bt3c_softc_p) device_get_softc(dev); > > /* Allocate I/O ports */ > sc->iobase_rid = 0; > @@ -677,7 +673,6 @@ > sc->want = 1; > > NG_NODE_SET_PRIVATE(sc->node, sc); > - device_set_softc(dev, sc); > > return (0); > bad: > @@ -705,8 +700,6 @@ > sc->iobase_rid = 0; > } > > - free(sc, M_BT3C); > - > return (ENXIO); > } /* bt3c_pccacd_attach */ > > @@ -1197,7 +1190,7 @@ > static driver_t bt3c_pccard_driver = { > NG_BT3C_NODE_TYPE, > bt3c_pccard_methods, > - 0 > + sizeof(bt3c_softc_t) > }; > > static devclass_t bt3c_devclass; > > == > > max Yep. Also remove the free() in detach() as well. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Wed Oct 26 18:40:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F99416A41F; Wed, 26 Oct 2005 18:40:44 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1FB843D45; Wed, 26 Oct 2005 18:40:43 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QIehgF087429; Wed, 26 Oct 2005 18:40:43 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QIehUx087428; Wed, 26 Oct 2005 18:40:43 GMT (envelope-from green) Message-Id: <200510261840.j9QIehUx087428@repoman.freebsd.org> From: Brian Feldman Date: Wed, 26 Oct 2005 18:40: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/benchmarks/rawio Makefile ports/benchmarks/rawio/files patch-ad X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 18:40:44 -0000 green 2005-10-26 18:40:43 UTC FreeBSD ports repository Modified files: benchmarks/rawio Makefile benchmarks/rawio/files patch-ad Log: Modify rawio(1) to work with GEOM by losing the multiple-open(2) semantics. As GEOM prevents actual concurrent accesses that are deemed generally unsafe. As we know, as a rawio(1) user, that we are intending to do something ostensibly unsafe, we can use a single open(2) shared among the worker children and then use pread(2) and pwrite(2) instead of read(2), write(2) and lseek(2). This properly bypasses the sanity checks GEOM makes for concurrent access. Additionally, sector size isn't and hasn't ever been necessarily 512 (or a multiple thereof), but we don't have many classical examples of devices not the common case that we'd test rawio(1) with. In my particular case, I'm using graid3(8) and have an effective sector size of 1024. The program now attempts to use DIOCGSECTORSIZE to find the correct base for a device and thus Works For Me. Cursory review by: MAINTAINER Revision Changes Path 1.13 +1 -1 ports/benchmarks/rawio/Makefile 1.3 +230 -4 ports/benchmarks/rawio/files/patch-ad From owner-cvs-all@FreeBSD.ORG Wed Oct 26 18:45:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68E0216A41F; Wed, 26 Oct 2005 18:45:32 +0000 (GMT) (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 E487643D55; Wed, 26 Oct 2005 18:45: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 CC38E1A3C26; Wed, 26 Oct 2005 11:45:31 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 3601451233; Wed, 26 Oct 2005 14:45:31 -0400 (EDT) Date: Wed, 26 Oct 2005 14:45:31 -0400 From: Kris Kennaway To: David O'Brien Message-ID: <20051026184529.GA83718@xor.obsecurity.org> References: <200510240034.j9O0YDgG047096@repoman.freebsd.org> <20051024143613.hu726dyokc4wco88@netchild.homeip.net> <20051025051555.GD55418@dragon.NUXI.org> <20051025164813.GD16812@xor.obsecurity.org> <20051026173222.GB99571@dragon.NUXI.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+HP7ph2BbKc20aGI" Content-Disposition: inline In-Reply-To: <20051026173222.GB99571@dragon.NUXI.org> User-Agent: Mutt/1.4.2.1i Cc: Alexander Leidinger , cvs-ports@FreeBSD.org, ports-committers@FreeBSD.org, cvs-all@FreeBSD.org, Kris Kennaway Subject: Re: cvs commit: ports/editors/vim 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, 26 Oct 2005 18:45:32 -0000 --+HP7ph2BbKc20aGI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 26, 2005 at 10:32:22AM -0700, David O'Brien wrote: > On Tue, Oct 25, 2005 at 12:48:15PM -0400, Kris Kennaway wrote: > > On Mon, Oct 24, 2005 at 10:15:55PM -0700, David O'Brien wrote: > > > To tell the truth I'm not sure the exact case Kris was trying to allo= w. > > > You are right that ac_default_prefix=3D${LOCALBASE} may be a better > > > substitution. > >=20 > > Perhaps you should have asked if you were unclear. >=20 > Maybe. Or maybe the set of emails I got could have been more clear. Again, please ask if you're confused by something instead of frobbing things and hoping you're close enough. I tried to be as explicit as I could in the emails I sent you (and other maintainers), but all it took was a short request and I could have explained further to your heart's content. Anyway, to be clear: LOCALBASE is where your port should look to find its dependencies (i.e. files already installed by other ports). PREFIX is where your port installs its own files. > I > spent several hours trying to whack ports into shape due to your emails - > rather than ignore them. Figuring out how to whack this one on the head > was particularly time consuming due to its obtuse build. Rather than be > curt, now that I know how to change it - simply saying "XYZ" is a better > subsitution would be nice. :-) > =20 > > They may be different in some allowed cases. >=20 > So I guess you were testing PREFIX=3D/foo LOCALBASE=3D/bar X11BASE=3D/baz. I wasn't giving a distinct PREFIX since it's not globally appropriate to do so (when the port is not a leaf port and it is used by others, it should be installed in LOCALBASE so they can find it). Kris --+HP7ph2BbKc20aGI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDX87JWry0BWjoQKURAv4fAJ9PY9fjcAAjtkcXNhEYABqZCNe7QgCeOTo+ 4xnqeeasQB0ZB/EY87q5vVE= =1nbS -----END PGP SIGNATURE----- --+HP7ph2BbKc20aGI-- From owner-cvs-all@FreeBSD.ORG Wed Oct 26 18:46:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4778B16A41F; Wed, 26 Oct 2005 18:46:28 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 112C143D4C; Wed, 26 Oct 2005 18:46:28 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QIkRsa087701; Wed, 26 Oct 2005 18:46:27 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QIkRIP087700; Wed, 26 Oct 2005 18:46:27 GMT (envelope-from wpaul) Message-Id: <200510261846.j9QIkRIP087700@repoman.freebsd.org> From: Bill Paul Date: Wed, 26 Oct 2005 18:46: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/sys/compat/ndis pe_var.h subr_pe.c src/usr.sbin/ndiscvt ndiscvt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 18:46:28 -0000 wpaul 2005-10-26 18:46:27 UTC FreeBSD src repository Modified files: sys/compat/ndis pe_var.h subr_pe.c usr.sbin/ndiscvt ndiscvt.c Log: Clean up and apply the fix for PR 83477. The calculation for locating the start of the section headers has to take into account the fact that the image_nt_header is really variable sized. It happens that the existing calculation is correct for _most_ production binaries produced by the Windows DDK, but if we get a binary with oddball offsets, the PE loader could crash. Changes from the supplied patch are: - We don't really need to use the IMAGE_SIZEOF_NT_HEADER() macro when computing how much of the header to return to callers of pe_get_optional_header(). While it's important to take the variable size of the header into account in other calculations, we never actually look at anything outside the non-variable portion of the header. This saves callers from having to allocate a variable sized buffer off the heap (I purposely tried to avoid using malloc() in subr_pe.c to make it easier to compile in both the -D_KERNEL and !-D_KERNEL case), and since we're copying into a buffer on the stack, we always have to copy the same amount of data or else we'll trash the stack something fierce. - We need to get offsetof() in the !-D_KERNEL case. - ndiscvt.c needs the IMAGE_FIRST_SECTION() macro too, since it does a little bit of section pre-processing. PR: kern/83477 Revision Changes Path 1.14 +9 -0 src/sys/compat/ndis/pe_var.h 1.12 +13 -7 src/sys/compat/ndis/subr_pe.c 1.12 +2 -2 src/usr.sbin/ndiscvt/ndiscvt.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 18:48:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E9CA16A41F; Wed, 26 Oct 2005 18:48:58 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDD2843D46; Wed, 26 Oct 2005 18:48:57 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QImvOG087835; Wed, 26 Oct 2005 18:48:57 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QImvMH087834; Wed, 26 Oct 2005 18:48:57 GMT (envelope-from wpaul) Message-Id: <200510261848.j9QImvMH087834@repoman.freebsd.org> From: Bill Paul Date: Wed, 26 Oct 2005 18:48: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/sys/compat/ndis pe_var.h subr_pe.c src/usr.sbin/ndiscvt ndiscvt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 18:48:58 -0000 wpaul 2005-10-26 18:48:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/compat/ndis pe_var.h subr_pe.c usr.sbin/ndiscvt ndiscvt.c Log: MFC: merge the fix for PR 83477. PR: kern/83477 Revision Changes Path 1.8.2.4 +9 -0 src/sys/compat/ndis/pe_var.h 1.7.2.4 +13 -7 src/sys/compat/ndis/subr_pe.c 1.9.2.3 +2 -2 src/usr.sbin/ndiscvt/ndiscvt.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 18:49:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A1CC16A41F; Wed, 26 Oct 2005 18:49:59 +0000 (GMT) (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 1621243D45; Wed, 26 Oct 2005 18:49:59 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QInwWK087886; Wed, 26 Oct 2005 18:49:58 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QInwjZ087885; Wed, 26 Oct 2005 18:49:58 GMT (envelope-from ehaupt) Message-Id: <200510261849.j9QInwjZ087885@repoman.freebsd.org> From: Emanuel Haupt Date: Wed, 26 Oct 2005 18: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: ports/security/ipsec-tools 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, 26 Oct 2005 18:49:59 -0000 ehaupt 2005-10-26 18:49:58 UTC FreeBSD ports repository Modified files: security/ipsec-tools Makefile distinfo Log: Update to 0.6.2 PR: 88042 Submitted by: VANHULLEBUS Yvan (maintainer) Revision Changes Path 1.3 +2 -3 ports/security/ipsec-tools/Makefile 1.3 +2 -2 ports/security/ipsec-tools/distinfo From owner-cvs-all@FreeBSD.ORG Wed Oct 26 18:59:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81F4E16A420; Wed, 26 Oct 2005 18:59:26 +0000 (GMT) (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 3D41B43D48; Wed, 26 Oct 2005 18:59:26 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QIxQLE088506; Wed, 26 Oct 2005 18:59:26 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QIxQsI088505; Wed, 26 Oct 2005 18:59:26 GMT (envelope-from mnag) Message-Id: <200510261859.j9QIxQsI088505@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 18:59: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/devel/pth 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, 26 Oct 2005 18:59:26 -0000 mnag 2005-10-26 18:59:25 UTC FreeBSD ports repository Modified files: devel/pth Makefile distinfo pkg-descr Log: Update to 2.0.5 Take MAINTAINER PR: 88037 Submitted by: Vasil Dimov Revision Changes Path 1.75 +8 -19 ports/devel/pth/Makefile 1.55 +2 -2 ports/devel/pth/distinfo 1.10 +7 -7 ports/devel/pth/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Oct 26 19:04:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C66D516A421; Wed, 26 Oct 2005 19:04:30 +0000 (GMT) (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 7EE4B43D46; Wed, 26 Oct 2005 19:04:30 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QJ4UZq088727; Wed, 26 Oct 2005 19:04:30 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QJ4UZ1088726; Wed, 26 Oct 2005 19:04:30 GMT (envelope-from hrs) Message-Id: <200510261904.j9QJ4UZ1088726@repoman.freebsd.org> From: Hiroki Sato Date: Wed, 26 Oct 2005 19:04: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/releases/6.0R schedule.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, 26 Oct 2005 19:04:31 -0000 hrs 2005-10-26 19:04:30 UTC FreeBSD doc repository Modified files: en/releases/6.0R schedule.sgml Log: Add an entry for 6.0-RC2. Revision Changes Path 1.20 +18 -1 www/en/releases/6.0R/schedule.sgml From owner-cvs-all@FreeBSD.ORG Wed Oct 26 19:11:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD41D16A41F; Wed, 26 Oct 2005 19:11:57 +0000 (GMT) (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 8432D43D48; Wed, 26 Oct 2005 19:11:57 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QJBvJj089250; Wed, 26 Oct 2005 19:11:57 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QJBvx9089249; Wed, 26 Oct 2005 19:11:57 GMT (envelope-from mnag) Message-Id: <200510261911.j9QJBvx9089249@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 19: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/vietnamese/xvnkb Makefile ports/vietnamese/xvnkb/files patch-config__configure 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: Wed, 26 Oct 2005 19:11:58 -0000 mnag 2005-10-26 19:11:57 UTC FreeBSD ports repository Modified files: vietnamese/xvnkb Makefile Added files: vietnamese/xvnkb/files patch-config__configure Removed files: vietnamese/xvnkb/files patch-configure Log: Respect X11BASE PR: 88044 Submitted by: Nguyen Tam Chinh (maintainer) Revision Changes Path 1.6 +2 -0 ports/vietnamese/xvnkb/Makefile 1.1 +24 -0 ports/vietnamese/xvnkb/files/patch-config__configure (new) 1.2 +0 -11 ports/vietnamese/xvnkb/files/patch-configure (dead) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 19:36:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70DDB16A41F; Wed, 26 Oct 2005 19:36:34 +0000 (GMT) (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 2E63543D46; Wed, 26 Oct 2005 19:36:34 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QJaY8m090504; Wed, 26 Oct 2005 19:36:34 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QJaYP7090503; Wed, 26 Oct 2005 19:36:34 GMT (envelope-from kris) Message-Id: <200510261936.j9QJaYP7090503@repoman.freebsd.org> From: Kris Kennaway Date: Wed, 26 Oct 2005 19:36: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/rvm 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, 26 Oct 2005 19:36:34 -0000 kris 2005-10-26 19:36:33 UTC FreeBSD ports repository Modified files: archivers/rvm Makefile Log: BROKEN: This port attempts to allocate an infinite amount of memory during configure, just so it can see what happens to itself when it runs the system out of swap. Revision Changes Path 1.12 +2 -0 ports/archivers/rvm/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 19:44:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3A2216A41F; Wed, 26 Oct 2005 19:44:17 +0000 (GMT) (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 80D4843D45; Wed, 26 Oct 2005 19:44:17 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QJiHeW090933; Wed, 26 Oct 2005 19:44:17 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QJiHh3090932; Wed, 26 Oct 2005 19:44:17 GMT (envelope-from pjd) Message-Id: <200510261944.j9QJiHh3090932@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 26 Oct 2005 19:44: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/tools/tools/netrate/http http.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 19:44:17 -0000 pjd 2005-10-26 19:44:17 UTC FreeBSD src repository Modified files: tools/tools/netrate/http http.c Log: Change u_int64_t to uintmax_t and use %ju, so it compiles on 64bit archs. I changed every u_int64_t to uintmax_t, as we should use eventually uint64_t anyway those days. Revision Changes Path 1.3 +6 -5 src/tools/tools/netrate/http/http.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 19:53:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43F8F16A41F; Wed, 26 Oct 2005 19:53:26 +0000 (GMT) (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 CEE6543D46; Wed, 26 Oct 2005 19:53:25 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QJrPQX091400; Wed, 26 Oct 2005 19:53:25 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QJrPpl091399; Wed, 26 Oct 2005 19:53:25 GMT (envelope-from simon) Message-Id: <200510261953.j9QJrPpl091399@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Wed, 26 Oct 2005 19:53: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/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: Wed, 26 Oct 2005 19:53:26 -0000 simon 2005-10-26 19:53:25 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Add more references to entry net-snmp -- remote DoS vulnerability. Revision Changes Path 1.867 +4 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Wed Oct 26 19:56:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84F2516A425; Wed, 26 Oct 2005 19:56:27 +0000 (GMT) (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 39A0643D49; Wed, 26 Oct 2005 19:56:27 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QJuR5q091565; Wed, 26 Oct 2005 19:56:27 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QJuRh3091564; Wed, 26 Oct 2005 19:56:27 GMT (envelope-from mnag) Message-Id: <200510261956.j9QJuRh3091564@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 19:56: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/mail/bogofilter Makefile ports/mail/bogofilter/files patch-mimetypes X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 19:56:27 -0000 mnag 2005-10-26 19:56:26 UTC FreeBSD ports repository Modified files: mail/bogofilter Makefile mail/bogofilter/files patch-mimetypes Log: Fix string size in files/patch-mimetypes PR: 88054 Submitted by: Matthias Andree (maintainer) Revision Changes Path 1.67 +1 -1 ports/mail/bogofilter/Makefile 1.2 +1 -1 ports/mail/bogofilter/files/patch-mimetypes From owner-cvs-all@FreeBSD.ORG Wed Oct 26 19:57:05 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F161E16A41F; Wed, 26 Oct 2005 19:57:04 +0000 (GMT) (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 9A08243D49; Wed, 26 Oct 2005 19:57:04 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QJv4RO091619; Wed, 26 Oct 2005 19:57:04 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QJv438091618; Wed, 26 Oct 2005 19:57:04 GMT (envelope-from pjd) Message-Id: <200510261957.j9QJv438091618@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 26 Oct 2005 19:57:04 +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/sys/net if_vlan.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 19:57:05 -0000 pjd 2005-10-26 19:57:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/net if_vlan.c Log: Call if_clone_detach() after vlan_clone_destroy() loop, as if_clone_detach() is freeing ifc_units field, which is used in vlan_clone_destroy()->ifc_free_unit(). This fixes panic: ifc_free_unit: bit is already cleared The fix introduces a small race in that a new interface could be created between the vlan_clone_destroy() loop and the call to if_clone_detach(). The race is probably too hard to trigger to be worry about it. This is not an MFC, because better fix was committed to HEAD. We decided to use this fix, as it is a low-risk fix, which fits just fine for 6.0 at this stage. Discussed with: brooks, thompsa Approved by: re (scottl) Revision Changes Path 1.79.2.4.2.1 +1 -1 src/sys/net/if_vlan.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 19:58:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73B9616A41F; Wed, 26 Oct 2005 19:58:03 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from mail.grupos.com.br (mail.grupos.com.br [200.203.183.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id D43E243D48; Wed, 26 Oct 2005 19:58:02 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from corp.grupos.com.br (unknown [150.162.166.55]) by mail.grupos.com.br (Postfix) with ESMTP id 090A411E0CC; Wed, 26 Oct 2005 17:58:01 -0200 (BRST) Received: from [150.162.166.51] (unknown [150.162.166.51]) by corp.grupos.com.br (Postfix) with ESMTP id 9590354DE; Wed, 26 Oct 2005 17:58:00 -0200 (BRST) Message-ID: <435FDFC8.4060101@FreeBSD.org> Date: Wed, 26 Oct 2005 17:58:00 -0200 From: Marcus Alves Grando User-Agent: Thunderbird 1.4.1 (X11/20051010) MIME-Version: 1.0 To: ports-committers@FreeBSD.org References: <200510261956.j9QJuRh3091564@repoman.freebsd.org> In-Reply-To: <200510261956.j9QJuRh3091564@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 Subject: Re: cvs commit: ports/mail/bogofilter Makefile ports/mail/bogofilter/files patch-mimetypes X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 19:58:03 -0000 Bump PORTREVISION too. Marcus Alves Grando wrote: > mnag 2005-10-26 19:56:26 UTC > > FreeBSD ports repository > > Modified files: > mail/bogofilter Makefile > mail/bogofilter/files patch-mimetypes > Log: > Fix string size in files/patch-mimetypes > > PR: 88054 > Submitted by: Matthias Andree (maintainer) > > Revision Changes Path > 1.67 +1 -1 ports/mail/bogofilter/Makefile > 1.2 +1 -1 ports/mail/bogofilter/files/patch-mimetypes -- 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 Wed Oct 26 20:02:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 427B816A41F; Wed, 26 Oct 2005 20:02:36 +0000 (GMT) (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 F3B6843D46; Wed, 26 Oct 2005 20:02:35 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QK2Zll091870; Wed, 26 Oct 2005 20:02:35 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QK2Zk9091869; Wed, 26 Oct 2005 20:02:35 GMT (envelope-from mnag) Message-Id: <200510262002.j9QK2Zk9091869@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 20: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/games/duel 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, 26 Oct 2005 20:02:36 -0000 mnag 2005-10-26 20:02:35 UTC FreeBSD ports repository Modified files: games/duel Makefile Log: Respect X11BASE PR: 87955 Submitted by: Alejandro Pulver (maintainer) Revision Changes Path 1.3 +1 -1 ports/games/duel/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 20:03:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1B0316A41F; Wed, 26 Oct 2005 20:03:57 +0000 (GMT) (envelope-from thompsa@freebsd.org) Received: from heff.fud.org.nz (60-234-149-201.bitstream.orcon.net.nz [60.234.149.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26E6E43D45; Wed, 26 Oct 2005 20:03:57 +0000 (GMT) (envelope-from thompsa@freebsd.org) Received: by heff.fud.org.nz (Postfix, from userid 1001) id C53951CCDD; Thu, 27 Oct 2005 09:03:55 +1300 (NZDT) Date: Thu, 27 Oct 2005 09:03:55 +1300 From: Andrew Thompson To: Pawel Jakub Dawidek Message-ID: <20051026200355.GA80702@heff.fud.org.nz> References: <200510261957.j9QJv438091618@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510261957.j9QJv438091618@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/net if_vlan.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 20:03:57 -0000 On Wed, Oct 26, 2005 at 07:57:04PM +0000, Pawel Jakub Dawidek wrote: > pjd 2005-10-26 19:57:04 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6_0) > sys/net if_vlan.c > Log: > Call if_clone_detach() after vlan_clone_destroy() loop, as if_clone_detach() > is freeing ifc_units field, which is used in > vlan_clone_destroy()->ifc_free_unit(). > > This fixes panic: ifc_free_unit: bit is already cleared > > The fix introduces a small race in that a new interface could be created > between the vlan_clone_destroy() loop and the call to if_clone_detach(). > The race is probably too hard to trigger to be worry about it. > > This is not an MFC, because better fix was committed to HEAD. > We decided to use this fix, as it is a low-risk fix, which fits just fine > for 6.0 at this stage. Thanks! Another thing to note is without INVARIANTS this would have modified memory after free. From owner-cvs-all@FreeBSD.ORG Wed Oct 26 20:04:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13B3E16A41F; Wed, 26 Oct 2005 20:04:21 +0000 (GMT) (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 BE06943D45; Wed, 26 Oct 2005 20:04:20 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QK4Kw6092004; Wed, 26 Oct 2005 20:04:20 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QK4Kur092003; Wed, 26 Oct 2005 20:04:20 GMT (envelope-from mnag) Message-Id: <200510262004.j9QK4Kur092003@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 20:04: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/excido Makefile ports/games/excido/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: Wed, 26 Oct 2005 20:04:21 -0000 mnag 2005-10-26 20:04:20 UTC FreeBSD ports repository Modified files: games/excido Makefile games/excido/files patch-Makefile Log: Respect PREFIX PR: 87954 Submitted by: Alejandro Pulver (maintainer) Revision Changes Path 1.2 +0 -8 ports/games/excido/Makefile 1.2 +7 -10 ports/games/excido/files/patch-Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 20:08:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FAD016A420; Wed, 26 Oct 2005 20:08:49 +0000 (GMT) (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 DED3E43D48; Wed, 26 Oct 2005 20:08:48 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QK8m8I092282; Wed, 26 Oct 2005 20:08:48 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QK8mUF092281; Wed, 26 Oct 2005 20:08:48 GMT (envelope-from mnag) Message-Id: <200510262008.j9QK8mUF092281@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 20:08: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/comms/birda 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, 26 Oct 2005 20:08:49 -0000 mnag 2005-10-26 20:08:48 UTC FreeBSD ports repository Modified files: comms/birda Makefile Log: Change port to DEPRECATED PR: 88049 Submitted by: Jean Milanez Melo Approved by: Brandon S. Allbery KF8NH (maintainer via email to Jean Milanez Melo) Revision Changes Path 1.7 +3 -0 ports/comms/birda/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 20:16:31 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22E0316A41F for ; Wed, 26 Oct 2005 20:16:31 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B4F243D45 for ; Wed, 26 Oct 2005 20:16:30 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru (8.13.0/vak/3.0) id j9QKDN0S099358 for cvs-all@freebsd.org.checked; Thu, 27 Oct 2005 00:13:23 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (localhost.cronyx.ru [127.0.0.1]) by hanoi.cronyx.ru (8.13.0/vak/3.0) with ESMTP id j9QKAlSj099303; Thu, 27 Oct 2005 00:10:47 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <435FE099.6060508@cronyx.ru> Date: Thu, 27 Oct 2005 00:01:29 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru-RU; rv:1.2.1) Gecko/20030426 X-Accept-Language: ru-ru, en MIME-Version: 1.0 To: obrien@freebsd.org References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> <435E04AA.3080605@cronyx.ru> <20051026172734.GA99901@dragon.NUXI.org> In-Reply-To: <20051026172734.GA99901@dragon.NUXI.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/sys/dev/cp if_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: Wed, 26 Oct 2005 20:16:31 -0000 David O'Brien: >On Tue, Oct 25, 2005 at 02:10:50PM +0400, Roman Kurakin wrote: > > >>The commit log didn't state what was the problem variable forward >>declaration or/and function >>forward declaration. >> >> > >Since you became a committer 2003/12/18, I guess you haven't been part of >FreeBSD when we've worked on a GCC compiler upgrade. We make these type >of changes to make a new version of GCC build FreeBSD. The other choice >is to disconnect these drivers from the build. The commits done where >typical of what's been done for the past decade. > Please provide detailed technical information what is wrong in my change of your commit. Which versions of system affected. How I can reproduce this problem. If you do not provide me that information I will not find out were I was wrong. If you can't provide me such information I do not see a reason of this discussion. You are not trying to explain me what is wrong with technical details. If you say I am wrong and do not try to explain this is philosophy. You've told me that you do not have time to explain me three times the same, but you've lost much more time not explaining. rik > > > From owner-cvs-all@FreeBSD.ORG Wed Oct 26 20:18:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECF5816A41F; Wed, 26 Oct 2005 20:18:10 +0000 (GMT) (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 A880E43D49; Wed, 26 Oct 2005 20:18:10 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QKIA5L092970; Wed, 26 Oct 2005 20:18:10 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKIACE092969; Wed, 26 Oct 2005 20:18:10 GMT (envelope-from mnag) Message-Id: <200510262018.j9QKIACE092969@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 20:18: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/comms/kpsk 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, 26 Oct 2005 20:18:11 -0000 mnag 2005-10-26 20:18:10 UTC FreeBSD ports repository Modified files: comms/kpsk pkg-descr Log: Update WWW PR: 88053 Submitted by: Jean Milanez Melo Revision Changes Path 1.3 +1 -1 ports/comms/kpsk/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Oct 26 20:19:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2DC516A41F; Wed, 26 Oct 2005 20:19:41 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C552843D5D; Wed, 26 Oct 2005 20:19:39 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QKJdUa093159; Wed, 26 Oct 2005 20:19:39 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKJd10093158; Wed, 26 Oct 2005 20:19:39 GMT (envelope-from keramida) Message-Id: <200510262019.j9QKJd10093158@repoman.freebsd.org> From: Giorgos Keramidas Date: Wed, 26 Oct 2005 20:19: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/jail jail.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: Wed, 26 Oct 2005 20:19:41 -0000 keramida 2005-10-26 20:19:39 UTC FreeBSD src repository (doc committer) Modified files: usr.sbin/jail jail.8 Log: Note that the jail setup example is meant to be fed to sh(1), not csh(1). PR: docs/87351 Submitted by: "Eli K. Breen" Approved by: simon, brooks MFC after: 3 days Revision Changes Path 1.71 +4 -3 src/usr.sbin/jail/jail.8 From owner-cvs-all@FreeBSD.ORG Wed Oct 26 20:21:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE82516A420; Wed, 26 Oct 2005 20:21:29 +0000 (GMT) (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 EC00643D68; Wed, 26 Oct 2005 20:21:24 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QKLOJP093422; Wed, 26 Oct 2005 20:21:24 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKLOlv093421; Wed, 26 Oct 2005 20:21:24 GMT (envelope-from delphij) Message-Id: <200510262021.j9QKLOlv093421@repoman.freebsd.org> From: Xin LI Date: Wed, 26 Oct 2005 20:21:24 +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 uipc_cow.c 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: Wed, 26 Oct 2005 20:21:29 -0000 delphij 2005-10-26 20:21:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern uipc_cow.c sys/vm vm_object.c Log: MFC (by alc) changesets that addresses several race conditions that can cause a kernel compiled with ZERO_COPY_SOCKETS to panic under certain circumstances: sys/kern/uipc_cow.c: 1.24 - 1.26 sys/vm/vm_object.c: 1.351 Approved by: re (scottl) Revision Changes Path 1.23.2.1 +10 -10 src/sys/kern/uipc_cow.c 1.349.2.2 +12 -4 src/sys/vm/vm_object.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 20:21:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 002DB16A4C8; Wed, 26 Oct 2005 20:21:45 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A53643D46; Wed, 26 Oct 2005 20:21:45 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QKLj9Q093467; Wed, 26 Oct 2005 20:21:45 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKLjKM093466; Wed, 26 Oct 2005 20:21:45 GMT (envelope-from wpaul) Message-Id: <200510262021.j9QKLjKM093466@repoman.freebsd.org> From: Bill Paul Date: Wed, 26 Oct 2005 20:21:45 +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/compat/ndis subr_ntoskrnl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 20:21:46 -0000 wpaul 2005-10-26 20:21:45 UTC FreeBSD src repository Modified files: sys/compat/ndis subr_ntoskrnl.c Log: Minor nit: in ntoskrnl_finddev(), only free the 'children' device_t array if device_find_children() actually returned a non-NULL array pointer. Revision Changes Path 1.79 +9 -2 src/sys/compat/ndis/subr_ntoskrnl.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 20:22:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFDB316A433; Wed, 26 Oct 2005 20:22:00 +0000 (GMT) (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 A848A43D45; Wed, 26 Oct 2005 20:22:00 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QKM0q8093530; Wed, 26 Oct 2005 20:22:00 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKM0b5093529; Wed, 26 Oct 2005 20:22:00 GMT (envelope-from delphij) Message-Id: <200510262022.j9QKM0b5093529@repoman.freebsd.org> From: Xin LI Date: Wed, 26 Oct 2005 20:22:00 +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/sys/kern uipc_cow.c 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: Wed, 26 Oct 2005 20:22:01 -0000 delphij 2005-10-26 20:22:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/kern uipc_cow.c sys/vm vm_object.c Log: MFRELENG_6 (by alc) changesets that addresses several race conditions that can cause a kernel compiled with ZERO_COPY_SOCKETS to panic under certain circumstances: sys/kern/uipc_cow.c: 1.24 - 1.26 sys/vm/vm_object.c: 1.351 Approved by: re (scottl) Revision Changes Path 1.23.4.1 +10 -10 src/sys/kern/uipc_cow.c 1.349.2.1.2.1 +12 -4 src/sys/vm/vm_object.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 20:23:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2EDD16A41F; Wed, 26 Oct 2005 20:23:32 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CBF743D5F; Wed, 26 Oct 2005 20:23:30 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QKNUtx093629; Wed, 26 Oct 2005 20:23:30 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKNUjY093628; Wed, 26 Oct 2005 20:23:30 GMT (envelope-from wpaul) Message-Id: <200510262023.j9QKNUjY093628@repoman.freebsd.org> From: Bill Paul Date: Wed, 26 Oct 2005 20:23:30 +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/compat/ndis subr_ntoskrnl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 20:23:33 -0000 wpaul 2005-10-26 20:23:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/compat/ndis subr_ntoskrnl.c Log: MFC: only free child device array if device_get_children() returned a non-NULL array pointer. Revision Changes Path 1.43.2.12 +9 -2 src/sys/compat/ndis/subr_ntoskrnl.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 20:23:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD62C16A421; Wed, 26 Oct 2005 20:23:35 +0000 (GMT) (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 6050643D4C; Wed, 26 Oct 2005 20: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.1/8.13.1) with ESMTP id j9QKNXBW093663; Wed, 26 Oct 2005 20:23:33 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKNX8j093662; Wed, 26 Oct 2005 20:23:33 GMT (envelope-from mnag) Message-Id: <200510262023.j9QKNX8j093662@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 20:23: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/comms/ixj Makefile pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 20:23:35 -0000 mnag 2005-10-26 20:23:33 UTC FreeBSD ports repository Modified files: comms/ixj Makefile pkg-message Log: Update MASTER_SITE [1] Make portlint happyer PR: 88050 [1] Submitted by: Jean Milanez Melo [1] Revision Changes Path 1.15 +6 -4 ports/comms/ixj/Makefile 1.2 +0 -2 ports/comms/ixj/pkg-message From owner-cvs-all@FreeBSD.ORG Wed Oct 26 20:48:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D909916A41F; Wed, 26 Oct 2005 20:48:23 +0000 (GMT) (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 8FB4243D46; Wed, 26 Oct 2005 20:48:23 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QKmNXL002645; Wed, 26 Oct 2005 20:48:23 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKmNZM002644; Wed, 26 Oct 2005 20:48:23 GMT (envelope-from mnag) Message-Id: <200510262048.j9QKmNZM002644@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 20:48: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/comms/mserver 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, 26 Oct 2005 20:48:24 -0000 mnag 2005-10-26 20:48:23 UTC FreeBSD ports repository Modified files: comms/mserver Makefile Log: Change MASTER_SITES PR: 88058 Submitted by: Jean Milanez Melo Revision Changes Path 1.13 +1 -1 ports/comms/mserver/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:04:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A256416A41F; Wed, 26 Oct 2005 21:04:12 +0000 (GMT) (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 5D8E343D45; Wed, 26 Oct 2005 21:04:12 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QL4CZa003616; Wed, 26 Oct 2005 21:04:12 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QL4CJs003612; Wed, 26 Oct 2005 21:04:12 GMT (envelope-from mnag) Message-Id: <200510262104.j9QL4CJs003612@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 21:04: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/www/chpasswd 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, 26 Oct 2005 21:04:12 -0000 mnag 2005-10-26 21:04:12 UTC FreeBSD ports repository Modified files: www/chpasswd Makefile Log: Change MASTER_SITES PR: 88061 Submitted by: Jean Milanez Melo (maintainer) Revision Changes Path 1.8 +3 -3 ports/www/chpasswd/Makefile From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:07:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA6F616A41F; Wed, 26 Oct 2005 21:07:04 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37DD543D45; Wed, 26 Oct 2005 21:07:03 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from niksun.com (anuket [10.70.0.5]) by anuket.mj.niksun.com (8.13.1/8.13.1) with ESMTP id j9QLFSFG027895; Wed, 26 Oct 2005 17:15:28 -0400 (EDT) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: Ruslan Ermilov Date: Wed, 26 Oct 2005 17:06:49 -0400 User-Agent: KMail/1.6.2 References: <200510250905.j9P9575Z002500@repoman.freebsd.org> In-Reply-To: <200510250905.j9P9575Z002500@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="euc-kr" Content-Transfer-Encoding: 7bit Message-Id: <200510261706.50768.jkim@FreeBSD.org> X-Virus-Scanned: ClamAV devel-20050919/1148/Tue Oct 25 15:34:12 2005 on anuket.mj.niksun.com X-Virus-Status: Clean Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release Makefile src/sys/conf kern.post.mk kmod.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: Wed, 26 Oct 2005 21:07:04 -0000 On Tuesday 25 October 2005 05:05 am, Ruslan Ermilov wrote: > ru 2005-10-25 09:05:07 UTC > > FreeBSD src repository > > Modified files: > release Makefile > sys/conf kern.post.mk kmod.mk > Log: > Refactor (some more) installation of kernel and module objects. > > Try to make everyone happy: David (to have debug kernels > installed by default), Warner (to be able to override that), and > myself (for actually making it all work and to be consistent). > > Now, if kernel was configured for debugging (through DEBUG=-g in > the kernel config file or "config -g"), doing "make install" will > install debug versions of kernel and module objects with their > canonical names, > > kernel.debug -> /boot/kernel/kernel > if_fxp.ko.debug -> /boot/kernel/if_fxp.ko > > Installing a kernel not configured for debugging, or debug kernel > with INSTALL_NODEBUG variable defined, will install non-debug > kernel and module objects. > > Also, restore the install.debug and reinstall.debug targets that > are part of the existing API (they cause some additional gdb(1) > scripts to be installed). > > Revision Changes Path > 1.891 +0 -4 src/release/Makefile > 1.86 +4 -2 src/sys/conf/kern.post.mk > 1.197 +3 -8 src/sys/conf/kmod.mk It's broken amd64. I had DEBUG=-g in the configuration and it's spewing a lot of 'kldload: unexpected relocation type 10' while preloading modules. :-( Jung-uk Kim From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:13:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B861616A41F; Wed, 26 Oct 2005 21:13:30 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76C7C43D45; Wed, 26 Oct 2005 21:13:30 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLDU6f004644; Wed, 26 Oct 2005 21:13:30 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLDU21004643; Wed, 26 Oct 2005 21:13:30 GMT (envelope-from jkim) Message-Id: <200510262113.j9QLDU21004643@repoman.freebsd.org> From: Jung-uk Kim Date: Wed, 26 Oct 2005 21:13: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/gnu/usr.bin/grep grep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 21:13:30 -0000 jkim 2005-10-26 21:13:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/grep grep.c Log: MFC: Fix a longstanding buglet in bz-prefixed grep(1). PR: gnu/72200 Approved by: re Revision Changes Path 1.31.2.1 +5 -5 src/gnu/usr.bin/grep/grep.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:13:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CCEA16A420; Wed, 26 Oct 2005 21:13:39 +0000 (GMT) (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 BDBD943D45; Wed, 26 Oct 2005 21:13:38 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLDcFa004704; Wed, 26 Oct 2005 21:13:38 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLDc7W004703; Wed, 26 Oct 2005 21:13:38 GMT (envelope-from mnag) Message-Id: <200510262113.j9QLDc7W004703@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 21:13: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/pear-HTML_Table 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, 26 Oct 2005 21:13:39 -0000 mnag 2005-10-26 21:13:38 UTC FreeBSD ports repository Modified files: devel/pear-HTML_Table Makefile distinfo Log: Update to 1.6.0 PR: 88057 Submitted by: Gerrit Beine (maintainer) Revision Changes Path 1.2 +2 -2 ports/devel/pear-HTML_Table/Makefile 1.2 +2 -2 ports/devel/pear-HTML_Table/distinfo From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:14:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D92016A41F; Wed, 26 Oct 2005 21:14:45 +0000 (GMT) (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 BE39B43D46; Wed, 26 Oct 2005 21:14:44 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLEiG4004799; Wed, 26 Oct 2005 21:14:44 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLEiss004798; Wed, 26 Oct 2005 21:14:44 GMT (envelope-from ariff) Message-Id: <200510262114.j9QLEiss004798@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 26 Oct 2005 21:14: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/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: Wed, 26 Oct 2005 21:14:45 -0000 ariff 2005-10-26 21:14:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/sound/pcm mixer.c Log: Track every mixer device closing for proper refcount calculation. This solve device busy and panic issues during sound module unloading. Approved by: re (scottl), netchild (mentor) Reviewed by: andreas Revision Changes Path 1.43.2.2 +1 -1 src/sys/dev/sound/pcm/mixer.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:15:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDFEA16A41F; Wed, 26 Oct 2005 21:15:07 +0000 (GMT) (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 71FB843D48; Wed, 26 Oct 2005 21:15:07 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLF7Gn004876; Wed, 26 Oct 2005 21:15:07 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLF7gC004875; Wed, 26 Oct 2005 21:15:07 GMT (envelope-from ariff) Message-Id: <200510262115.j9QLF7gC004875@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 26 Oct 2005 21:15: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/dev/sound/pcm sound.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 21:15:08 -0000 ariff 2005-10-26 21:15:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/sound/pcm sound.c Log: Rearrange sound unregister procedure to detect mixer busy state and destroy it before anything else. This solve panic issue during sound module unloading if the sound / mixer device being held by external processes. Approved by: re (scottl), netchild (mentor) Reviewed by: andreas Revision Changes Path 1.93.2.1 +15 -12 src/sys/dev/sound/pcm/sound.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:15:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6832C16A421; Wed, 26 Oct 2005 21:15:34 +0000 (GMT) (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 EE92A43D45; Wed, 26 Oct 2005 21:15:33 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLFXVV004993; Wed, 26 Oct 2005 21:15:33 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLFXlV004992; Wed, 26 Oct 2005 21:15:33 GMT (envelope-from ariff) Message-Id: <200510262115.j9QLFXlV004992@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 26 Oct 2005 21:15: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/sys/dev/sound/pcm vchan.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 21:15:34 -0000 ariff 2005-10-26 21:15:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/sound/pcm vchan.c Log: Virtual channel default speed should be based on soundcard capabilities. This solve various mysterious slowdown especially for fixed-rate ac97 soundcards. Approved by: re (scottl), netchild (mentor) Reviewed by: andreas Revision Changes Path 1.17.2.1 +30 -2 src/sys/dev/sound/pcm/vchan.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:15:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21A8A16A41F; Wed, 26 Oct 2005 21:15:52 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D38FF43D46; Wed, 26 Oct 2005 21:15:51 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLFpc3005028; Wed, 26 Oct 2005 21:15:51 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLFpCK005027; Wed, 26 Oct 2005 21:15:51 GMT (envelope-from jkim) Message-Id: <200510262115.j9QLFpCK005027@repoman.freebsd.org> From: Jung-uk Kim Date: Wed, 26 Oct 2005 21:15:51 +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/gnu/usr.bin/grep grep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 21:15:52 -0000 jkim 2005-10-26 21:15:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) gnu/usr.bin/grep grep.c Log: MFRELENG_6: Fix a longstanding buglet in bz-prefixed grep(1). PR: gnu/72200 Approved by: re Revision Changes Path 1.31.4.1 +5 -5 src/gnu/usr.bin/grep/grep.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:17:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D39E16A41F; Wed, 26 Oct 2005 21:17:41 +0000 (GMT) (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 CF62643D45; Wed, 26 Oct 2005 21:17:40 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLHe9f005110; Wed, 26 Oct 2005 21:17:40 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLHe54005109; Wed, 26 Oct 2005 21:17:40 GMT (envelope-from ariff) Message-Id: <200510262117.j9QLHe54005109@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 26 Oct 2005 21:17:40 +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/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: Wed, 26 Oct 2005 21:17:41 -0000 ariff 2005-10-26 21:17:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/sound/pcm mixer.c Log: Track every mixer device closing for proper refcount calculation. This solve device busy and panic issues during sound module unloading. Approved by: re (scottl), netchild (mentor) Reviewed by: andreas Revision Changes Path 1.43.2.1.2.1 +1 -1 src/sys/dev/sound/pcm/mixer.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:18:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CDC316A424; Wed, 26 Oct 2005 21:18:10 +0000 (GMT) (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 CC44C43D45; Wed, 26 Oct 2005 21:18:09 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLI9b9005148; Wed, 26 Oct 2005 21:18:09 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLI9xY005147; Wed, 26 Oct 2005 21:18:09 GMT (envelope-from ariff) Message-Id: <200510262118.j9QLI9xY005147@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 26 Oct 2005 21:18:09 +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/sys/dev/sound/pcm sound.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 21:18:10 -0000 ariff 2005-10-26 21:18:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/sound/pcm sound.c Log: Rearrange sound unregister procedure to detect mixer busy state and destroy it before anything else. This solve panic issue during sound module unloading if the sound / mixer device being held by external processes. Approved by: re (scottl), netchild (mentor) Reviewed by: andreas Revision Changes Path 1.93.4.1 +15 -12 src/sys/dev/sound/pcm/sound.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:18:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C42F16A41F; Wed, 26 Oct 2005 21:18:42 +0000 (GMT) (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 29D4A43D48; Wed, 26 Oct 2005 21:18:42 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLIgjG005186; Wed, 26 Oct 2005 21:18:42 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLIgIq005185; Wed, 26 Oct 2005 21:18:42 GMT (envelope-from ariff) Message-Id: <200510262118.j9QLIgIq005185@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 26 Oct 2005 21:18:42 +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/sys/dev/sound/pcm vchan.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 21:18:42 -0000 ariff 2005-10-26 21:18:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/sound/pcm vchan.c Log: Virtual channel default speed should be based on soundcard capabilities. This solve various mysterious slowdown especially for fixed-rate ac97 soundcards. Approved by: re (scottl), netchild (mentor) Reviewed by: andreas Revision Changes Path 1.17.4.1 +30 -2 src/sys/dev/sound/pcm/vchan.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:31:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CA2716A41F; Wed, 26 Oct 2005 21:31:59 +0000 (GMT) (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 5841943D55; Wed, 26 Oct 2005 21:31:59 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLVxGD005716; Wed, 26 Oct 2005 21:31:59 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLVxEA005715; Wed, 26 Oct 2005 21:31:59 GMT (envelope-from mnag) Message-Id: <200510262131.j9QLVxEA005715@repoman.freebsd.org> From: Marcus Alves Grando Date: Wed, 26 Oct 2005 21:31: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/mail/qsheff 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, 26 Oct 2005 21:31:59 -0000 mnag 2005-10-26 21:31:59 UTC FreeBSD ports repository Modified files: mail/qsheff Makefile distinfo Log: Update to 1.0.r4 [1] Respect CFLAGS PR: 88055 [1] Submitted by: Gabor Kovesdan [1] Revision Changes Path 1.4 +4 -2 ports/mail/qsheff/Makefile 1.3 +2 -2 ports/mail/qsheff/distinfo From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:38:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B026016A41F; Wed, 26 Oct 2005 21:38:08 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B1FC43D48; Wed, 26 Oct 2005 21:38:08 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLc7jv006222; Wed, 26 Oct 2005 21:38:08 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLc7jL006221; Wed, 26 Oct 2005 21:38:07 GMT (envelope-from edwin) Message-Id: <200510262138.j9QLc7jL006221@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 26 Oct 2005 21:38: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/deskutils/plans 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, 26 Oct 2005 21:38:08 -0000 edwin 2005-10-26 21:38:07 UTC FreeBSD ports repository Modified files: deskutils/plans Makefile distinfo Log: Permissions set by the Makefile are just wrong. 755 for .cgi, 664 for .xml and 644 for others would be appropriate. Submitted by: "Andrew P." Revision Changes Path 1.17 +4 -2 ports/deskutils/plans/Makefile 1.17 +2 -4 ports/deskutils/plans/distinfo From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:40:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0C7B16A41F; Wed, 26 Oct 2005 21:40:42 +0000 (GMT) (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 9668743D48; Wed, 26 Oct 2005 21:40:42 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLegZw006393; Wed, 26 Oct 2005 21:40:42 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLegF1006392; Wed, 26 Oct 2005 21:40:42 GMT (envelope-from thierry) Message-Id: <200510262140.j9QLegF1006392@repoman.freebsd.org> From: Thierry Thomas Date: Wed, 26 Oct 2005 21:40: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/unidesc Makefile distinfo pkg-plist ports/sysutils/unidesc/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: Wed, 26 Oct 2005 21:40:43 -0000 thierry 2005-10-26 21:40:42 UTC FreeBSD ports repository Modified files: sysutils/unidesc Makefile distinfo pkg-plist Removed files: sysutils/unidesc/files patch-Makefile Log: Upgrade to 2.14. Changelog at . Revision Changes Path 1.4 +11 -10 ports/sysutils/unidesc/Makefile 1.3 +2 -2 ports/sysutils/unidesc/distinfo 1.2 +0 -23 ports/sysutils/unidesc/files/patch-Makefile (dead) 1.2 +0 -3 ports/sysutils/unidesc/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:40:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76D6A16A420; Wed, 26 Oct 2005 21:40:49 +0000 (GMT) (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 3540E43D46; Wed, 26 Oct 2005 21:40:49 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLenuj006418; Wed, 26 Oct 2005 21:40:49 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLen1b006417; Wed, 26 Oct 2005 21:40:49 GMT (envelope-from wilko) Message-Id: <200510262140.j9QLen1b006417@repoman.freebsd.org> From: Wilko Bulte Date: Wed, 26 Oct 2005 21:40: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: 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: Wed, 26 Oct 2005 21:40:49 -0000 wilko 2005-10-26 21:40:49 UTC FreeBSD doc repository Modified files: en/donations wantlist.sgml Log: note the Mac keyboard I'm looking for should have a US key layout. Revision Changes Path 1.369 +2 -2 www/en/donations/wantlist.sgml From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:51:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28B0116A41F; Wed, 26 Oct 2005 21:51:49 +0000 (GMT) (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 D902743D45; Wed, 26 Oct 2005 21:51:48 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLpmwN007734; Wed, 26 Oct 2005 21:51:48 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLpmJJ007733; Wed, 26 Oct 2005 21:51:48 GMT (envelope-from thierry) Message-Id: <200510262151.j9QLpmJJ007733@repoman.freebsd.org> From: Thierry Thomas Date: Wed, 26 Oct 2005 21:51: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/net/mercury 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, 26 Oct 2005 21:51:49 -0000 thierry 2005-10-26 21:51:48 UTC FreeBSD ports repository Modified files: net/mercury pkg-descr Log: Update pkg-descr. PR: ports/88059 Submitted by: Gabor Kovesdan Revision Changes Path 1.2 +11 -2 ports/net/mercury/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:57:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0ECE16A41F; Wed, 26 Oct 2005 21:57:25 +0000 (GMT) (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 7D9DA43D48; Wed, 26 Oct 2005 21:57:25 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLvPO9008351; Wed, 26 Oct 2005 21:57:25 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLvPab008350; Wed, 26 Oct 2005 21:57:25 GMT (envelope-from csjp) Message-Id: <200510262157.j9QLvPab008350@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Wed, 26 Oct 2005 21:57: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/sbin/ipfw ipfw.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: Wed, 26 Oct 2005 21:57:25 -0000 csjp 2005-10-26 21:57:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/ipfw ipfw.8 Log: MFC notes about ucred based rules and debug.mpsafenet requirements. Approved by: re (scottl) Revision Changes Path 1.175.2.2 +10 -0 src/sbin/ipfw/ipfw.8 From owner-cvs-all@FreeBSD.ORG Wed Oct 26 21:58:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 379DA16A41F; Wed, 26 Oct 2005 21:58:43 +0000 (GMT) (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 E693843D49; Wed, 26 Oct 2005 21:58:42 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLwgPn008470; Wed, 26 Oct 2005 21:58:42 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLwgEA008469; Wed, 26 Oct 2005 21:58:42 GMT (envelope-from csjp) Message-Id: <200510262158.j9QLwgEA008469@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Wed, 26 Oct 2005 21:58:42 +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/sbin/ipfw ipfw.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: Wed, 26 Oct 2005 21:58:43 -0000 csjp 2005-10-26 21:58:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sbin/ipfw ipfw.8 Log: MFC notes about ucred based rules and debug.mpsafenet requirements. Approved by: re (scottl) Revision Changes Path 1.175.2.1.2.1 +10 -0 src/sbin/ipfw/ipfw.8 From owner-cvs-all@FreeBSD.ORG Wed Oct 26 22:06:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1207716A41F; Wed, 26 Oct 2005 22:06:31 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C48F843D45; Wed, 26 Oct 2005 22:06:30 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QM6UIJ009149; Wed, 26 Oct 2005 22:06:30 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QM6Uwn009148; Wed, 26 Oct 2005 22:06:30 GMT (envelope-from peter) Message-Id: <200510262206.j9QM6Uwn009148@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:06: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/amd64/ia32 ia32_reg.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 22:06:31 -0000 peter 2005-10-26 22:06:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/ia32 ia32_reg.c Log: MFC: 1.2: don't set segment registers yet. Approved by: re Revision Changes Path 1.1.2.1 +4 -0 src/sys/amd64/ia32/ia32_reg.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 22:07:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2673416A41F; Wed, 26 Oct 2005 22:07:04 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7D4443D45; Wed, 26 Oct 2005 22:07:03 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QM73bN009191; Wed, 26 Oct 2005 22:07:03 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QM73cU009190; Wed, 26 Oct 2005 22:07:03 GMT (envelope-from peter) Message-Id: <200510262207.j9QM73cU009190@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:07:03 +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/sys/amd64/ia32 ia32_reg.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 22:07:04 -0000 peter 2005-10-26 22:07:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/amd64/ia32 ia32_reg.c Log: MFC: 1.2: don't set segment registers yet. Approved by: re Revision Changes Path 1.1.4.1 +4 -0 src/sys/amd64/ia32/ia32_reg.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 22:16:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 761C916A41F; Wed, 26 Oct 2005 22:16:53 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3436E43D45; Wed, 26 Oct 2005 22:16:53 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QMGrgI009717; Wed, 26 Oct 2005 22:16:53 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QMGrZB009716; Wed, 26 Oct 2005 22:16:53 GMT (envelope-from peter) Message-Id: <200510262216.j9QMGrZB009716@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:16: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/amd64/amd64 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: Wed, 26 Oct 2005 22:16:53 -0000 peter 2005-10-26 22:16:52 UTC FreeBSD src repository Modified files: sys/amd64/amd64 machdep.c Log: Change PHYSMAP_SIZE to allow for more memory segments. The old value was too low for certain Dell amd64 machines. Revision Changes Path 1.643 +1 -1 src/sys/amd64/amd64/machdep.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 22:19:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7727416A41F; Wed, 26 Oct 2005 22:19:52 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3193543D45; Wed, 26 Oct 2005 22:19:52 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QMJqbi009796; Wed, 26 Oct 2005 22:19:52 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QMJqBn009795; Wed, 26 Oct 2005 22:19:52 GMT (envelope-from peter) Message-Id: <200510262219.j9QMJqBn009795@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:19: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/compat/freebsd32 freebsd32_misc.c syscalls.master X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 22:19:52 -0000 peter 2005-10-26 22:19:52 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32_misc.c syscalls.master Log: There is no 'freebsd3_' prefix for COMPAT_43 syscalls. Those are all bundled under MCOMPAT and have an 'o' prefix. Adjust as appropriate. This re-enables compiling without COMPAT_43 again. Revision Changes Path 1.45 +18 -18 src/sys/compat/freebsd32/freebsd32_misc.c 1.57 +10 -13 src/sys/compat/freebsd32/syscalls.master From owner-cvs-all@FreeBSD.ORG Wed Oct 26 22:21:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DBCC16A41F; Wed, 26 Oct 2005 22:21:04 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 067F243D45; Wed, 26 Oct 2005 22:21:04 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QML3Wf009967; Wed, 26 Oct 2005 22:21:03 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QML3vN009966; Wed, 26 Oct 2005 22:21:03 GMT (envelope-from peter) Message-Id: <200510262221.j9QML3vN009966@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:21: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/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 22:21:04 -0000 peter 2005-10-26 22:21:03 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c Log: Regenerate (with the correct #ifdef COMPAT_43 tests now) Revision Changes Path 1.45 +37 -37 src/sys/compat/freebsd32/freebsd32_proto.h 1.45 +9 -9 src/sys/compat/freebsd32/freebsd32_syscall.h 1.36 +9 -9 src/sys/compat/freebsd32/freebsd32_syscalls.c 1.46 +15 -9 src/sys/compat/freebsd32/freebsd32_sysent.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 22:23:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D984F16A41F; Wed, 26 Oct 2005 22:23:52 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9191443D45; Wed, 26 Oct 2005 22:23:52 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QMNqiD010132; Wed, 26 Oct 2005 22:23:52 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QMNqxR010131; Wed, 26 Oct 2005 22:23:52 GMT (envelope-from peter) Message-Id: <200510262223.j9QMNqxR010131@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:23: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/usr.sbin/fdcontrol fdcontrol.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 22:23:53 -0000 peter 2005-10-26 22:23:52 UTC FreeBSD src repository Modified files: usr.sbin/fdcontrol fdcontrol.c Log: Make fdcontrol work again. It has been broken for a while. It tries to set the floppy controller parameters, but that requires that the device node be open in O_RDWR mode now. I think it is broken in 6.0 as well. This line looks like a stray anyway. Revision Changes Path 1.14 +0 -1 src/usr.sbin/fdcontrol/fdcontrol.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 22:28:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4C3816A41F; Wed, 26 Oct 2005 22:28:38 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B1B43D46; Wed, 26 Oct 2005 22:28:38 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QMScvf010448; Wed, 26 Oct 2005 22:28:38 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QMSctp010447; Wed, 26 Oct 2005 22:28:38 GMT (envelope-from peter) Message-Id: <200510262228.j9QMSctp010447@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:28: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/usr.sbin/fdread fdread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 22:28:38 -0000 peter 2005-10-26 22:28:38 UTC FreeBSD src repository Modified files: usr.sbin/fdread fdread.c Log: fdread cannot work without opening the /dev/fd node in O_RDWR mode now, because it sets the floppy controller parameters, which requires O_RDWR. Specifically, the FD_SOPTS ioctl requires this, and the code errors out and aborts if it can't do it. Among other things, it is changing the FDOPT_NOERRLOG flag. Broken in 6.0 as well. Revision Changes Path 1.7 +1 -1 src/usr.sbin/fdread/fdread.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 22:32:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04FEE16A420; Wed, 26 Oct 2005 22:32:31 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B352E43D46; Wed, 26 Oct 2005 22:32:30 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QMWUHY010687; Wed, 26 Oct 2005 22:32:30 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QMWUjZ010686; Wed, 26 Oct 2005 22:32:30 GMT (envelope-from peter) Message-Id: <200510262232.j9QMWUjZ010686@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:32: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/amd64/amd64 io_apic.c 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, 26 Oct 2005 22:32:31 -0000 peter 2005-10-26 22:32:30 UTC FreeBSD src repository Modified files: sys/amd64/amd64 io_apic.c local_apic.c Log: MFi386: Various apic fixes and tweaks * Don't recursively panic if we've already paniced and the local apic is now stuck. * Add hw.apic.* tunables/sysctls for extint controls * Change "lapic%d timer" to "cpu%d timer" intname to match i386 Revision Changes Path 1.16 +12 -2 src/sys/amd64/amd64/io_apic.c 1.18 +8 -4 src/sys/amd64/amd64/local_apic.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 22:35:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7574016A41F; Wed, 26 Oct 2005 22:35:53 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A7A143D49; Wed, 26 Oct 2005 22:35:53 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9QMZq5p016090; Wed, 26 Oct 2005 15:35:52 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9QMZpwS016089; Wed, 26 Oct 2005 15:35:51 -0700 (PDT) (envelope-from obrien) Date: Wed, 26 Oct 2005 15:35:51 -0700 From: "David O'Brien" To: Kris Kennaway Message-ID: <20051026223551.GA16032@dragon.NUXI.org> References: <200510240034.j9O0YDgG047096@repoman.freebsd.org> <20051024143613.hu726dyokc4wco88@netchild.homeip.net> <20051025051555.GD55418@dragon.NUXI.org> <20051025164813.GD16812@xor.obsecurity.org> <20051026173222.GB99571@dragon.NUXI.org> <20051026184529.GA83718@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051026184529.GA83718@xor.obsecurity.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Alexander Leidinger , cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/editors/vim Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 22:35:53 -0000 On Wed, Oct 26, 2005 at 02:45:31PM -0400, Kris Kennaway wrote: > Anyway, to be clear: > > LOCALBASE is where your port should look to find its dependencies > (i.e. files already installed by other ports). > > PREFIX is where your port installs its own files. I know the general rules :-) I didn't exactly what nobs you set and then proceded to test (achieve), so I could test the same what you did. I made a guess. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 22:40:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEF6A16A41F; Wed, 26 Oct 2005 22:40:07 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E25D43D48; Wed, 26 Oct 2005 22:40:07 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QMe7J2011004; Wed, 26 Oct 2005 22:40:07 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QMe7l0011003; Wed, 26 Oct 2005 22:40:07 GMT (envelope-from peter) Message-Id: <200510262240.j9QMe7l0011003@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:40: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/kern subr_kdb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 22:40:08 -0000 peter 2005-10-26 22:40:07 UTC FreeBSD src repository Modified files: sys/kern subr_kdb.c Log: Commit something we found useful at work at one point. Add sysctls for debug.kdb.panic and debug.kdb.trap alongside the existing debug.kdb.enter sysctl. 'panic' causes a panic, and 'trap' causes a page fault. We used these to ensure that crash dumps succeed from those two common failure modes. This avoids the need for creating a 'panic' kld module. Revision Changes Path 1.16 +40 -0 src/sys/kern/subr_kdb.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 22:47:28 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF5E216A41F; Wed, 26 Oct 2005 22:47:28 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13E0C43D45; Wed, 26 Oct 2005 22:47:21 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9QMlDOx016223; Wed, 26 Oct 2005 15:47:13 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9QMlC25016222; Wed, 26 Oct 2005 15:47:12 -0700 (PDT) (envelope-from obrien) Date: Wed, 26 Oct 2005 15:47:12 -0700 From: "David O'Brien" To: Roman Kurakin Message-ID: <20051026224712.GA16118@dragon.NUXI.org> References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> <435E04AA.3080605@cronyx.ru> <20051026172734.GA99901@dragon.NUXI.org> <435FE099.6060508@cronyx.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <435FE099.6060508@cronyx.ru> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 22:47:29 -0000 On Thu, Oct 27, 2005 at 12:01:29AM +0400, Roman Kurakin wrote: > David O'Brien: > >On Tue, Oct 25, 2005 at 02:10:50PM +0400, Roman Kurakin wrote: > >>The commit log didn't state what was the problem variable forward > >>declaration or/and function > >>forward declaration. > > > >Since you became a committer 2003/12/18, I guess you haven't been part of > >FreeBSD when we've worked on a GCC compiler upgrade. We make these type > >of changes to make a new version of GCC build FreeBSD. The other choice > >is to disconnect these drivers from the build. The commits done where > >typical of what's been done for the past decade. > > > Please provide detailed technical information what is wrong in my > change of your commit. Instead of arguing this with you as it is probably fruitless. If you're going to pull the "maintainer" card, then please have these drivers moved to src/sys/contrib and note them in src/MAINTAINERS. That way this isn't a landmine for other committers to step on. > I do not want to list them in src/MAINTAINERS cause I think it is > better to allow any commits. > Cases such this one is rare. Rare or not, they can occur so why not take easy steps to avoid strife? -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Wed Oct 26 23:13:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C199816A41F; Wed, 26 Oct 2005 23:13:52 +0000 (GMT) (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 7C80043D45; Wed, 26 Oct 2005 23:13:52 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QNDq73012568; Wed, 26 Oct 2005 23:13:52 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QNDqdo012567; Wed, 26 Oct 2005 23:13:52 GMT (envelope-from emax) Message-Id: <200510262313.j9QNDqdo012567@repoman.freebsd.org> From: Maksim Yevmenkin Date: Wed, 26 Oct 2005 23:13: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/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 23:13:52 -0000 emax 2005-10-26 23:13:52 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c Log: Do not manually allocate/free device's softc structure. Pointed by: jhb Reviewed by: imp, jhb Revision Changes Path 1.18 +2 -14 src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c From owner-cvs-all@FreeBSD.ORG Wed Oct 26 23:26:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 676AF16A41F; Wed, 26 Oct 2005 23:26:55 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1B6C43D45; Wed, 26 Oct 2005 23:26:54 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.54 (FreeBSD)) id 1EUufV-000D9S-3C; Thu, 27 Oct 2005 00:26:53 +0100 Date: Thu, 27 Oct 2005 00:26:53 +0100 From: Ceri Davies To: Wilko Bulte Message-ID: <20051026232652.GE99857@submonkey.net> Mail-Followup-To: Ceri Davies , Wilko Bulte , doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org References: <200510262140.j9QLen1b006417@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: <200510262140.j9QLen1b006417@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.11 Sender: Ceri Davies Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: 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: Wed, 26 Oct 2005 23:26:55 -0000 --0F1p//8PRICkK4MW Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 26, 2005 at 09:40:49PM +0000, Wilko Bulte wrote: > wilko 2005-10-26 21:40:49 UTC >=20 > FreeBSD doc repository >=20 > Modified files: > en/donations wantlist.sgml=20 > Log: > note the Mac keyboard I'm looking for should have a US key layout. I'm not sure that there is any other kind (certainly both of the ones that I have bought in the UK from Apple have US layout(ish): '@' is on '2', '`' is down in the bottom left, '\' is where '#' should be, etc. '#' on the other hand is Alt+3, because '3' has '=C2' on it...). If you can pay shipping from the UK then I have one on the shelf behind me, but it's probably cheaper to just buy one (unless getting a US one in .nl is the problem). I can probably stick it in a bag for the trip to EuroBSDCon if you're going. Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --0F1p//8PRICkK4MW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYBC8ocfcwTS3JF8RAoXCAJ9zwAtvo41ouhwEMxCa3NK/wPWR/ACfba6a +AQupi6vN5QaPz/40YZiQa0= =k0Po -----END PGP SIGNATURE----- --0F1p//8PRICkK4MW-- From owner-cvs-all@FreeBSD.ORG Wed Oct 26 23:35:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C96CB16A41F; Wed, 26 Oct 2005 23:35:14 +0000 (GMT) (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 BFC0F43D5F; Wed, 26 Oct 2005 23:35:10 +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 468CD1A3C31; Wed, 26 Oct 2005 16:35:10 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 206D15139F; Wed, 26 Oct 2005 19:35:09 -0400 (EDT) Date: Wed, 26 Oct 2005 19:35:08 -0400 From: Kris Kennaway To: David O'Brien Message-ID: <20051026233508.GA67407@xor.obsecurity.org> References: <200510240034.j9O0YDgG047096@repoman.freebsd.org> <20051024143613.hu726dyokc4wco88@netchild.homeip.net> <20051025051555.GD55418@dragon.NUXI.org> <20051025164813.GD16812@xor.obsecurity.org> <20051026173222.GB99571@dragon.NUXI.org> <20051026184529.GA83718@xor.obsecurity.org> <20051026223551.GA16032@dragon.NUXI.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: <20051026223551.GA16032@dragon.NUXI.org> User-Agent: Mutt/1.4.2.1i Cc: Alexander Leidinger , cvs-ports@FreeBSD.org, ports-committers@FreeBSD.org, cvs-all@FreeBSD.org, Kris Kennaway Subject: Re: cvs commit: ports/editors/vim 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, 26 Oct 2005 23:35:15 -0000 --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 26, 2005 at 03:35:51PM -0700, David O'Brien wrote: > On Wed, Oct 26, 2005 at 02:45:31PM -0400, Kris Kennaway wrote: > > Anyway, to be clear: > >=20 > > LOCALBASE is where your port should look to find its dependencies > > (i.e. files already installed by other ports). > >=20 > > PREFIX is where your port installs its own files. >=20 > I know the general rules :-) I didn't exactly what nobs you set and then > proceded to test (achieve), so I could test the same what you did. I > made a guess. OK, I guess you just forgot to read the first paragraph of my email, which said: -- In this build, your port and all its dependencies were built with LOCALBASE=3D/usr/opt and X11BASE=3D/usr/X, and the build failed because of hard-coded values in your= port or the vendor sources. -- Kris --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYBKsWry0BWjoQKURAnxQAJwIlZ+DqMN+5IwEvpAxlZ+wjvLQoQCgnQ5T MIwiGc4u5DSKkWrN8xKIOgQ= =TJ4+ -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- From owner-cvs-all@FreeBSD.ORG Wed Oct 26 23:36:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75B6116A41F; Wed, 26 Oct 2005 23:36:53 +0000 (GMT) (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 124E843D45; Wed, 26 Oct 2005 23:36:53 +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 ED4551A3C2E; Wed, 26 Oct 2005 16:36:52 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 4336A5139F; Wed, 26 Oct 2005 19:36:52 -0400 (EDT) Date: Wed, 26 Oct 2005 19:36:52 -0400 From: Kris Kennaway To: Edwin Groothuis Message-ID: <20051026233652.GB67407@xor.obsecurity.org> References: <200510262138.j9QLc7jL006221@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4bRzO86E/ozDv8r1" Content-Disposition: inline In-Reply-To: <200510262138.j9QLc7jL006221@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/deskutils/plans 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, 26 Oct 2005 23:36:53 -0000 --4bRzO86E/ozDv8r1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 26, 2005 at 09:38:07PM +0000, Edwin Groothuis wrote: > edwin 2005-10-26 21:38:07 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > deskutils/plans Makefile distinfo=20 > Log: > Permissions set by the Makefile are just wrong. > 755 for .cgi, 664 for .xml and 644 for others would be > appropriate. This contained a stealth upgrade to 7.4.5 (and removed the SHA checksums): > | -PORTVERSION=3D 7.4.3 > | +PORTVERSION=3D 7.4.5 > | --- ports/deskutils/plans/distinfo 2005/10/14 21:06:39 1.16 > | +++ ports/deskutils/plans/distinfo 2005/10/26 21:38:07 1.17 > | @@ -1,6 +1,4 @@ > | -MD5 (plans_7.4.3.zip) =3D d341b4ee4824300d482a65fb9e37b7f7 > | -SHA256 (plans_7.4.3.zip) =3D 91583996a556903974a6161001f089d02811515b4= 65c92cf083ae22162eee868 > | -SIZE (plans_7.4.3.zip) =3D 584929 > | +MD5 (plans_7.4.5.zip) =3D d752f718efbccaba6152a48b7928751c > | +SIZE (plans_7.4.5.zip) =3D 585191 > | MD5 (powerani.gif) =3D b0f85a6c41817a2dcad0ffe6f0729fa8 > | -SHA256 (powerani.gif) =3D d01c1c8299aa6c0eda0cd7c202bdf5a4ad4940037759= 6fc2e114db6591c66d97 > | SIZE (powerani.gif) =3D 7203 Kris --4bRzO86E/ozDv8r1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYBMTWry0BWjoQKURAuLKAKCcCuCakIaxOC46VSrWtQerz2456gCdE7zI yosrr8pX6k87HkiIzNMQZeI= =9HbD -----END PGP SIGNATURE----- --4bRzO86E/ozDv8r1-- From owner-cvs-all@FreeBSD.ORG Wed Oct 26 23:48:28 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F267016A41F; Wed, 26 Oct 2005 23:48:27 +0000 (GMT) (envelope-from peter@wemm.org) Received: from daintree.corp.yahoo.com (daintree.corp.yahoo.com [216.145.52.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4B8143D48; Wed, 26 Oct 2005 23:48:27 +0000 (GMT) (envelope-from peter@wemm.org) Received: by daintree.corp.yahoo.com (Postfix, from userid 2154) id A9E6019761; Wed, 26 Oct 2005 16:48:27 -0700 (PDT) From: Peter Wemm To: John Baldwin Date: Wed, 26 Oct 2005 16:48:26 -0700 User-Agent: KMail/1.8.2 References: <200510251948.j9PJmmmj043891@repoman.freebsd.org> <20051025224540.GB4123@soaustin.net> <200510261320.46985.jhb@freebsd.org> In-Reply-To: <200510261320.46985.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261648.27126.peter@wemm.org> Cc: Mark Linimon , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_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, 26 Oct 2005 23:48:28 -0000 On Wednesday 26 October 2005 10:20 am, John Baldwin wrote: > On Tuesday 25 October 2005 06:45 pm, Mark Linimon wrote: > > On Tue, Oct 25, 2005 at 07:48:48PM +0000, John Baldwin wrote: > > > Reorganize the interrupt handling code a bit to make a few > > > things cleaner and increase flexibility to allow various > > > different approaches to be tried in the future. > > > > Wow. Having (in a previous existance) worked on real-time OS > > interrupt handlers I can likely guess how much work went into this. > > Nice. > > Actually, this diff wasn't a huge deal, it was mostly just a > refactoring of what was already there. Of course the real challenge is to make things like the puc device do the right thing automatically instead of needing 'options PUC_FASTINTR'. -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-all@FreeBSD.ORG Thu Oct 27 00:06:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF35D16A41F; Thu, 27 Oct 2005 00:06:29 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9562D43D5D; Thu, 27 Oct 2005 00:06:24 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R06NAW014935; Thu, 27 Oct 2005 00:06:23 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R06N7b014934; Thu, 27 Oct 2005 00:06:23 GMT (envelope-from marcus) Message-Id: <200510270006.j9R06N7b014934@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 27 Oct 2005 00:06: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/mozilla Makefile ports/www/mozilla-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: Thu, 27 Oct 2005 00:06:30 -0000 marcus 2005-10-27 00:06:23 UTC FreeBSD ports repository Modified files: www/mozilla Makefile www/mozilla-devel Makefile Log: Replace /usr/X11R6 with ${X11BASE} to fix the build with non-default base paths. Reported by: pointyhat via kris Revision Changes Path 1.232 +2 -1 ports/www/mozilla-devel/Makefile 1.205 +2 -1 ports/www/mozilla/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 00:10:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D3B016A41F; Thu, 27 Oct 2005 00:10:44 +0000 (GMT) (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 03E1F43D6A; Thu, 27 Oct 2005 00:10:41 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R0AeGE015155; Thu, 27 Oct 2005 00:10:40 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R0AeQc015154; Thu, 27 Oct 2005 00:10:40 GMT (envelope-from cperciva) Message-Id: <200510270010.j9R0AeQc015154@repoman.freebsd.org> From: Colin Percival Date: Thu, 27 Oct 2005 00:10: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/sysutils/est Makefile ports/sysutils/estctrl 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, 27 Oct 2005 00:10:44 -0000 cperciva 2005-10-27 00:10:40 UTC FreeBSD ports repository (src committer) Modified files: sysutils/est Makefile sysutils/estctrl Makefile Log: Replace IGNORE="foo (bar)" with IGNORE='foo (bar)'. With double quotes, sh chokes on the parentheses. Submitted by: Peter Schuller Approved by: flz Revision Changes Path 1.8 +1 -1 ports/sysutils/est/Makefile 1.6 +1 -1 ports/sysutils/estctrl/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 00:14:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D0CF16A41F; Thu, 27 Oct 2005 00:14:17 +0000 (GMT) (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 BE62943D46; Thu, 27 Oct 2005 00:14:16 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R0EG4b015341; Thu, 27 Oct 2005 00:14:16 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R0EGql015340; Thu, 27 Oct 2005 00:14:16 GMT (envelope-from mnag) Message-Id: <200510270014.j9R0EGql015340@repoman.freebsd.org> From: Marcus Alves Grando Date: Thu, 27 Oct 2005 00:14: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/japanese/eb 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, 27 Oct 2005 00:14:17 -0000 mnag 2005-10-27 00:14:16 UTC FreeBSD ports repository Modified files: japanese/eb Makefile distinfo Log: Apply official patch PR: 86913 Submitted by: KIMURA Yasuhiro Approved by: takamune2004@yahoo.co.jp (maintainer timeout, 19 days) Revision Changes Path 1.52 +7 -3 ports/japanese/eb/Makefile 1.29 +2 -0 ports/japanese/eb/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 00:27:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF60816A420; Thu, 27 Oct 2005 00:27:46 +0000 (GMT) (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 5A1C143D72; Thu, 27 Oct 2005 00:27:37 +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 415DD1A3C19; Wed, 26 Oct 2005 17:27:37 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 5A30B51233; Wed, 26 Oct 2005 20:27:36 -0400 (EDT) Date: Wed, 26 Oct 2005 20:27:35 -0400 From: Kris Kennaway To: Colin Percival Message-ID: <20051027002735.GA82704@xor.obsecurity.org> References: <200510270010.j9R0AeQc015154@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OgqxwSJOaUobr8KG" Content-Disposition: inline In-Reply-To: <200510270010.j9R0AeQc015154@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/est Makefile ports/sysutils/estctrl 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, 27 Oct 2005 00:27:46 -0000 --OgqxwSJOaUobr8KG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 12:10:40AM +0000, Colin Percival wrote: > cperciva 2005-10-27 00:10:40 UTC >=20 > FreeBSD ports repository (src committer) >=20 > Modified files: > sysutils/est Makefile=20 > sysutils/estctrl Makefile=20 > Log: > Replace IGNORE=3D"foo (bar)" with IGNORE=3D'foo (bar)'. With double > quotes, sh chokes on the parentheses. > =20 > Submitted by: Peter Schuller > Approved by: flz IGNORE should not be quoted at all. portlint would have told you this (and flz should have known better too :-) Kris --OgqxwSJOaUobr8KG Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYB72Wry0BWjoQKURAsAMAKC2U5ZrAcVcxclJKMdDBSCpgKz5rQCffUJu RF4ZAoYETz9w6OlBHSBeRZo= =qzsH -----END PGP SIGNATURE----- --OgqxwSJOaUobr8KG-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 00:41:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9529416A41F; Thu, 27 Oct 2005 00:41:06 +0000 (GMT) (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 C26AC43D45; Thu, 27 Oct 2005 00:41:05 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R0f5gL017010; Thu, 27 Oct 2005 00:41:05 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R0f5B4017009; Thu, 27 Oct 2005 00:41:05 GMT (envelope-from ahze) Message-Id: <200510270041.j9R0f5B4017009@repoman.freebsd.org> From: Michael Johnson Date: Thu, 27 Oct 2005 00:41: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/nvu 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, 27 Oct 2005 00:41:06 -0000 ahze 2005-10-27 00:41:05 UTC FreeBSD ports repository Modified files: www/nvu Makefile Log: - Fix build when ${X11BASE}!=/usr/X11R6 Obtained from: www/mozilla Reported by: pointyhat via kris Revision Changes Path 1.17 +2 -1 ports/www/nvu/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 02:43:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A10616A41F; Thu, 27 Oct 2005 02:43:57 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DACA043D46; Thu, 27 Oct 2005 02:43:56 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R2huqD029975; Thu, 27 Oct 2005 02:43:56 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R2hu8C029974; Thu, 27 Oct 2005 02:43:56 GMT (envelope-from nork) Message-Id: <200510270243.j9R2hu8C029974@repoman.freebsd.org> From: Norikatsu Shigemura Date: Thu, 27 Oct 2005 02:43: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/sysutils/3dm 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, 27 Oct 2005 02:43:57 -0000 nork 2005-10-27 02:43:56 UTC FreeBSD ports repository Modified files: sysutils/3dm Makefile Log: 3ware provides 3DM Management Utility compiled on 5.2.1-RELEASE. So we cannot use this version on 4-stable. Revision Changes Path 1.13 +2 -2 ports/sysutils/3dm/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 03:09:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3691816A41F; Thu, 27 Oct 2005 03:09:21 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C318743D45; Thu, 27 Oct 2005 03:09:20 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R39KJu031402; Thu, 27 Oct 2005 03:09:20 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R39KkY031401; Thu, 27 Oct 2005 03:09:20 GMT (envelope-from davidxu) Message-Id: <200510270309.j9R39KkY031401@repoman.freebsd.org> From: David Xu Date: Thu, 27 Oct 2005 03:09: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/lib 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, 27 Oct 2005 03:09:21 -0000 davidxu 2005-10-27 03:09:20 UTC FreeBSD src repository Modified files: lib Makefile Log: Disconnect libc_r from buildworld, it is still kept in the tree to provide some baseline references, but users are encouraged to use libpthread or libthr in real world. Discussed on: arch@ Revision Changes Path 1.208 +1 -1 src/lib/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 03:17:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6622E16A41F; Thu, 27 Oct 2005 03:17:20 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 240B943D48; Thu, 27 Oct 2005 03:17:20 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R3HKBN031847; Thu, 27 Oct 2005 03:17:20 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R3HJVj031846; Thu, 27 Oct 2005 03:17:20 GMT (envelope-from nork) Message-Id: <200510270317.j9R3HJVj031846@repoman.freebsd.org> From: Norikatsu Shigemura Date: Thu, 27 Oct 2005 03:17: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/sysutils/3dm 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, 27 Oct 2005 03:17:20 -0000 nork 2005-10-27 03:17:19 UTC FreeBSD ports repository Modified files: sysutils/3dm Makefile Log: Unquote. Pointed out by: kris Revision Changes Path 1.14 +1 -1 ports/sysutils/3dm/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 03:18:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ABF416A41F; Thu, 27 Oct 2005 03:18:08 +0000 (GMT) (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 291FB43D49; Thu, 27 Oct 2005 03:18:08 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R3I8Cl031895; Thu, 27 Oct 2005 03:18:08 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R3I8Iu031894; Thu, 27 Oct 2005 03:18:08 GMT (envelope-from ijliao) Message-Id: <200510270318.j9R3I8Iu031894@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 27 Oct 2005 03: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/emulators/gnuboy 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, 27 Oct 2005 03:18:08 -0000 ijliao 2005-10-27 03:18:08 UTC FreeBSD ports repository Modified files: emulators/gnuboy Makefile Removed files: emulators/gnuboy pkg-plist Log: respect $PREFIX depend on latest autoconf utilize PLIST_FILES and PORTDOCS Revision Changes Path 1.15 +12 -3 ports/emulators/gnuboy/Makefile 1.3 +0 -12 ports/emulators/gnuboy/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 03:21:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C90B16A41F; Thu, 27 Oct 2005 03:21:41 +0000 (GMT) (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 9F1AE43D46; Thu, 27 Oct 2005 03:21:35 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.204] ([192.168.254.204]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id j9R3LYSX002385; Wed, 26 Oct 2005 21:21:34 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <436047BF.7000409@samsco.org> Date: Wed, 26 Oct 2005 21:21:35 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.8) Gecko/20050615 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Xu References: <200510270309.j9R39KkY031401@repoman.freebsd.org> In-Reply-To: <200510270309.j9R39KkY031401@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.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib 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, 27 Oct 2005 03:21:41 -0000 David Xu wrote: > davidxu 2005-10-27 03:09:20 UTC > > FreeBSD src repository > > Modified files: > lib Makefile > Log: > Disconnect libc_r from buildworld, it is still kept in the tree to > provide some baseline references, but users are encouraged to use > libpthread or libthr in real world. > > Discussed on: arch@ > > Revision Changes Path > 1.208 +1 -1 src/lib/Makefile All this means is that it'll rot and quickly become useless. RIP libc_r. Scott From owner-cvs-all@FreeBSD.ORG Thu Oct 27 03:42:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CAB116A41F; Thu, 27 Oct 2005 03:42:20 +0000 (GMT) (envelope-from wes@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BB2843D46; Thu, 27 Oct 2005 03:42:20 +0000 (GMT) (envelope-from wes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R3gKTg032848; Thu, 27 Oct 2005 03:42:20 GMT (envelope-from wes@repoman.freebsd.org) Received: (from wes@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R3gKPw032847; Thu, 27 Oct 2005 03:42:20 GMT (envelope-from wes) Message-Id: <200510270342.j9R3gKPw032847@repoman.freebsd.org> From: Wes Peters Date: Thu, 27 Oct 2005 03:42: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: 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: Thu, 27 Oct 2005 03:42:20 -0000 wes 2005-10-27 03:42:20 UTC FreeBSD ports repository Modified files: . access Log: Forced commit to note that ade@ is freed from indenture/mentoring. Revision Changes Path 1.673 +0 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Thu Oct 27 04:23:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BA7816A41F; Thu, 27 Oct 2005 04:23:16 +0000 (GMT) (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 5379043D46; Thu, 27 Oct 2005 04:23:16 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R4NGa2034367; Thu, 27 Oct 2005 04:23:16 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R4NFMA034366; Thu, 27 Oct 2005 04:23:15 GMT (envelope-from novel) Message-Id: <200510270423.j9R4NFMA034366@repoman.freebsd.org> From: Roman Bogorodskiy Date: Thu, 27 Oct 2005 04:23: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/p5-CSP 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, 27 Oct 2005 04:23:16 -0000 novel 2005-10-27 04:23:15 UTC FreeBSD ports repository Modified files: security/p5-CSP Makefile Log: Add an additional MASTER_SITE provided by maintainer to fix fetch. Reported by: pointyhat via kris Revision Changes Path 1.4 +2 -1 ports/security/p5-CSP/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 04:26:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 168FF16A41F; Thu, 27 Oct 2005 04:26:36 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB19343D46; Thu, 27 Oct 2005 04:26:35 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R4QZDt034499; Thu, 27 Oct 2005 04:26:35 GMT (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R4QZ6D034498; Thu, 27 Oct 2005 04:26:35 GMT (envelope-from ps) Message-Id: <200510270426.j9R4QZ6D034498@repoman.freebsd.org> From: Paul Saab Date: Thu, 27 Oct 2005 04:26: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/kern uipc_socket.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 04:26:36 -0000 ps 2005-10-27 04:26:35 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: Allow 32bit get/setsockopt with SO_SNDTIMEO or SO_RECVTIMEO to work. Revision Changes Path 1.250 +29 -3 src/sys/kern/uipc_socket.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 05:12:55 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33C6A16A41F; Thu, 27 Oct 2005 05:12:55 +0000 (GMT) (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 59DEF43D45; Thu, 27 Oct 2005 05:12:54 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87]) by mailout1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9R5Cr3E008388; Thu, 27 Oct 2005 15:12:53 +1000 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-3) with ESMTP id j9R5Cohr013129; Thu, 27 Oct 2005 15:12:51 +1000 Date: Thu, 27 Oct 2005 15:12:50 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Luigi Rizzo In-Reply-To: <20051025051606.A49155@xorpc.icir.org> Message-ID: <20051027150449.H23976@delplex.bde.org> References: <200510251213.j9PCDbBp010108@repoman.freebsd.org> <20051025051606.A49155@xorpc.icir.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Bruce Evans , cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/msun/src e_rem_pio2f.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 05:12:55 -0000 On Tue, 25 Oct 2005, Luigi Rizzo wrote: > wow now this is a commit message!!! > > On Tue, Oct 25, 2005 at 12:13:37PM +0000, Bruce Evans wrote: >> bde 2005-10-25 12:13:37 UTC >> >> FreeBSD src repository >> >> Modified files: >> lib/msun/src e_rem_pio2f.c >> Log: >> More fixes for arg reduction near pi/2 on systems with broken assignment >> to floats (mainly i386's). All errors of more than 1 ulp for float >> ... It is too long because I didn't have tme to make it shorter :-). The commit logs aren't quite the right place for describing the (apparently) not very well known intricacies in libm, but neither is the code, especially here since I plan to optimize the float case by not using floats internally and then the intricacies in e_rem_pio2f.c will mostly go away. This one will move to e_rem_pio2.c if we start porperly supporting long double precision on i386's before gcc properly supports double precision on i386's, but I want to keep e_rem_pio2.c in sync with the vendor version. Bruce From owner-cvs-all@FreeBSD.ORG Thu Oct 27 05:31:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 4CDFB16A420; Thu, 27 Oct 2005 05:31:17 +0000 (GMT) Date: Thu, 27 Oct 2005 05:31:17 +0000 From: Alexey Dokuchaev To: David Xu Message-ID: <20051027053117.GA63240@FreeBSD.org> References: <200510270309.j9R39KkY031401@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200510270309.j9R39KkY031401@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/lib 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, 27 Oct 2005 05:31:17 -0000 Hello, I was under impression that some software in our Ports Collection might still require libc_r to run (e.g. it crashes with libpthread). beep- media-player is (was?) one such beast. It's probably a good idea to grep for libc_r references in /usr/ports before we completely get rid of it. ./danfe On Thu, Oct 27, 2005 at 03:09:20AM +0000, David Xu wrote: > davidxu 2005-10-27 03:09:20 UTC > > FreeBSD src repository > > Modified files: > lib Makefile > Log: > Disconnect libc_r from buildworld, it is still kept in the tree to > provide some baseline references, but users are encouraged to use > libpthread or libthr in real world. > > Discussed on: arch@ > > Revision Changes Path > 1.208 +1 -1 src/lib/Makefile > _______________________________________________ > 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 Thu Oct 27 05:43:44 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C66A16A41F; Thu, 27 Oct 2005 05:43:44 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1B5643D46; Thu, 27 Oct 2005 05:43:43 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9R5heqs051470; Thu, 27 Oct 2005 05:43:42 GMT (envelope-from davidxu@freebsd.org) Message-ID: <4360690F.3060606@freebsd.org> Date: Thu, 27 Oct 2005 13:43:43 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20050928 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alexey Dokuchaev References: <200510270309.j9R39KkY031401@repoman.freebsd.org> <20051027053117.GA63240@FreeBSD.org> In-Reply-To: <20051027053117.GA63240@FreeBSD.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib 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, 27 Oct 2005 05:43:44 -0000 You mean the XMMS clone ? it just works fine, I have installed it on my IBM Thinkpad T43 and run it with libthr for monthes without any problem. David Xu Alexey Dokuchaev wrote: > Hello, > > I was under impression that some software in our Ports Collection might > still require libc_r to run (e.g. it crashes with libpthread). beep- > media-player is (was?) one such beast. It's probably a good idea to > grep for libc_r references in /usr/ports before we completely get rid of > it. > > ./danfe From owner-cvs-all@FreeBSD.ORG Thu Oct 27 05:58:48 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4AEE16A41F; Thu, 27 Oct 2005 05:58:48 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2F1D43D45; Thu, 27 Oct 2005 05:58:47 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86]) by mailout2.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9R5wko3004116; Thu, 27 Oct 2005 15:58:46 +1000 Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9R5witV014561; Thu, 27 Oct 2005 15:58:45 +1000 Date: Thu, 27 Oct 2005 15:58:44 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Peter Wemm In-Reply-To: <200510262240.j9QMe7l0011003@repoman.freebsd.org> Message-ID: <20051027155314.A24293@delplex.bde.org> References: <200510262240.j9QMe7l0011003@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 subr_kdb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 05:58:49 -0000 On Wed, 26 Oct 2005, Peter Wemm wrote: > peter 2005-10-26 22:40:07 UTC > > FreeBSD src repository > > Modified files: > sys/kern subr_kdb.c > Log: > Commit something we found useful at work at one point. Add sysctls for > debug.kdb.panic and debug.kdb.trap alongside the existing debug.kdb.enter > sysctl. 'panic' causes a panic, and 'trap' causes a page fault. We used > these to ensure that crash dumps succeed from those two common failure > modes. This avoids the need for creating a 'panic' kld module. This has nothing to do with kdb, so it doesn't belong here. Panics and traps just happen to invoke a debugger if a debugger is configured. Panics should have even less to do with kdb -- the existence of the panic command in ddb is a bug, since debugger context is special and not suitable for calling panic(); e.g., sync() in panic() only ever worked because of other bugs (ddb keeps^Wkept interrupts disabled but sync() requires interrupts to do i/o). Bruce From owner-cvs-all@FreeBSD.ORG Thu Oct 27 05:58:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB69916A420; Thu, 27 Oct 2005 05:58:49 +0000 (GMT) (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 7B27743D45; Thu, 27 Oct 2005 05:58:49 +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 57F061A3C31; Wed, 26 Oct 2005 22:58:49 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7CEFE51246; Thu, 27 Oct 2005 01:58:48 -0400 (EDT) Date: Thu, 27 Oct 2005 01:58:48 -0400 From: Kris Kennaway To: Alexey Dokuchaev Message-ID: <20051027055848.GA77915@xor.obsecurity.org> References: <200510270309.j9R39KkY031401@repoman.freebsd.org> <20051027053117.GA63240@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UlVJffcvxoiEqYs2" Content-Disposition: inline In-Reply-To: <20051027053117.GA63240@FreeBSD.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, David Xu , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib 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, 27 Oct 2005 05:58:49 -0000 --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 05:31:17AM +0000, Alexey Dokuchaev wrote: > Hello, >=20 > I was under impression that some software in our Ports Collection might > still require libc_r to run (e.g. it crashes with libpthread). beep- > media-player is (was?) one such beast. It's probably a good idea to > grep for libc_r references in /usr/ports before we completely get rid of > it. I'll do a full build asap and see what breaks. Kris --UlVJffcvxoiEqYs2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYGyXWry0BWjoQKURAqAiAJ9a36KQ+K2TzPFC4zJsc6DiyRof8QCgqH6u PLpjeUlly1rgixvfHusGw1M= =rLW6 -----END PGP SIGNATURE----- --UlVJffcvxoiEqYs2-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 06:04:05 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9ADB16A41F; Thu, 27 Oct 2005 06:04:05 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (creme-brulee.marcuscom.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3337643D45; Thu, 27 Oct 2005 06:04:04 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from shumai.marcuscom.com (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.13.4/8.13.4) with ESMTP id j9R64d6A034524; Thu, 27 Oct 2005 02:04:39 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Kris Kennaway In-Reply-To: <20051027055848.GA77915@xor.obsecurity.org> References: <200510270309.j9R39KkY031401@repoman.freebsd.org> <20051027053117.GA63240@FreeBSD.org> <20051027055848.GA77915@xor.obsecurity.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-QVNr3+4ZLSGLr0yrnQ1j" Organization: MarcusCom, Inc. Date: Thu, 27 Oct 2005 02:03:59 -0400 Message-Id: <1130393039.15730.10.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 FreeBSD GNOME Team Port Cc: cvs-src@freebsd.org, Alexey Dokuchaev , src-committers@freebsd.org, David Xu , cvs-all@freebsd.org Subject: Re: cvs commit: src/lib 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, 27 Oct 2005 06:04:05 -0000 --=-QVNr3+4ZLSGLr0yrnQ1j Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2005-10-27 at 01:58 -0400, Kris Kennaway wrote: > On Thu, Oct 27, 2005 at 05:31:17AM +0000, Alexey Dokuchaev wrote: > > Hello, > >=20 > > I was under impression that some software in our Ports Collection might > > still require libc_r to run (e.g. it crashes with libpthread). beep- > > media-player is (was?) one such beast. It's probably a good idea to > > grep for libc_r references in /usr/ports before we completely get rid o= f > > it. >=20 > I'll do a full build asap and see what breaks. By my calculation, lang/cli and games/xrally should be broken by this. Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-QVNr3+4ZLSGLr0yrnQ1j Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDYG3Pb2iPiv4Uz4cRAla0AJ0dUIPxEDX2ueU64nDahqnW4iIS2QCbBCgr X5EH6gqvOB49WBt6NGwxK9M= =GUQ9 -----END PGP SIGNATURE----- --=-QVNr3+4ZLSGLr0yrnQ1j-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 06:23:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1CF916A41F; Thu, 27 Oct 2005 06:23:58 +0000 (GMT) (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 6F38743D46; Thu, 27 Oct 2005 06:23:58 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R6NwK5046684; Thu, 27 Oct 2005 06:23:58 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R6NwNK046683; Thu, 27 Oct 2005 06:23:58 GMT (envelope-from lofi) Message-Id: <200510270623.j9R6NwNK046683@repoman.freebsd.org> From: Michael Nottebrock Date: Thu, 27 Oct 2005 06:23: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/x11/kdelibs3 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, 27 Oct 2005 06:23:59 -0000 lofi 2005-10-27 06:23:58 UTC FreeBSD ports repository Modified files: x11/kdelibs3 Makefile Log: Use cups-config to locate the cups data dir Revision Changes Path 1.182 +2 -0 ports/x11/kdelibs3/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 06:25:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 281B016A41F; Thu, 27 Oct 2005 06:25:19 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A6DD43D55; Thu, 27 Oct 2005 06:25:07 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9R6P5Dt093467; Thu, 27 Oct 2005 09:25:06 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 75059-03-3; Thu, 27 Oct 2005 09:25:04 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9R6LI5f093361 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 27 Oct 2005 09:21:18 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9R6LJA2007091; Thu, 27 Oct 2005 09:21:19 +0300 (EEST) (envelope-from ru) Date: Thu, 27 Oct 2005 09:21:19 +0300 From: Ruslan Ermilov To: David Xu Message-ID: <20051027062119.GC68470@ip.net.ua> References: <200510270309.j9R39KkY031401@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="CUfgB8w4ZwR/yMy5" Content-Disposition: inline In-Reply-To: <200510270309.j9R39KkY031401@repoman.freebsd.org> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib 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, 27 Oct 2005 06:25:19 -0000 --CUfgB8w4ZwR/yMy5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 03:09:20AM +0000, David Xu wrote: > davidxu 2005-10-27 03:09:20 UTC >=20 > FreeBSD src repository >=20 > Modified files: > lib Makefile=20 > Log: > Disconnect libc_r from buildworld, it is still kept in the tree to > provide some baseline references, but users are encouraged to use > libpthread or libthr in real world. > =20 > Discussed on: arch@ > =20 > Revision Changes Path > 1.208 +1 -1 src/lib/Makefile >=20 This should break alpha and sparc64 ports: on these architectures, libpthread was symlinked to libc_r. The magic is in makefiles: # libpthread/Makefile =2Eif ${MACHINE_ARCH} =3D=3D "alpha" || ${MACHINE_ARCH} =3D=3D "sparc64" LIB=3Dkse =2Eelse LIB=3Dpthread =2Eendif # libc_r/Makefile =2Eif ${MACHINE_ARCH} =3D=3D "alpha" || ${MACHINE_ARCH} =3D=3D "sparc64" SYMLINKS+=3Dlib${LIB}.a ${LIBDIR}/libpthread.a =2Eif !defined(NO_PIC) SYMLINKS+=3Dlib${LIB}.so ${SHLIBDIR}/libpthread.so =2Eendif =2Eif !defined(NO_PROFILE) SYMLINKS+=3Dlib${LIB}_p.a ${LIBDIR}/libpthread_p.a =2Eendif =2Eendif Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --CUfgB8w4ZwR/yMy5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYHHfqRfpzJluFF4RAq26AJ9eH51qGxCE7nFegMhzQ8SAKGeTyQCeKzHQ i/JXsz+3AIMdp7c3MdHegFY= =TSlb -----END PGP SIGNATURE----- --CUfgB8w4ZwR/yMy5-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 06:34:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6314716A41F; Thu, 27 Oct 2005 06:34:08 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC8B343D46; Thu, 27 Oct 2005 06:34:07 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 96C9550F95; Thu, 27 Oct 2005 08:34:05 +0200 (CEST) Received: from localhost (dle176.neoplus.adsl.tpnet.pl [83.24.34.176]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 2541A509F1; Thu, 27 Oct 2005 08:33:58 +0200 (CEST) Date: Thu, 27 Oct 2005 08:33:53 +0200 From: Pawel Jakub Dawidek To: Yar Tikhiy Message-ID: <20051027063353.GA63896@garage.freebsd.pl> References: <200510231406.j9NE6r8L008373@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7JfCtLOvnd9MIVvH" Content-Disposition: inline In-Reply-To: <200510231406.j9NE6r8L008373@repoman.freebsd.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r535 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: ** X-Spam-Status: No, score=2.6 required=3.0 tests=BAYES_00,RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL,RCVD_IN_XBL autolearn=no version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d ike named ppp-user sshd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 06:34:08 -0000 --7JfCtLOvnd9MIVvH Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Oct 23, 2005 at 02:06:53PM +0000, Yar Tikhiy wrote: +> yar 2005-10-23 14:06:53 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> etc/rc.d ike named ppp-user sshd=20 +> Log: +> Don't be lazy, set the "command" variable even if +> /etc/defaults/rc.conf will provide foo_program, too. +> By specifying "command" we explicitly say that we're +> going to rely on rc.subr(8) default methods, and +> rc.subr(8) will take advantage of this soon. +> =20 +> The majority of our rc.d scripts already set "command" +> if appropriate, so fix just the non-compliant handful. [...] +> name=3D"named" +> rcvar=3D`set_rcvar` +> +command=3D"/usr/sbin/${name}" [...] +> name=3D"ppp" +> rcvar=3D`set_rcvar` +> +command=3D"/usr/sbin/ppp" [...] +> name=3D"sshd" +> rcvar=3D`set_rcvar` +> +command=3D"/usr/sbin/${name}" Any reason you didn't used ${name} in ppp case? --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --7JfCtLOvnd9MIVvH Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD4DBQFDYHTRForvXbEpPzQRAiklAJiQ+ROz3lYY7hj5N4aliON6eqH0AKD4G6jF 5QzB6sUlkGYwRgkS0DZ2Fw== =zflN -----END PGP SIGNATURE----- --7JfCtLOvnd9MIVvH-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 06:36:30 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD0A116A41F; Thu, 27 Oct 2005 06:36:30 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76B1043D46; Thu, 27 Oct 2005 06:36:30 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9R6aRiE058537; Thu, 27 Oct 2005 06:36:28 GMT (envelope-from davidxu@freebsd.org) Message-ID: <4360756D.1030708@freebsd.org> Date: Thu, 27 Oct 2005 14:36:29 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20050928 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ruslan Ermilov References: <200510270309.j9R39KkY031401@repoman.freebsd.org> <20051027062119.GC68470@ip.net.ua> In-Reply-To: <20051027062119.GC68470@ip.net.ua> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib 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, 27 Oct 2005 06:36:30 -0000 Ruslan Ermilov wrote: > This should break alpha and sparc64 ports: on these architectures, > libpthread was symlinked to libc_r. The magic is in makefiles: > > # libpthread/Makefile > .if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64" > LIB=kse > .else > LIB=pthread > .endif > > # libc_r/Makefile > .if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64" > SYMLINKS+=lib${LIB}.a ${LIBDIR}/libpthread.a > .if !defined(NO_PIC) > SYMLINKS+=lib${LIB}.so ${SHLIBDIR}/libpthread.so > .endif > .if !defined(NO_PROFILE) > SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a > .endif > .endif > > > Cheers, Thanks for the information, last time, I have tested it on panther, libthr works, at least works with test programs. Would it be ok to let libthr be the libpthread ? I can not test alpha, it seems beast still uses 5.4. David Xu From owner-cvs-all@FreeBSD.ORG Thu Oct 27 06:56:00 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A152616A41F; Thu, 27 Oct 2005 06:56:00 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B75A43D4C; Thu, 27 Oct 2005 06:55:59 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 83BD350F95; Thu, 27 Oct 2005 08:55:57 +0200 (CEST) Received: from localhost (dle176.neoplus.adsl.tpnet.pl [83.24.34.176]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id EDB47509F1; Thu, 27 Oct 2005 08:55:50 +0200 (CEST) Date: Thu, 27 Oct 2005 08:55:46 +0200 From: Pawel Jakub Dawidek To: Don Lewis Message-ID: <20051027065505.GA668@garage.freebsd.pl> References: <200510032157.j93LvhM7022905@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6WlEvdN9Dv0WHSBl" Content-Disposition: inline In-Reply-To: <200510032157.j93LvhM7022905@repoman.freebsd.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r535 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: ** X-Spam-Status: No, score=2.6 required=3.0 tests=BAYES_00,RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL,RCVD_IN_XBL autolearn=no version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_alloc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 06:56:00 -0000 --6WlEvdN9Dv0WHSBl Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 03, 2005 at 09:57:43PM +0000, Don Lewis wrote: +> truckman 2005-10-03 21:57:43 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> sys/ufs/ffs ffs_alloc.c=20 +> Log: +> Initialize the inode i_flag field in ffs_valloc() to clean up any +> stale flag bits left over from before the inode was recycled. +> =20 +> Without this change, a leftover IN_SPACECOUNTED flag could prevent +> softdep_freefile() and softdep_releasefile() from incrementing +> fs_pendinginodes. Because handle_workitem_freefile() unconditionally +> decrements fs_pendinginodes, a negative value could be reported at +> file system unmount time with a message like: +> unmount pending error: blocks 0 files -3 +> The pending block count in fs_pendingblocks could also be negative +> for similar reasons. These errors can cause the data returned by +> statfs() to be slightly incorrect. Some other cleanup code in +> softdep_releasefile() could also be incorrectly bypassed. Not sure how much the problem I'm seeing is related to this, but after clean reboot, when I do: # mount -u -r /usr I get: /usr: update error: blocks 24 files 1 Any idea what's going on? This file system is using soft-updates. Maybe it remounts itself to read-only before flushing buffers? Not sure how old is the problem, but could be very old. Before GEOM device was always open RW, now RO means RO and the order could be wrong somewhere. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --6WlEvdN9Dv0WHSBl Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYHnyForvXbEpPzQRAnyEAKCwpqvvx+cBqYzuvcDNnfd3IX28DACglW2x qFdpCZ6P/wBRWwhtbsFrB/A= =sCfu -----END PGP SIGNATURE----- --6WlEvdN9Dv0WHSBl-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 07:04:31 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51AF216A41F; Thu, 27 Oct 2005 07:04:31 +0000 (GMT) (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 B590E43D49; Thu, 27 Oct 2005 07:04:30 +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 97C4D1A3C32; Thu, 27 Oct 2005 00:04:30 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1F4E7512B5; Thu, 27 Oct 2005 03:04:29 -0400 (EDT) Date: Thu, 27 Oct 2005 03:04:28 -0400 From: Kris Kennaway To: David Xu Message-ID: <20051027070428.GA95514@xor.obsecurity.org> References: <200510270309.j9R39KkY031401@repoman.freebsd.org> <20051027062119.GC68470@ip.net.ua> <4360756D.1030708@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zhXaljGHf11kAtnf" Content-Disposition: inline In-Reply-To: <4360756D.1030708@freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/lib 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, 27 Oct 2005 07:04:31 -0000 --zhXaljGHf11kAtnf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 02:36:29PM +0800, David Xu wrote: > Ruslan Ermilov wrote: >=20 > >This should break alpha and sparc64 ports: on these architectures, > >libpthread was symlinked to libc_r. The magic is in makefiles: > > > ># libpthread/Makefile > >.if ${MACHINE_ARCH} =3D=3D "alpha" || ${MACHINE_ARCH} =3D=3D "sparc64" > >LIB=3Dkse > >.else > >LIB=3Dpthread > >.endif > > > ># libc_r/Makefile > >.if ${MACHINE_ARCH} =3D=3D "alpha" || ${MACHINE_ARCH} =3D=3D "sparc64" > >SYMLINKS+=3Dlib${LIB}.a ${LIBDIR}/libpthread.a > >.if !defined(NO_PIC) > >SYMLINKS+=3Dlib${LIB}.so ${SHLIBDIR}/libpthread.so > >.endif > >.if !defined(NO_PROFILE) > >SYMLINKS+=3Dlib${LIB}_p.a ${LIBDIR}/libpthread_p.a > >.endif > >.endif > > > > > >Cheers, >=20 > Thanks for the information, last time, I have tested it on > panther, libthr works, at least works with test programs. > Would it be ok to let libthr be the libpthread ? I can not > test alpha, it seems beast still uses 5.4. I'd prefer the following: put libc_r back for now so it's easily available as a fallback, make libthr the default on sparc64 and alpha for a few weeks so that I and others can test it, and then flip the switch once you've fixed any problems that are found with it (in the past libthr did not work 100% on sparc, but you may have fixed it). Kris --zhXaljGHf11kAtnf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYHv7Wry0BWjoQKURApzeAJ4+0MsF45GgUkn5yDGWgWQhWwYgOgCgrXrX wqGdUJWmPb14lJ6ngTEP1G8= =u8x+ -----END PGP SIGNATURE----- --zhXaljGHf11kAtnf-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 07:08:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AE5F16A41F; Thu, 27 Oct 2005 07:08:43 +0000 (GMT) (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 5617843D45; Thu, 27 Oct 2005 07:08:43 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R78gCt051376; Thu, 27 Oct 2005 07:08:43 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R78gMu051375; Thu, 27 Oct 2005 07:08:42 GMT (envelope-from ache) Message-Id: <200510270708.j9R78gMu051375@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 27 Oct 2005 07:08:42 +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/l10n 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: Thu, 27 Oct 2005 07:08:43 -0000 ache 2005-10-27 07:08:42 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/l10n chapter.sgml Log: Move one part of out of , where it belongs Revision Changes Path 1.114 +7 -5 doc/en_US.ISO8859-1/books/handbook/l10n/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Oct 27 07:09:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C690116A41F; Thu, 27 Oct 2005 07:09:10 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12FF443D45; Thu, 27 Oct 2005 07:09:10 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id C265C50F95; Thu, 27 Oct 2005 09:09:08 +0200 (CEST) Received: from localhost (dle176.neoplus.adsl.tpnet.pl [83.24.34.176]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 552D1509F1; Thu, 27 Oct 2005 09:09:03 +0200 (CEST) Date: Thu, 27 Oct 2005 09:08:58 +0200 From: Pawel Jakub Dawidek To: Don Lewis Message-ID: <20051027070858.GA641@garage.freebsd.pl> References: <200510032157.j93LvhM7022905@repoman.freebsd.org> <20051027065505.GA668@garage.freebsd.pl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pf9I7BMVVzbSWLtt" Content-Disposition: inline In-Reply-To: <20051027065505.GA668@garage.freebsd.pl> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r535 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: ** X-Spam-Status: No, score=2.6 required=3.0 tests=BAYES_00,RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL,RCVD_IN_XBL autolearn=no version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_alloc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 07:09:11 -0000 --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 08:55:46AM +0200, Pawel Jakub Dawidek wrote: +> On Mon, Oct 03, 2005 at 09:57:43PM +0000, Don Lewis wrote: +> +> truckman 2005-10-03 21:57:43 UTC +> +>=20 +> +> FreeBSD src repository +> +>=20 +> +> Modified files: +> +> sys/ufs/ffs ffs_alloc.c=20 +> +> Log: +> +> Initialize the inode i_flag field in ffs_valloc() to clean up any +> +> stale flag bits left over from before the inode was recycled. +> +> =20 +> +> Without this change, a leftover IN_SPACECOUNTED flag could prevent +> +> softdep_freefile() and softdep_releasefile() from incrementing +> +> fs_pendinginodes. Because handle_workitem_freefile() unconditional= ly +> +> decrements fs_pendinginodes, a negative value could be reported at +> +> file system unmount time with a message like: +> +> unmount pending error: blocks 0 files -3 +> +> The pending block count in fs_pendingblocks could also be negative +> +> for similar reasons. These errors can cause the data returned by +> +> statfs() to be slightly incorrect. Some other cleanup code in +> +> softdep_releasefile() could also be incorrectly bypassed. +>=20 +> Not sure how much the problem I'm seeing is related to this, but after +> clean reboot, when I do: +>=20 +> # mount -u -r /usr +>=20 +> I get: /usr: update error: blocks 24 files 1 +>=20 +> Any idea what's going on? This file system is using soft-updates. +> Maybe it remounts itself to read-only before flushing buffers? +>=20 +> Not sure how old is the problem, but could be very old. Before GEOM +> device was always open RW, now RO means RO and the order could be +> wrong somewhere. I fsck'ed this "clean" file system and: ** Phase 4 - Check Reference Counts UNREF FILE I=3D2357670 OWNER=3Dpjd MODE=3D100600 SIZE=3D258 MTIME=3DOct 27 08:40 2005 CLEAR? [yn] y UNREF FILE I=3D8101888 OWNER=3Droot MODE=3D100644 SIZE=3D10573 MTIME=3DOct 27 08:41 2005 CLEAR? [yn] y UNREF FILE I=3D8102436 OWNER=3Droot MODE=3D100644 SIZE=3D10573 MTIME=3DOct 21 12:04 2005 CLEAR? [yn] y ** Phase 5 - Check Cyl groups FREE BLK COUNT(S) WRONG IN SUPERBLK SALVAGE? [yn] y SUMMARY INFORMATION BAD SALVAGE? [yn] y BLK(S) MISSING IN BIT MAPS SALVAGE? [yn] y 887288 files, 28777941 used, 3987616 free (251064 frags, 467069 blocks, 0.8= % fra gmentation) ***** FILE SYSTEM WAS MODIFIED ***** Doing: # sync;sync;sync;mount -u -r /usr worked just fine when I tried. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --pf9I7BMVVzbSWLtt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYH0KForvXbEpPzQRAobeAJ9qdsQ532+FTApByGDBpBPiQ2THIQCg96zE YqGXjUYZ20FCs1x3dy/AJ38= =i6+0 -----END PGP SIGNATURE----- --pf9I7BMVVzbSWLtt-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 07:13:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C373F16A41F; Thu, 27 Oct 2005 07:13:55 +0000 (GMT) (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 7F04F43D45; Thu, 27 Oct 2005 07:13:55 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R7Dtcn051605; Thu, 27 Oct 2005 07:13:55 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R7DtmA051604; Thu, 27 Oct 2005 07:13:55 GMT (envelope-from ache) Message-Id: <200510270713.j9R7DtmA051604@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 27 Oct 2005 07:13: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: doc/en_US.ISO8859-1/books/handbook/l10n 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: Thu, 27 Oct 2005 07:13:55 -0000 ache 2005-10-27 07:13:55 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/l10n chapter.sgml Log: Move yet one sentence out of orderlist Revision Changes Path 1.115 +4 -3 doc/en_US.ISO8859-1/books/handbook/l10n/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Oct 27 07:15:00 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89B4B16A41F; Thu, 27 Oct 2005 07:15:00 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1B6043D46; Thu, 27 Oct 2005 07:14:59 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.3/8.13.3) with ESMTP id j9R7EvHw007561; Thu, 27 Oct 2005 11:14:57 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.3/8.13.3/Submit) id j9R7Evq3007560; Thu, 27 Oct 2005 11:14:57 +0400 (MSD) (envelope-from yar) Date: Thu, 27 Oct 2005 11:14:56 +0400 From: Yar Tikhiy To: Pawel Jakub Dawidek Message-ID: <20051027071456.GA6598@comp.chem.msu.su> References: <200510231406.j9NE6r8L008373@repoman.freebsd.org> <20051027063353.GA63896@garage.freebsd.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051027063353.GA63896@garage.freebsd.pl> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d ike named ppp-user sshd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 07:15:00 -0000 On Thu, Oct 27, 2005 at 08:33:53AM +0200, Pawel Jakub Dawidek wrote: > On Sun, Oct 23, 2005 at 02:06:53PM +0000, Yar Tikhiy wrote: > +> yar 2005-10-23 14:06:53 UTC > +> > +> FreeBSD src repository > +> > +> Modified files: > +> etc/rc.d ike named ppp-user sshd > +> Log: > +> Don't be lazy, set the "command" variable even if > +> /etc/defaults/rc.conf will provide foo_program, too. > +> By specifying "command" we explicitly say that we're > +> going to rely on rc.subr(8) default methods, and > +> rc.subr(8) will take advantage of this soon. > +> > +> The majority of our rc.d scripts already set "command" > +> if appropriate, so fix just the non-compliant handful. > [...] > +> name="named" > +> rcvar=`set_rcvar` > +> +command="/usr/sbin/${name}" > [...] > +> name="ppp" > +> rcvar=`set_rcvar` > +> +command="/usr/sbin/ppp" > [...] > +> name="sshd" > +> rcvar=`set_rcvar` > +> +command="/usr/sbin/${name}" > > Any reason you didn't used ${name} in ppp case? I was just blinded by my being solid sure that $name was "ppp-user". Nowever, now I'm in doubt whether $name should be "ppp". The script is named ppp-user and it PROVIDEs ppp-user, hence sysadmins can rightfully assume that its rc.conf.d file is ppp-user, too. Such assumption will be broken since it is $name that is passed to load_rc_config. I think $name should be changed to "ppp-user" in CURRENT. This will introduce minor incompatibility, but also eliminate a source of further confusion. -- Yar From owner-cvs-all@FreeBSD.ORG Thu Oct 27 07:18:56 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4432916A41F; Thu, 27 Oct 2005 07:18:56 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 659A043D45; Thu, 27 Oct 2005 07:18:55 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.3/8.13.3) with ESMTP id j9R7IriF007614; Thu, 27 Oct 2005 11:18:53 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.3/8.13.3/Submit) id j9R7IrQp007613; Thu, 27 Oct 2005 11:18:53 +0400 (MSD) (envelope-from yar) Date: Thu, 27 Oct 2005 11:18:53 +0400 From: Yar Tikhiy To: Max Laier Message-ID: <20051027071852.GB6598@comp.chem.msu.su> References: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> <20051026093536.GF41520@cell.sick.ru> <20051026105820.X32255@fledge.watson.org> <200510261416.09346.max@love2party.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510261416.09346.max@love2party.net> User-Agent: Mutt/1.5.9i Cc: cvs-src@freebsd.org, Gleb Smirnoff , Robert Watson , 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: Thu, 27 Oct 2005 07:18:56 -0000 On Wed, Oct 26, 2005 at 02:15:47PM +0200, Max Laier wrote: > On Wednesday 26 October 2005 11:58, Robert Watson wrote: > > On Wed, 26 Oct 2005, Gleb Smirnoff wrote: > > > On Wed, Oct 26, 2005 at 10:15:09AM +0100, Robert Watson wrote: > > > R> I think we may actually be in need of either a new flag, > > > R> IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable > > > way R> for protocols to ask if an interface is a loopback interface or > > > not. > > > > > > I'd prefer to rewrite those subsystems that use interface layer but > > > aren't actually interfaces. I have plans to do this for CARP. > > > > At least in the case of if_disc, this won't help. I'm not quite sure why > > if_disc is IFF_LOOPBACK. > > Sad answer seems to be: copy and paste. IFF_LOOPBACK is part of 1.1 which > also contains the following comment: > > /* > * Discard interface driver for protocol testing and timing. > * (Based on the loopback.) > */ > > So it might be a good idea to get rid of it and work from there. During simple comparative testing of if_disc with and without IFF_LOOPBACK I failed to notice any difference. Would anybody object to just dropping IFF_LOOPBACK from if_disc flags? -- Yar From owner-cvs-all@FreeBSD.ORG Thu Oct 27 07:34:00 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC73B16A41F; Thu, 27 Oct 2005 07:34:00 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AD6443D48; Thu, 27 Oct 2005 07:34:00 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R7Y0wW052735; Thu, 27 Oct 2005 07:34:00 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R7Y0hm052734; Thu, 27 Oct 2005 07:34:00 GMT (envelope-from vs) Message-Id: <200510270734.j9R7Y0hm052734@repoman.freebsd.org> From: Volker Stolz Date: Thu, 27 Oct 2005 07:33: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/lang/hugs 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, 27 Oct 2005 07:34:00 -0000 vs 2005-10-27 07:33:59 UTC FreeBSD ports repository Modified files: lang/hugs Makefile Log: Set GNU_CONFIGURE (should fix non-std PREFIX-builds) Revision Changes Path 1.39 +1 -0 ports/lang/hugs/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 07:40:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1305F16A41F; Thu, 27 Oct 2005 07:40:54 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFE6243D48; Thu, 27 Oct 2005 07:40:53 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9R7erMU024069; Thu, 27 Oct 2005 00:40:53 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9R7ermR024068; Thu, 27 Oct 2005 00:40:53 -0700 (PDT) (envelope-from obrien) Date: Thu, 27 Oct 2005 00:40:53 -0700 From: "David O'Brien" To: Roman Kurakin Message-ID: <20051027074053.GA24024@dragon.NUXI.org> References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051024072423.GA34909@dragon.NUXI.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 07:40:54 -0000 On Mon, Oct 24, 2005 at 12:24:23AM -0700, David O'Brien wrote: > On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: > > rik 2005-09-27 16:57:45 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/cp if_cp.c > > Log: > > Restore if_cp.c 1.27 > > ---------------------------- > > revision 1.27 > > date: 2005/09/19 03:10:16; author: imp; state: Exp; lines: +3 -2 > > Make sure that we call if_free(ifp) after bus_teardown_intr. Since we > > could get an interrupt after we free the ifp, and the interrupt > > handler depended on the ifp being still alive, this could, in theory, > > cause a crash. Eliminate this possibility by moving the if_free to > > after the bus_teardown_intr() call. > > > > In fact, this change do nothing for this driver. It is protected from > > this by cp_destroy variable. This variable also protects driver from > > initiation of any activity from network stack with disabled intr > > handler with this change applied. > > You should not have backed out my commit without discussing it with me > and understanding the reason for the change. > Do it again and I *will* be taking it Core. rik, I'm sorry this reads as such an aggressive email. I thought we were in a discussion about the reason of my commit and was surprised to see your commit happened in the middle of what I thought was an on-going thread. From owner-cvs-all@FreeBSD.ORG Thu Oct 27 08:17:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62E2816A41F; Thu, 27 Oct 2005 08:17:23 +0000 (GMT) (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 1617743D53; Thu, 27 Oct 2005 08:17:23 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R8HMgG055598; Thu, 27 Oct 2005 08:17:22 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R8HMxD055597; Thu, 27 Oct 2005 08:17:22 GMT (envelope-from tobez) Message-Id: <200510270817.j9R8HMxD055597@repoman.freebsd.org> From: Anton Berezin Date: Thu, 27 Oct 2005 08:17: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/p5-Math-Calc-Units 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, 27 Oct 2005 08:17:23 -0000 tobez 2005-10-27 08:17:22 UTC FreeBSD ports repository Modified files: math/p5-Math-Calc-Units Makefile distinfo Log: Update to 1.05. Revision Changes Path 1.6 +1 -1 ports/math/p5-Math-Calc-Units/Makefile 1.4 +2 -2 ports/math/p5-Math-Calc-Units/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 08:21:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26CA016A41F; Thu, 27 Oct 2005 08:21:36 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id C533443D75; Thu, 27 Oct 2005 08:21:26 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 32DF151A76; Thu, 27 Oct 2005 10:21:25 +0200 (CEST) Received: from localhost (pjd.wheel.pl [10.0.1.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id D1F3551A6E; Thu, 27 Oct 2005 10:21:19 +0200 (CEST) Date: Thu, 27 Oct 2005 10:21:16 +0200 From: Pawel Jakub Dawidek To: Yar Tikhiy Message-ID: <20051027082115.GA749@garage.freebsd.pl> References: <200510231406.j9NE6r8L008373@repoman.freebsd.org> <20051027063353.GA63896@garage.freebsd.pl> <20051027071456.GA6598@comp.chem.msu.su> 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: <20051027071456.GA6598@comp.chem.msu.su> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r535 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-5.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d ike named ppp-user sshd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 08:21:36 -0000 --tThc/1wpZn/ma/RB Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 11:14:56AM +0400, Yar Tikhiy wrote: +> On Thu, Oct 27, 2005 at 08:33:53AM +0200, Pawel Jakub Dawidek wrote: +> > On Sun, Oct 23, 2005 at 02:06:53PM +0000, Yar Tikhiy wrote: +> > +> yar 2005-10-23 14:06:53 UTC +> > +>=20 +> > +> FreeBSD src repository +> > +>=20 +> > +> Modified files: +> > +> etc/rc.d ike named ppp-user sshd=20 +> > +> Log: +> > +> Don't be lazy, set the "command" variable even if +> > +> /etc/defaults/rc.conf will provide foo_program, too. +> > +> By specifying "command" we explicitly say that we're +> > +> going to rely on rc.subr(8) default methods, and +> > +> rc.subr(8) will take advantage of this soon. +> > +> =20 +> > +> The majority of our rc.d scripts already set "command" +> > +> if appropriate, so fix just the non-compliant handful. +> > [...] +> > +> name=3D"named" +> > +> rcvar=3D`set_rcvar` +> > +> +command=3D"/usr/sbin/${name}" +> > [...] +> > +> name=3D"ppp" +> > +> rcvar=3D`set_rcvar` +> > +> +command=3D"/usr/sbin/ppp" +> > [...] +> > +> name=3D"sshd" +> > +> rcvar=3D`set_rcvar` +> > +> +command=3D"/usr/sbin/${name}" +> >=20 +> > Any reason you didn't used ${name} in ppp case? +>=20 +> I was just blinded by my being solid sure that $name was "ppp-user". +> Nowever, now I'm in doubt whether $name should be "ppp". The script +> is named ppp-user and it PROVIDEs ppp-user, hence sysadmins can +> rightfully assume that its rc.conf.d file is ppp-user, too. Such +> assumption will be broken since it is $name that is passed to +> load_rc_config. I think $name should be changed to "ppp-user" in +> CURRENT. This will introduce minor incompatibility, but also +> eliminate a source of further confusion. It is confusing, but maybe we should rename ppp-user to ppp? I'm not sure how well sh(1) will handle things like ppp-user_enable=3D"YES", etc. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --tThc/1wpZn/ma/RB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYI37ForvXbEpPzQRAgedAKCqF6j3sq2XiAXmClLCQhGiBxxJ2QCfc4dB Msr9vHj2ZjP8H0pQLHSuHvA= =QKdI -----END PGP SIGNATURE----- --tThc/1wpZn/ma/RB-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 08:49:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F21A16A420; Thu, 27 Oct 2005 08:49:53 +0000 (GMT) (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 5134243D49; Thu, 27 Oct 2005 08:49:52 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R8nqwR064054; Thu, 27 Oct 2005 08:49:52 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R8npCl064053; Thu, 27 Oct 2005 08:49:51 GMT (envelope-from pav) Message-Id: <200510270849.j9R8npCl064053@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 27 Oct 2005 08:49: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/misc/gkrellweather2 Makefile ports/misc/gkrellweather2/files patch-GrabWeather X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 08:49:53 -0000 pav 2005-10-27 08:49:51 UTC FreeBSD ports repository Modified files: misc/gkrellweather2 Makefile Added files: misc/gkrellweather2/files patch-GrabWeather Log: - Use fetch(1) instead of wget Submitted by: Yarema Revision Changes Path 1.12 +1 -1 ports/misc/gkrellweather2/Makefile 1.1 +18 -0 ports/misc/gkrellweather2/files/patch-GrabWeather (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 08:56:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4E6616A420; Thu, 27 Oct 2005 08:56:24 +0000 (GMT) (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 809E643D45; Thu, 27 Oct 2005 08:56:24 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R8uO0o064357; Thu, 27 Oct 2005 08:56:24 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R8uOVN064356; Thu, 27 Oct 2005 08:56:24 GMT (envelope-from blackend) Message-Id: <200510270856.j9R8uOVN064356@repoman.freebsd.org> From: Marc Fonvieille Date: Thu, 27 Oct 2005 08:56:23 +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/fr where.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, 27 Oct 2005 08:56:25 -0000 blackend 2005-10-27 08:56:23 UTC FreeBSD doc repository Modified files: fr where.sgml Log: MFen: 1.73 --> 1.75 Revision Changes Path 1.12 +8 -2 www/fr/where.sgml From owner-cvs-all@FreeBSD.ORG Thu Oct 27 08:57:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 548A016A41F; Thu, 27 Oct 2005 08:57:11 +0000 (GMT) (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 1128D43D45; Thu, 27 Oct 2005 08:57:11 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R8vA1I064404; Thu, 27 Oct 2005 08:57:10 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R8vA92064403; Thu, 27 Oct 2005 08:57:10 GMT (envelope-from tobez) Message-Id: <200510270857.j9R8vA92064403@repoman.freebsd.org> From: Anton Berezin Date: Thu, 27 Oct 2005 08:57: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/p5-PDFLib 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, 27 Oct 2005 08:57:11 -0000 tobez 2005-10-27 08:57:10 UTC FreeBSD ports repository Modified files: print/p5-PDFLib Makefile distinfo Log: Update to 0.14. Assign mainatiner to perl@. Require perl from ports. Revision Changes Path 1.8 +9 -4 ports/print/p5-PDFLib/Makefile 1.3 +2 -2 ports/print/p5-PDFLib/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 09:19:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 100AC16A41F; Thu, 27 Oct 2005 09:19:26 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0E0E43D48; Thu, 27 Oct 2005 09:19:24 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.3/8.13.3) with ESMTP id j9R9JLPH012921; Thu, 27 Oct 2005 13:19:21 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.3/8.13.3/Submit) id j9R9JLvO012920; Thu, 27 Oct 2005 13:19:21 +0400 (MSD) (envelope-from yar) Date: Thu, 27 Oct 2005 13:19:20 +0400 From: Yar Tikhiy To: Pawel Jakub Dawidek Message-ID: <20051027091920.GA11982@comp.chem.msu.su> Mail-Followup-To: yar@comp.chem.msu.su, pjd@FreeBSD.org, freebsd-rc@FreeBSD.org References: <200510231406.j9NE6r8L008373@repoman.freebsd.org> <20051027063353.GA63896@garage.freebsd.pl> <20051027071456.GA6598@comp.chem.msu.su> <20051027082115.GA749@garage.freebsd.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051027082115.GA749@garage.freebsd.pl> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, freebsd-rc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d ike named ppp-user sshd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 09:19:26 -0000 On Thu, Oct 27, 2005 at 10:21:16AM +0200, Pawel Jakub Dawidek wrote: > On Thu, Oct 27, 2005 at 11:14:56AM +0400, Yar Tikhiy wrote: > +> On Thu, Oct 27, 2005 at 08:33:53AM +0200, Pawel Jakub Dawidek wrote: > +> > On Sun, Oct 23, 2005 at 02:06:53PM +0000, Yar Tikhiy wrote: > +> > +> yar 2005-10-23 14:06:53 UTC > +> > +> > +> > +> FreeBSD src repository > +> > +> > +> > +> Modified files: > +> > +> etc/rc.d ike named ppp-user sshd > +> > +> Log: > +> > +> Don't be lazy, set the "command" variable even if > +> > +> /etc/defaults/rc.conf will provide foo_program, too. > +> > +> By specifying "command" we explicitly say that we're > +> > +> going to rely on rc.subr(8) default methods, and > +> > +> rc.subr(8) will take advantage of this soon. > +> > +> > +> > +> The majority of our rc.d scripts already set "command" > +> > +> if appropriate, so fix just the non-compliant handful. > +> > [...] > +> > +> name="named" > +> > +> rcvar=`set_rcvar` > +> > +> +command="/usr/sbin/${name}" > +> > [...] > +> > +> name="ppp" > +> > +> rcvar=`set_rcvar` > +> > +> +command="/usr/sbin/ppp" > +> > [...] > +> > +> name="sshd" > +> > +> rcvar=`set_rcvar` > +> > +> +command="/usr/sbin/${name}" > +> > > +> > Any reason you didn't used ${name} in ppp case? > +> > +> I was just blinded by my being solid sure that $name was "ppp-user". > +> Nowever, now I'm in doubt whether $name should be "ppp". The script > +> is named ppp-user and it PROVIDEs ppp-user, hence sysadmins can > +> rightfully assume that its rc.conf.d file is ppp-user, too. Such > +> assumption will be broken since it is $name that is passed to > +> load_rc_config. I think $name should be changed to "ppp-user" in > +> CURRENT. This will introduce minor incompatibility, but also > +> eliminate a source of further confusion. > > It is confusing, but maybe we should rename ppp-user to ppp? > I'm not sure how well sh(1) will handle things like > ppp-user_enable="YES", etc. Yes, this is much better than my lame proposal because so we will have to worry about neither variable naming nor compatibility with installations using ppp and rc.conf.d at once. We change the PROVIDE line and fix all dependent rc.d scripts, then request the repocopy of ppp-user to ppp, fix /etc/netstart, and finally kill the old file. Does this plan look OK? P.S. Looks like it's time to move this thread to -rc, setting Mail-Followup-To accordingly. -- Yar From owner-cvs-all@FreeBSD.ORG Thu Oct 27 09:42:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9349D16A421 for ; Thu, 27 Oct 2005 09:42:20 +0000 (GMT) (envelope-from silby@silby.com) Received: from relay03.pair.com (relay03.pair.com [209.68.5.17]) by mx1.FreeBSD.org (Postfix) with SMTP id 81DE343D49 for ; Thu, 27 Oct 2005 09:42:19 +0000 (GMT) (envelope-from silby@silby.com) Received: (qmail 66922 invoked from network); 27 Oct 2005 09:42:17 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 27 Oct 2005 09:42:17 -0000 X-pair-Authenticated: 209.68.2.70 Date: Thu, 27 Oct 2005 04:42:14 -0500 (CDT) From: Mike Silbersack To: Nate Lawson In-Reply-To: <435E6EC7.1050308@root.org> Message-ID: <20051027044034.X5931@odysseus.silby.com> References: <200510230020.j9N0KD4g046756@repoman.freebsd.org> <20051025031002.B911@odysseus.silby.com> <435E6EC7.1050308@root.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/dev/acpica acpi_smbat.c acpi_smbus.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, 27 Oct 2005 09:42:20 -0000 On Tue, 25 Oct 2005, Nate Lawson wrote: >> Nice, I've been waiting for this for a while. Well, sorta waiting. It >> turns out that the battery life on my Acer Pentium M laptop is so good that >> I can estimate when it'll run out mentally. "Has it been more than 2 hours >> since I wandered away from an outlet? Hm, maybe I should return." >> >> Now I just have to wait for this to be MFC'd to RELENG_6. :) > > I'd appreciate testing feedback before MFC. And the MFC will be after 6.0. > > -- > Nate Well, I'm not inclined to upgrade one of my main machines to -current, so I'll have to wait for the MFC. :) The ACPI C3 fix you just forwarded to me - I'm going to try it on my old laptop ASAP. That machine has been unused due to a loose power connector for a while, so I have to do a buildworld in order to bring it up to date. Mike "Silby" Silbersack From owner-cvs-all@FreeBSD.ORG Thu Oct 27 09:57:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49B6616A41F; Thu, 27 Oct 2005 09:57:13 +0000 (GMT) (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 D3A5143D45; Thu, 27 Oct 2005 09:57:12 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R9vC7r067518; Thu, 27 Oct 2005 09:57:12 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R9vC7A067517; Thu, 27 Oct 2005 09:57:12 GMT (envelope-from garga) Message-Id: <200510270957.j9R9vC7A067517@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 09:57: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/editors Makefile ports/editors/jed-devel Makefile distinfo pkg-descr pkg-plist ports/editors/jed-devel/files patch-info_jed.1in patch-info_jed.2in patch-info_jed.3in patch-info_jed.info patch-src_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: Thu, 27 Oct 2005 09:57:13 -0000 garga 2005-10-27 09:57:12 UTC FreeBSD ports repository Modified files: editors Makefile Added files: editors/jed-devel Makefile distinfo pkg-descr pkg-plist editors/jed-devel/files patch-info_jed.1in patch-info_jed.2in patch-info_jed.3in patch-info_jed.info patch-src_Makefile.in Log: JED is a highly customizable text editor offering most of the commonly used features of EMACS without the proportions of EMACS. The default configuration uses EMACS keystrokes, though WordStar keystrokes are available, and most any keystrokes can be programmed.n JED is customizable and programmable in the language SLANG, which can look like forth or c, depending on your preferences. Revision Changes Path 1.322 +1 -0 ports/editors/Makefile 1.1 +74 -0 ports/editors/jed-devel/Makefile (new) 1.1 +2 -0 ports/editors/jed-devel/distinfo (new) 1.1 +14 -0 ports/editors/jed-devel/files/patch-info_jed.1in (new) 1.1 +11 -0 ports/editors/jed-devel/files/patch-info_jed.2in (new) 1.1 +14 -0 ports/editors/jed-devel/files/patch-info_jed.3in (new) 1.1 +14 -0 ports/editors/jed-devel/files/patch-info_jed.info (new) 1.1 +114 -0 ports/editors/jed-devel/files/patch-src_Makefile.in (new) 1.1 +8 -0 ports/editors/jed-devel/pkg-descr (new) 1.1 +184 -0 ports/editors/jed-devel/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 09:58:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5FB916A41F; Thu, 27 Oct 2005 09:58:34 +0000 (GMT) (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 84EC543D48; Thu, 27 Oct 2005 09:58:34 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R9wYe1067691; Thu, 27 Oct 2005 09:58:34 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R9wYJo067690; Thu, 27 Oct 2005 09:58:34 GMT (envelope-from garga) Message-Id: <200510270958.j9R9wYJo067690@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 09:58: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: Thu, 27 Oct 2005 09:58:34 -0000 garga 2005-10-27 09:58:34 UTC FreeBSD ports repository Modified files: . modules Log: jed-devel --> ports/editors/jed-devel Revision Changes Path 1.13473 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Oct 27 09:59:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D22016A41F; Thu, 27 Oct 2005 09:59:04 +0000 (GMT) (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 F152E43D45; Thu, 27 Oct 2005 09:59:03 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R9x3Xf067748; Thu, 27 Oct 2005 09:59:03 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R9x3Jl067747; Thu, 27 Oct 2005 09:59:03 GMT (envelope-from garga) Message-Id: <200510270959.j9R9x3Jl067747@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 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/editors/jed 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, 27 Oct 2005 09:59:04 -0000 garga 2005-10-27 09:59:03 UTC FreeBSD ports repository Modified files: editors/jed Makefile Log: - Register CONFLICTS with jed-devel - OPTIONS'ify Revision Changes Path 1.24 +16 -10 ports/editors/jed/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 10:21:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 860BF16A41F; Thu, 27 Oct 2005 10:21:24 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43EF543D45; Thu, 27 Oct 2005 10:21:24 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RALOSP070017; Thu, 27 Oct 2005 10:21:24 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RALNOx070016; Thu, 27 Oct 2005 10:21:23 GMT (envelope-from davidxu) Message-Id: <200510271021.j9RALNOx070016@repoman.freebsd.org> From: David Xu Date: Thu, 27 Oct 2005 10:21: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/lib/libthr 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, 27 Oct 2005 10:21:24 -0000 davidxu 2005-10-27 10:21:23 UTC FreeBSD src repository Modified files: lib/libthr Makefile Log: Link libthr to libpthread on Alpha and Sparc. Revision Changes Path 1.15 +10 -0 src/lib/libthr/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 10:22:27 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0407916A41F; Thu, 27 Oct 2005 10:22:27 +0000 (GMT) (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 8205D43D48; Thu, 27 Oct 2005 10:22:26 +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 490142084; Thu, 27 Oct 2005 12:22:21 +0200 (CEST) X-Spam-Tests: ALL_TRUSTED,AWL,BAYES_00 X-Spam-Learn: ham X-Spam-Score: -4.5/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on tim.des.no Received: from xps.des.no (des.no [80.203.228.37]) by tim.des.no (Postfix) with ESMTP id C78EA2083; Thu, 27 Oct 2005 12:22:20 +0200 (CEST) Received: by xps.des.no (Postfix, from userid 1001) id 9989333C1D; Thu, 27 Oct 2005 12:22:20 +0200 (CEST) To: David Xu References: <200510270309.j9R39KkY031401@repoman.freebsd.org> <20051027053117.GA63240@FreeBSD.org> <4360690F.3060606@freebsd.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Thu, 27 Oct 2005 12:22:20 +0200 In-Reply-To: <4360690F.3060606@freebsd.org> (David Xu's message of "Thu, 27 Oct 2005 13:43:43 +0800") Message-ID: <867jbzfeeb.fsf@xps.des.no> User-Agent: Gnus/5.110002 (No Gnus v0.2) 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, Alexey Dokuchaev , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib 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, 27 Oct 2005 10:22:27 -0000 David Xu writes: > You mean the XMMS clone? s/clone/fork/ DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Thu Oct 27 11:01:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE66916A41F; Thu, 27 Oct 2005 11:01:33 +0000 (GMT) (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 4607E43D49; Thu, 27 Oct 2005 11:01:33 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RB1Wt6073324; Thu, 27 Oct 2005 11:01:32 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RB1We3073323; Thu, 27 Oct 2005 11:01:32 GMT (envelope-from pav) Message-Id: <200510271101.j9RB1We3073323@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 27 Oct 2005 11:01: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/setedit Makefile ports/editors/setedit/files patch-Makefile patch-config.pl patch-conflib.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: Thu, 27 Oct 2005 11:01:33 -0000 pav 2005-10-27 11:01:32 UTC FreeBSD ports repository Modified files: editors/setedit Makefile Added files: editors/setedit/files patch-Makefile patch-config.pl patch-conflib.pl Log: - Respect LOCALBASE/PREFIX - Fix ia64 Submitted by: Sten Feldman (maintainer) Revision Changes Path 1.2 +2 -0 ports/editors/setedit/Makefile 1.1 +21 -0 ports/editors/setedit/files/patch-Makefile (new) 1.1 +93 -0 ports/editors/setedit/files/patch-config.pl (new) 1.1 +72 -0 ports/editors/setedit/files/patch-conflib.pl (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 11:12:00 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9839316A41F; Thu, 27 Oct 2005 11:12:00 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6275C43D46; Thu, 27 Oct 2005 11:12:00 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RBC0Is073766; Thu, 27 Oct 2005 11:12:00 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RBC0x8073765; Thu, 27 Oct 2005 11:12:00 GMT (envelope-from jylefort) Message-Id: <200510271112.j9RBC0x8073765@repoman.freebsd.org> From: Jean-Yves Lefort Date: Thu, 27 Oct 2005 11:12: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/xrmap Makefile distinfo pkg-plist ports/misc/xrmap/files patch-Imakefile patch-earthview_Makefile patch-editkit-Imakfile patch-editkit_Imakefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 11:12:00 -0000 jylefort 2005-10-27 11:12:00 UTC FreeBSD ports repository Modified files: misc/xrmap Makefile distinfo pkg-plist misc/xrmap/files patch-Imakefile Added files: misc/xrmap/files patch-earthview_Makefile patch-editkit_Imakefile Removed files: misc/xrmap/files patch-editkit-Imakfile Log: [1]: - Update to 2.32 - Respect ${CC}, ${CFLAGS}, ${NOPORTDOCS}, ${DOCSDIR} and ${EXAMPLESDIR} - Pass maintainership to submitter Moreover: - In order to ensure proper permissions/ownerships/stripping, override the vendor install and use ${INSTALL_*} instead - Group distfiles by using ${DIST_SUBDIR} [1]: PR: ports/88070 Submitted by: Serge Gagnon (new maintainer) Revision Changes Path 1.16 +71 -30 ports/misc/xrmap/Makefile 1.10 +18 -16 ports/misc/xrmap/distinfo 1.7 +35 -83 ports/misc/xrmap/files/patch-Imakefile 1.1 +11 -0 ports/misc/xrmap/files/patch-earthview_Makefile (new) 1.4 +0 -45 ports/misc/xrmap/files/patch-editkit-Imakfile (dead) 1.1 +11 -0 ports/misc/xrmap/files/patch-editkit_Imakefile (new) 1.7 +2662 -717 ports/misc/xrmap/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Oct 27 11:26:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D518116A41F; Thu, 27 Oct 2005 11:26:38 +0000 (GMT) (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 9394C43D45; Thu, 27 Oct 2005 11:26:38 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RBQcQZ074419; Thu, 27 Oct 2005 11:26:38 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RBQc6B074418; Thu, 27 Oct 2005 11:26:38 GMT (envelope-from pav) Message-Id: <200510271126.j9RBQc6B074418@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 27 Oct 2005 11:26: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/mail/dovecot 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, 27 Oct 2005 11:26:39 -0000 pav 2005-10-27 11:26:38 UTC FreeBSD ports repository Modified files: mail/dovecot Makefile Log: - Revert to RC_SUBR, leave RCORDER as an option PR: ports/88006 Submitted by: Robin Breathe (maintainer) Revision Changes Path 1.39 +4 -2 ports/mail/dovecot/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 11:35:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1FD616A41F; Thu, 27 Oct 2005 11:35:08 +0000 (GMT) (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 664CC43D46; Thu, 27 Oct 2005 11:35:08 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RBZ8XB074732; Thu, 27 Oct 2005 11:35:08 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RBZ8jm074731; Thu, 27 Oct 2005 11:35:08 GMT (envelope-from garga) Message-Id: <200510271135.j9RBZ8jm074731@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 11:35: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/security/p5-Authen-Krb5 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, 27 Oct 2005 11:35:08 -0000 garga 2005-10-27 11:35:08 UTC FreeBSD ports repository Modified files: security/p5-Authen-Krb5 pkg-descr Log: - Fix WWW line Revision Changes Path 1.3 +1 -3 ports/security/p5-Authen-Krb5/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Oct 27 12:21:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89B7F16A41F; Thu, 27 Oct 2005 12:21:39 +0000 (GMT) (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 4706C43D46; Thu, 27 Oct 2005 12:21:39 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RCLd68077186; Thu, 27 Oct 2005 12:21:39 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RCLdKp077185; Thu, 27 Oct 2005 12:21:39 GMT (envelope-from garga) Message-Id: <200510271221.j9RCLdKp077185@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 12:21: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/libslang2 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, 27 Oct 2005 12:21:39 -0000 garga 2005-10-27 12:21:38 UTC FreeBSD ports repository Modified files: devel/libslang2 Makefile distinfo Log: - Update to 2.0.5 Revision Changes Path 1.7 +1 -1 ports/devel/libslang2/Makefile 1.4 +2 -2 ports/devel/libslang2/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 12:21:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A493D16A420; Thu, 27 Oct 2005 12:21:47 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6158043D46; Thu, 27 Oct 2005 12:21:47 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RCLlrB077216; Thu, 27 Oct 2005 12:21:47 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RCLlV7077215; Thu, 27 Oct 2005 12:21:47 GMT (envelope-from jylefort) Message-Id: <200510271221.j9RCLlV7077215@repoman.freebsd.org> From: Jean-Yves Lefort Date: Thu, 27 Oct 2005 12:21: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/misc/xrmap 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, 27 Oct 2005 12:21:47 -0000 jylefort 2005-10-27 12:21:47 UTC FreeBSD ports repository Modified files: misc/xrmap Makefile Log: Fix compiled-in national flag and documentation directories. Forgotten by: jylefort Revision Changes Path 1.17 +3 -0 ports/misc/xrmap/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 12:22:09 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 291CC16A41F; Thu, 27 Oct 2005 12:22:09 +0000 (GMT) (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 CDB6443D48; Thu, 27 Oct 2005 12:22:08 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RCM8cx077261; Thu, 27 Oct 2005 12:22:08 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RCM88D077260; Thu, 27 Oct 2005 12:22:08 GMT (envelope-from garga) Message-Id: <200510271222.j9RCM88D077260@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 12:22: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/databases/firebird-devel 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, 27 Oct 2005 12:22:09 -0000 garga 2005-10-27 12:22:08 UTC FreeBSD ports repository Modified files: databases/firebird-devel pkg-descr Log: - Fix WWW line Revision Changes Path 1.5 +1 -1 ports/databases/firebird-devel/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Oct 27 12:30:37 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07BFA16A41F; Thu, 27 Oct 2005 12:30:37 +0000 (GMT) (envelope-from simon@eddie.nitro.dk) Received: from eddie.nitro.dk (cpe.atm2-0-71337.0x535ccf26.taanxx2.customer.tele.dk [83.92.207.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B8E543D45; Thu, 27 Oct 2005 12:30:36 +0000 (GMT) (envelope-from simon@eddie.nitro.dk) Received: by eddie.nitro.dk (Postfix, from userid 1000) id F1F38119C50; Thu, 27 Oct 2005 14:30:34 +0200 (CEST) Date: Thu, 27 Oct 2005 14:30:34 +0200 From: "Simon L. Nielsen" To: Renato Botelho Message-ID: <20051027123034.GD22696@eddie.nitro.dk> References: <200510271222.j9RCM88D077260@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="JwB53PgKC5A7+0Ej" Content-Disposition: inline In-Reply-To: <200510271222.j9RCM88D077260@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/databases/firebird-devel 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, 27 Oct 2005 12:30:37 -0000 --JwB53PgKC5A7+0Ej Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2005.10.27 12:22:08 +0000, Renato Botelho wrote: > garga 2005-10-27 12:22:08 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > databases/firebird-devel pkg-descr=20 > Log: > - Fix WWW line > =20 > Revision Changes Path > 1.5 +1 -1 ports/databases/firebird-devel/pkg-descr > | @@ -19,4 +19,4 @@ WWW: http://www.firebirdsql.org/ > | =20 > | For more information on the locksmith back door, see: > | =20 > | -WWW: https://www.kb.cert.org/vuls/id/247371 > | +WWW: http://firebird.sourceforge.net/ This doesn't seem right to me. The leading text says the URL should contain information about "locksmith back door" but I don't think the generic firebird homepage does that? It might be that the last WWW: line should be the project home page, but then I think that should either be added seperatly or the leading test about the "locksmith back door" should be removed IMO. --=20 Simon L. Nielsen --JwB53PgKC5A7+0Ej Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYMhqh9pcDSc1mlERAl76AKCwNSHPmY00l4BTf1NhYPq52GlVtwCeO3Hw Sok0oxoaIBntqf1FdLcnZEQ= =NNiq -----END PGP SIGNATURE----- --JwB53PgKC5A7+0Ej-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 12:35:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F083516A41F; Thu, 27 Oct 2005 12:35:42 +0000 (GMT) (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 AD3F743D4C; Thu, 27 Oct 2005 12:35:42 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RCZg3N077967; Thu, 27 Oct 2005 12:35:42 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RCZgOv077966; Thu, 27 Oct 2005 12:35:42 GMT (envelope-from garga) Message-Id: <200510271235.j9RCZgOv077966@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 12:35: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/databases/firebird-devel 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, 27 Oct 2005 12:35:43 -0000 garga 2005-10-27 12:35:42 UTC FreeBSD ports repository Modified files: databases/firebird-devel pkg-descr Log: - Fix WWW lines on pkg-descr, last commit was wrong Noted by: simon Revision Changes Path 1.6 +8 -8 ports/databases/firebird-devel/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Oct 27 12:36:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 475FF16A41F for ; Thu, 27 Oct 2005 12:36:11 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from srv1.galle.com.br (srv1.galle.com.br [200.246.25.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id E42CD43D5D for ; Thu, 27 Oct 2005 12:36:08 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: (qmail 53870 invoked by uid 99); 27 Oct 2005 12:36:07 -0000 Received: from 192.168.50.4 by srv1.galle.com.br (envelope-from , uid 82) with qmail-scanner-1.25 (clamdscan: 0.86/956. spamassassin: 3.0.4. Clear:RC:1(192.168.50.4):. Processed in 0.078083 secs); 27 Oct 2005 12:36:07 -0000 X-Qmail-Scanner-Mail-From: garga@FreeBSD.org via srv1.galle.com.br X-Qmail-Scanner: 1.25 (Clear:RC:1(192.168.50.4):. Processed in 0.078083 secs) Received: from unknown (HELO ?192.168.50.4?) (192.168.50.4) by 0 with SMTP; 27 Oct 2005 12:36:07 -0000 Message-ID: <4360C9C5.2040305@FreeBSD.org> Date: Thu, 27 Oct 2005 10:36:21 -0200 From: Renato Botelho User-Agent: Thunderbird 1.4.1 (Windows/20051006) MIME-Version: 1.0 To: "Simon L. Nielsen" References: <200510271222.j9RCM88D077260@repoman.freebsd.org> <20051027123034.GD22696@eddie.nitro.dk> In-Reply-To: <20051027123034.GD22696@eddie.nitro.dk> X-Enigmail-Version: 0.93.0.0 OpenPGP: url=http://people.FreeBSD.org/~garga/pubkey.asc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/databases/firebird-devel 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, 27 Oct 2005 12:36:11 -0000 Em 27/10/2005 10:30 Simon L. Nielsen escreveu: > On 2005.10.27 12:22:08 +0000, Renato Botelho wrote: >> garga 2005-10-27 12:22:08 UTC >> >> FreeBSD ports repository >> >> Modified files: >> databases/firebird-devel pkg-descr >> Log: >> - Fix WWW line >> >> Revision Changes Path >> 1.5 +1 -1 ports/databases/firebird-devel/pkg-descr > >> | @@ -19,4 +19,4 @@ WWW: http://www.firebirdsql.org/ >> | >> | For more information on the locksmith back door, see: >> | >> | -WWW: https://www.kb.cert.org/vuls/id/247371 >> | +WWW: http://firebird.sourceforge.net/ > > This doesn't seem right to me. The leading text says the URL should > contain information about "locksmith back door" but I don't think the > generic firebird homepage does that? > > It might be that the last WWW: line should be the project home page, > but then I think that should either be added seperatly or the leading > test about the "locksmith back door" should be removed IMO. Fixed, thanks! -- Renato Botelho GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc From owner-cvs-all@FreeBSD.ORG Thu Oct 27 12:46:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A61D16A41F; Thu, 27 Oct 2005 12:46:39 +0000 (GMT) (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 095F143D49; Thu, 27 Oct 2005 12:46:39 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RCkcpo078441; Thu, 27 Oct 2005 12:46:38 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RCkcrh078440; Thu, 27 Oct 2005 12:46:38 GMT (envelope-from hq) Message-Id: <200510271246.j9RCkcrh078440@repoman.freebsd.org> From: Herve Quiroz Date: Thu, 27 Oct 2005 12:46: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/maven2 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, 27 Oct 2005 12:46:39 -0000 hq 2005-10-27 12:46:38 UTC FreeBSD ports repository Modified files: devel/maven2 Makefile distinfo Log: Update to 2.0 final release BTW, the main executable has been renamed: 'm2' -> 'mvn' Revision Changes Path 1.3 +6 -5 ports/devel/maven2/Makefile 1.3 +2 -2 ports/devel/maven2/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 13:08:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B988316A41F; Thu, 27 Oct 2005 13:08:02 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7800043D46; Thu, 27 Oct 2005 13:08:02 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RD82Aa086809; Thu, 27 Oct 2005 13:08:02 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RD82u1086808; Thu, 27 Oct 2005 13:08:02 GMT (envelope-from nork) Message-Id: <200510271308.j9RD82u1086808@repoman.freebsd.org> From: Norikatsu Shigemura Date: Thu, 27 Oct 2005 13:08: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/sysutils/3dm 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, 27 Oct 2005 13:08:02 -0000 nork 2005-10-27 13:08:01 UTC FreeBSD ports repository Modified files: sysutils/3dm Makefile Log: Remove extra subject from IGNORE. Pointed out by: kris Disscussed with: matusita Revision Changes Path 1.15 +1 -1 ports/sysutils/3dm/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 13:15:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4516C16A41F; Thu, 27 Oct 2005 13:15:16 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 031D843D45; Thu, 27 Oct 2005 13:15:16 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RDFFX6087236; Thu, 27 Oct 2005 13:15:15 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RDFFl9087235; Thu, 27 Oct 2005 13:15:15 GMT (envelope-from nork) Message-Id: <200510271315.j9RDFFl9087235@repoman.freebsd.org> From: Norikatsu Shigemura Date: Thu, 27 Oct 2005 13:15: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/liveMedia 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, 27 Oct 2005 13:15:16 -0000 nork 2005-10-27 13:15:15 UTC FreeBSD ports repository Modified files: net/liveMedia Makefile distinfo Log: Update to 2005.10.27. Revision Changes Path 1.208 +3 -1 ports/net/liveMedia/Makefile 1.195 +2 -2 ports/net/liveMedia/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 13:47:15 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1B5116A41F; Thu, 27 Oct 2005 13:47:15 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CAF643D45; Thu, 27 Oct 2005 13:47:15 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RDlFRr089592; Thu, 27 Oct 2005 13:47:15 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RDlFh4089591; Thu, 27 Oct 2005 13:47:15 GMT (envelope-from jylefort) Message-Id: <200510271347.j9RDlFh4089591@repoman.freebsd.org> From: Jean-Yves Lefort Date: Thu, 27 Oct 2005 13:47: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-toolkits/gai Makefile distinfo ports/x11-toolkits/gai/files patch-gai_Makefile.in patch-gai_gai-gnome.c patch-po_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: Thu, 27 Oct 2005 13:47:15 -0000 jylefort 2005-10-27 13:47:15 UTC FreeBSD ports repository Modified files: x11-toolkits/gai Makefile distinfo Added files: x11-toolkits/gai/files patch-gai_Makefile.in patch-po_Makefile.in Removed files: x11-toolkits/gai/files patch-gai_gai-gnome.c Log: [1]: - Update to 0.5.10 - Respect ${X11BASE} Moreover: - Install with ${INSTALL_*}, in order to ensure proper permissions/ownerships - Unconditionally install examples, regardless of ${NOPORTDOCS} - Simplify the Makefile through the use of PORTDOCS=* [1]: PR: ports/88071 Submitted by: maintainer Revision Changes Path 1.18 +16 -23 ports/x11-toolkits/gai/Makefile 1.5 +2 -2 ports/x11-toolkits/gai/distinfo 1.1 +32 -0 ports/x11-toolkits/gai/files/patch-gai_Makefile.in (new) 1.3 +0 -21 ports/x11-toolkits/gai/files/patch-gai_gai-gnome.c (dead) 1.1 +11 -0 ports/x11-toolkits/gai/files/patch-po_Makefile.in (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 13:57:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D21E16A41F; Thu, 27 Oct 2005 13:57:25 +0000 (GMT) (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 1BAB643D46; Thu, 27 Oct 2005 13:57:25 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RDvOAO090193; Thu, 27 Oct 2005 13:57:24 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RDvO3b090192; Thu, 27 Oct 2005 13:57:24 GMT (envelope-from garga) Message-Id: <200510271357.j9RDvO3b090192@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 13:57: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: Thu, 27 Oct 2005 13:57:25 -0000 garga 2005-10-27 13:57:24 UTC FreeBSD ports repository Modified files: . modules Log: - Fix jed-devel entry Revision Changes Path 1.13474 +1 -1 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:04:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51C6416A41F; Thu, 27 Oct 2005 14:04:03 +0000 (GMT) (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 0D05B43D46; Thu, 27 Oct 2005 14:04:03 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RE42MT090518; Thu, 27 Oct 2005 14:04:02 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RE42PN090517; Thu, 27 Oct 2005 14:04:02 GMT (envelope-from suz) Message-Id: <200510271404.j9RE42PN090517@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Thu, 27 Oct 2005 14:04:02 +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/sys/netinet6 ip6_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, 27 Oct 2005 14:04:03 -0000 suz 2005-10-27 14:04:02 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/netinet6 ip6_mroute.c Log: MFC rev 1.34 fixed a kernel crash when IPv6 PIM-SM routing is enabled and a PIM register message is received Approved by: re(scottl) Revision Changes Path 1.29.2.1.2.1 +17 -9 src/sys/netinet6/ip6_mroute.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:04:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D667216A421; Thu, 27 Oct 2005 14:04:03 +0000 (GMT) (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 9114A43D46; Thu, 27 Oct 2005 14:04:03 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RE43UT090535; Thu, 27 Oct 2005 14:04:03 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RE43ZK090534; Thu, 27 Oct 2005 14:04:03 GMT (envelope-from suz) Message-Id: <200510271404.j9RE43ZK090534@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Thu, 27 Oct 2005 14:04: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/sys/netinet6 ip6_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, 27 Oct 2005 14:04:04 -0000 suz 2005-10-27 14:04:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netinet6 ip6_mroute.c Log: MFC rev 1.34 fixed a kernel crash when IPv6 PIM-SM routing is enabled and a PIM register message is received Approved by: re(scottl) Revision Changes Path 1.28.2.2 +17 -9 src/sys/netinet6/ip6_mroute.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:04:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 860D716A420; Thu, 27 Oct 2005 14:04:04 +0000 (GMT) (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 0BEAA43D45; Thu, 27 Oct 2005 14:04:03 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RE43PC090552; Thu, 27 Oct 2005 14:04:03 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RE43Dp090551; Thu, 27 Oct 2005 14:04:03 GMT (envelope-from suz) Message-Id: <200510271404.j9RE43Dp090551@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Thu, 27 Oct 2005 14:04: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/netinet6 ip6_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, 27 Oct 2005 14:04:04 -0000 suz 2005-10-27 14:04:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet6 ip6_mroute.c Log: MFC rev 1.34 fixed a kernel crash when IPv6 PIM-SM routing is enabled and a PIM register message is received Approved by: re(scottl) Revision Changes Path 1.29.2.2 +17 -9 src/sys/netinet6/ip6_mroute.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:07:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 959AA16A41F; Thu, 27 Oct 2005 14:07:21 +0000 (GMT) (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 645BF43D46; Thu, 27 Oct 2005 14:07:21 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RE7L1I090767; Thu, 27 Oct 2005 14:07:21 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RE7L9G090766; Thu, 27 Oct 2005 14:07:21 GMT (envelope-from tobez) Message-Id: <200510271407.j9RE7L9G090766@repoman.freebsd.org> From: Anton Berezin Date: Thu, 27 Oct 2005 14:07: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/databases Makefile ports/databases/p5-SQLite-Work 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, 27 Oct 2005 14:07:21 -0000 tobez 2005-10-27 14:07:21 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/p5-SQLite-Work Makefile distinfo pkg-descr pkg-plist Log: Add p5-SQLite-Work 0.03, report on and update an SQLite database. PR: 88068 Submitted by: Chris Larsen Revision Changes Path 1.453 +1 -0 ports/databases/Makefile 1.1 +39 -0 ports/databases/p5-SQLite-Work/Makefile (new) 1.1 +2 -0 ports/databases/p5-SQLite-Work/distinfo (new) 1.1 +16 -0 ports/databases/p5-SQLite-Work/pkg-descr (new) 1.1 +9 -0 ports/databases/p5-SQLite-Work/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:07:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4199816A42C; Thu, 27 Oct 2005 14:07:35 +0000 (GMT) (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 D9C7E43D46; Thu, 27 Oct 2005 14:07:34 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RE7YEr090822; Thu, 27 Oct 2005 14:07:34 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RE7YFi090821; Thu, 27 Oct 2005 14:07:34 GMT (envelope-from tobez) Message-Id: <200510271407.j9RE7YFi090821@repoman.freebsd.org> From: Anton Berezin Date: Thu, 27 Oct 2005 14: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: 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, 27 Oct 2005 14:07:35 -0000 tobez 2005-10-27 14:07:34 UTC FreeBSD ports repository Modified files: . modules Log: p5-SQLite-Work --> ports/databases/p5-SQLite-Work Revision Changes Path 1.13475 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:09:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D07A16A41F; Thu, 27 Oct 2005 14:09:20 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29DDA43D45; Thu, 27 Oct 2005 14:09:20 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RE9KZm090920; Thu, 27 Oct 2005 14:09:20 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RE9KRd090919; Thu, 27 Oct 2005 14:09:20 GMT (envelope-from jylefort) Message-Id: <200510271409.j9RE9KRd090919@repoman.freebsd.org> From: Jean-Yves Lefort Date: Thu, 27 Oct 2005 14:09: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/devel Makefile ports/devel/cmunge 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, 27 Oct 2005 14:09:20 -0000 jylefort 2005-10-27 14:09:20 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/cmunge Makefile distinfo pkg-descr Log: Add cmunge. CMUNGE is a simple tool for encrypting and compacting C source code, while leaving it syntactically and semantically unchanged. It does this by: * Recursively in-lining `user-defined' #include files. * Renaming C identifiers, except those in the C Standard Library, with names like l1 (i.e. letter-l one), l2, l3, etc. * Removing comments and blank lines, converting multiple consecutive whitespace characters (including `\n') into single blanks, removing all unnecessary whitespace between tokens. * Outputting the transformed code in lines of least N characters long, where N is a user-specified minimum line length. It accepts ANSI and K & R C as its input language. WWW: http://www.vcpc.univie.ac.at/~jhm/cmunge/ PR: ports/88066 Submitted by: Frerich Raabe Revision Changes Path 1.2010 +1 -0 ports/devel/Makefile 1.1 +32 -0 ports/devel/cmunge/Makefile (new) 1.1 +2 -0 ports/devel/cmunge/distinfo (new) 1.1 +18 -0 ports/devel/cmunge/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:10:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4B1716A420; Thu, 27 Oct 2005 14:10:14 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 552C343D49; Thu, 27 Oct 2005 14:10:14 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9REAEhY091033; Thu, 27 Oct 2005 14:10:14 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9REAEAW091031; Thu, 27 Oct 2005 14:10:14 GMT (envelope-from jylefort) Message-Id: <200510271410.j9REAEAW091031@repoman.freebsd.org> From: Jean-Yves Lefort Date: Thu, 27 Oct 2005 14: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: 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, 27 Oct 2005 14:10:14 -0000 jylefort 2005-10-27 14:10:14 UTC FreeBSD ports repository Modified files: . modules Log: cmunge --> ports/devel/cmunge Revision Changes Path 1.13476 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:21:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36A1E16A422; Thu, 27 Oct 2005 14:21:22 +0000 (GMT) (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 9A55E43D69; Thu, 27 Oct 2005 14:21:16 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RELGxV091780; Thu, 27 Oct 2005 14:21:16 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RELGpC091779; Thu, 27 Oct 2005 14:21:16 GMT (envelope-from tobez) Message-Id: <200510271421.j9RELGpC091779@repoman.freebsd.org> From: Anton Berezin Date: Thu, 27 Oct 2005 14:21: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-Parse-FixedLength 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, 27 Oct 2005 14:21:22 -0000 tobez 2005-10-27 14:21:16 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Parse-FixedLength Makefile distinfo pkg-descr pkg-plist Log: Add textproc/p5-Parse-FixedLength 5.35, a Perl module to parse a string containing fixed length fields into component parts. Revision Changes Path 1.877 +1 -0 ports/textproc/Makefile 1.1 +28 -0 ports/textproc/p5-Parse-FixedLength/Makefile (new) 1.1 +2 -0 ports/textproc/p5-Parse-FixedLength/distinfo (new) 1.1 +8 -0 ports/textproc/p5-Parse-FixedLength/pkg-descr (new) 1.1 +5 -0 ports/textproc/p5-Parse-FixedLength/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:21:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACE9616A436; Thu, 27 Oct 2005 14:21:28 +0000 (GMT) (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 9042743D48; Thu, 27 Oct 2005 14:21:27 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RELRGF091829; Thu, 27 Oct 2005 14:21:27 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RELR5G091828; Thu, 27 Oct 2005 14:21:27 GMT (envelope-from tobez) Message-Id: <200510271421.j9RELR5G091828@repoman.freebsd.org> From: Anton Berezin Date: Thu, 27 Oct 2005 14:21: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: Thu, 27 Oct 2005 14:21:28 -0000 tobez 2005-10-27 14:21:27 UTC FreeBSD ports repository Modified files: . modules Log: p5-Parse-FixedLength --> ports/textproc/p5-Parse-FixedLength Revision Changes Path 1.13477 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:24:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E72516A41F; Thu, 27 Oct 2005 14:24:46 +0000 (GMT) (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 2BD6E43D45; Thu, 27 Oct 2005 14:24:46 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9REOkAk091914; Thu, 27 Oct 2005 14:24:46 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9REOkr8091913; Thu, 27 Oct 2005 14:24:46 GMT (envelope-from ru) Message-Id: <200510271424.j9REOkr8091913@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 27 Oct 2005 14:24: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/conf kern.post.mk kmod.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, 27 Oct 2005 14:24:46 -0000 ru 2005-10-27 14:24:46 UTC FreeBSD src repository Modified files: sys/conf kern.post.mk kmod.mk Log: Installing debug modules was a bad idea -- I bogusly assumed that our kernel linker will only load PT_LOAD segments, apparently not. Instead, produce .dbg objects from .debug objects, and install them together with non-debug objects, as described in objcopy(1). Original code by: obrien Revision Changes Path 1.87 +12 -10 src/sys/conf/kern.post.mk 1.198 +9 -7 src/sys/conf/kmod.mk From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:30:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD32D16A41F; Thu, 27 Oct 2005 14:30:29 +0000 (GMT) (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 6B7BD43D46; Thu, 27 Oct 2005 14:30:29 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9REUTP4092297; Thu, 27 Oct 2005 14:30:29 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9REUTxR092296; Thu, 27 Oct 2005 14:30:29 GMT (envelope-from garga) Message-Id: <200510271430.j9REUTxR092296@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 14:30: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/security/chkrootkit 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, 27 Oct 2005 14:30:29 -0000 garga 2005-10-27 14:30:29 UTC FreeBSD ports repository Modified files: security/chkrootkit Makefile distinfo Log: - Update to 0.46 Approved by: maintainer Revision Changes Path 1.23 +1 -1 ports/security/chkrootkit/Makefile 1.18 +2 -2 ports/security/chkrootkit/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 14:33:09 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9600816A420; Thu, 27 Oct 2005 14:33:09 +0000 (GMT) (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 04E5943D5D; Thu, 27 Oct 2005 14:33:09 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9REX83I092418; Thu, 27 Oct 2005 14:33:08 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9REX82C092417; Thu, 27 Oct 2005 14:33:08 GMT (envelope-from ru) Message-Id: <200510271433.j9REX82C092417@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 27 Oct 2005 14:33: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 kern.post.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, 27 Oct 2005 14:33:09 -0000 ru 2005-10-27 14:33:08 UTC FreeBSD src repository Modified files: sys/conf kern.post.mk Log: Use ${S} to pass ${SYSDIR} to ports. This makes PORTS_MODULES feature work when compiling a kernel via "make buildkernel". Noticed and tested by: nork Revision Changes Path 1.88 +1 -5 src/sys/conf/kern.post.mk From owner-cvs-all@FreeBSD.ORG Thu Oct 27 15:01:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18B6116A41F; Thu, 27 Oct 2005 15:01:16 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C797E43D46; Thu, 27 Oct 2005 15:01:15 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RF1Fhw094203; Thu, 27 Oct 2005 15:01:15 GMT (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RF1Faa094202; Thu, 27 Oct 2005 15:01:15 GMT (envelope-from osa) Message-Id: <200510271501.j9RF1Faa094202@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Thu, 27 Oct 2005 15: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/www/nginx Makefile distinfo ports/www/nginx/files patch-src-os-unix-ngx_atomic.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, 27 Oct 2005 15:01:16 -0000 osa 2005-10-27 15:01:15 UTC FreeBSD ports repository Modified files: www/nginx Makefile distinfo Removed files: www/nginx/files patch-src-os-unix-ngx_atomic.h Log: Update to 0.3.7. Remove needless patch. Revision Changes Path 1.44 +1 -2 ports/www/nginx/Makefile 1.40 +2 -2 ports/www/nginx/distinfo 1.2 +0 -22 ports/www/nginx/files/patch-src-os-unix-ngx_atomic.h (dead) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 15:23:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBDB116A41F; Thu, 27 Oct 2005 15:23:54 +0000 (GMT) (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 A8E8A43D46; Thu, 27 Oct 2005 15:23:54 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RFNsFj095715; Thu, 27 Oct 2005 15:23:54 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RFNs5A095714; Thu, 27 Oct 2005 15:23:54 GMT (envelope-from hq) Message-Id: <200510271523.j9RFNs5A095714@repoman.freebsd.org> From: Herve Quiroz Date: Thu, 27 Oct 2005 15:23: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/mldonkey/files mlnet.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, 27 Oct 2005 15:23:55 -0000 hq 2005-10-27 15:23:54 UTC FreeBSD ports repository Modified files: net/mldonkey/files mlnet.sh Log: Fix rcNG launcher: the latest version (2.5.30.7) no longer supports the '-daemon' argument Approved by: maintainer timeout (2 weeks) Revision Changes Path 1.2 +2 -3 ports/net/mldonkey/files/mlnet.sh From owner-cvs-all@FreeBSD.ORG Thu Oct 27 15:38:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2635916A41F; Thu, 27 Oct 2005 15:38:31 +0000 (GMT) (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 545AB43D77; Thu, 27 Oct 2005 15:38:30 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RFcU9F096377; Thu, 27 Oct 2005 15:38:30 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RFcUrB096376; Thu, 27 Oct 2005 15:38:30 GMT (envelope-from obrien) Message-Id: <200510271538.j9RFcUrB096376@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Oct 2005 15:38: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/net/nvnet/files patch-if_nv.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 15:38:31 -0000 obrien 2005-10-27 15:38:29 UTC FreeBSD ports repository Added files: net/nvnet/files patch-if_nv.c Log: Clear pending_txs when not "RUNNING". Submitted by: Q Revision Changes Path 1.4 +10 -0 ports/net/nvnet/files/patch-if_nv.c (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 15:39:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B103C16A41F; Thu, 27 Oct 2005 15:39:19 +0000 (GMT) (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 6686643D53; Thu, 27 Oct 2005 15:39:19 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RFdJo7096435; Thu, 27 Oct 2005 15:39:19 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RFdJdS096434; Thu, 27 Oct 2005 15:39:19 GMT (envelope-from obrien) Message-Id: <200510271539.j9RFdJdS096434@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Oct 2005 15:39: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/dev/nve if_nve.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 15:39:19 -0000 obrien 2005-10-27 15:39:19 UTC FreeBSD src repository Modified files: sys/dev/nve if_nve.c Log: Clear pending_txs when not "RUNNING". Submitted by: Q Revision Changes Path 1.13 +1 -0 src/sys/dev/nve/if_nve.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:01:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A56A516A41F; Thu, 27 Oct 2005 16:01:36 +0000 (GMT) (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 61B1A43D46; Thu, 27 Oct 2005 16:01:36 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RG1aY6097537; Thu, 27 Oct 2005 16:01:36 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RG1aAE097536; Thu, 27 Oct 2005 16:01:36 GMT (envelope-from skv) Message-Id: <200510271601.j9RG1aAE097536@repoman.freebsd.org> From: Sergey Skvortsov Date: Thu, 27 Oct 2005 16:01: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/converters/p5-Convert-Binary-C 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, 27 Oct 2005 16:01:36 -0000 skv 2005-10-27 16:01:36 UTC FreeBSD ports repository Modified files: converters/p5-Convert-Binary-C Makefile distinfo Log: Update to 0.60 Changes: http://search.cpan.org/src/MHX/Convert-Binary-C-0.60/Changes Revision Changes Path 1.8 +1 -1 ports/converters/p5-Convert-Binary-C/Makefile 1.8 +2 -2 ports/converters/p5-Convert-Binary-C/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:05:15 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C677216A41F; Thu, 27 Oct 2005 16:05:15 +0000 (GMT) (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 82D2A43D46; Thu, 27 Oct 2005 16:05:15 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RG5FrU097692; Thu, 27 Oct 2005 16:05:15 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RG5Fus097691; Thu, 27 Oct 2005 16:05:15 GMT (envelope-from skv) Message-Id: <200510271605.j9RG5Fus097691@repoman.freebsd.org> From: Sergey Skvortsov Date: Thu, 27 Oct 2005 16:05: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/p5-Net-Pcap 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, 27 Oct 2005 16:05:15 -0000 skv 2005-10-27 16:05:15 UTC FreeBSD ports repository Modified files: net/p5-Net-Pcap Makefile distinfo Log: Update to 0.09 Changes: http://search.cpan.org/src/SAPER/Net-Pcap-0.09/Changes Revision Changes Path 1.11 +1 -1 ports/net/p5-Net-Pcap/Makefile 1.7 +2 -2 ports/net/p5-Net-Pcap/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:18:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7969E16A41F; Thu, 27 Oct 2005 16:18:48 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3662C43D46; Thu, 27 Oct 2005 16:18:48 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGIm0l098935; Thu, 27 Oct 2005 16:18:48 GMT (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGImb0098933; Thu, 27 Oct 2005 16:18:48 GMT (envelope-from jeh) Message-Id: <200510271618.j9RGImb0098933@repoman.freebsd.org> From: "James E. Housley" Date: Thu, 27 Oct 2005 16:18: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/security/uvscan-dat 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, 27 Oct 2005 16:18:48 -0000 jeh 2005-10-27 16:18:47 UTC FreeBSD ports repository Modified files: security/uvscan-dat Makefile distinfo Log: Update to DAT 4614 Revision Changes Path 1.437 +1 -1 ports/security/uvscan-dat/Makefile 1.432 +2 -2 ports/security/uvscan-dat/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:26:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5B3116A41F; Thu, 27 Oct 2005 16:26:27 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A362843D46; Thu, 27 Oct 2005 16:26:27 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGQRih000179; Thu, 27 Oct 2005 16:26:27 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGQRkd000178; Thu, 27 Oct 2005 16:26:27 GMT (envelope-from jkim) Message-Id: <200510271626.j9RGQRkd000178@repoman.freebsd.org> From: Jung-uk Kim Date: Thu, 27 Oct 2005 16:26: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/gnu/usr.bin/grep search.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 16:26:28 -0000 jkim 2005-10-27 16:26:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/grep search.c Log: MFC: Fix 'grep -Fw' for encodings other than UTF-8 (RH bug #161700). PR: 87969 Approved by: re (scottl) Obtained from: Fedora (Tim Waugh) Revision Changes Path 1.23.2.1 +2 -2 src/gnu/usr.bin/grep/search.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:29:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F15C16A41F; Thu, 27 Oct 2005 16:29:02 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CBE943D45; Thu, 27 Oct 2005 16:29:02 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGT2CS000836; Thu, 27 Oct 2005 16:29:02 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGT2Lr000835; Thu, 27 Oct 2005 16:29:02 GMT (envelope-from jkim) Message-Id: <200510271629.j9RGT2Lr000835@repoman.freebsd.org> From: Jung-uk Kim Date: Thu, 27 Oct 2005 16:29:02 +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/gnu/usr.bin/grep search.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 16:29:02 -0000 jkim 2005-10-27 16:29:02 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) gnu/usr.bin/grep search.c Log: MFRELENG_6: Fix 'grep -Fw' for encodings other than UTF-8 (RH bug #161700). PR: 87969 Approved by: re (scottl) Obtained from: Fedora (Tim Waugh) Revision Changes Path 1.23.4.1 +2 -2 src/gnu/usr.bin/grep/search.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:32:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B512A16A41F; Thu, 27 Oct 2005 16:32:40 +0000 (GMT) (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 7182543D45; Thu, 27 Oct 2005 16:32:40 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGWeEW001006; Thu, 27 Oct 2005 16:32:40 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGWedG001005; Thu, 27 Oct 2005 16:32:40 GMT (envelope-from sos) Message-Id: <200510271632.j9RGWedG001005@repoman.freebsd.org> From: Søren Schmidt Date: Thu, 27 Oct 2005 16:32: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/ata ata-all.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 16:32:40 -0000 sos 2005-10-27 16:32:40 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: Enclose the delayed attach in Giant so we dont loose the race with other drivers trying to attach ATA devices like pccard. Dont clear the delayed flag before we are acutally finished. Spotted by: imp Revision Changes Path 1.258 +10 -6 src/sys/dev/ata/ata-all.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:36:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61C7F16A41F; Thu, 27 Oct 2005 16:36:35 +0000 (GMT) (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 1E35D43D46; Thu, 27 Oct 2005 16:36:35 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGaZOj001243; Thu, 27 Oct 2005 16:36:35 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGaYfq001242; Thu, 27 Oct 2005 16:36:34 GMT (envelope-from hq) Message-Id: <200510271636.j9RGaYfq001242@repoman.freebsd.org> From: Herve Quiroz Date: Thu, 27 Oct 2005 16:36: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/devel/javasvn 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, 27 Oct 2005 16:36:35 -0000 hq 2005-10-27 16:36:34 UTC FreeBSD ports repository Modified files: devel/javasvn Makefile distinfo Log: Update to 0.9.3 PR: 88052 Submitted by: maintainer Revision Changes Path 1.2 +3 -3 ports/devel/javasvn/Makefile 1.2 +2 -2 ports/devel/javasvn/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:39:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 891E116A41F; Thu, 27 Oct 2005 16:39:20 +0000 (GMT) (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 4520943D48; Thu, 27 Oct 2005 16:39:20 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGdKb1001386; Thu, 27 Oct 2005 16:39:20 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGdKpI001385; Thu, 27 Oct 2005 16:39:20 GMT (envelope-from sos) Message-Id: <200510271639.j9RGdKpI001385@repoman.freebsd.org> From: Søren Schmidt Date: Thu, 27 Oct 2005 16:39: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/sys/dev/ata ata-all.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 16:39:20 -0000 sos 2005-10-27 16:39:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ata ata-all.c Log: MFC: Enclose the delayed attach in Giant so we dont loose the race with other drivers trying to attach ATA devices like pccard. Dont clear the delayed flag before we are acutally finished. Approved by: re@ (scottl) Revision Changes Path 1.252.2.3 +10 -6 src/sys/dev/ata/ata-all.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:41:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F95D16A41F; Thu, 27 Oct 2005 16:41:40 +0000 (GMT) (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 3BE5943D45; Thu, 27 Oct 2005 16:41:40 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGfeBS001538; Thu, 27 Oct 2005 16:41:40 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGfeMY001537; Thu, 27 Oct 2005 16:41:40 GMT (envelope-from sos) Message-Id: <200510271641.j9RGfeMY001537@repoman.freebsd.org> From: Søren Schmidt Date: Thu, 27 Oct 2005 16:41:40 +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/sys/dev/ata ata-all.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 16:41:40 -0000 sos 2005-10-27 16:41:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/ata ata-all.c Log: MFC: Enclose the delayed attach in Giant so we dont loose the race with other drivers trying to attach ATA devices like pccard. Dont clear the delayed flag before we are acutally finished. Approved by: re@ (scottl) Revision Changes Path 1.252.2.2.2.1 +10 -6 src/sys/dev/ata/ata-all.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:41:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AA0016A420; Thu, 27 Oct 2005 16:41:50 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 086D643D45; Thu, 27 Oct 2005 16:41:50 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGfnnv001567; Thu, 27 Oct 2005 16:41:49 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGfnsm001566; Thu, 27 Oct 2005 16:41:49 GMT (envelope-from wpaul) Message-Id: <200510271641.j9RGfnsm001566@repoman.freebsd.org> From: Bill Paul Date: Thu, 27 Oct 2005 16:41: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/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: Thu, 27 Oct 2005 16:41:50 -0000 wpaul 2005-10-27 16:41:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/pci pci.c Log: MFC: add 1 microsecond delay to pci_add_children() bus enumeration loop to pacify certain PCI bridges ('fixes' problem with USB controllers not being probed on some Sun AMD8111 machines, notably mine). Approved by: re Revision Changes Path 1.292.2.5 +1 -0 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:44:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C496716A41F; Thu, 27 Oct 2005 16:44:07 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF5BE43D46; Thu, 27 Oct 2005 16:44:06 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGi6cJ001703; Thu, 27 Oct 2005 16:44:06 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGi6E9001702; Thu, 27 Oct 2005 16:44:06 GMT (envelope-from wpaul) Message-Id: <200510271644.j9RGi6E9001702@repoman.freebsd.org> From: Bill Paul Date: Thu, 27 Oct 2005 16:44:06 +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/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: Thu, 27 Oct 2005 16:44:08 -0000 wpaul 2005-10-27 16:44:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/pci pci.c Log: MFC: add 1 microsecond delay to pci_add_children() bus enumeration loop Approved by: re Revision Changes Path 1.292.2.4.2.1 +1 -0 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:46:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A6F616A420; Thu, 27 Oct 2005 16:46:55 +0000 (GMT) (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 0917843D5D; Thu, 27 Oct 2005 16:46:55 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGksCE002198; Thu, 27 Oct 2005 16:46:54 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGks4a002197; Thu, 27 Oct 2005 16:46:54 GMT (envelope-from garga) Message-Id: <200510271646.j9RGks4a002197@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 16:46: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/editors/jed-devel Makefile pkg-plist ports/editors/jed-devel/files patch-src_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: Thu, 27 Oct 2005 16:46:55 -0000 garga 2005-10-27 16:46:54 UTC FreeBSD ports repository Modified files: editors/jed-devel Makefile pkg-plist Removed files: editors/jed-devel/files patch-src_Makefile.in Log: - Remove patch-src_Makefile.in and use MAKE_* and CONFIGURE_* instead - Polish Makefile Revision Changes Path 1.2 +24 -14 ports/editors/jed-devel/Makefile 1.2 +0 -114 ports/editors/jed-devel/files/patch-src_Makefile.in (dead) 1.2 +2 -3 ports/editors/jed-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:47:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A08316A41F; Thu, 27 Oct 2005 16:47:30 +0000 (GMT) (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 1559A43D70; Thu, 27 Oct 2005 16:47:30 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGlT7k009466; Thu, 27 Oct 2005 16:47:29 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGlT6Y009465; Thu, 27 Oct 2005 16:47:29 GMT (envelope-from garga) Message-Id: <200510271647.j9RGlT6Y009465@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 16:47: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/editors/jed 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, 27 Oct 2005 16:47:30 -0000 garga 2005-10-27 16:47:29 UTC FreeBSD ports repository Modified files: editors/jed Makefile Log: - Add more MASTER_SITES Revision Changes Path 1.25 +5 -1 ports/editors/jed/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:47:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8789B16A420; Thu, 27 Oct 2005 16:47:31 +0000 (GMT) (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 1E6E743D53; Thu, 27 Oct 2005 16:47:29 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGlSBb009437; Thu, 27 Oct 2005 16:47:29 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGlSOb009436; Thu, 27 Oct 2005 16:47:28 GMT (envelope-from jhb) Message-Id: <200510271647.j9RGlSOb009436@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 16:47: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/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: Thu, 27 Oct 2005 16:47:31 -0000 jhb 2005-10-27 16:47:28 UTC FreeBSD src repository Modified files: sys/kern tty.c Log: Revert most of revision 1.235 and fix the problem a different way. We can't acquire an sx lock in ttyinfo() because ttyinfo() can be called from interrupt handlers (such as atkbd_intr()). Instead, go back to locking the process group while we pick a thread to display information for and hold that lock until after we drop sched_lock to make sure the process doesn't exit out from under us. sched_lock ensures that the specific thread from that process doesn't go away. To protect against the process exiting after we drop the proc lock but before we dereference it to lookup the pid and p_comm in the call to ttyprintf(), we now copy the pid and p_comm to local variables while holding the proc lock. This problem was found by the recently added TD_NO_SLEEPING assertions for interrupt handlers. Tested by: emaste MFC after: 1 week Revision Changes Path 1.254 +12 -7 src/sys/kern/tty.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 16:59:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9759F16A41F; Thu, 27 Oct 2005 16:59:03 +0000 (GMT) (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 54C0043D4C; Thu, 27 Oct 2005 16:59:03 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGx3cV010142; Thu, 27 Oct 2005 16:59:03 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGx3um010141; Thu, 27 Oct 2005 16:59:03 GMT (envelope-from jhb) Message-Id: <200510271659.j9RGx3um010141@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 16:59: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/share/man/man5 libmap.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: Thu, 27 Oct 2005 16:59:03 -0000 jhb 2005-10-27 16:59:03 UTC FreeBSD src repository Modified files: share/man/man5 libmap.conf.5 Log: Update example libmap.conf file: - Remove pointless examples that map libpthread to itself. - Update shared libraries for 6.0 bumps. Reported by: rwatson MFC after: 1 day Revision Changes Path 1.12 +3 -10 src/share/man/man5/libmap.conf.5 From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:05:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B07516A41F; Thu, 27 Oct 2005 17:05:55 +0000 (GMT) (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 4269943D46; Thu, 27 Oct 2005 17:05:55 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RH5taE011126; Thu, 27 Oct 2005 17:05:55 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RH5tJ6011125; Thu, 27 Oct 2005 17:05:55 GMT (envelope-from sem) Message-Id: <200510271705.j9RH5tJ6011125@repoman.freebsd.org> From: Sergey Matveychuk Date: Thu, 27 Oct 2005 17: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/editors/xemacs-devel-mule Makefile distinfo pkg-plist ports/editors/xemacs-devel-mule/files patch-unexelf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 17:05:55 -0000 sem 2005-10-27 17:05:55 UTC FreeBSD ports repository Modified files: editors/xemacs-devel-mule Makefile distinfo pkg-plist editors/xemacs-devel-mule/files patch-unexelf.c Log: - Update to 21.5-b23 "daikon". PR: ports/88080 Submitted by: Andrey Slusar (maintainer) Revision Changes Path 1.37 +1 -1 ports/editors/xemacs-devel-mule/Makefile 1.15 +2 -2 ports/editors/xemacs-devel-mule/distinfo 1.3 +0 -9 ports/editors/xemacs-devel-mule/files/patch-unexelf.c 1.12 +4 -1 ports/editors/xemacs-devel-mule/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:06:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2EE116A41F; Thu, 27 Oct 2005 17:06:48 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4328A43D58; Thu, 27 Oct 2005 17:06:48 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RH6lZ9011581; Thu, 27 Oct 2005 17:06:47 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RH6lkt011580; Thu, 27 Oct 2005 17:06:47 GMT (envelope-from wpaul) Message-Id: <200510271706.j9RH6lkt011580@repoman.freebsd.org> From: Bill Paul Date: Thu, 27 Oct 2005 17:06: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 wpa_supplicant src/sys/compat/ndis kern_ndis.c kern_windrv.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c subr_pe.c winx32_wrap.S src/sys/dev/if_ndis if_ndis.c if_ndisvar.h src/usr.sbin/wpa ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 17:06:49 -0000 wpaul 2005-10-27 17:06:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d wpa_supplicant sys/compat/ndis kern_ndis.c kern_windrv.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c subr_pe.c winx32_wrap.S sys/dev/if_ndis if_ndis.c if_ndisvar.h usr.sbin/wpa Makefile usr.sbin/wpa/wpa_supplicant Makefile usr.sbin/ndiscvt ndiscvt.c ndisgen.8 ndisgen.sh Added files: (Branch: RELENG_6) usr.sbin/wpa/ndis_events Makefile ndis_events.8 ndis_events.c usr.sbin/wpa/wpa_supplicant Packet32.c Packet32.h ntddndis.h Log: MFC: synchronize the NDISulator with the head and RELENG_5 branches, add -D ndis support to wpa_supplicant Approved by: re Revision Changes Path 1.1.2.1 +10 -1 src/etc/rc.d/wpa_supplicant 1.84.2.2 +185 -148 src/sys/compat/ndis/kern_ndis.c 1.11.2.1 +29 -27 src/sys/compat/ndis/kern_windrv.c 1.41.2.1 +131 -13 src/sys/compat/ndis/ndis_var.h 1.36.2.1 +122 -40 src/sys/compat/ndis/ntoskrnl_var.h 1.13.2.1 +9 -0 src/sys/compat/ndis/pe_var.h 1.24.2.1 +89 -21 src/sys/compat/ndis/subr_hal.c 1.94.2.1 +422 -337 src/sys/compat/ndis/subr_ndis.c 1.71.2.1 +1262 -479 src/sys/compat/ndis/subr_ntoskrnl.c 1.11.2.1 +13 -7 src/sys/compat/ndis/subr_pe.c 1.2.4.1 +20 -4 src/sys/compat/ndis/winx32_wrap.S 1.99.2.3 +897 -488 src/sys/dev/if_ndis/if_ndis.c 1.23.2.1 +82 -11 src/sys/dev/if_ndis/if_ndisvar.h 1.11.2.1 +2 -2 src/usr.sbin/ndiscvt/ndiscvt.c 1.2.2.1 +6 -2 src/usr.sbin/ndiscvt/ndisgen.8 1.1.4.1 +158 -99 src/usr.sbin/ndiscvt/ndisgen.sh 1.2.2.1 +1 -1 src/usr.sbin/wpa/Makefile 1.1.2.1 +8 -0 src/usr.sbin/wpa/ndis_events/Makefile (new) 1.3.2.1 +129 -0 src/usr.sbin/wpa/ndis_events/ndis_events.8 (new) 1.4.2.1 +355 -0 src/usr.sbin/wpa/ndis_events/ndis_events.c (new) 1.3.2.1 +3 -1 src/usr.sbin/wpa/wpa_supplicant/Makefile 1.2.2.1 +394 -0 src/usr.sbin/wpa/wpa_supplicant/Packet32.c (new) 1.2.2.1 +67 -0 src/usr.sbin/wpa/wpa_supplicant/Packet32.h (new) 1.2.2.1 +31 -0 src/usr.sbin/wpa/wpa_supplicant/ntddndis.h (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:08:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC7A716A41F; Thu, 27 Oct 2005 17:08:57 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F80543D45; Thu, 27 Oct 2005 17:08:57 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RH8vU2012564; Thu, 27 Oct 2005 17:08:57 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RH8vjO012563; Thu, 27 Oct 2005 17:08:57 GMT (envelope-from wpaul) Message-Id: <200510271708.j9RH8vjO012563@repoman.freebsd.org> From: Bill Paul Date: Thu, 27 Oct 2005 17:08:57 +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/etc/rc.d wpa_supplicant src/sys/compat/ndis kern_ndis.c kern_windrv.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c subr_pe.c winx32_wrap.S src/sys/dev/if_ndis if_ndis.c if_ndisvar.h src/usr.sbin/wpa ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 17:08:57 -0000 wpaul 2005-10-27 17:08:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) etc/rc.d wpa_supplicant sys/compat/ndis kern_ndis.c kern_windrv.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c subr_pe.c winx32_wrap.S sys/dev/if_ndis if_ndis.c if_ndisvar.h usr.sbin/wpa Makefile usr.sbin/wpa/wpa_supplicant Makefile usr.sbin/ndiscvt ndiscvt.c ndisgen.8 ndisgen.sh Added files: (Branch: RELENG_6_0) usr.sbin/wpa/ndis_events Makefile ndis_events.8 ndis_events.c usr.sbin/wpa/wpa_supplicant Packet32.c Packet32.h ntddndis.h Log: MFC: synchronize the NDISulator with the head and RELENG_5 branches, add -D ndis support to wpa_supplicant Approved by: re Revision Changes Path 1.1.4.1 +10 -1 src/etc/rc.d/wpa_supplicant 1.84.2.1.2.1 +185 -148 src/sys/compat/ndis/kern_ndis.c 1.11.4.1 +29 -27 src/sys/compat/ndis/kern_windrv.c 1.41.4.1 +131 -13 src/sys/compat/ndis/ndis_var.h 1.36.4.1 +122 -40 src/sys/compat/ndis/ntoskrnl_var.h 1.13.4.1 +9 -0 src/sys/compat/ndis/pe_var.h 1.24.4.1 +89 -21 src/sys/compat/ndis/subr_hal.c 1.94.4.1 +422 -337 src/sys/compat/ndis/subr_ndis.c 1.71.4.1 +1262 -479 src/sys/compat/ndis/subr_ntoskrnl.c 1.11.4.1 +13 -7 src/sys/compat/ndis/subr_pe.c 1.2.6.1 +20 -4 src/sys/compat/ndis/winx32_wrap.S 1.99.2.2.2.1 +897 -488 src/sys/dev/if_ndis/if_ndis.c 1.23.4.1 +82 -11 src/sys/dev/if_ndis/if_ndisvar.h 1.11.4.1 +2 -2 src/usr.sbin/ndiscvt/ndiscvt.c 1.2.4.1 +6 -2 src/usr.sbin/ndiscvt/ndisgen.8 1.1.6.1 +158 -99 src/usr.sbin/ndiscvt/ndisgen.sh 1.2.4.1 +1 -1 src/usr.sbin/wpa/Makefile 1.1.4.1 +8 -0 src/usr.sbin/wpa/ndis_events/Makefile (new) 1.3.4.1 +129 -0 src/usr.sbin/wpa/ndis_events/ndis_events.8 (new) 1.4.4.1 +355 -0 src/usr.sbin/wpa/ndis_events/ndis_events.c (new) 1.3.4.1 +3 -1 src/usr.sbin/wpa/wpa_supplicant/Makefile 1.2.4.1 +394 -0 src/usr.sbin/wpa/wpa_supplicant/Packet32.c (new) 1.2.4.1 +67 -0 src/usr.sbin/wpa/wpa_supplicant/Packet32.h (new) 1.2.4.1 +31 -0 src/usr.sbin/wpa/wpa_supplicant/ntddndis.h (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:09:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FDB116A41F; Thu, 27 Oct 2005 17:09:50 +0000 (GMT) (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 1488443D67; Thu, 27 Oct 2005 17:09:48 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RH9mHD012681; Thu, 27 Oct 2005 17:09:48 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RH9maT012680; Thu, 27 Oct 2005 17:09:48 GMT (envelope-from sem) Message-Id: <200510271709.j9RH9maT012680@repoman.freebsd.org> From: Sergey Matveychuk Date: Thu, 27 Oct 2005 17:09: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/Mk bsd.emacs.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, 27 Oct 2005 17:09:50 -0000 sem 2005-10-27 17:09:48 UTC FreeBSD ports repository Modified files: Mk bsd.emacs.mk Log: - Update xemacs-devel-mule to 21.5-b23 PR: ports/88080 Submitted by: Andrey Slusar Revision Changes Path 1.45 +2 -2 ports/Mk/bsd.emacs.mk From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:12:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19F8416A41F; Thu, 27 Oct 2005 17:12:40 +0000 (GMT) (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 B095643D45; Thu, 27 Oct 2005 17:12:39 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHCd0D012985; Thu, 27 Oct 2005 17:12:39 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHCd1n012984; Thu, 27 Oct 2005 17:12:39 GMT (envelope-from garga) Message-Id: <200510271712.j9RHCd1n012984@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 17:12: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/editors/jed-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: Thu, 27 Oct 2005 17:12:40 -0000 garga 2005-10-27 17:12:39 UTC FreeBSD ports repository Modified files: editors/jed-devel Makefile Log: - Remove a wrong \ at end of MAKE_ENV line Revision Changes Path 1.3 +1 -1 ports/editors/jed-devel/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:13:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BA6A16A420; Thu, 27 Oct 2005 17:13:23 +0000 (GMT) (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 6C59943D45; Thu, 27 Oct 2005 17:13:23 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHDNXK013083; Thu, 27 Oct 2005 17:13:23 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHDNTo013082; Thu, 27 Oct 2005 17:13:23 GMT (envelope-from jhb) Message-Id: <200510271713.j9RHDNTo013082@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 17:13: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/usr.sbin/config config.h config.y 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, 27 Oct 2005 17:13:23 -0000 jhb 2005-10-27 17:13:23 UTC FreeBSD src repository Modified files: usr.sbin/config config.h config.y main.c Log: Optionally include a DEFAULTS config file if it is present in the current directory before the specified config file. This is implemented by opening DEFAULTS as stdin if it exists, and if so resetting stdin to the actual config file when DEFAULTS is fully parsed via yywrap(). In short, this lets us create DEFAULTS kernel configs in /sys//conf that can enable certain options or devices by default and allow users to disable them via 'nooptions' or 'nodevice' rather than having to create kludge NO_FOO options. Requested by: scottl Reviewed by: scottl Revision Changes Path 1.57 +1 -0 src/usr.sbin/config/config.h 1.67 +16 -0 src/usr.sbin/config/config.y 1.67 +10 -3 src/usr.sbin/config/main.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:15:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9A9F16A41F; Thu, 27 Oct 2005 17:15:24 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72D2D43D53; Thu, 27 Oct 2005 17:15:24 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHFOd9013643; Thu, 27 Oct 2005 17:15:24 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHFODv013642; Thu, 27 Oct 2005 17:15:24 GMT (envelope-from wpaul) Message-Id: <200510271715.j9RHFODv013642@repoman.freebsd.org> From: Bill Paul Date: Thu, 27 Oct 2005 17:15:24 +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/wpa_supplicant driver_ndis.c driver_ndis.h driver_ndis_.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 17:15:25 -0000 wpaul 2005-10-27 17:15:24 UTC FreeBSD src repository Added files: (Branch: RELENG_6) contrib/wpa_supplicant driver_ndis.c driver_ndis.h driver_ndis_.c Log: Approved by: re Revision Changes Path 1.1.1.2.2.1 +1589 -0 src/contrib/wpa_supplicant/driver_ndis.c (new) 1.1.1.1.2.1 +26 -0 src/contrib/wpa_supplicant/driver_ndis.h (new) 1.1.1.1.2.1 +164 -0 src/contrib/wpa_supplicant/driver_ndis_.c (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:15:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4803316A422; Thu, 27 Oct 2005 17:15:48 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD8F243D45; Thu, 27 Oct 2005 17:15:47 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHFliC013707; Thu, 27 Oct 2005 17:15:47 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHFl9Y013706; Thu, 27 Oct 2005 17:15:47 GMT (envelope-from wpaul) Message-Id: <200510271715.j9RHFl9Y013706@repoman.freebsd.org> From: Bill Paul Date: Thu, 27 Oct 2005 17:15:47 +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/contrib/wpa_supplicant driver_ndis.c driver_ndis.h driver_ndis_.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 17:15:48 -0000 wpaul 2005-10-27 17:15:47 UTC FreeBSD src repository Added files: (Branch: RELENG_6_0) contrib/wpa_supplicant driver_ndis.c driver_ndis.h driver_ndis_.c Log: MFC: add the driver_ndis support files to the wpa_supplicant distribution for -D ndis support with the NDISulator Approved by: re Revision Changes Path 1.1.1.2.4.1 +1589 -0 src/contrib/wpa_supplicant/driver_ndis.c (new) 1.1.1.1.4.1 +26 -0 src/contrib/wpa_supplicant/driver_ndis.h (new) 1.1.1.1.4.1 +164 -0 src/contrib/wpa_supplicant/driver_ndis_.c (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:20:10 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A589C16A41F; Thu, 27 Oct 2005 17:20:10 +0000 (GMT) (envelope-from bz@FreeBSD.org) Received: from transport.cksoft.de (transport.cksoft.de [62.111.66.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id F131B43D45; Thu, 27 Oct 2005 17:20:09 +0000 (GMT) (envelope-from bz@FreeBSD.org) Received: from transport.cksoft.de (localhost [127.0.0.1]) by transport.cksoft.de (Postfix) with ESMTP id 058131FF9AF; Thu, 27 Oct 2005 19:20:08 +0200 (CEST) Received: by transport.cksoft.de (Postfix, from userid 66) id 6680C1FF9AD; Thu, 27 Oct 2005 19:20:05 +0200 (CEST) Received: by mail.int.zabbadoz.net (Postfix, from userid 1060) id 98B8D15839; Thu, 27 Oct 2005 17:15:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.int.zabbadoz.net (Postfix) with ESMTP id 95CA31577D; Thu, 27 Oct 2005 17:15:28 +0000 (UTC) Date: Thu, 27 Oct 2005 17:15:28 +0000 (UTC) From: "Bjoern A. Zeeb" X-X-Sender: bz@e0-0.zab2.int.zabbadoz.net To: Ruslan Ermilov In-Reply-To: <200510271424.j9REOkr8091913@repoman.freebsd.org> Message-ID: References: <200510271424.j9REOkr8091913@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS cksoft-s20020300-20031204bz on transport.cksoft.de Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.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, 27 Oct 2005 17:20:11 -0000 On Thu, 27 Oct 2005, Ruslan Ermilov wrote: > ru 2005-10-27 14:24:46 UTC > > FreeBSD src repository > > Modified files: > sys/conf kern.post.mk kmod.mk > Log: > Installing debug modules was a bad idea -- I bogusly assumed that > our kernel linker will only load PT_LOAD segments, apparently not. > Instead, produce .dbg objects from .debug objects, and install > them together with non-debug objects, as described in objcopy(1). is that because of this change? kldxref /boot/kernel kldxref: file isn't dynamically-linked kldxref: unknown metdata record 0 in file aac.ko.dbg kldxref: unknown metdata record 0 in file aac.ko.dbg kldxref: unknown metdata record 0 in file aac.ko.dbg kldxref: unknown metdata record 0 in file aac.ko.dbg kldxref: unknown metdata record 0 in file aac.ko.dbg kldxref: unknown metdata record 0 in file accf_data.ko.dbg kldxref: unknown metdata record 0 in file accf_http.ko.dbg kldxref: unknown metdata record 0 in file agp.ko.dbg kldxref: unknown metdata record 0 in file agp.ko.dbg kldxref: unknown metdata record 0 in file agp.ko.dbg kldxref: unknown metdata record 0 in file agp.ko.dbg kldxref: unknown metdata record 0 in file aha.ko.dbg kldxref: unknown metdata record 0 in file ahc.ko.dbg kldxref: unknown metdata record 0 in file ahc.ko.dbg kldxref: unknown metdata record 0 in file ahc.ko.dbg kldxref: unknown metdata record 0 in file ahc_eisa.ko.dbg kldxref: unknown metdata record 0 in file ahc_eisa.ko.dbg kldxref: unknown metdata record 0 in file ahc_eisa.ko.dbg kldxref: unknown metdata record 0 in file ahc_isa.ko.dbg kldxref: unknown metdata record 0 in file ahc_isa.ko.dbg kldxref: unknown metdata record 0 in file ahc_isa.ko.dbg kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg kldxref: unknown metdata record 0 in file ahd.ko.dbg kldxref: unknown metdata record 0 in file ahd.ko.dbg kldxref: unknown metdata record 0 in file ahd.ko.dbg kldxref: unknown metdata record 0 in file ahd.ko.dbg kldxref: unknown metdata record 0 in file ahd.ko.dbg kldxref: unknown metdata record 0 in file ahd.ko.dbg .... -- Bjoern A. Zeeb bzeeb at Zabbadoz dot NeT From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:22:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD59416A41F; Thu, 27 Oct 2005 17:22:47 +0000 (GMT) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AF8843D55; Thu, 27 Oct 2005 17:22:47 +0000 (GMT) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHMln5014199; Thu, 27 Oct 2005 17:22:47 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHMlYh014198; Thu, 27 Oct 2005 17:22:47 GMT (envelope-from emaste) Message-Id: <200510271722.j9RHMlYh014198@repoman.freebsd.org> From: Ed Maste Date: Thu, 27 Oct 2005 17:22: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_clock.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 17:22:48 -0000 emaste 2005-10-27 17:22:47 UTC FreeBSD src repository Modified files: sys/kern kern_clock.c Log: In watchdog_config enable the software watchdog iff the WD_ACTIVE flag is set. When watchdogd(1) is terminated intentionally it clears the bit, which should then disable it in the kernel. PR: kern/74386 Submitted by: Alex Hoff Approved by: phk, rwatson (mentor) Revision Changes Path 1.181 +1 -2 src/sys/kern/kern_clock.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:23:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB32216A420; Thu, 27 Oct 2005 17:23:10 +0000 (GMT) (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 88DE643D53; Thu, 27 Oct 2005 17:23:10 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHNAmP014235; Thu, 27 Oct 2005 17:23:10 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHNAGm014234; Thu, 27 Oct 2005 17:23:10 GMT (envelope-from sem) Message-Id: <200510271723.j9RHNAGm014234@repoman.freebsd.org> From: Sergey Matveychuk Date: Thu, 27 Oct 2005 17:23: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/Mk bsd.sites.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, 27 Oct 2005 17:23:11 -0000 sem 2005-10-27 17:23:10 UTC FreeBSD ports repository Modified files: Mk bsd.sites.mk Log: XEmacs mirrors: - Remove stale AU mirror - Fix path for RU mirror - Add TW mirror PR: ports/88081 Submitted by: Andrey Slusar Revision Changes Path 1.342 +3 -3 ports/Mk/bsd.sites.mk From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:23:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA90416A423; Thu, 27 Oct 2005 17:23:30 +0000 (GMT) (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 781D043D46; Thu, 27 Oct 2005 17:23:30 +0000 (GMT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHNUYJ014267; Thu, 27 Oct 2005 17:23:30 GMT (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHNUWK014266; Thu, 27 Oct 2005 17:23:30 GMT (envelope-from deischen) Message-Id: <200510271723.j9RHNUWK014266@repoman.freebsd.org> From: Daniel Eischen Date: Thu, 27 Oct 2005 17:23: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/editors/nedit 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, 27 Oct 2005 17:23:31 -0000 deischen 2005-10-27 17:23:30 UTC FreeBSD ports repository Modified files: editors/nedit distinfo Log: Add missing size in distinfo. Perhaps portlint should check for that... PR: 88085 Revision Changes Path 1.16 +1 -1 ports/editors/nedit/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:34:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5140116A41F; Thu, 27 Oct 2005 17:34:36 +0000 (GMT) (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 0F2B143D45; Thu, 27 Oct 2005 17:34:36 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHYZ8N015055; Thu, 27 Oct 2005 17:34:35 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHYZAk015054; Thu, 27 Oct 2005 17:34:35 GMT (envelope-from jhb) Message-Id: <200510271734.j9RHYZAk015054@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 17:34: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/conf DEFAULTS 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: Thu, 27 Oct 2005 17:34:36 -0000 jhb 2005-10-27 17:34:35 UTC FreeBSD src repository Modified files: sys/i386/conf GENERIC Added files: sys/i386/conf DEFAULTS Log: Create a default kernel config for i386 and move 'device isa' and 'device npx' (both of which aren't really optional right now) and 'device io' and 'device mem' (to preserve POLA for 4.x users upgrading to 6.0) from GENERIC into DEFAULTS. Requested by: scottl Reviewed by: scottl Revision Changes Path 1.1 +17 -0 src/sys/i386/conf/DEFAULTS (new) 1.433 +1 -7 src/sys/i386/conf/GENERIC From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:35:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1071E16A41F; Thu, 27 Oct 2005 17:35:50 +0000 (GMT) (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 99E8243D45; Thu, 27 Oct 2005 17:35:48 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHZmRn015221; Thu, 27 Oct 2005 17:35:48 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHZmUw015220; Thu, 27 Oct 2005 17:35:48 GMT (envelope-from delphij) Message-Id: <200510271735.j9RHZmUw015220@repoman.freebsd.org> From: Xin LI Date: Thu, 27 Oct 2005 17:35: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/release/doc/zh_CN.GB2312/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, 27 Oct 2005 17:35:50 -0000 delphij 2005-10-27 17:35:48 UTC FreeBSD src repository Modified files: release/doc/zh_CN.GB2312/relnotes/common new.sgml Log: MFen: 1.883.2.7 -> 1.883.2.8 MT6 candidate Obtained from: The FreeBSD Simplified Chinese Project Revision Changes Path 1.9 +9 -1 src/release/doc/zh_CN.GB2312/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:39:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEC8216A41F; Thu, 27 Oct 2005 17:39:03 +0000 (GMT) (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 8B7FA43D48; Thu, 27 Oct 2005 17:39:03 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHd3r6015401; Thu, 27 Oct 2005 17:39:03 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHd3Fc015400; Thu, 27 Oct 2005 17:39:03 GMT (envelope-from ru) Message-Id: <200510271739.j9RHd3Fc015400@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 27 Oct 2005 17:39: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/conf kern.post.mk kmod.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, 27 Oct 2005 17:39:04 -0000 ru 2005-10-27 17:39:03 UTC FreeBSD src repository Modified files: sys/conf kern.post.mk kmod.mk Log: Rename the .dbg extension to .symbols, which matches "symbol-file" gdb(1) command better, though I must admit it's confusing: these files have not only [debugging] symbols, but much more than that. Requested by: obrien Revision Changes Path 1.89 +6 -6 src/sys/conf/kern.post.mk 1.199 +5 -5 src/sys/conf/kmod.mk From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:43:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FB6016A420; Thu, 27 Oct 2005 17:43:26 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBE0443D66; Thu, 27 Oct 2005 17:43:18 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RHhHOo030609; Thu, 27 Oct 2005 20:43:17 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 83847-02-3; Thu, 27 Oct 2005 20:43:15 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RHeeua030528 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 27 Oct 2005 20:40:40 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9RHegPe064685; Thu, 27 Oct 2005 20:40:42 +0300 (EEST) (envelope-from ru) Date: Thu, 27 Oct 2005 20:40:42 +0300 From: Ruslan Ermilov To: "Bjoern A. Zeeb" Message-ID: <20051027174042.GK68470@ip.net.ua> References: <200510271424.j9REOkr8091913@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Tu8ztk+XgTAiG9Id" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.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, 27 Oct 2005 17:43:26 -0000 --Tu8ztk+XgTAiG9Id Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 05:15:28PM +0000, Bjoern A. Zeeb wrote: > On Thu, 27 Oct 2005, Ruslan Ermilov wrote: >=20 > > ru 2005-10-27 14:24:46 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/conf kern.post.mk kmod.mk > > Log: > > Installing debug modules was a bad idea -- I bogusly assumed that > > our kernel linker will only load PT_LOAD segments, apparently not. > > Instead, produce .dbg objects from .debug objects, and install > > them together with non-debug objects, as described in objcopy(1). >=20 > is that because of this change? >=20 Yes. I sent a patch for kldxref(8) that fixes this for review to amd64@. These messages are harmless otherwise. > kldxref /boot/kernel > kldxref: file isn't dynamically-linked > kldxref: unknown metdata record 0 in file aac.ko.dbg > kldxref: unknown metdata record 0 in file aac.ko.dbg > kldxref: unknown metdata record 0 in file aac.ko.dbg > kldxref: unknown metdata record 0 in file aac.ko.dbg > kldxref: unknown metdata record 0 in file aac.ko.dbg > kldxref: unknown metdata record 0 in file accf_data.ko.dbg > kldxref: unknown metdata record 0 in file accf_http.ko.dbg > kldxref: unknown metdata record 0 in file agp.ko.dbg > kldxref: unknown metdata record 0 in file agp.ko.dbg > kldxref: unknown metdata record 0 in file agp.ko.dbg > kldxref: unknown metdata record 0 in file agp.ko.dbg > kldxref: unknown metdata record 0 in file aha.ko.dbg > kldxref: unknown metdata record 0 in file ahc.ko.dbg > kldxref: unknown metdata record 0 in file ahc.ko.dbg > kldxref: unknown metdata record 0 in file ahc.ko.dbg > kldxref: unknown metdata record 0 in file ahc_eisa.ko.dbg > kldxref: unknown metdata record 0 in file ahc_eisa.ko.dbg > kldxref: unknown metdata record 0 in file ahc_eisa.ko.dbg > kldxref: unknown metdata record 0 in file ahc_isa.ko.dbg > kldxref: unknown metdata record 0 in file ahc_isa.ko.dbg > kldxref: unknown metdata record 0 in file ahc_isa.ko.dbg > kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg > kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg > kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg > kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg > kldxref: unknown metdata record 0 in file ahd.ko.dbg > kldxref: unknown metdata record 0 in file ahd.ko.dbg > kldxref: unknown metdata record 0 in file ahd.ko.dbg > kldxref: unknown metdata record 0 in file ahd.ko.dbg > kldxref: unknown metdata record 0 in file ahd.ko.dbg > kldxref: unknown metdata record 0 in file ahd.ko.dbg > .... >=20 > --=20 > Bjoern A. Zeeb bzeeb at Zabbadoz dot NeT --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Tu8ztk+XgTAiG9Id Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYREaqRfpzJluFF4RAmFSAJ9KaDTx4IkT6D/02U5bUuZXFcSBjACgivVU +bi7PlveloMf1DJmB4gmajE= =IsCO -----END PGP SIGNATURE----- --Tu8ztk+XgTAiG9Id-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:47:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5163B16A41F; Thu, 27 Oct 2005 17:47:34 +0000 (GMT) (envelope-from vsevolod@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A76743D49; Thu, 27 Oct 2005 17:47:34 +0000 (GMT) (envelope-from vsevolod@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHlXJv016085; Thu, 27 Oct 2005 17:47:33 GMT (envelope-from vsevolod@repoman.freebsd.org) Received: (from vsevolod@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHlXYG016084; Thu, 27 Oct 2005 17:47:33 GMT (envelope-from vsevolod) Message-Id: <200510271747.j9RHlXYG016084@repoman.freebsd.org> From: Vsevolod Stakhov Date: Thu, 27 Oct 2005 17: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: ports/misc/chmlib Makefile distinfo ports/misc/chmlib/files 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: Thu, 27 Oct 2005 17:47:34 -0000 vsevolod 2005-10-27 17:47:33 UTC FreeBSD ports repository Modified files: misc/chmlib Makefile distinfo misc/chmlib/files patch-Makefile.in Log: - Update to 0.37 version that fixes important security bug. Noted by: Jed Wing (author) Revision Changes Path 1.14 +2 -2 ports/misc/chmlib/Makefile 1.5 +2 -2 ports/misc/chmlib/distinfo 1.2 +27 -8 ports/misc/chmlib/files/patch-Makefile.in From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:48:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB24516A41F; Thu, 27 Oct 2005 17:48:57 +0000 (GMT) (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 99AAA43D45; Thu, 27 Oct 2005 17:48:57 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHmvot016145; Thu, 27 Oct 2005 17:48:57 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHmvhJ016144; Thu, 27 Oct 2005 17:48:57 GMT (envelope-from scottl) Message-Id: <200510271748.j9RHmvhJ016144@repoman.freebsd.org> From: Scott Long Date: Thu, 27 Oct 2005 17:48: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/mpt mpt.c mpt.h mpt_cam.c mpt_cam.h mpt_pci.c mpt_raid.c mpt_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: Thu, 27 Oct 2005 17:48:57 -0000 scottl 2005-10-27 17:48:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/mpt mpt.c mpt.h mpt_cam.c mpt_cam.h mpt_pci.c mpt_raid.c mpt_raid.h Log: MFC: Sync with HEAD. This fixes an out-of-bounds access that was caught by INVARIANTS, and it synchronizes the license. Approved by: re Revision Changes Path 1.12.2.1 +5 -7 src/sys/dev/mpt/mpt.c 1.6.2.1 +3 -3 src/sys/dev/mpt/mpt.h 1.1.2.1 +3 -3 src/sys/dev/mpt/mpt_cam.c 1.1.2.1 +3 -3 src/sys/dev/mpt/mpt_cam.h 1.20.2.2 +3 -3 src/sys/dev/mpt/mpt_pci.c 1.1.2.1 +3 -3 src/sys/dev/mpt/mpt_raid.c 1.1.2.1 +3 -3 src/sys/dev/mpt/mpt_raid.h From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:53:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B6E216A41F; Thu, 27 Oct 2005 17:53:32 +0000 (GMT) (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 4677E43D46; Thu, 27 Oct 2005 17:53:32 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHrWM5016372; Thu, 27 Oct 2005 17:53:32 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHrW3P016371; Thu, 27 Oct 2005 17:53:32 GMT (envelope-from delphij) Message-Id: <200510271753.j9RHrW3P016371@repoman.freebsd.org> From: Xin LI Date: Thu, 27 Oct 2005 17:53:31 +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/zh_CN.GB2312/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, 27 Oct 2005 17:53:32 -0000 delphij 2005-10-27 17:53:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/zh_CN.GB2312/relnotes/common new.sgml Log: MFC 1.9: Update to sync up with latest RELENG_6 documentation. Approved by: re (scottl) Revision Changes Path 1.5.2.3 +9 -1 src/release/doc/zh_CN.GB2312/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:54:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42F5E16A420; Thu, 27 Oct 2005 17:54:33 +0000 (GMT) (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 5499C43D60; Thu, 27 Oct 2005 17:54:32 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHsVHI016414; Thu, 27 Oct 2005 17:54:31 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHsVke016413; Thu, 27 Oct 2005 17:54:31 GMT (envelope-from delphij) Message-Id: <200510271754.j9RHsVke016413@repoman.freebsd.org> From: Xin LI Date: Thu, 27 Oct 2005 17:54:31 +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/release/doc/zh_CN.GB2312/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, 27 Oct 2005 17:54:33 -0000 delphij 2005-10-27 17:54:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) release/doc/zh_CN.GB2312/relnotes/common new.sgml Log: MFRELENG_6 1.5.2.3: Update to sync up with latest RELENG_6 documentation. Approved by: re (scottl) Revision Changes Path 1.5.4.3 +9 -1 src/release/doc/zh_CN.GB2312/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Thu Oct 27 17:56:37 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F19616A41F; Thu, 27 Oct 2005 17:56:37 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CFF543D48; Thu, 27 Oct 2005 17:56:37 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHubQj016554; Thu, 27 Oct 2005 17:56:37 GMT (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHub9T016553; Thu, 27 Oct 2005 17:56:37 GMT (envelope-from fenner) Message-Id: <200510271756.j9RHub9T016553@repoman.freebsd.org> From: Bill Fenner Date: Thu, 27 Oct 2005 17:56: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/benchmarks/lmbench 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, 27 Oct 2005 17:56:37 -0000 fenner 2005-10-27 17:56:37 UTC FreeBSD ports repository Modified files: benchmarks/lmbench Makefile Log: Fix turd removal. Pointy hat to: me, courtesy of pointyhat Revision Changes Path 1.20 +1 -1 ports/benchmarks/lmbench/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:04:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 860E016A41F; Thu, 27 Oct 2005 18:04:14 +0000 (GMT) (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 50CF143D46; Thu, 27 Oct 2005 18:04:14 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RI4EkH016924; Thu, 27 Oct 2005 18:04:14 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RI4EoT016923; Thu, 27 Oct 2005 18:04:14 GMT (envelope-from garga) Message-Id: <200510271804.j9RI4EoT016923@repoman.freebsd.org> From: Renato Botelho Date: Thu, 27 Oct 2005 18:04: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/editors/jed Makefile pkg-plist ports/editors/jed/files patch-src-file.c patch-src-unix.c patch-src_Makefile.in patch-src_jprocess.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 18:04:14 -0000 garga 2005-10-27 18:04:14 UTC FreeBSD ports repository Modified files: editors/jed Makefile pkg-plist Removed files: editors/jed/files patch-src-file.c patch-src-unix.c patch-src_Makefile.in patch-src_jprocess.c Log: - Remove some patches and use REINPLACE_CMD, *_ARGS and *_ENV instead - Use PORTDOCS - Polish Makefile Revision Changes Path 1.26 +31 -11 ports/editors/jed/Makefile 1.2 +0 -20 ports/editors/jed/files/patch-src-file.c (dead) 1.2 +0 -11 ports/editors/jed/files/patch-src-unix.c (dead) 1.2 +0 -105 ports/editors/jed/files/patch-src_Makefile.in (dead) 1.2 +0 -13 ports/editors/jed/files/patch-src_jprocess.c (dead) 1.11 +3 -35 ports/editors/jed/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:05:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D632916A41F; Thu, 27 Oct 2005 18:05:16 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from storm.uk.FreeBSD.org (storm.uk.FreeBSD.org [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9BB943D49; Thu, 27 Oct 2005 18:05:15 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from storm.uk.FreeBSD.org (uucp@localhost [127.0.0.1]) by storm.uk.FreeBSD.org (8.13.4/8.13.4) with ESMTP id j9RI595L065199; Thu, 27 Oct 2005 19:05:09 +0100 (BST) (envelope-from markm@FreeBSD.org) Received: (from uucp@localhost) by storm.uk.FreeBSD.org (8.13.4/8.12.11/Submit) with UUCP id j9RI57Mm065198; Thu, 27 Oct 2005 19:05:07 +0100 (BST) (envelope-from markm@FreeBSD.org) Received: from grondar.org (localhost [127.0.0.1]) by grunt.grondar.org (8.13.4/8.13.4) with ESMTP id j9RI4eBm040836; Thu, 27 Oct 2005 19:04:40 +0100 (BST) (envelope-from markm@FreeBSD.org) Message-Id: <200510271804.j9RI4eBm040836@grunt.grondar.org> To: John Baldwin From: Mark Murray From: Mark Murray Date: Thu, 27 Oct 2005 19:04:40 +0100 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/conf DEFAULTS 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: Thu, 27 Oct 2005 18:05:17 -0000 John Baldwin writes: > Create a default kernel config for i386 and move 'device isa' and > 'device npx' (both of which aren't really optional right now) and > 'device io' and 'device mem' (to preserve POLA for 4.x users upgrading > to 6.0) from GENERIC into DEFAULTS. Thanks!! M -- Mark R V Murray What is the most interesting question you have asked? What, if any, was the answer? From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:32:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB1C616A420; Thu, 27 Oct 2005 18:32:40 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CE5043D48; Thu, 27 Oct 2005 18:32:40 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIWeTW018715; Thu, 27 Oct 2005 18:32:40 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIWeqZ018714; Thu, 27 Oct 2005 18:32:40 GMT (envelope-from glebius) Message-Id: <200510271832.j9RIWeqZ018714@repoman.freebsd.org> From: Gleb Smirnoff Date: Thu, 27 Oct 2005 18:32:39 +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_exit.c src/sys/nfsclient nfs_lock.c nlminfo.h src/sys/sys lockf.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, 27 Oct 2005 18:32:41 -0000 glebius 2005-10-27 18:32:39 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern kern_exit.c sys/nfsclient nfs_lock.c nlminfo.h sys/sys lockf.h Log: MFC: - Fix leak of struct nlminfo on process exit. - Fix malloc type collision, that made the above problem difficult to understand. Reported by: Vladimir Sharun Approved by: re (scottl) Revision Changes Path 1.263.2.3 +9 -0 src/sys/kern/kern_exit.c 1.40.2.1 +15 -1 src/sys/nfsclient/nfs_lock.c 1.2.14.1 +1 -3 src/sys/nfsclient/nlminfo.h 1.18.2.1 +0 -4 src/sys/sys/lockf.h From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:34:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2678616A41F; Thu, 27 Oct 2005 18:34:52 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 923B643D45; Thu, 27 Oct 2005 18:34:51 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIYpOE018852; Thu, 27 Oct 2005 18:34:51 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIYpD0018851; Thu, 27 Oct 2005 18:34:51 GMT (envelope-from murray) Message-Id: <200510271834.j9RIYpD0018851@repoman.freebsd.org> From: Murray Stokely Date: Thu, 27 Oct 2005 18:34: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/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, 27 Oct 2005 18:34:52 -0000 murray 2005-10-27 18:34:51 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/add main.c Log: Look for packages in packages-6.0-release or packages-6-stable, as appropriate. Approved by: re (scottl@) Reviewed by: portmgr (kris@) Revision Changes Path 1.64 +2 -1 src/usr.sbin/pkg_install/add/main.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:35:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8A5E16A423; Thu, 27 Oct 2005 18:35:26 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B700943D55; Thu, 27 Oct 2005 18:35:19 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIZJdt018950; Thu, 27 Oct 2005 18:35:19 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIZJCf018949; Thu, 27 Oct 2005 18:35:19 GMT (envelope-from glebius) Message-Id: <200510271835.j9RIZJCf018949@repoman.freebsd.org> From: Gleb Smirnoff Date: Thu, 27 Oct 2005 18:35:19 +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/sys/kern kern_exit.c src/sys/nfsclient nfs_lock.c nlminfo.h src/sys/sys lockf.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, 27 Oct 2005 18:35:27 -0000 glebius 2005-10-27 18:35:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/kern kern_exit.c sys/nfsclient nfs_lock.c nlminfo.h sys/sys lockf.h Log: MFC: - Fix leak of struct nlminfo on process exit. - Fix malloc type collision, that made the above problem difficult to understand. Reported by: Vladimir Sharun Approved by: re (scottl) Revision Changes Path 1.263.2.2.2.1 +9 -0 src/sys/kern/kern_exit.c 1.40.4.1 +15 -1 src/sys/nfsclient/nfs_lock.c 1.2.16.1 +1 -3 src/sys/nfsclient/nlminfo.h 1.18.4.1 +0 -4 src/sys/sys/lockf.h From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:36:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C502916A41F; Thu, 27 Oct 2005 18:36:14 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2BC143D73; Thu, 27 Oct 2005 18:36:13 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIaDew019073; Thu, 27 Oct 2005 18:36:13 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIaDQk019072; Thu, 27 Oct 2005 18:36:13 GMT (envelope-from murray) Message-Id: <200510271836.j9RIaDQk019072@repoman.freebsd.org> From: Murray Stokely Date: Thu, 27 Oct 2005 18:36:13 +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, 27 Oct 2005 18:36:15 -0000 murray 2005-10-27 18:36:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/pkg_install/add main.c Log: MFC: look for packages in the packages-6-release directory when appropriate. Reviewed by: portmgr (kris@) Approved by: re (scottl@) Revision Changes Path 1.61.2.2 +2 -1 src/usr.sbin/pkg_install/add/main.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:38:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 385E716A41F; Thu, 27 Oct 2005 18:38:49 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E35C143D45; Thu, 27 Oct 2005 18:38:48 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIcm4I019228; Thu, 27 Oct 2005 18:38:48 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIcmtU019227; Thu, 27 Oct 2005 18:38:48 GMT (envelope-from murray) Message-Id: <200510271838.j9RIcmtU019227@repoman.freebsd.org> From: Murray Stokely Date: Thu, 27 Oct 2005 18:38:48 +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/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, 27 Oct 2005 18:38:49 -0000 murray 2005-10-27 18:38:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) usr.sbin/pkg_install/add main.c Log: MFC: Use packages-6-release directory for packages, as appropriate. Approved by: re Revision Changes Path 1.61.2.1.2.1 +2 -1 src/usr.sbin/pkg_install/add/main.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:40:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3992416A41F; Thu, 27 Oct 2005 18:40:57 +0000 (GMT) (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 EA16B43D45; Thu, 27 Oct 2005 18:40:56 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIeubm019373; Thu, 27 Oct 2005 18:40:56 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIeuHk019372; Thu, 27 Oct 2005 18:40:56 GMT (envelope-from obrien) Message-Id: <200510271840.j9RIeuHk019372@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Oct 2005 18: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/sys/amd64/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: Thu, 27 Oct 2005 18:40:57 -0000 obrien 2005-10-27 18:40:56 UTC FreeBSD src repository Modified files: sys/amd64/conf GENERIC Log: Remove atpic as we've changed to using the lapic timer vs. using irq0 Revision Changes Path 1.443 +0 -3 src/sys/amd64/conf/GENERIC From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:48:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA5CC16A41F; Thu, 27 Oct 2005 18:48:21 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7728E43D49; Thu, 27 Oct 2005 18:48:21 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RImL7o019818; Thu, 27 Oct 2005 18:48:21 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RImLQh019817; Thu, 27 Oct 2005 18:48:21 GMT (envelope-from remko) Message-Id: <200510271848.j9RImLQh019817@repoman.freebsd.org> From: Remko Lodder Date: Thu, 27 Oct 2005 18:48:21 +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/faq book.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, 27 Oct 2005 18:48:21 -0000 remko 2005-10-27 18:48:21 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/faq book.sgml Log: Remove the reference to HybNet since it seems to be disbanded. Prodded by: Mike Verret on doc@ Revision Changes Path 1.763 +0 -8 doc/en_US.ISO8859-1/books/faq/book.sgml From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:51:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D9FE16A41F; Thu, 27 Oct 2005 18:51:02 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23A0343D53; Thu, 27 Oct 2005 18:51:01 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.54 (FreeBSD)) id 1EVCq4-000M23-RW; Thu, 27 Oct 2005 19:51:00 +0100 Date: Thu, 27 Oct 2005 19:51:00 +0100 From: Ceri Davies To: Remko Lodder Message-ID: <20051027185100.GI99857@submonkey.net> Mail-Followup-To: Ceri Davies , Remko Lodder , doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org References: <200510271848.j9RImLQh019817@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Qz2CZ664xQdCRdPu" Content-Disposition: inline In-Reply-To: <200510271848.j9RImLQh019817@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.11 Sender: Ceri Davies Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 18:51:02 -0000 --Qz2CZ664xQdCRdPu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 06:48:21PM +0000, Remko Lodder wrote: > remko 2005-10-27 18:48:21 UTC >=20 > FreeBSD doc repository >=20 > Modified files: > en_US.ISO8859-1/books/faq book.sgml=20 > Log: > Remove the reference to HybNet since it seems to be disbanded. > =20 > Prodded by: Mike Verret on doc@ Yeah, that was on my todo list for after the thaw. For the record, Devon H. O'Dell confirmed that he's the only person keeping the channel open and hasn't seen any activity there for a long time. Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --Qz2CZ664xQdCRdPu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYSGUocfcwTS3JF8RAvZOAJ9ktsn5ucax9pHNYPSEfjlCJGSrOQCgr3wT RAq7KQML/vhNHRazmfJ6F/0= =ZS2Y -----END PGP SIGNATURE----- --Qz2CZ664xQdCRdPu-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:54:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ABDA16A41F; Thu, 27 Oct 2005 18:54:44 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 571E543D49; Thu, 27 Oct 2005 18:54:44 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIsiNX020113; Thu, 27 Oct 2005 18:54:44 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIsi0M020112; Thu, 27 Oct 2005 18:54:44 GMT (envelope-from peter) Message-Id: <200510271854.j9RIsi0M020112@repoman.freebsd.org> From: Peter Wemm Date: Thu, 27 Oct 2005 18:54: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/amd64/conf DEFAULTS 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: Thu, 27 Oct 2005 18:54:44 -0000 peter 2005-10-27 18:54:44 UTC FreeBSD src repository Modified files: sys/amd64/conf DEFAULTS GENERIC Log: MFi386: bring over DEFAULTS (repocopy) and adapt. While there isn't a 4.x->6.x amd64 upgrade path, the config files are kept in approximate sync. Revision Changes Path 1.2 +2 -5 src/sys/amd64/conf/DEFAULTS 1.444 +1 -4 src/sys/amd64/conf/GENERIC From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:58:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5429E16A420; Thu, 27 Oct 2005 18:58:06 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B4B943D45; Thu, 27 Oct 2005 18:58:05 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RIw4Qi033301; Thu, 27 Oct 2005 21:58:04 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 84508-04-3; Thu, 27 Oct 2005 21:58:02 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RIsN8W033186 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 27 Oct 2005 21:54:24 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9RIsQTI065278; Thu, 27 Oct 2005 21:54:26 +0300 (EEST) (envelope-from ru) Date: Thu, 27 Oct 2005 21:54:25 +0300 From: Ruslan Ermilov To: "David E. O'Brien" Message-ID: <20051027185425.GR68470@ip.net.ua> References: <200510271840.j9RIeuHk019372@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Y9o+fgG4MNl0mnzl" Content-Disposition: inline In-Reply-To: <200510271840.j9RIeuHk019372@repoman.freebsd.org> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/amd64/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: Thu, 27 Oct 2005 18:58:06 -0000 --Y9o+fgG4MNl0mnzl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 06:40:56PM +0000, David E. O'Brien wrote: > obrien 2005-10-27 18:40:56 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/amd64/conf GENERIC=20 > Log: > Remove atpic as we've changed to using the lapic timer vs. using irq0 > =20 > Revision Changes Path > 1.443 +0 -3 src/sys/amd64/conf/GENERIC >=20 The src/release/doc/en_US.ISO8859-1/installation/common/trouble.sgml can be updated to reflect this, when it talks about "nVidia nForce3 Pro-150 chipset". Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Y9o+fgG4MNl0mnzl Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYSJhqRfpzJluFF4RAlvbAJ0UGKgw8jKvBz9uZRYHnhRWEWQT2ACfUs+A uVIaezR0fgHj8uK2F99kxsM= =nCm/ -----END PGP SIGNATURE----- --Y9o+fgG4MNl0mnzl-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 18:58:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8CA116A41F; Thu, 27 Oct 2005 18:58:38 +0000 (GMT) (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 28B5243D49; Thu, 27 Oct 2005 18:58:38 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIwcfA020806; Thu, 27 Oct 2005 18:58:38 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIwcQs020805; Thu, 27 Oct 2005 18:58:38 GMT (envelope-from scottl) Message-Id: <200510271858.j9RIwcQs020805@repoman.freebsd.org> From: Scott Long Date: Thu, 27 Oct 2005 18:58:38 +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/sys/dev/mpt mpt.c mpt.h mpt_cam.c mpt_cam.h mpt_pci.c mpt_raid.c mpt_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: Thu, 27 Oct 2005 18:58:38 -0000 scottl 2005-10-27 18:58:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/mpt mpt.c mpt.h mpt_cam.c mpt_cam.h mpt_pci.c mpt_raid.c mpt_raid.h Log: MFC: Sync the mpt driver to pick up license refinement and INVARIANTS error. Approved by: re Revision Changes Path 1.12.4.1 +5 -7 src/sys/dev/mpt/mpt.c 1.6.4.1 +3 -3 src/sys/dev/mpt/mpt.h 1.1.4.1 +3 -3 src/sys/dev/mpt/mpt_cam.c 1.1.4.1 +3 -3 src/sys/dev/mpt/mpt_cam.h 1.20.2.1.2.1 +3 -3 src/sys/dev/mpt/mpt_pci.c 1.1.4.1 +3 -3 src/sys/dev/mpt/mpt_raid.c 1.1.4.1 +3 -3 src/sys/dev/mpt/mpt_raid.h From owner-cvs-all@FreeBSD.ORG Thu Oct 27 19:02:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F43C16A41F; Thu, 27 Oct 2005 19:02:35 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFCE443D46; Thu, 27 Oct 2005 19:02:34 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RJ2Y2h021221; Thu, 27 Oct 2005 19:02:34 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RJ2Y4h021220; Thu, 27 Oct 2005 19:02:34 GMT (envelope-from glebius) Message-Id: <200510271902.j9RJ2Y4h021220@repoman.freebsd.org> From: Gleb Smirnoff Date: Thu, 27 Oct 2005 19:02: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/nfsserver nfs_serv.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 19:02:35 -0000 glebius 2005-10-27 19:02:34 UTC FreeBSD src repository Modified files: sys/nfsserver nfs_serv.c Log: Keep locks consistent before goto. Reported by: pho Reviewed by: mohans Revision Changes Path 1.157 +4 -0 src/sys/nfsserver/nfs_serv.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 19:07:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4497C16A41F; Thu, 27 Oct 2005 19:07:36 +0000 (GMT) (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 F374A43D45; Thu, 27 Oct 2005 19:07:35 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RJ7Zb0021514; Thu, 27 Oct 2005 19:07:35 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RJ7ZMm021513; Thu, 27 Oct 2005 19:07:35 GMT (envelope-from obrien) Message-Id: <200510271907.j9RJ7ZMm021513@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Oct 2005 19:07: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/release/doc/en_US.ISO8859-1/installation/common trouble.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, 27 Oct 2005 19:07:36 -0000 obrien 2005-10-27 19:07:35 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/installation/common trouble.sgml Log: Remove information on nVidia nForce3 Pro-150 chipset to match GENERIC change. Revision Changes Path 1.20 +1 -16 src/release/doc/en_US.ISO8859-1/installation/common/trouble.sgml From owner-cvs-all@FreeBSD.ORG Thu Oct 27 19:27:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E6C916A420; Thu, 27 Oct 2005 19:27:56 +0000 (GMT) (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 AC65643D55; Thu, 27 Oct 2005 19:27:55 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RJRtTu022419; Thu, 27 Oct 2005 19:27:55 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RJRteO022418; Thu, 27 Oct 2005 19:27:55 GMT (envelope-from jhb) Message-Id: <200510271927.j9RJRteO022418@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 19:27: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/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 src/usr.sbin/config configvers.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, 27 Oct 2005 19:27:56 -0000 jhb 2005-10-27 19:27:55 UTC FreeBSD src repository Modified files: sys/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 usr.sbin/config configvers.h Log: Bump config(8) version for the DEFAULTS change. Revision Changes Path 1.136 +1 -1 src/sys/conf/Makefile.alpha 1.18 +1 -1 src/sys/conf/Makefile.amd64 1.14 +1 -1 src/sys/conf/Makefile.arm 1.266 +1 -1 src/sys/conf/Makefile.i386 1.63 +1 -1 src/sys/conf/Makefile.ia64 1.168 +1 -1 src/sys/conf/Makefile.pc98 1.279 +1 -1 src/sys/conf/Makefile.powerpc 1.34 +1 -1 src/sys/conf/Makefile.sparc64 1.36 +1 -1 src/usr.sbin/config/configvers.h From owner-cvs-all@FreeBSD.ORG Thu Oct 27 19:40:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6124D16A421; Thu, 27 Oct 2005 19:40:32 +0000 (GMT) (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 88D6F43D49; Thu, 27 Oct 2005 19:40:25 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RJePGP023201; Thu, 27 Oct 2005 19:40:25 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RJePVS023200; Thu, 27 Oct 2005 19:40:25 GMT (envelope-from sem) Message-Id: <200510271940.j9RJePVS023200@repoman.freebsd.org> From: Sergey Matveychuk Date: Thu, 27 Oct 2005 19:40: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/Mk bsd.ruby.mk ports/security/vuxml vuln.xml ports/lang/ruby16 Makefile distinfo ports/lang/ruby18 Makefile distinfo ports/lang/ruby18/files patch-lib_xmlrpc_utils.rb X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 19:40:32 -0000 sem 2005-10-27 19:40:25 UTC FreeBSD ports repository Modified files: Mk bsd.ruby.mk security/vuxml vuln.xml lang/ruby16 Makefile distinfo lang/ruby18 Makefile distinfo Removed files: lang/ruby18/files patch-lib_xmlrpc_utils.rb Log: - Fix a ruby vulnerabuility in the safe level settings. Based on: ports/87816 Submitted by: Phil Oleson Security: http://vuxml.FreeBSD.org/1daea60a-4719-11da-b5c6-0004614cc33d.html Revision Changes Path 1.145 +9 -1 ports/Mk/bsd.ruby.mk 1.111 +4 -3 ports/lang/ruby16/Makefile 1.83 +2 -0 ports/lang/ruby16/distinfo 1.87 +4 -3 ports/lang/ruby18/Makefile 1.60 +2 -0 ports/lang/ruby18/distinfo 1.2 +0 -11 ports/lang/ruby18/files/patch-lib_xmlrpc_utils.rb (dead) 1.868 +37 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Oct 27 19:41:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 915E516A41F; Thu, 27 Oct 2005 19:41:43 +0000 (GMT) (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 4DC8F43D46; Thu, 27 Oct 2005 19:41:43 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RJfhOM023307; Thu, 27 Oct 2005 19:41:43 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RJfhvG023306; Thu, 27 Oct 2005 19:41:43 GMT (envelope-from thompsa) Message-Id: <200510271941.j9RJfhvG023306@repoman.freebsd.org> From: Andrew Thompson Date: Thu, 27 Oct 2005 19:41: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/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: Thu, 27 Oct 2005 19:41:43 -0000 thompsa 2005-10-27 19:41:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_bridge.c Log: MFC if_bridge r1.30 > If we have been called from ether_ifdetach() then do not try and clear the > promisc flag from the member interface, this is a no-op anyway since the > interface is disappearing. The driver may have already released > its resources such as miibus and this is likely to panic the kernel. Approved by: re (scottl) Revision Changes Path 1.11.2.15 +25 -19 src/sys/net/if_bridge.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 19:43:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0616116A421; Thu, 27 Oct 2005 19:43:11 +0000 (GMT) (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 DD7C443D79; Thu, 27 Oct 2005 19:43:07 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RJh71T023427; Thu, 27 Oct 2005 19:43:07 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RJh7lj023426; Thu, 27 Oct 2005 19:43:07 GMT (envelope-from thompsa) Message-Id: <200510271943.j9RJh7lj023426@repoman.freebsd.org> From: Andrew Thompson Date: Thu, 27 Oct 2005 19:43:07 +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/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: Thu, 27 Oct 2005 19:43:11 -0000 thompsa 2005-10-27 19:43:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/net if_bridge.c Log: MFC if_bridge r1.30 > If we have been called from ether_ifdetach() then do not try and clear the > promisc flag from the member interface, this is a no-op anyway since the > interface is disappearing. The driver may have already released > its resources such as miibus and this is likely to panic the kernel. Approved by: re (scottl) Revision Changes Path 1.11.2.12.2.3 +25 -19 src/sys/net/if_bridge.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 19:43:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE24116A425; Thu, 27 Oct 2005 19:43:38 +0000 (GMT) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48ACE43D72; Thu, 27 Oct 2005 19:43:38 +0000 (GMT) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RJhciJ023509; Thu, 27 Oct 2005 19:43:38 GMT (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RJhcnY023508; Thu, 27 Oct 2005 19:43:38 GMT (envelope-from naddy) Message-Id: <200510271943.j9RJhcnY023508@repoman.freebsd.org> From: Christian Weisgerber Date: Thu, 27 Oct 2005 19:43: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/comms/wy60 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, 27 Oct 2005 19:43:39 -0000 naddy 2005-10-27 19:43:38 UTC FreeBSD ports repository Modified files: comms/wy60 Makefile Log: Use MASTER_SITE_LOCAL. The real master site uses a temporary redirect to insert a session ID into the URL, which causes fetching problems. PR: 88065 Revision Changes Path 1.6 +4 -1 ports/comms/wy60/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 20:09:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA0D816A41F; Thu, 27 Oct 2005 20:09:41 +0000 (GMT) (envelope-from gj@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDFAE43D73; Thu, 27 Oct 2005 20:09:35 +0000 (GMT) (envelope-from gj@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RK9Zti024524; Thu, 27 Oct 2005 20:09:35 GMT (envelope-from gj@repoman.freebsd.org) Received: (from gj@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RK9ZsY024523; Thu, 27 Oct 2005 20:09:35 GMT (envelope-from gj) Message-Id: <200510272009.j9RK9ZsY024523@repoman.freebsd.org> From: Gary Jennejohn Date: Thu, 27 Oct 2005 20:09: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/xvile 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, 27 Oct 2005 20:09:41 -0000 gj 2005-10-27 20:09:35 UTC FreeBSD ports repository Modified files: editors/xvile Makefile Log: Fix a braino in specifying x-includes. It's ../include and _not_ ../X11/include! Revision Changes Path 1.72 +1 -1 ports/editors/xvile/Makefile From owner-cvs-all@FreeBSD.ORG Thu Oct 27 20:23:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 278C616A41F; Thu, 27 Oct 2005 20:23:19 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBCF743D45; Thu, 27 Oct 2005 20:23:18 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RKNIH1025415; Thu, 27 Oct 2005 20:23:18 GMT (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RKNILZ025414; Thu, 27 Oct 2005 20:23:18 GMT (envelope-from markm) Message-Id: <200510272023.j9RKNILZ025414@repoman.freebsd.org> From: Mark Murray Date: Thu, 27 Oct 2005 20:23: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/gimp-ufraw Makefile distinfo pkg-plist ports/graphics/gimp-ufraw/files patch-Makefile patch-dcraw.c patch-ufraw__ufraw.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 20:23:19 -0000 markm 2005-10-27 20:23:18 UTC FreeBSD ports repository Modified files: graphics/gimp-ufraw Makefile distinfo pkg-plist Added files: graphics/gimp-ufraw/files patch-dcraw.c Removed files: graphics/gimp-ufraw/files patch-Makefile patch-ufraw__ufraw.c Log: Upgrade to version 0.5. This is autoconfiged, so builds easier, and has slightly better Nikon support. Revision Changes Path 1.6 +14 -4 ports/graphics/gimp-ufraw/Makefile 1.2 +2 -2 ports/graphics/gimp-ufraw/distinfo 1.2 +0 -26 ports/graphics/gimp-ufraw/files/patch-Makefile (dead) 1.1 +11 -0 ports/graphics/gimp-ufraw/files/patch-dcraw.c (new) 1.2 +0 -11 ports/graphics/gimp-ufraw/files/patch-ufraw__ufraw.c (dead) 1.2 +3 -0 ports/graphics/gimp-ufraw/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Oct 27 20:29:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3022C16A41F; Thu, 27 Oct 2005 20:29:36 +0000 (GMT) (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 A6FF743D45; Thu, 27 Oct 2005 20:29:35 +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 62EE22084; Thu, 27 Oct 2005 22:29:30 +0200 (CEST) X-Spam-Tests: ALL_TRUSTED,AWL,BAYES_00 X-Spam-Learn: ham X-Spam-Score: -4.4/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on tim.des.no Received: from xps.des.no (des.no [80.203.228.37]) by tim.des.no (Postfix) with ESMTP id 5238F2083; Thu, 27 Oct 2005 22:29:30 +0200 (CEST) Received: by xps.des.no (Postfix, from userid 1001) id 3562F33C1D; Thu, 27 Oct 2005 22:29:30 +0200 (CEST) To: Ruslan Ermilov References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Thu, 27 Oct 2005 22:29:30 +0200 In-Reply-To: <20051027174042.GK68470@ip.net.ua> (Ruslan Ermilov's message of "Thu, 27 Oct 2005 20:40:42 +0300") Message-ID: <864q723dqt.fsf@xps.des.no> User-Agent: Gnus/5.110002 (No Gnus v0.2) 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, "Bjoern A. Zeeb" , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.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, 27 Oct 2005 20:29:36 -0000 Ruslan Ermilov writes: > On Thu, Oct 27, 2005 at 05:15:28PM +0000, Bjoern A. Zeeb wrote: > > On Thu, 27 Oct 2005, Ruslan Ermilov wrote: > > > Log: > > > Installing debug modules was a bad idea -- I bogusly assumed that > > > our kernel linker will only load PT_LOAD segments, apparently not. > > > Instead, produce .dbg objects from .debug objects, and install > > > them together with non-debug objects, as described in objcopy(1). > > is that because of this change? > Yes. I sent a patch for kldxref(8) that fixes this for review to > amd64@. These messages are harmless otherwise. Wouldn't it be cleaner (and potentially simpler) to fix this by making the kernel linker skip non-PT_LOAD sections? (I just peeked at sys/kern/link_elf.c and it looks to me like it *already* DTRT, so what exactly is the problem?) DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Thu Oct 27 20:39:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 816D416A41F; Thu, 27 Oct 2005 20:39:38 +0000 (GMT) (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 1044343D45; Thu, 27 Oct 2005 20:39:38 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RKdbZd026092; Thu, 27 Oct 2005 20:39:37 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RKdbif026091; Thu, 27 Oct 2005 20:39:37 GMT (envelope-from joel) Message-Id: <200510272039.j9RKdbif026091@repoman.freebsd.org> From: Joel Dahl Date: Thu, 27 Oct 2005 20:39:37 +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/sys/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: Thu, 27 Oct 2005 20:39:38 -0000 joel 2005-10-27 20:39:37 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6_0) sys/conf NOTES Log: MFC r1.1334: snd_ess needs snd_sbc, so add a note about that. Requested by: delphij Approved by: re (scottl) Revision Changes Path 1.1325.2.4.2.1 +2 -1 src/sys/conf/NOTES From owner-cvs-all@FreeBSD.ORG Thu Oct 27 20:42:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4C4816A420; Thu, 27 Oct 2005 20:42:49 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1299E43D46; Thu, 27 Oct 2005 20:42:48 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 3A4C450F95; Thu, 27 Oct 2005 22:42:46 +0200 (CEST) Received: from localhost (dkf55.neoplus.adsl.tpnet.pl [83.24.9.55]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 4C43B509F1; Thu, 27 Oct 2005 22:42:38 +0200 (CEST) Date: Thu, 27 Oct 2005 22:42:34 +0200 From: Pawel Jakub Dawidek To: Ruslan Ermilov Message-ID: <20051027204234.GA3596@garage.freebsd.pl> References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="RnlQjJ0d97Da+TV1" Content-Disposition: inline In-Reply-To: <20051027174042.GK68470@ip.net.ua> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r535 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-0.5 required=3.0 tests=BAYES_00,RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL autolearn=no version=3.0.4 Cc: cvs-src@FreeBSD.org, "Bjoern A. Zeeb" , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.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, 27 Oct 2005 20:42:50 -0000 --RnlQjJ0d97Da+TV1 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 08:40:42PM +0300, Ruslan Ermilov wrote: +> On Thu, Oct 27, 2005 at 05:15:28PM +0000, Bjoern A. Zeeb wrote: +> > On Thu, 27 Oct 2005, Ruslan Ermilov wrote: +> >=20 +> > > ru 2005-10-27 14:24:46 UTC +> > > +> > > FreeBSD src repository +> > > +> > > Modified files: +> > > sys/conf kern.post.mk kmod.mk +> > > Log: +> > > Installing debug modules was a bad idea -- I bogusly assumed that +> > > our kernel linker will only load PT_LOAD segments, apparently not. +> > > Instead, produce .dbg objects from .debug objects, and install +> > > them together with non-debug objects, as described in objcopy(1). +> >=20 +> > is that because of this change? +> >=20 +> Yes. I sent a patch for kldxref(8) that fixes this for review to +> amd64@. These messages are harmless otherwise. I'm seeing simlar thing when I built HEAD kernel on 6.x FreeBSD and tried to install it (i386 machine): kldxref /diskless/lcf/boot/kernel kldxref: file isn't dynamically-linked kldxref: file isn't dynamically-linked kldxref: file isn't dynamically-linked [...] --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --RnlQjJ0d97Da+TV1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYTu6ForvXbEpPzQRAlMKAJ4t2ixIIzuULRjqdUQROHAKsd6UoQCfaHnz RgEsv4MIhrFfq29rBNS3G5c= =7+Gy -----END PGP SIGNATURE----- --RnlQjJ0d97Da+TV1-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 20:42:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 894CC16A421; Thu, 27 Oct 2005 20:42:50 +0000 (GMT) (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 0E3CB43D45; Thu, 27 Oct 2005 20:42:50 +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 437D82082; Thu, 27 Oct 2005 22:42:45 +0200 (CEST) X-Spam-Tests: ALL_TRUSTED,AWL,BAYES_00 X-Spam-Learn: ham X-Spam-Score: -4.4/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on tim.des.no Received: from xps.des.no (des.no [80.203.228.37]) by tim.des.no (Postfix) with ESMTP id C10662080; Thu, 27 Oct 2005 22:42:44 +0200 (CEST) Received: by xps.des.no (Postfix, from userid 1001) id A784D33C1D; Thu, 27 Oct 2005 22:42:44 +0200 (CEST) To: Ruslan Ermilov References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <864q723dqt.fsf@xps.des.no> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Thu, 27 Oct 2005 22:42:44 +0200 In-Reply-To: <864q723dqt.fsf@xps.des.no> (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav's?= message of "Thu, 27 Oct 2005 22:29:30 +0200") Message-ID: <86zmou1ykb.fsf@xps.des.no> User-Agent: Gnus/5.110002 (No Gnus v0.2) 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, "Bjoern A. Zeeb" , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.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, 27 Oct 2005 20:42:50 -0000 Now I'm even more confused - I just built and installed a kernel using yesterday's sources (kern.post.mk 1.86, kmod.mk 1.197); the modules that were installed have debugging symbols, and work flawlessly, which contradicts your commit logs. What problem are you trying to solve? DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Thu Oct 27 20:47:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25E8D16A41F; Thu, 27 Oct 2005 20:47:04 +0000 (GMT) (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 C2B6E43D53; Thu, 27 Oct 2005 20:47:03 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RKl3w0028663; Thu, 27 Oct 2005 20:47:03 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RKl33b028556; Thu, 27 Oct 2005 20:47:03 GMT (envelope-from joel) Message-Id: <200510272047.j9RKl33b028556@repoman.freebsd.org> From: Joel Dahl Date: Thu, 27 Oct 2005 20:47:03 +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/share/man/man4 ata.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, 27 Oct 2005 20:47:04 -0000 joel 2005-10-27 20:47:03 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6_0) share/man/man4 ata.4 Log: MFC r1.59: Add support for ATI IXP[234]00. Requested by: delphij Approved by: re (scottl) Revision Changes Path 1.52.2.2.2.1 +3 -1 src/share/man/man4/ata.4 From owner-cvs-all@FreeBSD.ORG Thu Oct 27 20:48:05 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA77616A41F; Thu, 27 Oct 2005 20:48:05 +0000 (GMT) (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 587C943D48; Thu, 27 Oct 2005 20:48:05 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RKm5Lm034309; Thu, 27 Oct 2005 20:48:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RKm5vU034308; Thu, 27 Oct 2005 20:48:05 GMT (envelope-from jhb) Message-Id: <200510272048.j9RKm5vU034308@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 20:48:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: INTEL Cc: Subject: cvs commit: src/sys/contrib/dev/acpica/Subsystem/Common cmalloc.c cmclib.c cmcopy.c cmdebug.c cmdelete.c cmeval.c cmglobal.c cminit.c cmobject.c cmutils.c cmxface.c src/sys/contrib/dev/acpica/Subsystem/Debugger dbcmds.c dbdisasm.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 20:48:06 -0000 jhb 2005-10-27 20:48:05 UTC FreeBSD src repository Removed files: (Branch: INTEL) sys/contrib/dev/acpica/Subsystem/Common cmalloc.c cmclib.c cmcopy.c cmdebug.c cmdelete.c cmeval.c cmglobal.c cminit.c cmobject.c cmutils.c cmxface.c sys/contrib/dev/acpica/Subsystem/Debugger dbcmds.c dbdisasm.c dbdisply.c dbexec.c dbfileio.c dbhistry.c dbinput.c dbstats.c dbutils.c dbxface.c sys/contrib/dev/acpica/Subsystem/Dispatcher dsfield.c dsmethod.c dsmthdat.c dsobject.c dsopcode.c dsutils.c dswexec.c dswload.c dswscope.c dswstate.c sys/contrib/dev/acpica/Subsystem/Events evevent.c evmisc.c evregion.c evrgnini.c evsci.c evxface.c evxfevnt.c evxfregn.c sys/contrib/dev/acpica/Subsystem/Hardware hwacpi.c hwcpu32.c hwgpe.c hwregs.c hwsleep.c hwtimer.c hwxface.c sys/contrib/dev/acpica/Subsystem/Include accommon.h acconfig.h acdebug.h acdispat.h acefi.h acenv.h acevents.h acexcep.h acfreebsd.h acgcc.h acglobal.h achware.h acinterp.h aclinux.h aclocal.h acmacros.h acmsvc.h acnamesp.h acobject.h acoutput.h acparser.h acpi.h acpiosxf.h acpixf.h acresrc.h actables.h actbl.h actbl1.h actbl2.h actbl32.h actbl64.h actbl71.h actypes.h acwin.h amlcode.h sys/contrib/dev/acpica/Subsystem/Interpreter amconfig.c amconvrt.c amcreate.c amdump.c amdyadic.c amfield.c amfldio.c ammisc.c ammonad.c amnames.c amprep.c amregion.c amresnte.c amresolv.c amresop.c amstore.c amstoren.c amstorob.c amsystem.c amutils.c amxface.c sys/contrib/dev/acpica/Subsystem/Namespace nsaccess.c nsalloc.c nsdump.c nseval.c nsinit.c nsload.c nsnames.c nsobject.c nssearch.c nsutils.c nswalk.c nsxfname.c nsxfobj.c sys/contrib/dev/acpica/Subsystem/Parser psargs.c psfind.c psopcode.c psparse.c psscope.c pstree.c psutils.c pswalk.c psxface.c sys/contrib/dev/acpica/Subsystem/Resources rsaddr.c rscalc.c rscreate.c rsdump.c rsio.c rsirq.c rslist.c rsmemory.c rsmisc.c rsutils.c rsxface.c sys/contrib/dev/acpica/Subsystem/Tables tbconvrt.c tbget.c tbinstal.c tbutils.c tbxface.c tbxfroot.c Log: Remove old ACPICA files from the INTEL vendor branch. They were removed from HEAD about 4 years ago when we started flattening out the ACPICA distribution. Revision Changes Path 1.1.1.6 +0 -799 src/sys/contrib/dev/acpica/Subsystem/Common/cmalloc.c (dead) 1.1.1.5 +0 -953 src/sys/contrib/dev/acpica/Subsystem/Common/cmclib.c (dead) 1.1.1.7 +0 -840 src/sys/contrib/dev/acpica/Subsystem/Common/cmcopy.c (dead) 1.1.1.5 +0 -657 src/sys/contrib/dev/acpica/Subsystem/Common/cmdebug.c (dead) 1.1.1.6 +0 -806 src/sys/contrib/dev/acpica/Subsystem/Common/cmdelete.c (dead) 1.1.1.5 +0 -494 src/sys/contrib/dev/acpica/Subsystem/Common/cmeval.c (dead) 1.1.1.6 +0 -792 src/sys/contrib/dev/acpica/Subsystem/Common/cmglobal.c (dead) 1.1.1.6 +0 -359 src/sys/contrib/dev/acpica/Subsystem/Common/cminit.c (dead) 1.1.1.7 +0 -783 src/sys/contrib/dev/acpica/Subsystem/Common/cmobject.c (dead) 1.1.1.5 +0 -1181 src/sys/contrib/dev/acpica/Subsystem/Common/cmutils.c (dead) 1.1.1.7 +0 -537 src/sys/contrib/dev/acpica/Subsystem/Common/cmxface.c (dead) 1.1.1.6 +0 -1070 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbcmds.c (dead) 1.1.1.5 +0 -823 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbdisasm.c (dead) 1.1.1.6 +0 -931 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbdisply.c (dead) 1.1.1.6 +0 -487 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbexec.c (dead) 1.1.1.7 +0 -492 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbfileio.c (dead) 1.1.1.4 +0 -301 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbhistry.c (dead) 1.1.1.6 +0 -989 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbinput.c (dead) 1.1.1.5 +0 -548 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbstats.c (dead) 1.1.1.5 +0 -465 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbutils.c (dead) 1.1.1.5 +0 -432 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbxface.c (dead) 1.1.1.4 +0 -546 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsfield.c (dead) 1.1.1.5 +0 -645 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsmethod.c (dead) 1.1.1.5 +0 -897 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsmthdat.c (dead) 1.1.1.7 +0 -816 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsobject.c (dead) 1.1.1.7 +0 -1089 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsopcode.c (dead) 1.1.1.6 +0 -948 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsutils.c (dead) 1.1.1.6 +0 -829 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswexec.c (dead) 1.1.1.5 +0 -929 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswload.c (dead) 1.1.1.5 +0 -268 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswscope.c (dead) 1.1.1.6 +0 -1149 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswstate.c (dead) 1.1.1.7 +0 -954 src/sys/contrib/dev/acpica/Subsystem/Events/evevent.c (dead) 1.1.1.6 +0 -486 src/sys/contrib/dev/acpica/Subsystem/Events/evmisc.c (dead) 1.1.1.7 +0 -778 src/sys/contrib/dev/acpica/Subsystem/Events/evregion.c (dead) 1.1.1.6 +0 -557 src/sys/contrib/dev/acpica/Subsystem/Events/evrgnini.c (dead) 1.1.1.5 +0 -436 src/sys/contrib/dev/acpica/Subsystem/Events/evsci.c (dead) 1.1.1.6 +0 -769 src/sys/contrib/dev/acpica/Subsystem/Events/evxface.c (dead) 1.1.1.5 +0 -624 src/sys/contrib/dev/acpica/Subsystem/Events/evxfevnt.c (dead) 1.1.1.5 +0 -515 src/sys/contrib/dev/acpica/Subsystem/Events/evxfregn.c (dead) 1.1.1.6 +0 -446 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwacpi.c (dead) 1.1.1.4 +0 -837 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwcpu32.c (dead) 1.1.1.5 +0 -301 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwgpe.c (dead) 1.1.1.6 +0 -1140 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwregs.c (dead) 1.1.1.3 +0 -295 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwsleep.c (dead) 1.1.1.3 +0 -307 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwtimer.c (dead) 1.1.1.4 +0 -737 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwxface.c (dead) 1.1.1.7 +0 -818 src/sys/contrib/dev/acpica/Subsystem/Include/accommon.h (dead) 1.1.1.6 +0 -244 src/sys/contrib/dev/acpica/Subsystem/Include/acconfig.h (dead) 1.1.1.5 +0 -498 src/sys/contrib/dev/acpica/Subsystem/Include/acdebug.h (dead) 1.1.1.6 +0 -546 src/sys/contrib/dev/acpica/Subsystem/Include/acdispat.h (dead) 1.1.1.6 +0 -136 src/sys/contrib/dev/acpica/Subsystem/Include/acefi.h (dead) 1.1.1.5 +0 -379 src/sys/contrib/dev/acpica/Subsystem/Include/acenv.h (dead) 1.1.1.5 +0 -307 src/sys/contrib/dev/acpica/Subsystem/Include/acevents.h (dead) 1.1.1.5 +0 -318 src/sys/contrib/dev/acpica/Subsystem/Include/acexcep.h (dead) 1.1.1.5 +0 -134 src/sys/contrib/dev/acpica/Subsystem/Include/acfreebsd.h (dead) 1.1.1.6 +0 -239 src/sys/contrib/dev/acpica/Subsystem/Include/acgcc.h (dead) 1.1.1.5 +0 -392 src/sys/contrib/dev/acpica/Subsystem/Include/acglobal.h (dead) 1.1.1.5 +0 -241 src/sys/contrib/dev/acpica/Subsystem/Include/achware.h (dead) 1.1.1.7 +0 -704 src/sys/contrib/dev/acpica/Subsystem/Include/acinterp.h (dead) 1.1.1.6 +0 -147 src/sys/contrib/dev/acpica/Subsystem/Include/aclinux.h (dead) 1.1.1.7 +0 -1017 src/sys/contrib/dev/acpica/Subsystem/Include/aclocal.h (dead) 1.1.1.5 +0 -592 src/sys/contrib/dev/acpica/Subsystem/Include/acmacros.h (dead) 1.1.1.5 +0 -132 src/sys/contrib/dev/acpica/Subsystem/Include/acmsvc.h (dead) 1.1.1.6 +0 -521 src/sys/contrib/dev/acpica/Subsystem/Include/acnamesp.h (dead) 1.1.1.5 +0 -513 src/sys/contrib/dev/acpica/Subsystem/Include/acobject.h (dead) 1.1.1.5 +0 -219 src/sys/contrib/dev/acpica/Subsystem/Include/acoutput.h (dead) 1.1.1.4 +0 -437 src/sys/contrib/dev/acpica/Subsystem/Include/acparser.h (dead) 1.1.1.4 +0 -141 src/sys/contrib/dev/acpica/Subsystem/Include/acpi.h (dead) 1.1.1.5 +0 -422 src/sys/contrib/dev/acpica/Subsystem/Include/acpiosxf.h (dead) 1.1.1.5 +0 -413 src/sys/contrib/dev/acpica/Subsystem/Include/acpixf.h (dead) 1.1.1.4 +0 -396 src/sys/contrib/dev/acpica/Subsystem/Include/acresrc.h (dead) 1.1.1.5 +0 -276 src/sys/contrib/dev/acpica/Subsystem/Include/actables.h (dead) 1.1.1.5 +0 -308 src/sys/contrib/dev/acpica/Subsystem/Include/actbl.h (dead) 1.1.1.4 +0 -214 src/sys/contrib/dev/acpica/Subsystem/Include/actbl1.h (dead) 1.1.1.4 +0 -280 src/sys/contrib/dev/acpica/Subsystem/Include/actbl2.h (dead) 1.1.1.2 +0 -206 src/sys/contrib/dev/acpica/Subsystem/Include/actbl32.h (dead) 1.1.1.2 +0 -206 src/sys/contrib/dev/acpica/Subsystem/Include/actbl64.h (dead) 1.1.1.4 +0 -235 src/sys/contrib/dev/acpica/Subsystem/Include/actbl71.h (dead) 1.1.1.7 +0 -1140 src/sys/contrib/dev/acpica/Subsystem/Include/actypes.h (dead) 1.1.1.4 +0 -190 src/sys/contrib/dev/acpica/Subsystem/Include/acwin.h (dead) 1.1.1.5 +0 -510 src/sys/contrib/dev/acpica/Subsystem/Include/amlcode.h (dead) 1.1.1.6 +0 -435 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amconfig.c (dead) 1.1.1.2 +0 -653 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amconvrt.c (dead) 1.1.1.6 +0 -882 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amcreate.c (dead) 1.1.1.5 +0 -984 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amdump.c (dead) 1.1.1.6 +0 -1048 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amdyadic.c (dead) 1.1.1.5 +0 -447 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amfield.c (dead) 1.1.1.7 +0 -861 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c (dead) 1.1.1.5 +0 -682 src/sys/contrib/dev/acpica/Subsystem/Interpreter/ammisc.c (dead) 1.1.1.6 +0 -1212 src/sys/contrib/dev/acpica/Subsystem/Interpreter/ammonad.c (dead) 1.1.1.4 +0 -551 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amnames.c (dead) 1.1.1.6 +0 -596 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amprep.c (dead) 1.1.1.6 +0 -561 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amregion.c (dead) 1.1.1.6 +0 -697 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amresnte.c (dead) 1.1.1.6 +0 -633 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amresolv.c (dead) 1.1.1.5 +0 -670 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amresop.c (dead) 1.1.1.6 +0 -764 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amstore.c (dead) 1.1.1.6 +0 -376 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amstoren.c (dead) 1.1.1.7 +0 -596 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amstorob.c (dead) 1.1.1.4 +0 -463 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amsystem.c (dead) 1.1.1.7 +0 -496 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amutils.c (dead) 1.1.1.4 +0 -190 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amxface.c (dead) 1.1.1.6 +0 -742 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsaccess.c (dead) 1.1.1.6 +0 -728 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsalloc.c (dead) 1.1.1.6 +0 -679 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsdump.c (dead) 1.1.1.5 +0 -663 src/sys/contrib/dev/acpica/Subsystem/Namespace/nseval.c (dead) 1.1.1.7 +0 -455 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsinit.c (dead) 1.1.1.6 +0 -706 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsload.c (dead) 1.1.1.6 +0 -367 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsnames.c (dead) 1.1.1.5 +0 -523 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsobject.c (dead) 1.1.1.6 +0 -525 src/sys/contrib/dev/acpica/Subsystem/Namespace/nssearch.c (dead) 1.1.1.6 +0 -1048 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsutils.c (dead) 1.1.1.4 +0 -384 src/sys/contrib/dev/acpica/Subsystem/Namespace/nswalk.c (dead) 1.1.1.6 +0 -409 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsxfname.c (dead) 1.1.1.7 +0 -852 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsxfobj.c (dead) 1.1.1.5 +0 -890 src/sys/contrib/dev/acpica/Subsystem/Parser/psargs.c (dead) 1.1.1.6 +0 -460 src/sys/contrib/dev/acpica/Subsystem/Parser/psfind.c (dead) 1.1.1.5 +0 -753 src/sys/contrib/dev/acpica/Subsystem/Parser/psopcode.c (dead) 1.1.1.6 +0 -1458 src/sys/contrib/dev/acpica/Subsystem/Parser/psparse.c (dead) 1.1.1.5 +0 -375 src/sys/contrib/dev/acpica/Subsystem/Parser/psscope.c (dead) 1.1.1.5 +0 -399 src/sys/contrib/dev/acpica/Subsystem/Parser/pstree.c (dead) 1.1.1.4 +0 -683 src/sys/contrib/dev/acpica/Subsystem/Parser/psutils.c (dead) 1.1.1.5 +0 -387 src/sys/contrib/dev/acpica/Subsystem/Parser/pswalk.c (dead) 1.1.1.4 +0 -276 src/sys/contrib/dev/acpica/Subsystem/Parser/psxface.c (dead) 1.1.1.5 +0 -923 src/sys/contrib/dev/acpica/Subsystem/Resources/rsaddr.c (dead) 1.1.1.7 +0 -1003 src/sys/contrib/dev/acpica/Subsystem/Resources/rscalc.c (dead) 1.1.1.7 +0 -585 src/sys/contrib/dev/acpica/Subsystem/Resources/rscreate.c (dead) 1.1.1.7 +0 -1045 src/sys/contrib/dev/acpica/Subsystem/Resources/rsdump.c (dead) 1.1.1.5 +0 -637 src/sys/contrib/dev/acpica/Subsystem/Resources/rsio.c (dead) 1.1.1.5 +0 -684 src/sys/contrib/dev/acpica/Subsystem/Resources/rsirq.c (dead) 1.1.1.5 +0 -605 src/sys/contrib/dev/acpica/Subsystem/Resources/rslist.c (dead) 1.1.1.5 +0 -661 src/sys/contrib/dev/acpica/Subsystem/Resources/rsmemory.c (dead) 1.1.1.5 +0 -726 src/sys/contrib/dev/acpica/Subsystem/Resources/rsmisc.c (dead) 1.1.1.4 +0 -511 src/sys/contrib/dev/acpica/Subsystem/Resources/rsutils.c (dead) 1.1.1.4 +0 -326 src/sys/contrib/dev/acpica/Subsystem/Resources/rsxface.c (dead) 1.1.1.5 +0 -666 src/sys/contrib/dev/acpica/Subsystem/Tables/tbconvrt.c (dead) 1.1.1.6 +0 -780 src/sys/contrib/dev/acpica/Subsystem/Tables/tbget.c (dead) 1.1.1.6 +0 -678 src/sys/contrib/dev/acpica/Subsystem/Tables/tbinstal.c (dead) 1.1.1.6 +0 -486 src/sys/contrib/dev/acpica/Subsystem/Tables/tbutils.c (dead) 1.1.1.5 +0 -514 src/sys/contrib/dev/acpica/Subsystem/Tables/tbxface.c (dead) 1.1.1.5 +0 -320 src/sys/contrib/dev/acpica/Subsystem/Tables/tbxfroot.c (dead) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 20:49:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E341C16A41F; Thu, 27 Oct 2005 20:49:01 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BC9543D4C; Thu, 27 Oct 2005 20:49:00 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RKmuaH036936; Thu, 27 Oct 2005 23:48:56 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 85740-02-2; Thu, 27 Oct 2005 23:48:55 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RKmEVS036910 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 27 Oct 2005 23:48:14 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9RKmGrC020206; Thu, 27 Oct 2005 23:48:16 +0300 (EEST) (envelope-from ru) Date: Thu, 27 Oct 2005 23:48:16 +0300 From: Ruslan Ermilov To: Dag-Erling Sm?rgrav Message-ID: <20051027204816.GX68470@ip.net.ua> References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <864q723dqt.fsf@xps.des.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="JjNtGRvLZqzR8wa5" Content-Disposition: inline In-Reply-To: <864q723dqt.fsf@xps.des.no> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@FreeBSD.org, "Bjoern A. Zeeb" , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.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, 27 Oct 2005 20:49:02 -0000 --JjNtGRvLZqzR8wa5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 10:29:30PM +0200, Dag-Erling Sm?rgrav wrote: > Ruslan Ermilov writes: > > On Thu, Oct 27, 2005 at 05:15:28PM +0000, Bjoern A. Zeeb wrote: > > > On Thu, 27 Oct 2005, Ruslan Ermilov wrote: > > > > Log: > > > > Installing debug modules was a bad idea -- I bogusly assumed that > > > > our kernel linker will only load PT_LOAD segments, apparently not. > > > > Instead, produce .dbg objects from .debug objects, and install > > > > them together with non-debug objects, as described in objcopy(1). > > > is that because of this change? > > Yes. I sent a patch for kldxref(8) that fixes this for review to > > amd64@. These messages are harmless otherwise. >=20 > Wouldn't it be cleaner (and potentially simpler) to fix this by making > the kernel linker skip non-PT_LOAD sections? >=20 > (I just peeked at sys/kern/link_elf.c and it looks to me like it > *already* DTRT, so what exactly is the problem?) >=20 sys/kern/link_elf_obj.c is what's used with current format module objects on amd64. Can you see a problem there? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --JjNtGRvLZqzR8wa5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYT0QqRfpzJluFF4RAp8AAKCJw+W1nlh3KVnnJI6riN6KGH4nNQCeM+E3 pKYI6fNEUti/EcbxxDTGTSc= =FuJE -----END PGP SIGNATURE----- --JjNtGRvLZqzR8wa5-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 20:55:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3097516A41F; Thu, 27 Oct 2005 20:55:30 +0000 (GMT) (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 E0F0543D45; Thu, 27 Oct 2005 20:55:29 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RKtTdv034813; Thu, 27 Oct 2005 20:55:29 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RKtTxw034812; Thu, 27 Oct 2005 20:55:29 GMT (envelope-from kensmith) Message-Id: <200510272055.j9RKtTxw034812@repoman.freebsd.org> From: Ken Smith Date: Thu, 27 Oct 2005 20:55: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/dev/uart uart_bus_ebus.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 20:55:30 -0000 kensmith 2005-10-27 20:55:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/uart uart_bus_ebus.c Log: Temporary hack to get the hme network interface on Sun E250 servers to work. The code comment describes the issue, basically an as yet not totally understood interrupt routing problem. This hack is being done to RELENG_6 so that the hme interface works on E250's for the release, but is not being done in HEAD so more work on the interrupt routing issue can be done. Requested by: marius Approved by: re (scottl) Revision Changes Path 1.6.2.1 +15 -0 src/sys/dev/uart/uart_bus_ebus.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 20:58:07 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA66B16A41F for ; Thu, 27 Oct 2005 20:58:07 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B3C543D46 for ; Thu, 27 Oct 2005 20:58:06 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru (8.13.0/vak/3.0) id j9RKkUYB011368 for cvs-all@freebsd.org.checked; Fri, 28 Oct 2005 00:46:30 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (localhost.cronyx.ru [127.0.0.1]) by hanoi.cronyx.ru (8.13.0/vak/3.0) with ESMTP id j9RKiqJo011329; Fri, 28 Oct 2005 00:44:53 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <43613A16.70206@cronyx.ru> Date: Fri, 28 Oct 2005 00:35:34 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru-RU; rv:1.2.1) Gecko/20030426 X-Accept-Language: ru-ru, en MIME-Version: 1.0 To: obrien@freebsd.org References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> <435E04AA.3080605@cronyx.ru> <20051026172734.GA99901@dragon.NUXI.org> <435FE099.6060508@cronyx.ru> <20051026224712.GA16118@dragon.NUXI.org> In-Reply-To: <20051026224712.GA16118@dragon.NUXI.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/sys/dev/cp if_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: Thu, 27 Oct 2005 20:58:07 -0000 Hi, David O'Brien: >On Thu, Oct 27, 2005 at 12:01:29AM +0400, Roman Kurakin wrote: > > >>David O'Brien: >> >> >>>On Tue, Oct 25, 2005 at 02:10:50PM +0400, Roman Kurakin wrote: >>> >>> >>>>The commit log didn't state what was the problem variable forward >>>>declaration or/and function >>>>forward declaration. >>>> >>>> >>>Since you became a committer 2003/12/18, I guess you haven't been part of >>>FreeBSD when we've worked on a GCC compiler upgrade. We make these type >>>of changes to make a new version of GCC build FreeBSD. The other choice >>>is to disconnect these drivers from the build. The commits done where >>>typical of what's been done for the past decade. >>> >>> >>> >>Please provide detailed technical information what is wrong in my >>change of your commit. >> >> > >Instead of arguing this with you as it is probably fruitless. >If you're going to pull the "maintainer" card, then please have these >drivers moved to src/sys/contrib and note them in src/MAINTAINERS. That >way this isn't a landmine for other committers to step on. > I do not want to buffer development proccess since I cant guarantee quick response at any random time. From my point of view for most of commits there is enough post-commit review. Since all (most) changes go through current I have enough time to fix them in case of wrong (from my point of view) change. >>I do not want to list them in src/MAINTAINERS cause I think it is >>better to allow any commits. >>Cases such this one is rare. >> >> > >Rare or not, they can occur so why not take easy steps to avoid strife? > If you insist I could add myself to MAINTAINERS with post-commit review just to inform that I am exist. But I doubt that this will close all rare cases. rik From owner-cvs-all@FreeBSD.ORG Thu Oct 27 20:58:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3905F16A41F; Thu, 27 Oct 2005 20:58:51 +0000 (GMT) (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 BD24143D48; Thu, 27 Oct 2005 20:58:50 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RKwoZm034995; Thu, 27 Oct 2005 20:58:50 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RKwoHS034994; Thu, 27 Oct 2005 20:58:50 GMT (envelope-from kensmith) Message-Id: <200510272058.j9RKwoHS034994@repoman.freebsd.org> From: Ken Smith Date: Thu, 27 Oct 2005 20:58:50 +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/sys/dev/uart uart_bus_ebus.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 20:58:51 -0000 kensmith 2005-10-27 20:58:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/uart uart_bus_ebus.c Log: MFC of Rev. 1.6.2.1: > Temporary hack to get the hme network interface on Sun E250 servers to > work. The code comment describes the issue, basically an as yet not > totally understood interrupt routing problem. This hack is being done > to RELENG_6 so that the hme interface works on E250's for the release, > but is not being done in HEAD so more work on the interrupt routing > issue can be done. > > Requested by: marius Approved by: re (scottl) Revision Changes Path 1.6.4.1 +15 -0 src/sys/dev/uart/uart_bus_ebus.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 21:08:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D20516A41F; Thu, 27 Oct 2005 21:08:13 +0000 (GMT) (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 4AACB43D48; Thu, 27 Oct 2005 21:08:13 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RL8DS9035361; Thu, 27 Oct 2005 21:08:13 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RL8DCO035360; Thu, 27 Oct 2005 21:08:13 GMT (envelope-from jhb) Message-Id: <200510272108.j9RL8DCO035360@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 21:08: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/dev/en midway.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 21:08:13 -0000 jhb 2005-10-27 21:08:12 UTC FreeBSD src repository Modified files: sys/dev/en midway.c Log: Drop the driver lock around atm_input() analogous to all the ethernet drivers dropping the driver lock around ether_input(). Silence by: harti Revision Changes Path 1.67 +2 -0 src/sys/dev/en/midway.c From owner-cvs-all@FreeBSD.ORG Thu Oct 27 21:10:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0692C16A41F; Thu, 27 Oct 2005 21:10:30 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6164E43D46; Thu, 27 Oct 2005 21:10:29 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RLASAj037583; Fri, 28 Oct 2005 00:10:28 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 85927-03-4; Fri, 28 Oct 2005 00:10:26 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RL8aCp037492 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 28 Oct 2005 00:08:37 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9RL8c1E049178; Fri, 28 Oct 2005 00:08:38 +0300 (EEST) (envelope-from ru) Date: Fri, 28 Oct 2005 00:08:38 +0300 From: Ruslan Ermilov To: Pawel Jakub Dawidek Message-ID: <20051027210838.GZ68470@ip.net.ua> References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <20051027204234.GA3596@garage.freebsd.pl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="MziYxCZO8WOaTd4I" Content-Disposition: inline In-Reply-To: <20051027204234.GA3596@garage.freebsd.pl> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@FreeBSD.ORG, "Bjoern A. Zeeb" , src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.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, 27 Oct 2005 21:10:30 -0000 --MziYxCZO8WOaTd4I Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 10:42:34PM +0200, Pawel Jakub Dawidek wrote: > On Thu, Oct 27, 2005 at 08:40:42PM +0300, Ruslan Ermilov wrote: > +> On Thu, Oct 27, 2005 at 05:15:28PM +0000, Bjoern A. Zeeb wrote: > +> > On Thu, 27 Oct 2005, Ruslan Ermilov wrote: > +> >=20 > +> > > ru 2005-10-27 14:24:46 UTC > +> > > > +> > > FreeBSD src repository > +> > > > +> > > Modified files: > +> > > sys/conf kern.post.mk kmod.mk > +> > > Log: > +> > > Installing debug modules was a bad idea -- I bogusly assumed that > +> > > our kernel linker will only load PT_LOAD segments, apparently no= t. > +> > > Instead, produce .dbg objects from .debug objects, and install > +> > > them together with non-debug objects, as described in objcopy(1). > +> >=20 > +> > is that because of this change? > +> >=20 > +> Yes. I sent a patch for kldxref(8) that fixes this for review to > +> amd64@. These messages are harmless otherwise. >=20 > I'm seeing simlar thing when I built HEAD kernel on 6.x FreeBSD and > tried to install it (i386 machine): >=20 > kldxref /diskless/lcf/boot/kernel > kldxref: file isn't dynamically-linked > kldxref: file isn't dynamically-linked > kldxref: file isn't dynamically-linked > [...] >=20 This is harmless as well, and the following patch is under a peer review now: %%% Index: ef.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/usr.sbin/kldxref/ef.c,v retrieving revision 1.8 diff -u -p -r1.8 ef.c --- ef.c 28 Aug 2004 19:31:10 -0000 1.8 +++ ef.c 27 Oct 2005 18:41:44 -0000 @@ -602,7 +602,8 @@ ef_open(const char *filename, struct elf printf("\n"); ef->ef_nsegs =3D nsegs; if (phdyn =3D=3D NULL) { - warnx("file isn't dynamically-linked"); + if (verbose) + warnx("file isn't dynamically-linked"); break; } if (ef_read_entry(ef, phdyn->p_offset, %%% Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --MziYxCZO8WOaTd4I Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYUHWqRfpzJluFF4RAjyMAJ0XCF39OwM8mb9cK34MSQU5QAtdGACdHzPZ piGCmlKscfiVrL15fa3hSIM= =LHOw -----END PGP SIGNATURE----- --MziYxCZO8WOaTd4I-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 21:13:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 013C516A420 for ; Thu, 27 Oct 2005 21:13:42 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1155943D45 for ; Thu, 27 Oct 2005 21:13:40 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru (8.13.0/vak/3.0) id j9RLAUOT012801 for cvs-all@FreeBSD.org.checked; Fri, 28 Oct 2005 01:10:30 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (localhost.cronyx.ru [127.0.0.1]) by hanoi.cronyx.ru (8.13.0/vak/3.0) with ESMTP id j9RL8dX4012776; Fri, 28 Oct 2005 01:08:40 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <43613FA9.8000005@cronyx.ru> Date: Fri, 28 Oct 2005 00:59:21 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru-RU; rv:1.2.1) Gecko/20030426 X-Accept-Language: ru-ru, en MIME-Version: 1.0 To: obrien@FreeBSD.org References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <20051027074053.GA24024@dragon.NUXI.org> In-Reply-To: <20051027074053.GA24024@dragon.NUXI.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Roman Kurakin , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cp if_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: Thu, 27 Oct 2005 21:13:42 -0000 David O'Brien: >On Mon, Oct 24, 2005 at 12:24:23AM -0700, David O'Brien wrote: > > >>On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: >> >> >>>rik 2005-09-27 16:57:45 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> sys/dev/cp if_cp.c >>> Log: >>> Restore if_cp.c 1.27 >>> ---------------------------- >>> revision 1.27 >>> date: 2005/09/19 03:10:16; author: imp; state: Exp; lines: +3 -2 >>> Make sure that we call if_free(ifp) after bus_teardown_intr. Since we >>> could get an interrupt after we free the ifp, and the interrupt >>> handler depended on the ifp being still alive, this could, in theory, >>> cause a crash. Eliminate this possibility by moving the if_free to >>> after the bus_teardown_intr() call. >>> >>> In fact, this change do nothing for this driver. It is protected from >>> this by cp_destroy variable. This variable also protects driver from >>> initiation of any activity from network stack with disabled intr >>> handler with this change applied. >>> >>> >>You should not have backed out my commit without discussing it with me >>and understanding the reason for the change. >>Do it again and I *will* be taking it Core. >> >> > >rik, I'm sorry this reads as such an aggressive email. I thought we were in a discussion about the reason of my commit and was surprised to see your commit happened in the middle of what I thought was an on-going thread. > > I do not argue about why you do not ask me before commiting, I've just asked to not commit changes with big diffs and wonder if my view of change is ok and if not why. Your commit was done without asking me cause I am not listed in Mantainers, I've commited my view of your fix after about a week of silence from you. So I guess there was now misbehaviour in each other action. This is social part of question. And I hope it is closed. But the technical (from my point of view) is not clean. I still do not have an answer if there is a problem in my commit that affects some systems and how many of them. Could this problem be reproduced with code from CVS (at some interval) or it could be seen only in some special case. I faild to find the list of bugs for all version of gcc. Best regards, Roman Kurakin From owner-cvs-all@FreeBSD.ORG Thu Oct 27 21:16:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CD0816A41F; Thu, 27 Oct 2005 21:16:17 +0000 (GMT) (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 5F9F143D46; Thu, 27 Oct 2005 21:16:17 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RLGHTU035756; Thu, 27 Oct 2005 21:16:17 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RLGHdW035755; Thu, 27 Oct 2005 21:16:17 GMT (envelope-from jhb) Message-Id: <200510272116.j9RLGHdW035755@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 21:16: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/txp if_txp.c if_txpreg.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, 27 Oct 2005 21:16:17 -0000 jhb 2005-10-27 21:16:17 UTC FreeBSD src repository Modified files: sys/dev/txp if_txp.c if_txpreg.h Log: - Add locking and mark MPSAFE. The driver had a mutex in the softc and even initialized it, but it never used it. - Use callout_*() to manage the callout. - Use m_devget() to copy data out of the rx buffers rather than doing it all by hand. - Use m_getcl() to allocate mbuf clusters rather than doing it all by hand. - Don't free the software descriptor for a rx ring entry if we can't allocate an mbuf cluster for it. We left a dangling pointer and never reallocated the entry anyway. OpenBSD's code (from which this was derived) has the same bug. Tested by: NO ONE (despite repeated requests) Reviewed by: wpaul (5) Revision Changes Path 1.37 +81 -61 src/sys/dev/txp/if_txp.c 1.6 +5 -1 src/sys/dev/txp/if_txpreg.h From owner-cvs-all@FreeBSD.ORG Thu Oct 27 21:18:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 085D216A41F; Thu, 27 Oct 2005 21:18:38 +0000 (GMT) (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 AE26843D48; Thu, 27 Oct 2005 21:18:37 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RLIbpg035885; Thu, 27 Oct 2005 21:18:37 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RLIbv0035884; Thu, 27 Oct 2005 21:18:37 GMT (envelope-from jhb) Message-Id: <200510272118.j9RLIbv0035884@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 21: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/sys/pci if_vr.c if_vrreg.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, 27 Oct 2005 21:18:38 -0000 jhb 2005-10-27 21:18:37 UTC FreeBSD src repository Modified files: sys/pci if_vr.c if_vrreg.h Log: - Use if_printf() and device_printf() and remove vr_unit from the softc. I had to initialize the ifnet a bit earlier in attach so that the if_printf()'s in vr_reset() didn't explode with a page fault. - Use M_ZERO with contigmalloc() rather than an explicit bzero. Revision Changes Path 1.112 +44 -52 src/sys/pci/if_vr.c 1.23 +0 -1 src/sys/pci/if_vrreg.h From owner-cvs-all@FreeBSD.ORG Thu Oct 27 21:20:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.ORG Delivered-To: cvs-all@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5AA816A41F; Thu, 27 Oct 2005 21:20:44 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E2DA43D48; Thu, 27 Oct 2005 21:20:43 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RLKfhx037887; Fri, 28 Oct 2005 00:20:41 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 85926-05; Fri, 28 Oct 2005 00:20:39 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RLGnFP037784 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 28 Oct 2005 00:16:49 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9RLGpEH076230; Fri, 28 Oct 2005 00:16:51 +0300 (EEST) (envelope-from ru) Date: Fri, 28 Oct 2005 00:16:51 +0300 From: Ruslan Ermilov To: Dag-Erling Sm?rgrav Message-ID: <20051027211651.GA55369@ip.net.ua> References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <864q723dqt.fsf@xps.des.no> <86zmou1ykb.fsf@xps.des.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline In-Reply-To: <86zmou1ykb.fsf@xps.des.no> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@FreeBSD.ORG, "Bjoern A. Zeeb" , src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.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, 27 Oct 2005 21:20:45 -0000 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 10:42:44PM +0200, Dag-Erling Sm?rgrav wrote: > Now I'm even more confused - I just built and installed a kernel using > yesterday's sources (kern.post.mk 1.86, kmod.mk 1.197); the modules > that were installed have debugging symbols, and work flawlessly, which > contradicts your commit logs. >=20 > What problem are you trying to solve? >=20 On amd64, different format module objects are used. When loading modules with debugging, they consume much more space than non-debug versions: hammer# pwd /usr/src/sys/modules/if_tun hammer# make DEBUG_FLAGS=3D-g -s hammer# kldload ./if_tun.ko hammer# kldstat |grep if_tun 14 1 0xffffffffa7b76000 1f6d if_tun.ko hammer# kldunload if_tun.ko hammer# kldload ./if_tun.ko.debug hammer# kldstat | grep if_tun 14 1 0xffffffffa7beb000 ad77 if_tun.ko.debug Note the difference in the 4th field. Also, such modules have currently unsupported relocation type, R_X86_64_32, which is easy to fix if needs be. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYUPDqRfpzJluFF4RAgRrAKCT0Tphbr7dVh5UbPaO3K8NhLtlNACePndX irixEnoxF83abhy0/xMUMVI= =Mzup -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 21:23:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E00A16A41F; Thu, 27 Oct 2005 21:23:01 +0000 (GMT) (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 4501743D69; Thu, 27 Oct 2005 21:22:59 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RLMwAe036129; Thu, 27 Oct 2005 21:22:58 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RLMwWK036128; Thu, 27 Oct 2005 21:22:58 GMT (envelope-from jhb) Message-Id: <200510272122.j9RLMwWK036128@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 21:22: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/pci if_wb.c if_wbreg.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, 27 Oct 2005 21:23:01 -0000 jhb 2005-10-27 21:22:58 UTC FreeBSD src repository Modified files: sys/pci if_wb.c if_wbreg.h Log: Fixup locking and mark MPSAFE. - Add locked variants of init() and start(). - Use callout_*() to manage callout. - Test IFF_DRV_RUNNING rather than IFF_UP in wb_intr() to see if we are still active when an interrupt comes in. I couldn't find any of these cards anywhere to test on myself, and google turns up references to FreeBSD and OpenBSD manpages for this driver when trying to locate a card that way. I'm not sure anyone actually uses these cards with FreeBSD. Tested by: NO ONE (despite repeated requests) Revision Changes Path 1.87 +60 -43 src/sys/pci/if_wb.c 1.14 +1 -1 src/sys/pci/if_wbreg.h From owner-cvs-all@FreeBSD.ORG Thu Oct 27 21:30:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DB9616A41F; Thu, 27 Oct 2005 21:30:21 +0000 (GMT) (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 585F643D67; Thu, 27 Oct 2005 21:30:18 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RLUIeY036463; Thu, 27 Oct 2005 21:30:18 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RLUILS036462; Thu, 27 Oct 2005 21:30:18 GMT (envelope-from jhb) Message-Id: <200510272130.j9RLUILS036462@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 21:30: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: www/en/projects/busdma 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, 27 Oct 2005 21:30:21 -0000 jhb 2005-10-27 21:30:17 UTC FreeBSD doc repository Modified files: en/projects/busdma index.sgml Log: - lge(4) locking needs testing. - txp(4), vr(4), and wb(4) are locked and MPSAFE. Revision Changes Path 1.114 +9 -9 www/en/projects/busdma/index.sgml From owner-cvs-all@FreeBSD.ORG Thu Oct 27 21:34:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A84E16A41F; Thu, 27 Oct 2005 21:34:19 +0000 (GMT) (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 E500243D46; Thu, 27 Oct 2005 21:34:18 +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 AD62E2083; Thu, 27 Oct 2005 23:34:10 +0200 (CEST) X-Spam-Tests: ALL_TRUSTED,AWL,BAYES_00 X-Spam-Learn: ham X-Spam-Score: -4.4/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on tim.des.no Received: from xps.des.no (des.no [80.203.228.37]) by tim.des.no (Postfix) with ESMTP id 314562082; Thu, 27 Oct 2005 23:34:10 +0200 (CEST) Received: by xps.des.no (Postfix, from userid 1001) id 1129433C1D; Thu, 27 Oct 2005 23:34:10 +0200 (CEST) To: Ruslan Ermilov References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <864q723dqt.fsf@xps.des.no> <20051027204816.GX68470@ip.net.ua> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Thu, 27 Oct 2005 23:34:10 +0200 In-Reply-To: <20051027204816.GX68470@ip.net.ua> (Ruslan Ermilov's message of "Thu, 27 Oct 2005 23:48:16 +0300") Message-ID: <86vezi1w6l.fsf@xps.des.no> User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Cc: cvs-src@FreeBSD.org, "Bjoern A. Zeeb" , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.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, 27 Oct 2005 21:34:19 -0000 --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Ruslan Ermilov writes: > sys/kern/link_elf_obj.c is what's used with current format module > objects on amd64. Can you see a problem there? Yes. AFAICT, it should select sections based on the presence of the SHF_ALLOC bit in sh_flags. See if the attached patch helps. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=link_elf_obj.diff Index: sys/kern/link_elf_obj.c =================================================================== RCS file: /home/ncvs/src/sys/kern/link_elf_obj.c,v retrieving revision 1.89 diff -u -r1.89 link_elf_obj.c --- sys/kern/link_elf_obj.c 28 Aug 2005 05:38:40 -0000 1.89 +++ sys/kern/link_elf_obj.c 27 Oct 2005 21:32:48 -0000 @@ -225,6 +225,8 @@ symtabindex = -1; symstrindex = -1; for (i = 0; i < hdr->e_shnum; i++) { + if (shdr[i].sh_flags & SHF_ALLOC == 0) + continue; switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: @@ -295,6 +297,8 @@ rl = 0; ra = 0; for (i = 0; i < hdr->e_shnum; i++) { + if (shdr[i].sh_flags & SHF_ALLOC == 0) + continue; switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: @@ -496,6 +500,8 @@ symtabindex = -1; symstrindex = -1; for (i = 0; i < hdr->e_shnum; i++) { + if (shdr[i].sh_flags & SHF_ALLOC == 0) + continue; switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: @@ -618,6 +624,8 @@ /* Size up code/data(progbits) and bss(nobits). */ alignmask = 0; for (i = 0; i < hdr->e_shnum; i++) { + if (shdr[i].sh_flags & SHF_ALLOC == 0) + continue; switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: @@ -671,6 +679,8 @@ ra = 0; alignmask = 0; for (i = 0; i < hdr->e_shnum; i++) { + if (shdr[i].sh_flags & SHF_ALLOC == 0) + continue; switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: --=-=-=-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 21:40:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9319B16A41F; Thu, 27 Oct 2005 21:40:14 +0000 (GMT) (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 3AFC843D49; Thu, 27 Oct 2005 21:40:14 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RLeECd036811; Thu, 27 Oct 2005 21:40:14 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RLeEU2036810; Thu, 27 Oct 2005 21:40:14 GMT (envelope-from ehaupt) Message-Id: <200510272140.j9RLeEU2036810@repoman.freebsd.org> From: Emanuel Haupt Date: Thu, 27 Oct 2005 21:40: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/ftp/lftp Makefile distinfo ports/ftp/lftp/files patch-src-lftp_rl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 21:40:14 -0000 ehaupt 2005-10-27 21:40:13 UTC FreeBSD ports repository Modified files: ftp/lftp Makefile distinfo Added files: ftp/lftp/files patch-src-lftp_rl.c Log: - Update to 3.3.3 and [1] - Fix build on 4.x with additional patch [2] PR: 88021 Submitted by: Dmitry A. Yanko (maintainer) [1], pav [2] Revision Changes Path 1.100 +8 -19 ports/ftp/lftp/Makefile 1.68 +4 -4 ports/ftp/lftp/distinfo 1.1 +13 -0 ports/ftp/lftp/files/patch-src-lftp_rl.c (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 21:47:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C13216A41F; Thu, 27 Oct 2005 21:47:12 +0000 (GMT) (envelope-from gsutter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F3F443D4C; Thu, 27 Oct 2005 21:47:11 +0000 (GMT) (envelope-from gsutter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RLlBAU037164; Thu, 27 Oct 2005 21:47:11 GMT (envelope-from gsutter@repoman.freebsd.org) Received: (from gsutter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RLlBV1037163; Thu, 27 Oct 2005 21:47:11 GMT (envelope-from gsutter) Message-Id: <200510272147.j9RLlBV1037163@repoman.freebsd.org> From: Gregory Sutter Date: Thu, 27 Oct 2005 21: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/www/mod_backhand 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, 27 Oct 2005 21:47:12 -0000 gsutter 2005-10-27 21:47:11 UTC FreeBSD ports repository Modified files: www/mod_backhand pkg-descr Log: Spelling and grammar fixes. Revision Changes Path 1.3 +3 -3 ports/www/mod_backhand/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Oct 27 21:57:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F57416A41F; Thu, 27 Oct 2005 21:57:51 +0000 (GMT) (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 BF69443D45; Thu, 27 Oct 2005 21:57:50 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RLvowV037663; Thu, 27 Oct 2005 21:57:50 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RLvoHD037662; Thu, 27 Oct 2005 21:57:50 GMT (envelope-from thierry) Message-Id: <200510272157.j9RLvoHD037662@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 27 Oct 2005 21:57: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/tidy-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: Thu, 27 Oct 2005 21:57:51 -0000 thierry 2005-10-27 21:57:50 UTC FreeBSD ports repository Modified files: www/tidy-devel Makefile distinfo Log: Update to 051026. Revision Changes Path 1.150 +1 -1 ports/www/tidy-devel/Makefile 1.132 +2 -2 ports/www/tidy-devel/distinfo From owner-cvs-all@FreeBSD.ORG Thu Oct 27 22:09:10 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39F0A16A41F; Thu, 27 Oct 2005 22:09:10 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55F5743D66; Thu, 27 Oct 2005 22:08:51 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RM7XsP039360; Fri, 28 Oct 2005 01:07:33 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 86472-04-2; Fri, 28 Oct 2005 01:07:30 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RM4ZJX039287 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 28 Oct 2005 01:04:35 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9RM4c7Z058431; Fri, 28 Oct 2005 01:04:38 +0300 (EEST) (envelope-from ru) Date: Fri, 28 Oct 2005 01:04:37 +0300 From: Ruslan Ermilov To: Dag-Erling Sm?rgrav Message-ID: <20051027220437.GA54382@ip.net.ua> References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <864q723dqt.fsf@xps.des.no> <20051027204816.GX68470@ip.net.ua> <86vezi1w6l.fsf@xps.des.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="C7zPtVaVf+AK4Oqc" Content-Disposition: inline In-Reply-To: <86vezi1w6l.fsf@xps.des.no> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@freebsd.org, "Bjoern A. Zeeb" , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.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, 27 Oct 2005 22:09:10 -0000 --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 11:34:10PM +0200, Dag-Erling Sm?rgrav wrote: > Ruslan Ermilov writes: > > sys/kern/link_elf_obj.c is what's used with current format module > > objects on amd64. Can you see a problem there? >=20 > Yes. AFAICT, it should select sections based on the presence of the > SHF_ALLOC bit in sh_flags. See if the attached patch helps. >=20 Fantastic. :-) I was just about to test the following patch: %%% Index: link_elf_obj.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/sys/kern/link_elf_obj.c,v retrieving revision 1.89 diff -u -p -r1.89 link_elf_obj.c --- link_elf_obj.c 28 Aug 2005 05:38:40 -0000 1.89 +++ link_elf_obj.c 27 Oct 2005 22:00:00 -0000 @@ -228,6 +228,8 @@ link_elf_link_preload(linker_class_t cls switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: + if (!(shdr[i].sh_flags & SHF_ALLOC)) + break; ef->nprogtab++; break; case SHT_SYMTAB: @@ -298,6 +300,8 @@ link_elf_link_preload(linker_class_t cls switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: + if (!(shdr[i].sh_flags & SHF_ALLOC)) + break; ef->progtab[pb].addr =3D (void *)shdr[i].sh_addr; if (shdr[i].sh_type =3D=3D SHT_PROGBITS) ef->progtab[pb].name =3D "<>"; @@ -499,6 +503,8 @@ link_elf_load_file(linker_class_t cls, c switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: + if (!(shdr[i].sh_flags & SHF_ALLOC)) + break; ef->nprogtab++; break; case SHT_SYMTAB: @@ -621,6 +627,8 @@ link_elf_load_file(linker_class_t cls, c switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: + if (!(shdr[i].sh_flags & SHF_ALLOC)) + break; alignmask =3D shdr[i].sh_addralign - 1; mapsize +=3D alignmask; mapsize &=3D ~alignmask; @@ -674,6 +682,8 @@ link_elf_load_file(linker_class_t cls, c switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: + if (!(shdr[i].sh_flags & SHF_ALLOC)) + break; alignmask =3D shdr[i].sh_addralign - 1; mapbase +=3D alignmask; mapbase &=3D ~alignmask; %%% Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYU71qRfpzJluFF4RAuPbAKCJPa7wUjR5G8u2dx9e7Tl+wyMx6QCfW1P7 f+kyBY+TVRZK7UKDrRQS/PA= =VG7j -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- From owner-cvs-all@FreeBSD.ORG Thu Oct 27 22:28:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D79C316A41F; Thu, 27 Oct 2005 22:28:14 +0000 (GMT) (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 A87D043D46; Thu, 27 Oct 2005 22:28:14 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RMSEs8039912; Thu, 27 Oct 2005 22:28:14 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RMSEPJ039911; Thu, 27 Oct 2005 22:28:14 GMT (envelope-from ehaupt) Message-Id: <200510272228.j9RMSEPJ039911@repoman.freebsd.org> From: Emanuel Haupt Date: Thu, 27 Oct 2005 22:28: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/net/cryptcat 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, 27 Oct 2005 22:28:15 -0000 ehaupt 2005-10-27 22:28:14 UTC FreeBSD ports repository Modified files: net/cryptcat Makefile distinfo Removed files: net/cryptcat pkg-plist Log: - Update to 20031202 - Update master site - Nuke pkg-plist - Cleanup [1] Unable to deliver to destination domain Failed to deliver to domain oven.org after 73 tries. CantConnectToHost PR: 87137 Submitted by: Gabor Kovesdan Approved by: maintainer timeout (19 days), maintainer address bounces since 4 days [1] Revision Changes Path 1.7 +9 -9 ports/net/cryptcat/Makefile 1.4 +2 -2 ports/net/cryptcat/distinfo 1.2 +0 -3 ports/net/cryptcat/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 23:20:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3878316A41F; Thu, 27 Oct 2005 23:20:54 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id D136043D48; Thu, 27 Oct 2005 23:20:53 +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.4/8.13.4) with ESMTP id j9RNVSx2059972 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 27 Oct 2005 19:31:29 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Thu, 27 Oct 2005 19:20:00 -0400 From: Tom Rhodes To: Max Laier Message-Id: <20051027192000.57e83aff.trhodes@FreeBSD.org> In-Reply-To: <200510261416.09346.max@love2party.net> References: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> <20051026093536.GF41520@cell.sick.ru> <20051026105820.X32255@fledge.watson.org> <200510261416.09346.max@love2party.net> X-Mailer: Sylpheed version 1.0.5 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: yar@FreeBSD.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, glebius@FreeBSD.org, rwatson@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: Thu, 27 Oct 2005 23:20:54 -0000 On Wed, 26 Oct 2005 14:15:47 +0200 Max Laier wrote: > On Wednesday 26 October 2005 11:58, Robert Watson wrote: > > On Wed, 26 Oct 2005, Gleb Smirnoff wrote: > > > On Wed, Oct 26, 2005 at 10:15:09AM +0100, Robert Watson wrote: > > > R> I think we may actually be in need of either a new flag, > > > R> IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable > > > way R> for protocols to ask if an interface is a loopback interface or > > > not. > > > > > > I'd prefer to rewrite those subsystems that use interface layer but > > > aren't actually interfaces. I have plans to do this for CARP. > > > > At least in the case of if_disc, this won't help. I'm not quite sure why > > if_disc is IFF_LOOPBACK. > > Sad answer seems to be: copy and paste. IFF_LOOPBACK is part of 1.1 which > also contains the following comment: > > /* > * Discard interface driver for protocol testing and timing. > * (Based on the loopback.) > */ > > So it might be a good idea to get rid of it and work from there. IIRC, someone told me or I read somewhere that if_disc is somewhat based on lo(4). There may be more sections where code is similar - rotted - over time. -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Thu Oct 27 23:41:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CC3F16A41F; Thu, 27 Oct 2005 23:41:26 +0000 (GMT) (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 CE08443D45; Thu, 27 Oct 2005 23:41:25 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RNfPR3042766; Thu, 27 Oct 2005 23:41:25 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RNfP56042765; Thu, 27 Oct 2005 23:41:25 GMT (envelope-from brooks) Message-Id: <200510272341.j9RNfP56042765@repoman.freebsd.org> From: Brooks Davis Date: Thu, 27 Oct 2005 23:41: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/net Makefile ports/net/openmpi Makefile distinfo pkg-descr pkg-plist ports/net/openmpi/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: Thu, 27 Oct 2005 23:41:26 -0000 brooks 2005-10-27 23:41:25 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/openmpi Makefile distinfo pkg-descr pkg-plist net/openmpi/files pkg-message.in Log: Add Open MPI 1.0rc4. From http://www.open-mpi.org/ Open MPI is a project combining technologies and resources from several other projects (FT-MPI, LA-MPI, LAM/MPI, and PACX-MPI) in order to build the best MPI library available. A completely new MPI-2 compliant implementation, Open MPI offers advantages for system and software vendors, application developers and computer science researchers. Revision Changes Path 1.1563 +1 -0 ports/net/Makefile 1.1 +65 -0 ports/net/openmpi/Makefile (new) 1.1 +2 -0 ports/net/openmpi/distinfo (new) 1.1 +7 -0 ports/net/openmpi/files/pkg-message.in (new) 1.1 +10 -0 ports/net/openmpi/pkg-descr (new) 1.1 +192 -0 ports/net/openmpi/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Oct 27 23:41:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D578F16A469; Thu, 27 Oct 2005 23:41:38 +0000 (GMT) (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 E027143D45; Thu, 27 Oct 2005 23:41:37 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RNfb3t042812; Thu, 27 Oct 2005 23:41:37 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RNfb2P042811; Thu, 27 Oct 2005 23:41:37 GMT (envelope-from brooks) Message-Id: <200510272341.j9RNfb2P042811@repoman.freebsd.org> From: Brooks Davis Date: Thu, 27 Oct 2005 23:41: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: Thu, 27 Oct 2005 23:41:39 -0000 brooks 2005-10-27 23:41:37 UTC FreeBSD ports repository Modified files: . modules Log: openmpi --> ports/net/openmpi Revision Changes Path 1.13478 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Oct 27 23:57:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCCF016A41F; Thu, 27 Oct 2005 23:57:55 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8827043D45; Thu, 27 Oct 2005 23:57:55 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RNvtvE043549; Thu, 27 Oct 2005 23:57:55 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RNvtlX043548; Thu, 27 Oct 2005 23:57:55 GMT (envelope-from rodrigc) Message-Id: <200510272357.j9RNvtlX043548@repoman.freebsd.org> From: Craig Rodrigues Date: Thu, 27 Oct 2005 23:57: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/contrib/gcc/config freebsd-spec.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, 27 Oct 2005 23:57:56 -0000 rodrigc 2005-10-27 23:57:55 UTC FreeBSD src repository Modified files: contrib/gcc/config freebsd-spec.h Log: Submitted following patch to FSF GCC: * freebsd-spec.h (FBSD_TARGET_OS_CPP_BUILTINS): Use builtin_define_with_int_value() instead of adding a new check for every new major FreeBSD version. Motivated by: simon Discussed with: obrien, kan Revision Changes Path 1.20 +2 -11 src/contrib/gcc/config/freebsd-spec.h From owner-cvs-all@FreeBSD.ORG Fri Oct 28 00:58:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D56816A41F; Fri, 28 Oct 2005 00:58:44 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 415D243D49; Fri, 28 Oct 2005 00:58:44 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S0wiBj053480; Fri, 28 Oct 2005 00:58:44 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S0wiGw053479; Fri, 28 Oct 2005 00:58:44 GMT (envelope-from grehan) Message-Id: <200510280058.j9S0wiGw053479@repoman.freebsd.org> From: Peter Grehan Date: Fri, 28 Oct 2005 00:58: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/sys/dev/mii brgphy.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 00:58:44 -0000 grehan 2005-10-28 00:58:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/mii brgphy.c Log: MFC r1.36 > The BCM5401 dspcode load on media changes also applies > to the 100/1000 BCM5400 phy. This fixes the problem with > the GEM port not syncing up on Sawtooth G4's. > > Obtained from: NetBSD > Reported by: Ben Rosengart Approved by: re (scottl) Revision Changes Path 1.34.2.1 +2 -0 src/sys/dev/mii/brgphy.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 01:02:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C304616A41F; Fri, 28 Oct 2005 01:02:38 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 807C943D45; Fri, 28 Oct 2005 01:02:38 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S12cwq053658; Fri, 28 Oct 2005 01:02:38 GMT (envelope-from ups@repoman.freebsd.org) Received: (from ups@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S12ciS053657; Fri, 28 Oct 2005 01:02:38 GMT (envelope-from ups) Message-Id: <200510280102.j9S12ciS053657@repoman.freebsd.org> From: Stephan Uphoff Date: Fri, 28 Oct 2005 01:02: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/kern vfs_cluster.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 01:02:38 -0000 ups 2005-10-28 01:02:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_cluster.c Log: MFC vfs_cluster.c Revision 1.168 Only set B_RAM (Read ahead mark) on an incore buffers if we can lock it. This fixes a race condition caused by the unlocked write access to the b_flags field. Approved by: re (scottl) Revision Changes Path 1.166.2.2 +8 -3 src/sys/kern/vfs_cluster.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 01:03:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D05716A41F; Fri, 28 Oct 2005 01:03:26 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5922243D45; Fri, 28 Oct 2005 01:03:26 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S13Q3o053704; Fri, 28 Oct 2005 01:03:26 GMT (envelope-from ups@repoman.freebsd.org) Received: (from ups@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S13Qt8053703; Fri, 28 Oct 2005 01:03:26 GMT (envelope-from ups) Message-Id: <200510280103.j9S13Qt8053703@repoman.freebsd.org> From: Stephan Uphoff Date: Fri, 28 Oct 2005 01:03:26 +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/sys/kern vfs_cluster.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 01:03:26 -0000 ups 2005-10-28 01:03:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/kern vfs_cluster.c Log: MFC vfs_cluster.c Revision 1.168 Only set B_RAM (Read ahead mark) on an incore buffers if we can lock it. This fixes a race condition caused by the unlocked write access to the b_flags field. Approved by: re (scottl) Revision Changes Path 1.166.2.1.2.1 +8 -3 src/sys/kern/vfs_cluster.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 01:07:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E94F16A41F; Fri, 28 Oct 2005 01:07:54 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BCBE43D45; Fri, 28 Oct 2005 01:07:54 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S17srL053893; Fri, 28 Oct 2005 01:07:54 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S17s4v053892; Fri, 28 Oct 2005 01:07:54 GMT (envelope-from grehan) Message-Id: <200510280107.j9S17s4v053892@repoman.freebsd.org> From: Peter Grehan Date: Fri, 28 Oct 2005 01:07:54 +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/sys/dev/mii brgphy.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 01:07:54 -0000 grehan 2005-10-28 01:07:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/mii brgphy.c Log: MF RELENG_6 r1.34.2.1 > The BCM5401 dspcode load on media changes also applies > to the 100/1000 BCM5400 phy. This fixes the problem with > the GEM port not syncing up on Sawtooth G4's. > > Obtained from: NetBSD > Reported by: Ben Rosengart Approved by: re (scottl) Revision Changes Path 1.34.4.1 +2 -0 src/sys/dev/mii/brgphy.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 01:38:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EDC116A41F; Fri, 28 Oct 2005 01:38:33 +0000 (GMT) (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 BF38643D45; Fri, 28 Oct 2005 01:38:32 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S1cW1j054963; Fri, 28 Oct 2005 01:38:32 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S1cWgR054962; Fri, 28 Oct 2005 01:38:32 GMT (envelope-from mnag) Message-Id: <200510280138.j9S1cWgR054962@repoman.freebsd.org> From: Marcus Alves Grando Date: Fri, 28 Oct 2005 01:38: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/databases/xmbase-grok 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, 28 Oct 2005 01:38:33 -0000 mnag 2005-10-28 01:38:32 UTC FreeBSD ports repository Modified files: databases/xmbase-grok Makefile Log: Update MASTER_SITES PR: 88112 Submitted by: Jean Milanez Melo Revision Changes Path 1.19 +1 -1 ports/databases/xmbase-grok/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 01:43:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2775616A41F; Fri, 28 Oct 2005 01:43:49 +0000 (GMT) (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 D816F43D45; Fri, 28 Oct 2005 01:43:48 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S1hmRH055230; Fri, 28 Oct 2005 01:43:48 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S1hmkQ055229; Fri, 28 Oct 2005 01:43:48 GMT (envelope-from mnag) Message-Id: <200510280143.j9S1hmkQ055229@repoman.freebsd.org> From: Marcus Alves Grando Date: Fri, 28 Oct 2005 01:43: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/databases/dbmetrix 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: Fri, 28 Oct 2005 01:43:49 -0000 mnag 2005-10-28 01:43:48 UTC FreeBSD ports repository Modified files: databases/dbmetrix pkg-descr Log: Update WWW PR: 88094 Submitted by: Jean Milanez Melo Reviewed by: Joseph Scott (maintainer) Revision Changes Path 1.2 +1 -1 ports/databases/dbmetrix/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Oct 28 01:45:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0225A16A41F; Fri, 28 Oct 2005 01:45:35 +0000 (GMT) (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 B383D43D45; Fri, 28 Oct 2005 01:45:34 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S1jYT0055353; Fri, 28 Oct 2005 01:45:34 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S1jYdt055352; Fri, 28 Oct 2005 01:45:34 GMT (envelope-from mnag) Message-Id: <200510280145.j9S1jYdt055352@repoman.freebsd.org> From: Marcus Alves Grando Date: Fri, 28 Oct 2005 01:45: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/databases/dbf 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: Fri, 28 Oct 2005 01:45:35 -0000 mnag 2005-10-28 01:45:34 UTC FreeBSD ports repository Modified files: databases/dbf pkg-descr Log: Fix typo in WWW PR: 88092 Submitted by: Jean Milanez Melo Revision Changes Path 1.3 +1 -1 ports/databases/dbf/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Oct 28 01:49:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AD0516A41F; Fri, 28 Oct 2005 01:49:10 +0000 (GMT) (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 C9B0143D4C; Fri, 28 Oct 2005 01:49:09 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S1n9xj055449; Fri, 28 Oct 2005 01:49:09 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S1n9Ee055448; Fri, 28 Oct 2005 01:49:09 GMT (envelope-from mnag) Message-Id: <200510280149.j9S1n9Ee055448@repoman.freebsd.org> From: Marcus Alves Grando Date: Fri, 28 Oct 2005 01:49: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/databases/dbXML 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, 28 Oct 2005 01:49:10 -0000 mnag 2005-10-28 01:49:09 UTC FreeBSD ports repository Modified files: databases/dbXML Makefile Log: Change MASTER_SITES and unBROKEN PR: 88091 Submitted by: Jean Milanez Melo Reviewed by: Richard Stockley (maintainer) Revision Changes Path 1.6 +1 -3 ports/databases/dbXML/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 02:17:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEFE316A41F; Fri, 28 Oct 2005 02:17:41 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC4DC43D45; Fri, 28 Oct 2005 02:17:41 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S2Hfn5056813; Fri, 28 Oct 2005 02:17:41 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S2HfPn056812; Fri, 28 Oct 2005 02:17:41 GMT (envelope-from wpaul) Message-Id: <200510280217.j9S2HfPn056812@repoman.freebsd.org> From: Bill Paul Date: Fri, 28 Oct 2005 02:17: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/pci if_wb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 02:17:42 -0000 wpaul 2005-10-28 02:17:41 UTC FreeBSD src repository Modified files: sys/pci if_wb.c Log: Remove forgotten, no longer needed WB_UNLOCK() from the end wb_ioctl(). With this change, the driver tests good (at least on i386): wb0: port 0xb800-0xb87f mem 0xe6800000-0xe680007f irq 12 at device 10.0 on pci0 miibus1: on wb0 amphy0: on miibus1 amphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto wb0: Ethernet address: 00:00:e8:18:2a:02 wb0: link state changed to DOWN wb0: link state changed to UP Revision Changes Path 1.88 +0 -2 src/sys/pci/if_wb.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 02:39:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD2D416A41F; Fri, 28 Oct 2005 02:39:32 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87C4143D53; Fri, 28 Oct 2005 02:39:32 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S2dWLP057619; Fri, 28 Oct 2005 02:39:32 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S2dW0l057618; Fri, 28 Oct 2005 02:39:32 GMT (envelope-from marcus) Message-Id: <200510280239.j9S2dW0l057618@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 28 Oct 2005 02:39: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/x11/xscreensaver-gnome 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, 28 Oct 2005 02:39:33 -0000 marcus 2005-10-28 02:39:32 UTC FreeBSD ports repository Modified files: x11/xscreensaver-gnome Makefile Log: Substitute hard-coded /usr/X11R6 with ${X11BASE} to avoid installation problems with non-standard base prefixes. Reported by: pointyhat via kris Revision Changes Path 1.47 +2 -1 ports/x11/xscreensaver-gnome/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 02:58:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB99A16A41F; Fri, 28 Oct 2005 02:58:51 +0000 (GMT) (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 78A0543D48; Fri, 28 Oct 2005 02:58:51 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S2wp36058705; Fri, 28 Oct 2005 02:58:51 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S2wpmL058704; Fri, 28 Oct 2005 02:58:51 GMT (envelope-from delphij) Message-Id: <200510280258.j9S2wpmL058704@repoman.freebsd.org> From: Xin LI Date: Fri, 28 Oct 2005 02:58: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 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, 28 Oct 2005 02:58:51 -0000 delphij 2005-10-28 02:58:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . UPDATING Log: Some changes to reflect 6.0-STABLE/RELEASE: - Mention that this is -STABLE - Mention that only 5.3+ is supported for source upgrade - When just building a kernel we assume that the user got a system that is fresh enough - The in-place update is supported for 5.x-STABLE and 6.x-STABLE - Since we don't support systems that is prior to 5.3, don't mention about mergemaster three years before. - Since source upgrade from 4.x is no longer supported, we are supposed that COMPAT_FREEBSD5X is better suited for the source upgrade - At the end, call this a -STABLE Approved by: re (scottl) Revision Changes Path 1.416.2.5 +11 -11 src/UPDATING From owner-cvs-all@FreeBSD.ORG Fri Oct 28 02:59:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C99D516A47A; Fri, 28 Oct 2005 02:59:04 +0000 (GMT) (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 8F5E343D45; Fri, 28 Oct 2005 02:59:04 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S2x4jv058768; Fri, 28 Oct 2005 02:59:04 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S2x40m058767; Fri, 28 Oct 2005 02:59:04 GMT (envelope-from mnag) Message-Id: <200510280259.j9S2x40m058767@repoman.freebsd.org> From: Marcus Alves Grando Date: Fri, 28 Oct 2005 02:59: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/gnomebaker Makefile ports/sysutils/gnomebaker/files patch-src-devices.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 02:59:07 -0000 mnag 2005-10-28 02:59:04 UTC FreeBSD ports repository Modified files: sysutils/gnomebaker Makefile Added files: sysutils/gnomebaker/files patch-src-devices.c Log: Fix bug when insert disk PR: 88089 Submitted by: Dominique Goncalves (maintainer) Notified and tested by: Danilo Augusto Vicente Lara Obtained from: gnomebaker cvs http://cvs.sourceforge.net/viewcvs.py/gnomebaker/gnomebaker/src/devices.c?r1=1.22&r2=1.23 Revision Changes Path 1.6 +1 -1 ports/sysutils/gnomebaker/Makefile 1.1 +12 -0 ports/sysutils/gnomebaker/files/patch-src-devices.c (new) From owner-cvs-all@FreeBSD.ORG Fri Oct 28 02:59:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3005816A424; Fri, 28 Oct 2005 02:59:52 +0000 (GMT) (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 DF2D243D48; Fri, 28 Oct 2005 02:59:51 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S2xpot058815; Fri, 28 Oct 2005 02:59:51 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S2xp1T058814; Fri, 28 Oct 2005 02:59:51 GMT (envelope-from delphij) Message-Id: <200510280259.j9S2xp1T058814@repoman.freebsd.org> From: Xin LI Date: Fri, 28 Oct 2005 02:59:51 +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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 02:59:52 -0000 delphij 2005-10-28 02:59:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) . UPDATING Log: MFRELENG_6 1.416.2.4: Some changes to reflect 6.0-STABLE/RELEASE. Approved by: re (scottl) Revision Changes Path 1.416.2.3.2.3 +11 -11 src/UPDATING From owner-cvs-all@FreeBSD.ORG Fri Oct 28 03:04:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D63A816A41F; Fri, 28 Oct 2005 03:04:45 +0000 (GMT) (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 6E2A843D49; Fri, 28 Oct 2005 03:04:45 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S34isn059123; Fri, 28 Oct 2005 03:04:44 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S34ibF059122; Fri, 28 Oct 2005 03:04:44 GMT (envelope-from mnag) Message-Id: <200510280304.j9S34ibF059122@repoman.freebsd.org> From: Marcus Alves Grando Date: Fri, 28 Oct 2005 03:04: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/zope28 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, 28 Oct 2005 03:04:46 -0000 mnag 2005-10-28 03:04:44 UTC FreeBSD ports repository Modified files: www/zope28 Makefile distinfo pkg-plist Log: Update to 2.8.4 Changelog http://www.zope.org/Products/Zope/2.8.4/CHANGES.txt PR: 88078 Submitted by: Denis Shaposhnikov (maintainer) Revision Changes Path 1.77 +1 -1 ports/www/zope28/Makefile 1.41 +2 -2 ports/www/zope28/distinfo 1.47 +8 -0 ports/www/zope28/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Oct 28 04:19:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8C5716A41F; Fri, 28 Oct 2005 04:19:19 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8425F43D48; Fri, 28 Oct 2005 04:19:19 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S4JJZ6062869; Fri, 28 Oct 2005 04:19:19 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S4JJKX062868; Fri, 28 Oct 2005 04:19:19 GMT (envelope-from nork) Message-Id: <200510280419.j9S4JJKX062868@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 28 Oct 2005 04:19: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/net/liveMedia 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, 28 Oct 2005 04:19:19 -0000 nork 2005-10-28 04:19:19 UTC FreeBSD ports repository Modified files: net/liveMedia Makefile distinfo Log: Update to 2005.10.28. Revision Changes Path 1.209 +1 -3 ports/net/liveMedia/Makefile 1.196 +2 -2 ports/net/liveMedia/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 04:59:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3AAC16A420; Fri, 28 Oct 2005 04:59:41 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13FDE43D5D; Fri, 28 Oct 2005 04:59:41 +0000 (GMT) (envelope-from jcamou@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S4xehD072699; Fri, 28 Oct 2005 04:59:40 GMT (envelope-from jcamou@repoman.freebsd.org) Received: (from jcamou@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S4xeaq072698; Fri, 28 Oct 2005 04:59:40 GMT (envelope-from jcamou) Message-Id: <200510280459.j9S4xeaq072698@repoman.freebsd.org> From: "Jesus R. Camou" Date: Fri, 28 Oct 2005 04:59: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: doc/en_US.ISO8859-1/books/handbook/linuxemu 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: Fri, 28 Oct 2005 04:59:42 -0000 jcamou 2005-10-28 04:59:40 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/linuxemu chapter.sgml Log: The Linux emulator runs differently under 5.X and later, document that. PR: docs/87464 Submitted by: Alejandro Acosta Approved by: trhodes (mentor) Revision Changes Path 1.125 +4 -2 doc/en_US.ISO8859-1/books/handbook/linuxemu/chapter.sgml From owner-cvs-all@FreeBSD.ORG Fri Oct 28 05:29:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4295C16A41F; Fri, 28 Oct 2005 05:29:45 +0000 (GMT) (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 F2FE543D46; Fri, 28 Oct 2005 05:29:44 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5TiqO073822; Fri, 28 Oct 2005 05:29:44 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5Ti2o073821; Fri, 28 Oct 2005 05:29:44 GMT (envelope-from imp) Message-Id: <200510280529.j9S5Ti2o073821@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 05:29: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/dev/cardbus cardbusvar.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, 28 Oct 2005 05:29:45 -0000 imp 2005-10-28 05:29:41 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbusvar.h Log: Use PCIR_BARS rather than CARDBUS_BASE0_REG Style nit. Revision Changes Path 1.12 +3 -2 src/sys/dev/cardbus/cardbusvar.h From owner-cvs-all@FreeBSD.ORG Fri Oct 28 05:30:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9601B16A41F; Fri, 28 Oct 2005 05:30:47 +0000 (GMT) (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 50CE343D48; Fri, 28 Oct 2005 05:30:47 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5Ulri073959; Fri, 28 Oct 2005 05:30:47 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5Ullc073958; Fri, 28 Oct 2005 05:30:47 GMT (envelope-from imp) Message-Id: <200510280530.j9S5Ullc073958@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 05:30: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/dev/cardbus cardbus_cis.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 05:30:47 -0000 imp 2005-10-28 05:30:47 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbus_cis.c Log: Simplify code a little, prefer PCI?_FOO registers where possible. Revision Changes Path 1.51 +9 -15 src/sys/dev/cardbus/cardbus_cis.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 05:31:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6608C16A41F; Fri, 28 Oct 2005 05:31:12 +0000 (GMT) (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 0FA5743D45; Fri, 28 Oct 2005 05:31:12 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5VBev074016; Fri, 28 Oct 2005 05:31:11 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5VBC0074015; Fri, 28 Oct 2005 05:31:11 GMT (envelope-from imp) Message-Id: <200510280531.j9S5VBC0074015@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 05:31: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/dev/cardbus cardbusreg.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, 28 Oct 2005 05:31:12 -0000 imp 2005-10-28 05:31:11 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbusreg.h Log: Remove now redundant defines. Revision Changes Path 1.9 +0 -6 src/sys/dev/cardbus/cardbusreg.h From owner-cvs-all@FreeBSD.ORG Fri Oct 28 05:33:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19F9D16A41F; Fri, 28 Oct 2005 05:33:10 +0000 (GMT) (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 C82FD43D46; Fri, 28 Oct 2005 05:33:09 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5X9Xi074112; Fri, 28 Oct 2005 05:33:09 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5X9Uv074111; Fri, 28 Oct 2005 05:33:09 GMT (envelope-from sem) Message-Id: <200510280533.j9S5X9Uv074111@repoman.freebsd.org> From: Sergey Matveychuk Date: Fri, 28 Oct 2005 05:33: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/databases/knoda pkg-descr ports/databases/hk_classes 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: Fri, 28 Oct 2005 05:33:10 -0000 sem 2005-10-28 05:33:09 UTC FreeBSD ports repository Modified files: databases/knoda pkg-descr databases/hk_classes pkg-descr Log: - Change an author's e-mail - Add some new features for knoda Revision Changes Path 1.3 +1 -1 ports/databases/hk_classes/pkg-descr 1.2 +7 -3 ports/databases/knoda/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Oct 28 05:55:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C363216A41F; Fri, 28 Oct 2005 05:55:52 +0000 (GMT) (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 811C043D45; Fri, 28 Oct 2005 05:55:52 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5tqNV075096; Fri, 28 Oct 2005 05:55:52 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5tqrX075095; Fri, 28 Oct 2005 05:55:52 GMT (envelope-from imp) Message-Id: <200510280555.j9S5tqrX075095@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 05:55: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/cardbus cardbus_cis.c cardbusreg.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, 28 Oct 2005 05:55:52 -0000 imp 2005-10-28 05:55:52 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbus_cis.c cardbusreg.h Log: Eliminate even more duplication, and move some definitions into pcireg.h Revision Changes Path 1.52 +19 -19 src/sys/dev/cardbus/cardbus_cis.c 1.10 +0 -26 src/sys/dev/cardbus/cardbusreg.h From owner-cvs-all@FreeBSD.ORG Fri Oct 28 05:56:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 411B816A41F; Fri, 28 Oct 2005 05:56:51 +0000 (GMT) (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 F3A8943D46; Fri, 28 Oct 2005 05:56:50 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5uola075160; Fri, 28 Oct 2005 05:56:50 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5uoF9075159; Fri, 28 Oct 2005 05:56:50 GMT (envelope-from imp) Message-Id: <200510280556.j9S5uoF9075159@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 05:56: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/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: Fri, 28 Oct 2005 05:56:51 -0000 imp 2005-10-28 05:56:50 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: Minor style(9) nitage. Revision Changes Path 1.301 +2 -4 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 05:57:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7B1C16A41F; Fri, 28 Oct 2005 05:57:10 +0000 (GMT) (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 6DACC43D45; Fri, 28 Oct 2005 05:57:10 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5vAp6075199; Fri, 28 Oct 2005 05:57:10 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5vABG075198; Fri, 28 Oct 2005 05:57:10 GMT (envelope-from imp) Message-Id: <200510280557.j9S5vABG075198@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 05:57: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/pci pcireg.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, 28 Oct 2005 05:57:11 -0000 imp 2005-10-28 05:57:10 UTC FreeBSD src repository Modified files: sys/dev/pci pcireg.h Log: Some cardbus CIS definitions moved here since they are PCI registers. Revision Changes Path 1.46 +12 -1 src/sys/dev/pci/pcireg.h From owner-cvs-all@FreeBSD.ORG Fri Oct 28 05:59:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F3C516A41F; Fri, 28 Oct 2005 05:59:17 +0000 (GMT) (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 CF41B43D48; Fri, 28 Oct 2005 05:59:16 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5xGE2075314; Fri, 28 Oct 2005 05:59:16 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5xGBr075313; Fri, 28 Oct 2005 05:59:16 GMT (envelope-from kris) Message-Id: <200510280559.j9S5xGBr075313@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 05:59: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/krb5 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, 28 Oct 2005 05:59:17 -0000 kris 2005-10-28 05:59:16 UTC FreeBSD ports repository Modified files: security/krb5 Makefile Log: BROKEN: Does not build Revision Changes Path 1.89 +2 -0 ports/security/krb5/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 05:59:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2C1816A41F; Fri, 28 Oct 2005 05:59:59 +0000 (GMT) (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 8115043D46; Fri, 28 Oct 2005 05:59:59 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5xxjD075356; Fri, 28 Oct 2005 05:59:59 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5xxxr075355; Fri, 28 Oct 2005 05:59:59 GMT (envelope-from kris) Message-Id: <200510280559.j9S5xxxr075355@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 05: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/emulators/linux_base-src-rh-8 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, 28 Oct 2005 05:59:59 -0000 kris 2005-10-28 05:59:59 UTC FreeBSD ports repository Modified files: emulators/linux_base-src-rh-8 Makefile Log: BROKEN: Broken dependency Revision Changes Path 1.5 +2 -0 ports/emulators/linux_base-src-rh-8/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:00:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC41816A41F; Fri, 28 Oct 2005 06:00:44 +0000 (GMT) (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 696A143D46; Fri, 28 Oct 2005 06:00:44 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S60iZo075453; Fri, 28 Oct 2005 06:00:44 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S60iJB075452; Fri, 28 Oct 2005 06:00:44 GMT (envelope-from kris) Message-Id: <200510280600.j9S60iJB075452@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:00: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/emulators/linux_base-src-rh-7.3 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, 28 Oct 2005 06:00:45 -0000 kris 2005-10-28 06:00:44 UTC FreeBSD ports repository Modified files: emulators/linux_base-src-rh-7.3 Makefile Log: BROKEN: Broken dependency Revision Changes Path 1.6 +2 -0 ports/emulators/linux_base-src-rh-7.3/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:02:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E70FB16A41F; Fri, 28 Oct 2005 06:02:51 +0000 (GMT) (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 A578D43D46; Fri, 28 Oct 2005 06:02:51 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S62pcY075592; Fri, 28 Oct 2005 06:02:51 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S62pek075591; Fri, 28 Oct 2005 06:02:51 GMT (envelope-from imp) Message-Id: <200510280602.j9S62pek075591@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 06:02: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/sys/dev/pci pcireg.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, 28 Oct 2005 06:02:52 -0000 imp 2005-10-28 06:02:51 UTC FreeBSD src repository Modified files: sys/dev/pci pcireg.h Log: Add PCIM_BIOS_ADDR_MASK too Revision Changes Path 1.47 +1 -0 src/sys/dev/pci/pcireg.h From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:03:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E17F916A41F; Fri, 28 Oct 2005 06:03:53 +0000 (GMT) (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 9C3EB43D46; Fri, 28 Oct 2005 06:03:53 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S63rba075655; Fri, 28 Oct 2005 06:03:53 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S63rcw075654; Fri, 28 Oct 2005 06:03:53 GMT (envelope-from imp) Message-Id: <200510280603.j9S63rcw075654@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 06:03: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/cardbus cardbus.c cardbusreg.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, 28 Oct 2005 06:03:54 -0000 imp 2005-10-28 06:03:53 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbus.c cardbusreg.h Log: Cardbus has only 1 slot, so simplify a little. Revision Changes Path 1.54 +37 -39 src/sys/dev/cardbus/cardbus.c 1.11 +0 -5 src/sys/dev/cardbus/cardbusreg.h From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:04:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F4C716A420; Fri, 28 Oct 2005 06:04:13 +0000 (GMT) (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 2DF2043D48; Fri, 28 Oct 2005 06:04:13 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S64DV1075782; Fri, 28 Oct 2005 06:04:13 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S64Dd7075781; Fri, 28 Oct 2005 06:04:13 GMT (envelope-from kris) Message-Id: <200510280604.j9S64Dd7075781@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:04: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/devel/mime 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, 28 Oct 2005 06:04:13 -0000 kris 2005-10-28 06:04:13 UTC FreeBSD ports repository Modified files: devel/mime Makefile Log: BROKEN: Does not compile on >= 6.0 Revision Changes Path 1.10 +7 -1 ports/devel/mime/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:05:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9D8716A41F; Fri, 28 Oct 2005 06:05:46 +0000 (GMT) (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 A698243D45; Fri, 28 Oct 2005 06:05:46 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S65kND075967; Fri, 28 Oct 2005 06:05:46 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S65k8Z075966; Fri, 28 Oct 2005 06:05:46 GMT (envelope-from kris) Message-Id: <200510280605.j9S65k8Z075966@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:05: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/www/moodle 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, 28 Oct 2005 06:05:47 -0000 kris 2005-10-28 06:05:46 UTC FreeBSD ports repository Modified files: www/moodle Makefile Log: BROKEN: Modifies ports tree at build time Revision Changes Path 1.2 +2 -0 ports/www/moodle/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:06:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8F1016A41F; Fri, 28 Oct 2005 06:06:47 +0000 (GMT) (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 84ABE43D45; Fri, 28 Oct 2005 06:06:47 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S66l5x076039; Fri, 28 Oct 2005 06:06:47 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S66lcF076038; Fri, 28 Oct 2005 06:06:47 GMT (envelope-from kris) Message-Id: <200510280606.j9S66lcF076038@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:06: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-Test-Builder-Tester 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, 28 Oct 2005 06:06:47 -0000 kris 2005-10-28 06:06:47 UTC FreeBSD ports repository Modified files: devel/p5-Test-Builder-Tester Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.5 +2 -0 ports/devel/p5-Test-Builder-Tester/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:07:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2D0A16A41F; Fri, 28 Oct 2005 06:07:52 +0000 (GMT) (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 7EB0743D45; Fri, 28 Oct 2005 06:07:52 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S67qY7076167; Fri, 28 Oct 2005 06:07:52 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S67q49076166; Fri, 28 Oct 2005 06:07:52 GMT (envelope-from kris) Message-Id: <200510280607.j9S67q49076166@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:07: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/py-bittorrent-core-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: Fri, 28 Oct 2005 06:07:52 -0000 kris 2005-10-28 06:07:52 UTC FreeBSD ports repository Modified files: net/py-bittorrent-core-devel Makefile Log: BROKEN: Incomplete pkg-plist Revision Changes Path 1.4 +2 -0 ports/net/py-bittorrent-core-devel/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:10:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37BB816A41F; Fri, 28 Oct 2005 06:10:22 +0000 (GMT) (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 EA32043D45; Fri, 28 Oct 2005 06:10:21 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6ALid076284; Fri, 28 Oct 2005 06:10:21 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6ALrk076283; Fri, 28 Oct 2005 06:10:21 GMT (envelope-from kris) Message-Id: <200510280610.j9S6ALrk076283@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06: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/net/py-bittorrent-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: Fri, 28 Oct 2005 06:10:22 -0000 kris 2005-10-28 06:10:21 UTC FreeBSD ports repository Modified files: net/py-bittorrent-devel Makefile Log: BROKEN: Incomplete pkg-plist Revision Changes Path 1.37 +2 -0 ports/net/py-bittorrent-devel/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:12:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C716716A41F; Fri, 28 Oct 2005 06:12:26 +0000 (GMT) (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 7EE1743D48; Fri, 28 Oct 2005 06:12:26 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6CQ95076385; Fri, 28 Oct 2005 06:12:26 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6CQu0076384; Fri, 28 Oct 2005 06:12:26 GMT (envelope-from kris) Message-Id: <200510280612.j9S6CQu0076384@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:12: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/japanese/latex2html 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, 28 Oct 2005 06:12:27 -0000 kris 2005-10-28 06:12:26 UTC FreeBSD ports repository Modified files: japanese/latex2html Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.25 +2 -0 ports/japanese/latex2html/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:14:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77C3B16A41F; Fri, 28 Oct 2005 06:14:46 +0000 (GMT) (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 3536843D49; Fri, 28 Oct 2005 06:14:46 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6EkK5076467; Fri, 28 Oct 2005 06:14:46 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6EkV5076466; Fri, 28 Oct 2005 06:14:46 GMT (envelope-from kris) Message-Id: <200510280614.j9S6EkV5076466@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:14: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-toolkits/gnocl 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, 28 Oct 2005 06:14:46 -0000 kris 2005-10-28 06:14:46 UTC FreeBSD ports repository Modified files: x11-toolkits/gnocl Makefile Log: BROKEN on sparc64 and ia64: Does not compile Revision Changes Path 1.16 +4 -0 ports/x11-toolkits/gnocl/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:15:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0312D16A41F; Fri, 28 Oct 2005 06:15:46 +0000 (GMT) (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 70D4043D48; Fri, 28 Oct 2005 06:15:46 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6FkLQ076587; Fri, 28 Oct 2005 06:15:46 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6Fkk8076586; Fri, 28 Oct 2005 06:15:46 GMT (envelope-from kris) Message-Id: <200510280615.j9S6Fkk8076586@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:15: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/i2p 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, 28 Oct 2005 06:15:47 -0000 kris 2005-10-28 06:15:46 UTC FreeBSD ports repository Modified files: net/i2p Makefile Log: BROKEN: Does not build Revision Changes Path 1.14 +2 -0 ports/net/i2p/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:18:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F74316A41F; Fri, 28 Oct 2005 06:18:07 +0000 (GMT) (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 C078043D53; Fri, 28 Oct 2005 06:18:06 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6I63s076737; Fri, 28 Oct 2005 06:18:06 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6I6ET076736; Fri, 28 Oct 2005 06:18:06 GMT (envelope-from kris) Message-Id: <200510280618.j9S6I6ET076736@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:18: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/emulators/pearpc 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, 28 Oct 2005 06:18:07 -0000 kris 2005-10-28 06:18:06 UTC FreeBSD ports repository Modified files: emulators/pearpc Makefile Log: BROKEN on ia64: Internal compiler error Revision Changes Path 1.16 +4 -0 ports/emulators/pearpc/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:18:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CEFF16A41F; Fri, 28 Oct 2005 06:18:42 +0000 (GMT) (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 EECDE43D46; Fri, 28 Oct 2005 06:18:41 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6IfMi076771; Fri, 28 Oct 2005 06:18:41 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6Ifri076770; Fri, 28 Oct 2005 06:18:41 GMT (envelope-from kris) Message-Id: <200510280618.j9S6Ifri076770@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:18: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/pfpro 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, 28 Oct 2005 06:18:42 -0000 kris 2005-10-28 06:18:41 UTC FreeBSD ports repository Modified files: net-mgmt/pfpro Makefile Log: BROKEN: incomplete pkg-plist Revision Changes Path 1.2 +2 -0 ports/net-mgmt/pfpro/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:24:09 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CC1516A41F; Fri, 28 Oct 2005 06:24:09 +0000 (GMT) (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 4B0DF43D4C; Fri, 28 Oct 2005 06:24:09 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6O9sk077001; Fri, 28 Oct 2005 06:24:09 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6O9po077000; Fri, 28 Oct 2005 06:24:09 GMT (envelope-from marcel) Message-Id: <200510280624.j9S6O9po077000@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 28 Oct 2005 06:24: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/dev/uart uart_bus_ebus.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 06:24:09 -0000 marcel 2005-10-28 06:24:09 UTC FreeBSD src repository Modified files: sys/dev/uart uart_bus_ebus.c Log: Allow uart_bus_probe() to return the predefined BUS_PROBE_* constants. In this case: just return what uart_bus_probe() returns. Revision Changes Path 1.8 +1 -3 src/sys/dev/uart/uart_bus_ebus.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:25:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81C7A16A41F; Fri, 28 Oct 2005 06:25:39 +0000 (GMT) (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 3F94F43D45; Fri, 28 Oct 2005 06:25:39 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6PdOr077122; Fri, 28 Oct 2005 06:25:39 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6Pdht077121; Fri, 28 Oct 2005 06:25:39 GMT (envelope-from kris) Message-Id: <200510280625.j9S6Pdht077121@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:25: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/irc/xchat-ecl-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: Fri, 28 Oct 2005 06:25:39 -0000 kris 2005-10-28 06:25:39 UTC FreeBSD ports repository Modified files: irc/xchat-ecl-plugin Makefile Log: BROKEN: Does not build Revision Changes Path 1.2 +2 -0 ports/irc/xchat-ecl-plugin/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:27:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7717816A41F; Fri, 28 Oct 2005 06:27:41 +0000 (GMT) (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 3746143D46; Fri, 28 Oct 2005 06:27:41 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6Rfei077200; Fri, 28 Oct 2005 06:27:41 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6RfRG077199; Fri, 28 Oct 2005 06:27:41 GMT (envelope-from kris) Message-Id: <200510280627.j9S6RfRG077199@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:27: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/lang/libjit 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, 28 Oct 2005 06:27:41 -0000 kris 2005-10-28 06:27:41 UTC FreeBSD ports repository Modified files: lang/libjit Makefile Log: BROKEN on sparc64: segfault during build Revision Changes Path 1.12 +1 -1 ports/lang/libjit/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:27:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 959DB16A43E; Fri, 28 Oct 2005 06:27:54 +0000 (GMT) (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 1095543D5C; Fri, 28 Oct 2005 06:27:54 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6Rr39077229; Fri, 28 Oct 2005 06:27:53 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6Rr7T077228; Fri, 28 Oct 2005 06:27:53 GMT (envelope-from marcel) Message-Id: <200510280627.j9S6Rr7T077228@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 28 Oct 2005 06:27: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/uart uart_bus_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 06:27:54 -0000 marcel 2005-10-28 06:27:53 UTC FreeBSD src repository Modified files: sys/dev/uart uart_bus_pccard.c Log: o Style(9) nits o Fix typo in comment o s/-100/BUS_PROBE_GENERIC/ o s/err/error/ for consistency o Remove non-applicable comment o Allow uart_bus_probe() to return the predefined BUS_PROBE_* contants. In this case: explicitly test for error > 0. Revision Changes Path 1.11 +9 -10 src/sys/dev/uart/uart_bus_pccard.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:29:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60C5716A41F; Fri, 28 Oct 2005 06:29:16 +0000 (GMT) (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 1F2A243D45; Fri, 28 Oct 2005 06:29:16 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6TGjX077352; Fri, 28 Oct 2005 06:29:16 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6TFQ8077351; Fri, 28 Oct 2005 06:29:15 GMT (envelope-from kris) Message-Id: <200510280629.j9S6TFQ8077351@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:29: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/festlex-poslex 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, 28 Oct 2005 06:29:16 -0000 kris 2005-10-28 06:29:15 UTC FreeBSD ports repository Modified files: audio/festlex-poslex Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.15 +2 -0 ports/audio/festlex-poslex/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:29:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7B0016A41F; Fri, 28 Oct 2005 06:29:50 +0000 (GMT) (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 9426A43D4C; Fri, 28 Oct 2005 06:29:50 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6ToB6077388; Fri, 28 Oct 2005 06:29:50 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6Tokd077387; Fri, 28 Oct 2005 06:29:50 GMT (envelope-from kris) Message-Id: <200510280629.j9S6Tokd077387@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06: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/audio/festival+OGI 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, 28 Oct 2005 06:29:51 -0000 kris 2005-10-28 06:29:50 UTC FreeBSD ports repository Modified files: audio/festival+OGI Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.33 +2 -0 ports/audio/festival+OGI/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:30:39 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C55A16A41F; Fri, 28 Oct 2005 06:30:39 +0000 (GMT) (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 48EEF43D45; Fri, 28 Oct 2005 06:30:39 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6Udi6077522; Fri, 28 Oct 2005 06:30:39 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6UdZd077521; Fri, 28 Oct 2005 06:30:39 GMT (envelope-from marcel) Message-Id: <200510280630.j9S6UdZd077521@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 28 Oct 2005 06:30: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/uart uart_core.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 06:30:39 -0000 marcel 2005-10-28 06:30:39 UTC FreeBSD src repository Modified files: sys/dev/uart uart_core.c Log: In uart_bus_probe() return BUS_PROBE_DEFAULT when the probe is successful. Revision Changes Path 1.14 +1 -1 src/sys/dev/uart/uart_core.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:31:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6543916A41F; Fri, 28 Oct 2005 06:31:27 +0000 (GMT) (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 207A543D48; Fri, 28 Oct 2005 06:31:27 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6VRgH077580; Fri, 28 Oct 2005 06:31:27 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6VQW3077579; Fri, 28 Oct 2005 06:31:26 GMT (envelope-from kris) Message-Id: <200510280631.j9S6VQW3077579@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:31: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/palm/prc-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, 28 Oct 2005 06:31:27 -0000 kris 2005-10-28 06:31:26 UTC FreeBSD ports repository Modified files: palm/prc-tools Makefile Log: BROKEN on 6.0 as well Revision Changes Path 1.44 +2 -2 ports/palm/prc-tools/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:32:18 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B07A116A41F; Fri, 28 Oct 2005 06:32:18 +0000 (GMT) (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 6B37443D46; Fri, 28 Oct 2005 06:32:18 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6WINo077641; Fri, 28 Oct 2005 06:32:18 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6WITd077640; Fri, 28 Oct 2005 06:32:18 GMT (envelope-from kris) Message-Id: <200510280632.j9S6WITd077640@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:32: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/biology/t_coffee 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, 28 Oct 2005 06:32:18 -0000 kris 2005-10-28 06:32:18 UTC FreeBSD ports repository Modified files: biology/t_coffee Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.9 +2 -0 ports/biology/t_coffee/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:33:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC59E16A41F; Fri, 28 Oct 2005 06:33:43 +0000 (GMT) (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 AA4BC43D48; Fri, 28 Oct 2005 06:33:43 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6Xhgn077725; Fri, 28 Oct 2005 06:33:43 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6XhZD077724; Fri, 28 Oct 2005 06:33:43 GMT (envelope-from kris) Message-Id: <200510280633.j9S6XhZD077724@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:33: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/emulators/xmame 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, 28 Oct 2005 06:33:44 -0000 kris 2005-10-28 06:33:43 UTC FreeBSD ports repository Modified files: emulators/xmame Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.94 +2 -0 ports/emulators/xmame/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:34:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5D3B16A41F; Fri, 28 Oct 2005 06:34:44 +0000 (GMT) (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 841DC43D46; Fri, 28 Oct 2005 06:34:44 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6YiFj077794; Fri, 28 Oct 2005 06:34:44 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6YiMR077793; Fri, 28 Oct 2005 06:34:44 GMT (envelope-from kris) Message-Id: <200510280634.j9S6YiMR077793@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:34: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/math/proofgeneral 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, 28 Oct 2005 06:34:45 -0000 kris 2005-10-28 06:34:44 UTC FreeBSD ports repository Modified files: math/proofgeneral Makefile Log: BROKEN on amd64: Does not build Revision Changes Path 1.3 +4 -0 ports/math/proofgeneral/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:35:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A193E16A41F; Fri, 28 Oct 2005 06:35:40 +0000 (GMT) (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 77C3B43D58; Fri, 28 Oct 2005 06:35:39 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6ZdEu077925; Fri, 28 Oct 2005 06:35:39 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6ZdNY077924; Fri, 28 Oct 2005 06:35:39 GMT (envelope-from kris) Message-Id: <200510280635.j9S6ZdNY077924@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:35: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/megapov 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, 28 Oct 2005 06:35:40 -0000 kris 2005-10-28 06:35:39 UTC FreeBSD ports repository Modified files: graphics/megapov Makefile Log: BROKEN: Incomplete pkg-plist Revision Changes Path 1.9 +2 -0 ports/graphics/megapov/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:37:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3FE716A41F; Fri, 28 Oct 2005 06:37:28 +0000 (GMT) (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 71F4B43D46; Fri, 28 Oct 2005 06:37:28 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6bS0x078040; Fri, 28 Oct 2005 06:37:28 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6bSuQ078039; Fri, 28 Oct 2005 06:37:28 GMT (envelope-from kris) Message-Id: <200510280637.j9S6bSuQ078039@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:37: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/math/fftw3-long 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, 28 Oct 2005 06:37:28 -0000 kris 2005-10-28 06:37:28 UTC FreeBSD ports repository Modified files: math/fftw3-long Makefile Log: BROKEN: Does not build Revision Changes Path 1.4 +2 -0 ports/math/fftw3-long/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:38:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 324FA16A41F; Fri, 28 Oct 2005 06:38:36 +0000 (GMT) (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 E29F443D45; Fri, 28 Oct 2005 06:38:35 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6cZol078246; Fri, 28 Oct 2005 06:38:35 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6cZZd078245; Fri, 28 Oct 2005 06:38:35 GMT (envelope-from kris) Message-Id: <200510280638.j9S6cZZd078245@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 06:38: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/x11-themes/kde-windeco-crystal 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, 28 Oct 2005 06:38:36 -0000 kris 2005-10-28 06:38:35 UTC FreeBSD ports repository Modified files: x11-themes/kde-windeco-crystal Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.3 +2 -0 ports/x11-themes/kde-windeco-crystal/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:49:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B033D16A41F; Fri, 28 Oct 2005 06:49:19 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E14D43D45; Fri, 28 Oct 2005 06:49:19 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6nJdX078775; Fri, 28 Oct 2005 06:49:19 GMT (envelope-from ade@repoman.freebsd.org) Received: (from ade@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6nJuk078774; Fri, 28 Oct 2005 06:49:19 GMT (envelope-from ade) Message-Id: <200510280649.j9S6nJuk078774@repoman.freebsd.org> From: Ade Lovett Date: Fri, 28 Oct 2005 06:49:19 +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/sys/alpha/alpha pmap.c src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 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: Fri, 28 Oct 2005 06:49:19 -0000 ade 2005-10-28 06:49:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/alpha/alpha pmap.c sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c Log: MFC: Specifically panic() in the case where pmap_insert_entry() fails to get a new pv under high system load where the available pv entries have been exhausted before the pagedaemon has a chance to wake up to reclaim some. Approved by: re (scottl) Revision Changes Path 1.178.4.1 +2 -0 src/sys/alpha/alpha/pmap.c 1.516.4.1 +2 -0 src/sys/amd64/amd64/pmap.c 1.523.2.1.2.1 +2 -0 src/sys/i386/i386/pmap.c 1.160.2.1.2.1 +2 -0 src/sys/ia64/ia64/pmap.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:49:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30D6016A41F; Fri, 28 Oct 2005 06:49:50 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E577143D48; Fri, 28 Oct 2005 06:49:49 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6nnEF078880; Fri, 28 Oct 2005 06:49:49 GMT (envelope-from ade@repoman.freebsd.org) Received: (from ade@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6nn7x078879; Fri, 28 Oct 2005 06:49:49 GMT (envelope-from ade) Message-Id: <200510280649.j9S6nn7x078879@repoman.freebsd.org> From: Ade Lovett Date: Fri, 28 Oct 2005 06:49: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/alpha/alpha pmap.c src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 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: Fri, 28 Oct 2005 06:49:50 -0000 ade 2005-10-28 06:49:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/alpha/alpha pmap.c sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c Log: MFC: Specifically panic() in the case where pmap_insert_entry() fails to get a new pv under high system load where the available pv entries have been exhausted before the pagedaemon has a chance to wake up to reclaim some. Approved by: re (scottl) Revision Changes Path 1.178.2.1 +2 -0 src/sys/alpha/alpha/pmap.c 1.516.2.1 +2 -0 src/sys/amd64/amd64/pmap.c 1.523.2.2 +2 -0 src/sys/i386/i386/pmap.c 1.160.2.2 +2 -0 src/sys/ia64/ia64/pmap.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:50:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2948C16A41F; Fri, 28 Oct 2005 06:50:38 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47A6B43D4C; Fri, 28 Oct 2005 06:50:37 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6ob3L079081; Fri, 28 Oct 2005 06:50:37 GMT (envelope-from ade@repoman.freebsd.org) Received: (from ade@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6obTc079080; Fri, 28 Oct 2005 06:50:37 GMT (envelope-from ade) Message-Id: <200510280650.j9S6obTc079080@repoman.freebsd.org> From: Ade Lovett Date: Fri, 28 Oct 2005 06:50:37 +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/alpha/alpha pmap.c src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 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: Fri, 28 Oct 2005 06:50:38 -0000 ade 2005-10-28 06:50:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/alpha/alpha pmap.c sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c Log: MFC: Specifically panic() in the case where pmap_insert_entry() fails to get a new pv under high system load where the available pv entries have been exhausted before the pagedaemon has a chance to wake up to reclaim some. Revision Changes Path 1.166.2.3 +2 -0 src/sys/alpha/alpha/pmap.c 1.491.2.8 +2 -0 src/sys/amd64/amd64/pmap.c 1.494.2.11 +2 -0 src/sys/i386/i386/pmap.c 1.146.2.3 +2 -0 src/sys/ia64/ia64/pmap.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 06:54:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14A1316A42B; Fri, 28 Oct 2005 06:54:19 +0000 (GMT) (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 85E2143D48; Fri, 28 Oct 2005 06:54:18 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6sIbS079241; Fri, 28 Oct 2005 06:54:18 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6sIdE079240; Fri, 28 Oct 2005 06:54:18 GMT (envelope-from cperciva) Message-Id: <200510280654.j9S6sIdE079240@repoman.freebsd.org> From: Colin Percival Date: Fri, 28 Oct 2005 06:54: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/est Makefile ports/sysutils/estctrl 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, 28 Oct 2005 06:54:19 -0000 cperciva 2005-10-28 06:54:18 UTC FreeBSD ports repository (src committer) Modified files: sysutils/est Makefile sysutils/estctrl Makefile Log: Correction to previous commit: IGNORE isn't supposed to be quoted at all. Pointy hat to: cperciva Pointed out by: kris Approved by: kris (implicitly) Revision Changes Path 1.9 +1 -1 ports/sysutils/est/Makefile 1.7 +1 -1 ports/sysutils/estctrl/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 07:00:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E14B16A41F; Fri, 28 Oct 2005 07:00:30 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34D7743D46; Fri, 28 Oct 2005 07:00:22 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S70Mqx079592; Fri, 28 Oct 2005 07:00:22 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S70L0R079588; Fri, 28 Oct 2005 07:00:21 GMT (envelope-from jylefort) Message-Id: <200510280700.j9S70L0R079588@repoman.freebsd.org> From: Jean-Yves Lefort Date: Fri, 28 Oct 2005 07:00: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/biffer Makefile ports/mail/biffer/files patch-biffer_comsat::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, 28 Oct 2005 07:00:30 -0000 jylefort 2005-10-28 07:00:21 UTC FreeBSD ports repository Modified files: mail/biffer Makefile mail/biffer/files patch-biffer_comsat::Makefile Log: - Respect ${PREFIX} [1] - Cleanup: s,${WRKDIR}/${DISTNAME},${WRKSRC}, [1]: PR: ports/88114 Submitted by: maintainer Revision Changes Path 1.6 +5 -9 ports/mail/biffer/Makefile 1.2 +11 -5 ports/mail/biffer/files/patch-biffer_comsat::Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 07:02:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CBBB16A41F; Fri, 28 Oct 2005 07:02:40 +0000 (GMT) (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 1A08C43D46; Fri, 28 Oct 2005 07:02:40 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S72d7x079808; Fri, 28 Oct 2005 07:02:39 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S72dk8079807; Fri, 28 Oct 2005 07:02:39 GMT (envelope-from kris) Message-Id: <200510280702.j9S72dk8079807@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 07:02: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/www/mod_vhs 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, 28 Oct 2005 07:02:40 -0000 kris 2005-10-28 07:02:39 UTC FreeBSD ports repository Modified files: www/mod_vhs Makefile Log: BROKEN: Conflicting dependencies (apache 1.x vs apache 2.x) Revision Changes Path 1.12 +2 -0 ports/www/mod_vhs/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 07:16:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0281D16A41F; Fri, 28 Oct 2005 07:16:06 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C48C43D49; Fri, 28 Oct 2005 07:16:05 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S7G4IP080700; Fri, 28 Oct 2005 07:16:05 GMT (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S7G4i6080699; Fri, 28 Oct 2005 07:16:04 GMT (envelope-from osa) Message-Id: <200510280716.j9S7G4i6080699@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Fri, 28 Oct 2005 07:16: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/3proxy Makefile distinfo pkg-plist ports/net/3proxy/files 3proxy.sh 3proxy.sh.in patch-Makefile.unix patch-aa patch-ab patch-cfg-3proxy.cfg.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: Fri, 28 Oct 2005 07:16:06 -0000 osa 2005-10-28 07:16:04 UTC FreeBSD ports repository Modified files: net/3proxy Makefile distinfo pkg-plist Added files: net/3proxy/files 3proxy.sh.in patch-Makefile.unix patch-cfg-3proxy.cfg.sample Removed files: net/3proxy/files 3proxy.sh patch-aa patch-ab Log: Update to latest release 0.5.1b. rcNGfy, add manpages. Revision Changes Path 1.6 +19 -6 ports/net/3proxy/Makefile 1.6 +2 -2 ports/net/3proxy/distinfo 1.3 +0 -19 ports/net/3proxy/files/3proxy.sh (dead) 1.1 +29 -0 ports/net/3proxy/files/3proxy.sh.in (new) 1.1 +20 -0 ports/net/3proxy/files/patch-Makefile.unix (new) 1.3 +0 -18 ports/net/3proxy/files/patch-aa (dead) 1.4 +0 -20 ports/net/3proxy/files/patch-ab (dead) 1.1 +22 -0 ports/net/3proxy/files/patch-cfg-3proxy.cfg.sample (new) 1.2 +1 -0 ports/net/3proxy/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Oct 28 07:58:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFD5216A41F; Fri, 28 Oct 2005 07:58:28 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B49143D46; Fri, 28 Oct 2005 07:58:28 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S7wSFI082814; Fri, 28 Oct 2005 07:58:28 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S7wSm9082813; Fri, 28 Oct 2005 07:58:28 GMT (envelope-from jylefort) Message-Id: <200510280758.j9S7wSm9082813@repoman.freebsd.org> From: Jean-Yves Lefort Date: Fri, 28 Oct 2005 07:58: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/libid3tag Makefile distinfo pkg-plist ports/audio/libid3tag/files patch-Makefile.in patch-configure 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: Fri, 28 Oct 2005 07:58:28 -0000 jylefort 2005-10-28 07:58:27 UTC FreeBSD ports repository Modified files: audio/libid3tag Makefile distinfo pkg-plist Added files: audio/libid3tag/files patch-ltmain.sh Removed files: audio/libid3tag/files patch-Makefile.in patch-configure Log: - Update to 0.15.1b [1] - While here, fix library major version number [1]: PR: ports/87405 Submitted by: Rodrigo Graeff Approved by: maintainer timeout (15 days) Revision Changes Path 1.6 +8 -3 ports/audio/libid3tag/Makefile 1.3 +2 -2 ports/audio/libid3tag/distinfo 1.3 +0 -72 ports/audio/libid3tag/files/patch-Makefile.in (dead) 1.2 +0 -10 ports/audio/libid3tag/files/patch-configure (dead) 1.1 +25 -0 ports/audio/libid3tag/files/patch-ltmain.sh (new) 1.3 +1 -1 ports/audio/libid3tag/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Oct 28 07:59:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7861B16A41F; Fri, 28 Oct 2005 07:59:54 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BF2D43D48; Fri, 28 Oct 2005 07:59:54 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S7xs8C083220; Fri, 28 Oct 2005 07:59:54 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S7xsZ1083219; Fri, 28 Oct 2005 07:59:54 GMT (envelope-from jylefort) Message-Id: <200510280759.j9S7xsZ1083219@repoman.freebsd.org> From: Jean-Yves Lefort Date: Fri, 28 Oct 2005 07:59: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/daapd Makefile ports/audio/mpg321 Makefile ports/audio/moc Makefile ports/audio/ocp Makefile ports/audio/gtkpod Makefile ports/audio/muine Makefile ports/audio/madplay Makefile ports/audio/madman 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, 28 Oct 2005 07:59:54 -0000 jylefort 2005-10-28 07:59:54 UTC FreeBSD ports repository Modified files: audio/daapd Makefile audio/mpg321 Makefile audio/moc Makefile audio/ocp Makefile audio/gtkpod Makefile audio/muine Makefile audio/madplay Makefile audio/madman Makefile audio/mixxx Makefile audio/mt-daapd Makefile audio/rhythmbox Makefile multimedia/vlc Makefile multimedia/mpeg4ip Makefile multimedia/vlc-devel Makefile sysutils/graveman Makefile www/mod_musicindex Makefile Log: Chase libid3tag update. Revision Changes Path 1.10 +1 -0 ports/audio/daapd/Makefile 1.27 +2 -1 ports/audio/gtkpod/Makefile 1.2 +2 -1 ports/audio/madman/Makefile 1.6 +2 -2 ports/audio/madplay/Makefile 1.8 +1 -0 ports/audio/mixxx/Makefile 1.7 +2 -1 ports/audio/moc/Makefile 1.30 +2 -2 ports/audio/mpg321/Makefile 1.4 +2 -1 ports/audio/mt-daapd/Makefile 1.18 +2 -2 ports/audio/muine/Makefile 1.10 +2 -2 ports/audio/ocp/Makefile 1.61 +2 -2 ports/audio/rhythmbox/Makefile 1.59 +2 -2 ports/multimedia/mpeg4ip/Makefile 1.121 +2 -2 ports/multimedia/vlc-devel/Makefile 1.113 +2 -2 ports/multimedia/vlc/Makefile 1.7 +2 -1 ports/sysutils/graveman/Makefile 1.12 +2 -2 ports/www/mod_musicindex/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 08:08:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E2B416A41F; Fri, 28 Oct 2005 08:08:59 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39F9143D48; Fri, 28 Oct 2005 08:08:59 +0000 (GMT) (envelope-from danfe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S88wLe083586; Fri, 28 Oct 2005 08:08:58 GMT (envelope-from danfe@repoman.freebsd.org) Received: (from danfe@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S88w3W083585; Fri, 28 Oct 2005 08:08:58 GMT (envelope-from danfe) Message-Id: <200510280808.j9S88w3W083585@repoman.freebsd.org> From: Alexey Dokuchaev Date: Fri, 28 Oct 2005 08:08: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-fm/tdfsb 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, 28 Oct 2005 08:08:59 -0000 danfe 2005-10-28 08:08:57 UTC FreeBSD ports repository Modified files: x11-fm/tdfsb Makefile Log: Register missing dependency to fix the build. Reported by: krismail Revision Changes Path 1.2 +2 -1 ports/x11-fm/tdfsb/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 08:29:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5349C16A41F; Fri, 28 Oct 2005 08:29:54 +0000 (GMT) (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 21D1C43D46; Fri, 28 Oct 2005 08:29:54 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S8TrA4084442; Fri, 28 Oct 2005 08:29:53 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S8TrKn084441; Fri, 28 Oct 2005 08:29:53 GMT (envelope-from tobez) Message-Id: <200510280829.j9S8TrKn084441@repoman.freebsd.org> From: Anton Berezin Date: Fri, 28 Oct 2005 08:29: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 Makefile ports/devel/p5-Date-Holidays-DK 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, 28 Oct 2005 08:29:54 -0000 tobez 2005-10-28 08:29:52 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Date-Holidays-DK Makefile distinfo pkg-descr pkg-plist Log: Add devel/p5-Date-Holidays-DK, a Perl module to determine Danish public holidays. Assign lth as the maintainer, with his permission, since he is the author of the module. Revision Changes Path 1.2011 +1 -0 ports/devel/Makefile 1.1 +33 -0 ports/devel/p5-Date-Holidays-DK/Makefile (new) 1.1 +2 -0 ports/devel/p5-Date-Holidays-DK/distinfo (new) 1.1 +3 -0 ports/devel/p5-Date-Holidays-DK/pkg-descr (new) 1.1 +7 -0 ports/devel/p5-Date-Holidays-DK/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Oct 28 08:30:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DD0716A41F; Fri, 28 Oct 2005 08:30:29 +0000 (GMT) (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 C92EA43D48; Fri, 28 Oct 2005 08:30:28 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S8USIv084535; Fri, 28 Oct 2005 08:30:28 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S8USle084534; Fri, 28 Oct 2005 08:30:28 GMT (envelope-from tobez) Message-Id: <200510280830.j9S8USle084534@repoman.freebsd.org> From: Anton Berezin Date: Fri, 28 Oct 2005 08:30: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: 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, 28 Oct 2005 08:30:29 -0000 tobez 2005-10-28 08:30:28 UTC FreeBSD ports repository Modified files: . modules Log: p5-Date-Holidays-DK --> ports/devel/p5-Date-Holidays-DK Revision Changes Path 1.13479 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Oct 28 08:45:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FF6116A41F; Fri, 28 Oct 2005 08:45:28 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B86843D45; Fri, 28 Oct 2005 08:45:28 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S8jSae084884; Fri, 28 Oct 2005 08:45:28 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S8jRKo084883; Fri, 28 Oct 2005 08:45:27 GMT (envelope-from jylefort) Message-Id: <200510280845.j9S8jRKo084883@repoman.freebsd.org> From: Jean-Yves Lefort Date: Fri, 28 Oct 2005 08:45: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/audio/libid3tag 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, 28 Oct 2005 08:45:28 -0000 jylefort 2005-10-28 08:45:26 UTC FreeBSD ports repository Modified files: audio/libid3tag Makefile Log: Create the ${PREFIX}/libdata/pkgconfig directory. It is needed on 4.x/5.x -RELEASE systems built exclusively from ports. Forgotten by: jylefort Revision Changes Path 1.7 +1 -0 ports/audio/libid3tag/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 08:54:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD0B916A41F; Fri, 28 Oct 2005 08:54:08 +0000 (GMT) (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 6379343D48; Fri, 28 Oct 2005 08:54:08 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S8s8M6092218; Fri, 28 Oct 2005 08:54:08 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S8s7QV092217; Fri, 28 Oct 2005 08:54:08 GMT (envelope-from lth) Message-Id: <200510280854.j9S8s7QV092217@repoman.freebsd.org> From: Lars Thegler Date: Fri, 28 Oct 2005 08:54: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/perforce 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: Fri, 28 Oct 2005 08:54:09 -0000 lth 2005-10-28 08:54:07 UTC FreeBSD ports repository Modified files: devel/perforce Makefile distinfo.i386 Log: Chase updated binaries Revision Changes Path 1.52 +1 -1 ports/devel/perforce/Makefile 1.24 +2 -2 ports/devel/perforce/distinfo.i386 From owner-cvs-all@FreeBSD.ORG Fri Oct 28 09:06:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A619616A41F; Fri, 28 Oct 2005 09:06:49 +0000 (GMT) (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 62C3143D45; Fri, 28 Oct 2005 09:06:49 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S96nx3092586; Fri, 28 Oct 2005 09:06:49 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S96nW5092585; Fri, 28 Oct 2005 09:06:49 GMT (envelope-from lioux) Message-Id: <200510280906.j9S96nW5092585@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Fri, 28 Oct 2005 09:06: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/net/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: Fri, 28 Oct 2005 09:06:49 -0000 lioux 2005-10-28 09:06:48 UTC FreeBSD ports repository Modified files: net/mldonkey-devel Makefile distinfo Log: Update to 2.6.6 Revision Changes Path 1.54 +1 -1 ports/net/mldonkey-devel/Makefile 1.33 +2 -2 ports/net/mldonkey-devel/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 09:08:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD06D16A41F; Fri, 28 Oct 2005 09:08:17 +0000 (GMT) (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 894E943D45; Fri, 28 Oct 2005 09:08:17 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S98HXd092633; Fri, 28 Oct 2005 09:08:17 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S98HTk092632; Fri, 28 Oct 2005 09:08:17 GMT (envelope-from lth) Message-Id: <200510280908.j9S98HTk092632@repoman.freebsd.org> From: Lars Thegler Date: Fri, 28 Oct 2005 09:08: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/devel/p5-Cache 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, 28 Oct 2005 09:08:18 -0000 lth 2005-10-28 09:08:17 UTC FreeBSD ports repository Modified files: devel/p5-Cache Makefile distinfo Log: Update to 2.03, fixup IGNORE message PR: 88116 Submitted by: tobez Revision Changes Path 1.2 +2 -2 ports/devel/p5-Cache/Makefile 1.2 +2 -2 ports/devel/p5-Cache/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 09:28:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D85BC16A41F; Fri, 28 Oct 2005 09:28:01 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id B51F743D46; Fri, 28 Oct 2005 09:27:57 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.3/8.13.3) with ESMTP id j9S9RqkX076446; Fri, 28 Oct 2005 13:27:52 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.3/8.13.3/Submit) id j9S9Rqbb076445; Fri, 28 Oct 2005 13:27:52 +0400 (MSD) (envelope-from yar) Date: Fri, 28 Oct 2005 13:27:51 +0400 From: Yar Tikhiy To: Tom Rhodes Message-ID: <20051028092751.GA76409@comp.chem.msu.su> References: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> <20051026093536.GF41520@cell.sick.ru> <20051026105820.X32255@fledge.watson.org> <200510261416.09346.max@love2party.net> <20051027192000.57e83aff.trhodes@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051027192000.57e83aff.trhodes@FreeBSD.org> User-Agent: Mutt/1.5.9i Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, glebius@FreeBSD.org, rwatson@FreeBSD.org, Max Laier 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: Fri, 28 Oct 2005 09:28:02 -0000 On Thu, Oct 27, 2005 at 07:20:00PM -0400, Tom Rhodes wrote: > On Wed, 26 Oct 2005 14:15:47 +0200 > Max Laier wrote: > > > On Wednesday 26 October 2005 11:58, Robert Watson wrote: > > > On Wed, 26 Oct 2005, Gleb Smirnoff wrote: > > > > On Wed, Oct 26, 2005 at 10:15:09AM +0100, Robert Watson wrote: > > > > R> I think we may actually be in need of either a new flag, > > > > R> IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable > > > > way R> for protocols to ask if an interface is a loopback interface or > > > > not. > > > > > > > > I'd prefer to rewrite those subsystems that use interface layer but > > > > aren't actually interfaces. I have plans to do this for CARP. > > > > > > At least in the case of if_disc, this won't help. I'm not quite sure why > > > if_disc is IFF_LOOPBACK. > > > > Sad answer seems to be: copy and paste. IFF_LOOPBACK is part of 1.1 which > > also contains the following comment: > > > > /* > > * Discard interface driver for protocol testing and timing. > > * (Based on the loopback.) > > */ > > > > So it might be a good idea to get rid of it and work from there. > > IIRC, someone told me or I read somewhere that if_disc is > somewhat based on lo(4). There may be more sections where > code is similar - rotted - over time. My browsing through if_disc.c revealed none of them except for already noticed IFF_LOOPBACK, but I'll take another look when going to commit the result of erasing IFF_LOOPBACK. -- Yar From owner-cvs-all@FreeBSD.ORG Fri Oct 28 09:33:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79DD416A44D; Fri, 28 Oct 2005 09:33:31 +0000 (GMT) (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 E4A8943D73; Fri, 28 Oct 2005 09:33:29 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S9XTq4093212; Fri, 28 Oct 2005 09:33:29 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S9XT23093211; Fri, 28 Oct 2005 09:33:29 GMT (envelope-from lth) Message-Id: <200510280933.j9S9XT23093211@repoman.freebsd.org> From: Lars Thegler Date: Fri, 28 Oct 2005 09:33: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/p5-Catalyst-Model-CDBI 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, 28 Oct 2005 09:33:31 -0000 lth 2005-10-28 09:33:29 UTC FreeBSD ports repository Modified files: www/p5-Catalyst-Model-CDBI Makefile distinfo Log: Update to 0.10 Revision Changes Path 1.2 +1 -1 ports/www/p5-Catalyst-Model-CDBI/Makefile 1.2 +2 -2 ports/www/p5-Catalyst-Model-CDBI/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 09:35:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 134C516A41F; Fri, 28 Oct 2005 09:35:43 +0000 (GMT) (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 7FE2B43D68; Fri, 28 Oct 2005 09:35:35 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S9ZZ4D093339; Fri, 28 Oct 2005 09:35:35 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S9ZZQV093338; Fri, 28 Oct 2005 09:35:35 GMT (envelope-from joerg) Message-Id: <200510280935.j9S9ZZQV093338@repoman.freebsd.org> From: Joerg Wunsch Date: Fri, 28 Oct 2005 09:35: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/devel/libusb 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, 28 Oct 2005 09:35:43 -0000 joerg 2005-10-28 09:35:35 UTC FreeBSD ports repository Modified files: devel/libusb Makefile Log: Set the USBD_SHORT_XFER_OK flag when trying to read a string. Otherwise, we end up in an IO error. Approved by: maintainer timeout Revision Changes Path 1.11 +1 -1 ports/devel/libusb/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 09:36:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CF7F16A41F; Fri, 28 Oct 2005 09:36:23 +0000 (GMT) (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 2E76E43D62; Fri, 28 Oct 2005 09:36:20 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S9aK1m093390; Fri, 28 Oct 2005 09:36:20 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S9aKfd093389; Fri, 28 Oct 2005 09:36:20 GMT (envelope-from joerg) Message-Id: <200510280936.j9S9aKfd093389@repoman.freebsd.org> From: Joerg Wunsch Date: Fri, 28 Oct 2005 09:36: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/devel/libusb/files patch-bsd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 09:36:23 -0000 joerg 2005-10-28 09:36:20 UTC FreeBSD ports repository Added files: devel/libusb/files patch-bsd.c Log: Oops, forgot to actually cvs add the patch in previous commit... (Set USBD_SHORT_XFER_OK when reading strings.) Revision Changes Path 1.7 +11 -0 ports/devel/libusb/files/patch-bsd.c (new) From owner-cvs-all@FreeBSD.ORG Fri Oct 28 09:36:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A46CB16A41F; Fri, 28 Oct 2005 09:36:44 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7AA343D48; Fri, 28 Oct 2005 09:36:43 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S9ahFs093468; Fri, 28 Oct 2005 09:36:43 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S9ahYI093467; Fri, 28 Oct 2005 09:36:43 GMT (envelope-from jylefort) Message-Id: <200510280936.j9S9ahYI093467@repoman.freebsd.org> From: Jean-Yves Lefort Date: Fri, 28 Oct 2005 09:36: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/devel Makefile ports/devel/bazaar-ng Makefile distinfo pkg-descr pkg-plist ports/devel/bazaar-ng/files patch-bzrlib_osutils.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: Fri, 28 Oct 2005 09:36:44 -0000 jylefort 2005-10-28 09:36:43 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/bazaar-ng Makefile distinfo pkg-descr pkg-plist devel/bazaar-ng/files patch-bzrlib_osutils.py Log: Add bazaar-ng. Bazaar-NG is an implementation of GNU arch from Canonical written in Python. Arch is a version control system, which allows you to keep old versions of files and directories (usually source code), keep a log of who, when, and why changes occurred, etc., like SVN, CVS, or RCS. Arch is distributed, which gives it significant advantages and some disadvantages compared to SVN and CVS. The bzr implementation is the next Bazaar version from Canonical called Bazaar-NG. WWW: http://www.bazaar-ng.org/ PR: ports/87849 Submitted by: Ulf Lilleengen Revision Changes Path 1.2012 +1 -0 ports/devel/Makefile 1.1 +34 -0 ports/devel/bazaar-ng/Makefile (new) 1.1 +2 -0 ports/devel/bazaar-ng/distinfo (new) 1.1 +15 -0 ports/devel/bazaar-ng/files/patch-bzrlib_osutils.py (new) 1.1 +9 -0 ports/devel/bazaar-ng/pkg-descr (new) 1.1 +331 -0 ports/devel/bazaar-ng/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Oct 28 09:37:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F41DD16A41F; Fri, 28 Oct 2005 09:37:42 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A44D443D48; Fri, 28 Oct 2005 09:37:42 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S9bgWs093513; Fri, 28 Oct 2005 09:37:42 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S9bgOA093512; Fri, 28 Oct 2005 09:37:42 GMT (envelope-from jylefort) Message-Id: <200510280937.j9S9bgOA093512@repoman.freebsd.org> From: Jean-Yves Lefort Date: Fri, 28 Oct 2005 09:37: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: 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, 28 Oct 2005 09:37:43 -0000 jylefort 2005-10-28 09:37:42 UTC FreeBSD ports repository Modified files: . modules Log: bazaar-ng --> ports/devel/bazaar-ng Revision Changes Path 1.13480 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Oct 28 09:57:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3278716A41F; Fri, 28 Oct 2005 09:57:34 +0000 (GMT) (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 24B9343D60; Fri, 28 Oct 2005 09:57:31 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S9vUGg094069; Fri, 28 Oct 2005 09:57:30 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S9vUCd094068; Fri, 28 Oct 2005 09:57:30 GMT (envelope-from garga) Message-Id: <200510280957.j9S9vUCd094068@repoman.freebsd.org> From: Renato Botelho Date: Fri, 28 Oct 2005 09:57: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/qmail 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, 28 Oct 2005 09:57:34 -0000 garga 2005-10-28 09:57:30 UTC FreeBSD ports repository Modified files: mail/qmail Makefile Log: - Remove redeclaration of strerror(), that was breaking the port. Reported by: oliver Revision Changes Path 1.79 +2 -0 ports/mail/qmail/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 10:02:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13BA516A41F; Fri, 28 Oct 2005 10:02:32 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C399143D45; Fri, 28 Oct 2005 10:02:31 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SA2VFb094321; Fri, 28 Oct 2005 10:02:31 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SA2VSj094320; Fri, 28 Oct 2005 10:02:31 GMT (envelope-from nork) Message-Id: <200510281002.j9SA2VSj094320@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 28 Oct 2005 10:02: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/net/liveMedia 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, 28 Oct 2005 10:02:32 -0000 nork 2005-10-28 10:02:31 UTC FreeBSD ports repository Modified files: net/liveMedia Makefile distinfo Log: Update to 2005.10.28a. Revision Changes Path 1.210 +1 -1 ports/net/liveMedia/Makefile 1.197 +2 -2 ports/net/liveMedia/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 10:06:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1680116A41F; Fri, 28 Oct 2005 10:06:17 +0000 (GMT) (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 C5D0343D4C; Fri, 28 Oct 2005 10:06:16 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SA6G4O094493; Fri, 28 Oct 2005 10:06:16 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SA6GA6094492; Fri, 28 Oct 2005 10:06:16 GMT (envelope-from ahze) Message-Id: <200510281006.j9SA6GA6094492@repoman.freebsd.org> From: Michael Johnson Date: Fri, 28 Oct 2005 10:06: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/multimedia/vlc-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: Fri, 28 Oct 2005 10:06:17 -0000 ahze 2005-10-28 10:06:16 UTC FreeBSD ports repository Modified files: multimedia/vlc-devel Makefile distinfo Log: - Update to 0.8.4.20051027 - Disable matroska support until libebml is updated - OPTIONS are disabled, too many problems right now. Revision Changes Path 1.122 +8 -5 ports/multimedia/vlc-devel/Makefile 1.27 +2 -2 ports/multimedia/vlc-devel/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 10:07:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C90116A41F; Fri, 28 Oct 2005 10:07:30 +0000 (GMT) (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 3A7E843D46; Fri, 28 Oct 2005 10:07:30 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SA7U7T094599; Fri, 28 Oct 2005 10:07:30 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SA7U5A094598; Fri, 28 Oct 2005 10:07:30 GMT (envelope-from ahze) Message-Id: <200510281007.j9SA7U5A094598@repoman.freebsd.org> From: Michael Johnson Date: Fri, 28 Oct 2005 10:07: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/multimedia/vlc-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: Fri, 28 Oct 2005 10:07:30 -0000 ahze 2005-10-28 10:07:30 UTC FreeBSD ports repository Modified files: multimedia/vlc-devel Makefile Log: - Fix CONFLICTS 0.8.4 -> 0.8.2 Revision Changes Path 1.123 +1 -1 ports/multimedia/vlc-devel/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 10:42:27 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0294816A41F; Fri, 28 Oct 2005 10:42:27 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFC8343D45; Fri, 28 Oct 2005 10:42:26 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 6E4C130D3; Fri, 28 Oct 2005 05:42:25 -0500 (CDT) Date: Fri, 28 Oct 2005 05:42:25 -0500 To: Jean-Yves Lefort Message-ID: <20051028104225.GA17229@soaustin.net> References: <200510280758.j9S7wSm9082813@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510280758.j9S7wSm9082813@repoman.freebsd.org> User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/audio/libid3tag Makefile distinfo pkg-plist ports/audio/libid3tag/files patch-Makefile.in patch-configure 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: Fri, 28 Oct 2005 10:42:27 -0000 On Fri, Oct 28, 2005 at 07:58:27AM +0000, Jean-Yves Lefort wrote: > - While here, fix library major version number Which is the canonical example of 'sweeping change'. The next slush cycle I expect us to do better on this. I have on my list of things to do to document much more specifically what these are, exactly, but 'library major version number' I had hoped was well-understood as being the case that would have been most clear. mcl From owner-cvs-all@FreeBSD.ORG Fri Oct 28 10:45:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7005616A420; Fri, 28 Oct 2005 10:45:20 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3468A43D4C; Fri, 28 Oct 2005 10:45:20 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SAjJlu096160; Fri, 28 Oct 2005 10:45:19 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SAjJmR096150; Fri, 28 Oct 2005 10:45:19 GMT (envelope-from stefanf) Message-Id: <200510281045.j9SAjJmR096150@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 28 Oct 2005 10:45: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/bin/sh memalloc.c memalloc.h miscbltin.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 10:45:20 -0000 stefanf 2005-10-28 10:45:19 UTC FreeBSD src repository Modified files: bin/sh memalloc.c memalloc.h miscbltin.c Log: Protect malloc, realloc and free calls with INT{ON,OFF} directly in chkalloc, ckrealloc and ckfree (added), respectively. sh jumps out of the signal handler using longjmp which is obviously a bad idea during malloc calls. Note: I think there is still a small race here because volatile sig_atomic_t only guarantees atomic reads and writes while we're doing increments and decrements. Protect a setmode call with INT{ON,OFF} as it calls malloc internally. PR: 45478 Patch from: Nate Eldredge Revision Changes Path 1.27 +16 -2 src/bin/sh/memalloc.c 1.10 +1 -2 src/bin/sh/memalloc.h 1.34 +2 -0 src/bin/sh/miscbltin.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 10:47:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32BB116A41F; Fri, 28 Oct 2005 10:47:21 +0000 (GMT) (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 021A343D48; Fri, 28 Oct 2005 10:47:21 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SAlK7a096316; Fri, 28 Oct 2005 10:47:20 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SAlKee096315; Fri, 28 Oct 2005 10:47:20 GMT (envelope-from sem) Message-Id: <200510281047.j9SAlKee096315@repoman.freebsd.org> From: Sergey Matveychuk Date: Fri, 28 Oct 2005 10: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/devel Makefile ports/devel/raknet 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, 28 Oct 2005 10:47:21 -0000 sem 2005-10-28 10:47:20 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/raknet Makefile distinfo pkg-descr pkg-plist Log: A free networking API that provides reliable UDP and high level networking constructs. Although RakNet can be used for any networked application, it was developed specifically for rapid development of online games and the addition of multiplayer to single player games. WWW: http://www.rakkarsoft.com/ PR: ports/87304 Submitted by: Andrew I Baznikin Revision Changes Path 1.2013 +1 -0 ports/devel/Makefile 1.1 +56 -0 ports/devel/raknet/Makefile (new) 1.1 +2 -0 ports/devel/raknet/distinfo (new) 1.1 +6 -0 ports/devel/raknet/pkg-descr (new) 1.1 +62 -0 ports/devel/raknet/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Oct 28 10:47:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4176416A41F; Fri, 28 Oct 2005 10:47:38 +0000 (GMT) (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 F3E0743D49; Fri, 28 Oct 2005 10:47:37 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SAlbpH096362; Fri, 28 Oct 2005 10:47:37 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SAlb9M096361; Fri, 28 Oct 2005 10:47:37 GMT (envelope-from sem) Message-Id: <200510281047.j9SAlb9M096361@repoman.freebsd.org> From: Sergey Matveychuk Date: Fri, 28 Oct 2005 10:47: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: Fri, 28 Oct 2005 10:47:38 -0000 sem 2005-10-28 10:47:37 UTC FreeBSD ports repository Modified files: . modules Log: raknet --> ports/devel/raknet Revision Changes Path 1.13481 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Oct 28 10:48:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7CD616A420; Fri, 28 Oct 2005 10:48:52 +0000 (GMT) (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 044CC43D49; Fri, 28 Oct 2005 10:48:52 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SAmpmg096447; Fri, 28 Oct 2005 10:48:51 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SAmpau096446; Fri, 28 Oct 2005 10:48:51 GMT (envelope-from garga) Message-Id: <200510281048.j9SAmpau096446@repoman.freebsd.org> From: Renato Botelho Date: Fri, 28 Oct 2005 10:48: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/jed 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, 28 Oct 2005 10:48:53 -0000 garga 2005-10-28 10:48:51 UTC FreeBSD ports repository Modified files: editors/jed Makefile Log: - Respect CFLAGS/LDFLAGS Revision Changes Path 1.27 +1 -3 ports/editors/jed/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 10:49:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7160B16A41F; Fri, 28 Oct 2005 10:49:22 +0000 (GMT) (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 303F443D5D; Fri, 28 Oct 2005 10:49:22 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SAnMj5096498; Fri, 28 Oct 2005 10:49:22 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SAnMUa096497; Fri, 28 Oct 2005 10:49:22 GMT (envelope-from garga) Message-Id: <200510281049.j9SAnMUa096497@repoman.freebsd.org> From: Renato Botelho Date: Fri, 28 Oct 2005 10:49: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/editors/jed-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: Fri, 28 Oct 2005 10:49:22 -0000 garga 2005-10-28 10:49:22 UTC FreeBSD ports repository Modified files: editors/jed-devel Makefile Log: - Respect CFLAGS/LDFLAGS - Add an option to use libslang2 Revision Changes Path 1.4 +10 -6 ports/editors/jed-devel/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 10:52:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1512616A41F; Fri, 28 Oct 2005 10:52:29 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from 212.68.244.220.brutele.be (212.68.244.220.brutele.be [212.68.244.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6128643D48; Fri, 28 Oct 2005 10:52:28 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from jsite.lefort.net (jsite.lefort.net [192.168.1.2]) by gateway.lefort.net (Postfix) with ESMTP id 7D74354CF; Fri, 28 Oct 2005 12:52:26 +0200 (CEST) Received: from jsite.lefort.net (localhost [127.0.0.1]) by jsite.lefort.net (Postfix) with SMTP id 24FD7C151; Fri, 28 Oct 2005 12:52:26 +0200 (CEST) Date: Fri, 28 Oct 2005 12:52:25 +0200 From: Jean-Yves Lefort To: linimon@lonesome.com (Mark Linimon) Message-Id: <20051028125225.47bfd1f4.jylefort@FreeBSD.org> In-Reply-To: <20051028104225.GA17229@soaustin.net> References: <200510280758.j9S7wSm9082813@repoman.freebsd.org> <20051028104225.GA17229@soaustin.net> X-Mailer: Sylpheed running on FreeBSD Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Fri__28_Oct_2005_12_52_25_+0200_xv9P/i3=9rCjeyw6" Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/audio/libid3tag Makefile distinfo pkg-plist ports/audio/libid3tag/files patch-Makefile.in patch-configure 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: Fri, 28 Oct 2005 10:52:29 -0000 --Signature=_Fri__28_Oct_2005_12_52_25_+0200_xv9P/i3=9rCjeyw6 Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, 28 Oct 2005 05:42:25 -0500 linimon@lonesome.com (Mark Linimon) wrote: > On Fri, Oct 28, 2005 at 07:58:27AM +0000, Jean-Yves Lefort wrote: > > - While here, fix library major version number >=20 > Which is the canonical example of 'sweeping change'. >=20 > The next slush cycle I expect us to do better on this. I have on my list > of things to do to document much more specifically what these are, exactl= y, > but 'library major version number' I had hoped was well-understood as > being the case that would have been most clear. The port update causes the library version to change, with or without the fix (2 -> 3 without the fix, 2 -> 0 with it). --=20 Jean-Yves Lefort jylefort@FreeBSD.org http://lefort.be.eu.org/ --Signature=_Fri__28_Oct_2005_12_52_25_+0200_xv9P/i3=9rCjeyw6 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFDYgLqyzD7UaO4AGoRApsMAJ9hWLZtwx9c9eF4VPvErgA2D9ac9gCfTFJ2 Eua8Z3bHRSQriZexFKcFSUs= =byw2 -----END PGP SIGNATURE----- --Signature=_Fri__28_Oct_2005_12_52_25_+0200_xv9P/i3=9rCjeyw6-- From owner-cvs-all@FreeBSD.ORG Fri Oct 28 10:54:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8481916A41F; Fri, 28 Oct 2005 10:54:19 +0000 (GMT) (envelope-from jmz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4194143D48; Fri, 28 Oct 2005 10:54:19 +0000 (GMT) (envelope-from jmz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SAsJff096769; Fri, 28 Oct 2005 10:54:19 GMT (envelope-from jmz@repoman.freebsd.org) Received: (from jmz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SAsIYQ096768; Fri, 28 Oct 2005 10:54:18 GMT (envelope-from jmz) Message-Id: <200510281054.j9SAsIYQ096768@repoman.freebsd.org> From: Jean-Marc Zucconi Date: Fri, 28 Oct 2005 10:54: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/doom Makefile ports/games/doom/files patch-ab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 10:54:19 -0000 jmz 2005-10-28 10:54:18 UTC FreeBSD ports repository Modified files: games/doom Makefile games/doom/files patch-ab Log: Use ${X11BASE} instead of /usr/X11R6 in makefiles. Revision Changes Path 1.26 +1 -1 ports/games/doom/Makefile 1.4 +16 -6 ports/games/doom/files/patch-ab From owner-cvs-all@FreeBSD.ORG Fri Oct 28 11:07:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 480D316A420; Fri, 28 Oct 2005 11:07:04 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A60F43D58; Fri, 28 Oct 2005 11:07:03 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id D917430D8; Fri, 28 Oct 2005 06:07:02 -0500 (CDT) Date: Fri, 28 Oct 2005 06:07:02 -0500 To: Jean-Yves Lefort Message-ID: <20051028110702.GA18587@soaustin.net> References: <200510280758.j9S7wSm9082813@repoman.freebsd.org> <20051028104225.GA17229@soaustin.net> <20051028125225.47bfd1f4.jylefort@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051028125225.47bfd1f4.jylefort@FreeBSD.org> User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: Mark Linimon , cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/audio/libid3tag Makefile distinfo pkg-plist ports/audio/libid3tag/files patch-Makefile.in patch-configure 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: Fri, 28 Oct 2005 11:07:04 -0000 On Fri, Oct 28, 2005 at 12:52:25PM +0200, Jean-Yves Lefort wrote: > The port update causes the library version to change, with or without > the fix (2 -> 3 without the fix, 2 -> 0 with it). Then the update should have waited until after the slush ended. mcl From owner-cvs-all@FreeBSD.ORG Fri Oct 28 11:09:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 033B616A41F; Fri, 28 Oct 2005 11:09:50 +0000 (GMT) (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 B44FD43D45; Fri, 28 Oct 2005 11:09:49 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SB9ncu097439; Fri, 28 Oct 2005 11:09:49 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SB9nIK097438; Fri, 28 Oct 2005 11:09:49 GMT (envelope-from lth) Message-Id: <200510281109.j9SB9nIK097438@repoman.freebsd.org> From: Lars Thegler Date: Fri, 28 Oct 2005 11:09: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/p5-CGI-Ajax 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, 28 Oct 2005 11:09:50 -0000 lth 2005-10-28 11:09:49 UTC FreeBSD ports repository Modified files: www/p5-CGI-Ajax Makefile distinfo Log: Update to 0.641 Revision Changes Path 1.6 +1 -2 ports/www/p5-CGI-Ajax/Makefile 1.6 +2 -2 ports/www/p5-CGI-Ajax/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 11:17:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E9EB16A41F; Fri, 28 Oct 2005 11:17:06 +0000 (GMT) (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 CC85A43D46; Fri, 28 Oct 2005 11:17:05 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SBH5ol097844; Fri, 28 Oct 2005 11:17:05 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SBH5G7097843; Fri, 28 Oct 2005 11:17:05 GMT (envelope-from garga) Message-Id: <200510281117.j9SBH5G7097843@repoman.freebsd.org> From: Renato Botelho Date: Fri, 28 Oct 2005 11:17: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/bogofilter Makefile pkg-plist ports/mail/bogofilter/files patch-bashisms X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 11:17:06 -0000 garga 2005-10-28 11:17:04 UTC FreeBSD ports repository Modified files: mail/bogofilter Makefile pkg-plist Added files: mail/bogofilter/files patch-bashisms Log: - update contrib/ to match upstream - fix up bash-isms from contrib/randomtrain (patch), that should be the last bash-ism in contrib/ (also fixed in upcoming upstream 0.96.4 release) - Remove bash dependency PR: ports/88121 Submitted by: maintainer Revision Changes Path 1.68 +14 -25 ports/mail/bogofilter/Makefile 1.1 +79 -0 ports/mail/bogofilter/files/patch-bashisms (new) 1.17 +7 -4 ports/mail/bogofilter/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Oct 28 11:46:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B50916A41F; Fri, 28 Oct 2005 11:46:16 +0000 (GMT) (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 EBBF643D45; Fri, 28 Oct 2005 11:46:15 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SBkFec099007; Fri, 28 Oct 2005 11:46:15 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SBkFqZ099006; Fri, 28 Oct 2005 11:46:15 GMT (envelope-from garga) Message-Id: <200510281146.j9SBkFqZ099006@repoman.freebsd.org> From: Renato Botelho Date: Fri, 28 Oct 2005 11:46: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/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: Fri, 28 Oct 2005 11:46:16 -0000 garga 2005-10-28 11:46:14 UTC FreeBSD ports repository Modified files: www/mediawiki Makefile distinfo Log: - Update to 1.5.1 Changes: http://sourceforge.net/project/shownotes.php?release_id=366110 PR: ports/88063 Submitted by: maintainer Revision Changes Path 1.16 +1 -1 ports/www/mediawiki/Makefile 1.13 +2 -2 ports/www/mediawiki/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 12:07:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E3C816A41F; Fri, 28 Oct 2005 12:07:41 +0000 (GMT) (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 BF95B43D4C; Fri, 28 Oct 2005 12:07:40 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SC7esE099755; Fri, 28 Oct 2005 12:07:40 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SC7dUn099754; Fri, 28 Oct 2005 12:07:39 GMT (envelope-from garga) Message-Id: <200510281207.j9SC7dUn099754@repoman.freebsd.org> From: Renato Botelho Date: Fri, 28 Oct 2005 12:07: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/chkrootkit 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, 28 Oct 2005 12:07:41 -0000 garga 2005-10-28 12:07:36 UTC FreeBSD ports repository Modified files: security/chkrootkit Makefile Log: chkproc sends a 25 signal to init causing a reboot after a 30s sleep Mark it as BROKEN until the problem is fixed. Submitted by: maintainer (by email) Revision Changes Path 1.24 +2 -0 ports/security/chkrootkit/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 12:24:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89CF816A41F; Fri, 28 Oct 2005 12:24:08 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 574AA43D45; Fri, 28 Oct 2005 12:24:08 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SCO8wx000935; Fri, 28 Oct 2005 12:24:08 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SCO835000934; Fri, 28 Oct 2005 12:24:08 GMT (envelope-from jylefort) Message-Id: <200510281224.j9SCO835000934@repoman.freebsd.org> From: Jean-Yves Lefort Date: Fri, 28 Oct 2005 12:24: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/x11 Makefile ports/x11/alltray 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, 28 Oct 2005 12:24:08 -0000 jylefort 2005-10-28 12:24:07 UTC FreeBSD ports repository Modified files: x11 Makefile Added files: x11/alltray Makefile distinfo pkg-descr pkg-plist Log: Add alltray. With AllTray you can dock any application with no native tray icon (like Evolution, Thunderbird, terminals) into the system tray. A high-light feature is that a click on the "close" button will minimize back to system tray. It works well with GNOME, KDE, XFCE 4*, Fluxbox* and WindowMaker*. WWW: http://alltray.sourceforge.net/ PR: ports/87545 Submitted by: Jose Alonso Cardenas Marquez Revision Changes Path 1.561 +1 -0 ports/x11/Makefile 1.1 +43 -0 ports/x11/alltray/Makefile (new) 1.1 +2 -0 ports/x11/alltray/distinfo (new) 1.1 +6 -0 ports/x11/alltray/pkg-descr (new) 1.1 +6 -0 ports/x11/alltray/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Oct 28 12:25:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F7D716A41F; Fri, 28 Oct 2005 12:25:03 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4842443D49; Fri, 28 Oct 2005 12:25:03 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SCP32I001013; Fri, 28 Oct 2005 12:25:03 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SCP3dA001012; Fri, 28 Oct 2005 12:25:03 GMT (envelope-from jylefort) Message-Id: <200510281225.j9SCP3dA001012@repoman.freebsd.org> From: Jean-Yves Lefort Date: Fri, 28 Oct 2005 12:25: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: 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, 28 Oct 2005 12:25:03 -0000 jylefort 2005-10-28 12:25:03 UTC FreeBSD ports repository Modified files: . modules Log: alltray --> ports/x11/alltray Revision Changes Path 1.13482 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Oct 28 12:29:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E126F16A420; Fri, 28 Oct 2005 12:29:10 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B1F243D46; Fri, 28 Oct 2005 12:29:10 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SCTA3m001239; Fri, 28 Oct 2005 12:29:10 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SCTA0X001238; Fri, 28 Oct 2005 12:29:10 GMT (envelope-from jylefort) Message-Id: <200510281229.j9SCTA0X001238@repoman.freebsd.org> From: Jean-Yves Lefort Date: Fri, 28 Oct 2005 12:29:10 +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: Fri, 28 Oct 2005 12:29:11 -0000 jylefort 2005-10-28 12:29:10 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add Ulf Lilleengen for devel/bazaar-ng. Revision Changes Path 1.473 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Fri Oct 28 12:59:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE7DF16A41F; Fri, 28 Oct 2005 12:59:48 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B20943D46; Fri, 28 Oct 2005 12:59:48 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SCxmFm009548; Fri, 28 Oct 2005 12:59:48 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SCxmFC009547; Fri, 28 Oct 2005 12:59:48 GMT (envelope-from jylefort) Message-Id: <200510281259.j9SCxmFC009547@repoman.freebsd.org> From: Jean-Yves Lefort Date: Fri, 28 Oct 2005 12:59: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/linux-jigdo 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, 28 Oct 2005 12:59:49 -0000 jylefort 2005-10-28 12:59:47 UTC FreeBSD ports repository Modified files: net/linux-jigdo Makefile distinfo Log: Update to 0.7.2 PR: ports/88126 Submitted by: maintainer Revision Changes Path 1.7 +1 -1 ports/net/linux-jigdo/Makefile 1.4 +2 -2 ports/net/linux-jigdo/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 13:00:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 441B816A428; Fri, 28 Oct 2005 13:00:35 +0000 (GMT) (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 7D1C543D55; Fri, 28 Oct 2005 13:00:07 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SD07Qp009600; Fri, 28 Oct 2005 13:00:07 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SD07wC009599; Fri, 28 Oct 2005 13:00:07 GMT (envelope-from garga) Message-Id: <200510281300.j9SD07wC009599@repoman.freebsd.org> From: Renato Botelho Date: Fri, 28 Oct 2005 13:00: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/mutt-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: Fri, 28 Oct 2005 13:00:35 -0000 garga 2005-10-28 13:00:07 UTC FreeBSD ports repository Modified files: mail/mutt-devel Makefile Log: - Add an option to use libslang2 PR: ports/88125 Submitted by: maintainer Revision Changes Path 1.258 +11 -1 ports/mail/mutt-devel/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 13:09:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1ADB616A41F; Fri, 28 Oct 2005 13:09:56 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF4D443D45; Fri, 28 Oct 2005 13:09:55 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SD9tPs010090; Fri, 28 Oct 2005 13:09:55 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SD9s3X010089; Fri, 28 Oct 2005 13:09:55 GMT (envelope-from vs) Message-Id: <200510281309.j9SD9s3X010089@repoman.freebsd.org> From: Volker Stolz Date: Fri, 28 Oct 2005 13:09: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/alf 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, 28 Oct 2005 13:09:56 -0000 vs 2005-10-28 13:09:54 UTC FreeBSD ports repository Modified files: devel/alf Makefile Log: Set INSTALLS_SHLIB Revision Changes Path 1.8 +1 -0 ports/devel/alf/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 13:29:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D857716A41F; Fri, 28 Oct 2005 13:29:24 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F8AA43D48; Fri, 28 Oct 2005 13:29:24 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SDTN0i010807; Fri, 28 Oct 2005 13:29:24 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SDTNCP010801; Fri, 28 Oct 2005 13:29:23 GMT (envelope-from vs) Message-Id: <200510281329.j9SDTNCP010801@repoman.freebsd.org> From: Volker Stolz Date: Fri, 28 Oct 2005 13:29: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/deskutils/kdissert Makefile distinfo pkg-plist ports/deskutils/kdissert/files patch-src__kdissert__canvasview__DCanvasView.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, 28 Oct 2005 13:29:25 -0000 vs 2005-10-28 13:29:21 UTC FreeBSD ports repository Modified files: deskutils/kdissert Makefile distinfo pkg-plist Added files: deskutils/kdissert/files patch-src__kdissert__canvasview__DCanvasView.cpp Log: Update to 1.0.5 PR: ports/87735 Submitted by: Ports Fury Revision Changes Path 1.19 +8 -2 ports/deskutils/kdissert/Makefile 1.13 +2 -2 ports/deskutils/kdissert/distinfo 1.1 +18 -0 ports/deskutils/kdissert/files/patch-src__kdissert__canvasview__DCanvasView.cpp (new) 1.16 +5 -0 ports/deskutils/kdissert/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Oct 28 13:36:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC88F16A41F; Fri, 28 Oct 2005 13:36:59 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E49743D45; Fri, 28 Oct 2005 13:36:59 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SDaxkM011054; Fri, 28 Oct 2005 13:36:59 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SDawAu011053; Fri, 28 Oct 2005 13:36:59 GMT (envelope-from bde) Message-Id: <200510281336.j9SDawAu011053@repoman.freebsd.org> From: Bruce Evans Date: Fri, 28 Oct 2005 13:36: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/msun/src k_cosf.c k_sinf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 13:36:59 -0000 bde 2005-10-28 13:36:58 UTC FreeBSD src repository Modified files: lib/msun/src k_cosf.c k_sinf.c Log: Use fairly optimal minimax polynomials for __kernel_cosf() and __kernel_sinf(). The old ones were the double-precision polynomials with coefficients truncated to float. Truncation is not a good way to convert minimax polynomials to lower precision. Optimize for efficiency and use the lowest-degree polynomials that give a relative error of less than 1 ulp -- degree 8 instead of 14 for cosf and degree 9 instead of 13 for sinf. For sinf, the degree 8 polynomial happens to be 6 times more accurate than the old degree 14 one, but this only gives a tiny amount of extra accuracy in results -- we just need to use a a degree high enough to give a polynomial whose relative accuracy in infinite precision (but with float coefficients) is a small fraction of a float ulp (fdlibm generally uses 1/32 for the small fraction, and the fraction for our degree 8 polynomial is about 1/600). The maximum relative errors for cosf() and sinf() are now 0.7719 ulps and 0.7969 ulps, respectively. Revision Changes Path 1.11 +7 -8 src/lib/msun/src/k_cosf.c 1.9 +8 -8 src/lib/msun/src/k_sinf.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 13:46:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8721616A41F; Fri, 28 Oct 2005 13:46:44 +0000 (GMT) (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 E64F243D5E; Fri, 28 Oct 2005 13:46:43 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SDkh3o011332; Fri, 28 Oct 2005 13:46:43 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SDkhup011331; Fri, 28 Oct 2005 13:46:43 GMT (envelope-from sem) Message-Id: <200510281346.j9SDkhup011331@repoman.freebsd.org> From: Sergey Matveychuk Date: Fri, 28 Oct 2005 13:46: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/palm/prc-tools Makefile ports/palm/prc-tools/files pre-patch-gcc3-gcc-3.3.1.palmos.diff X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 13:46:44 -0000 sem 2005-10-28 13:46:41 UTC FreeBSD ports repository Modified files: palm/prc-tools Makefile Removed files: palm/prc-tools/files pre-patch-gcc3-gcc-3.3.1.palmos.diff Log: - Roll back my path. It fixes nothing but magicaly breaks build on 6.0. - Unbreak on 6.0 Revision Changes Path 1.45 +2 -3 ports/palm/prc-tools/Makefile 1.2 +0 -99 ports/palm/prc-tools/files/pre-patch-gcc3-gcc-3.3.1.palmos.diff (dead) From owner-cvs-all@FreeBSD.ORG Fri Oct 28 14:02:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F46E16A41F; Fri, 28 Oct 2005 14:02:44 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C904243D46; Fri, 28 Oct 2005 14:02:43 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SE2hmA012859; Fri, 28 Oct 2005 14:02:43 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SE2hvD012857; Fri, 28 Oct 2005 14:02:43 GMT (envelope-from stefanf) Message-Id: <200510281402.j9SE2hvD012857@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 28 Oct 2005 14:02: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/tools/regression/bin/sh regress.sh src/tools/regression/bin/sh/builtins command1.0 command2.0 command3.0 command3.0.stdout command4.127 command5.0 command5.0.stdout command6.127 command6.127.stdout X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 14:02:44 -0000 stefanf 2005-10-28 14:02:43 UTC FreeBSD src repository Modified files: tools/regression/bin/sh regress.sh Added files: tools/regression/bin/sh/builtins command1.0 command2.0 command3.0 command3.0.stdout command4.127 command5.0 command5.0.stdout command6.127 command6.127.stdout Log: Add test cases for the command built-in, including its -v and -V options which I'll commit real soon. Count the number of found test cases instead of hard-coding them. Allow an arbitrary exit status. Revision Changes Path 1.1 +5 -0 src/tools/regression/bin/sh/builtins/command1.0 (new) 1.1 +3 -0 src/tools/regression/bin/sh/builtins/command2.0 (new) 1.1 +13 -0 src/tools/regression/bin/sh/builtins/command3.0 (new) 1.1 +7 -0 src/tools/regression/bin/sh/builtins/command3.0.stdout (new) 1.1 +2 -0 src/tools/regression/bin/sh/builtins/command4.127 (new) 1.1 +14 -0 src/tools/regression/bin/sh/builtins/command5.0 (new) 1.1 +8 -0 src/tools/regression/bin/sh/builtins/command5.0.stdout (new) 1.1 +2 -0 src/tools/regression/bin/sh/builtins/command6.127 (new) 1.1 +1 -0 src/tools/regression/bin/sh/builtins/command6.127.stdout (new) 1.3 +3 -3 src/tools/regression/bin/sh/regress.sh From owner-cvs-all@FreeBSD.ORG Fri Oct 28 14:14:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1E4D16A41F; Fri, 28 Oct 2005 14:14:42 +0000 (GMT) (envelope-from kwm@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B72843D45; Fri, 28 Oct 2005 14:14:42 +0000 (GMT) (envelope-from kwm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEEgbp014989; Fri, 28 Oct 2005 14:14:42 GMT (envelope-from kwm@repoman.freebsd.org) Received: (from kwm@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEEgck014988; Fri, 28 Oct 2005 14:14:42 GMT (envelope-from kwm) Message-Id: <200510281414.j9SEEgck014988@repoman.freebsd.org> From: Koop Mast Date: Fri, 28 Oct 2005 14:14: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/audio/gstreamer-plugins-mad Makefile ports/multimedia/gstreamer-plugins Makefile.common X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 14:14:43 -0000 kwm 2005-10-28 14:14:42 UTC FreeBSD ports repository Modified files: audio/gstreamer-plugins-mad Makefile multimedia/gstreamer-plugins Makefile.common Log: Chase id3tag shlib change. Revision Changes Path 1.5 +1 -1 ports/audio/gstreamer-plugins-mad/Makefile 1.19 +1 -1 ports/multimedia/gstreamer-plugins/Makefile.common From owner-cvs-all@FreeBSD.ORG Fri Oct 28 14:15:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED02A16A445; Fri, 28 Oct 2005 14:15:54 +0000 (GMT) (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 8880F43D48; Fri, 28 Oct 2005 14:15:54 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEFs5h015191; Fri, 28 Oct 2005 14:15:54 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEFskB015190; Fri, 28 Oct 2005 14:15:54 GMT (envelope-from ru) Message-Id: <200510281415.j9SEFskB015190@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 28 Oct 2005 14:15: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/share/man/man4 ng_ksocket.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, 28 Oct 2005 14:15:55 -0000 ru 2005-10-28 14:15:54 UTC FreeBSD src repository Modified files: share/man/man4 ng_ksocket.4 Log: Belatedly document the NGM_KSOCKET_ACCEPT ("accept") control message. Revision Changes Path 1.21 +16 -2 src/share/man/man4/ng_ksocket.4 From owner-cvs-all@FreeBSD.ORG Fri Oct 28 14:38:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F14E16A464; Fri, 28 Oct 2005 14:38:56 +0000 (GMT) (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 8AE6643D6A; Fri, 28 Oct 2005 14:38:55 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEctrS016317; Fri, 28 Oct 2005 14:38:55 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEctUZ016316; Fri, 28 Oct 2005 14:38:55 GMT (envelope-from suz) Message-Id: <200510281438.j9SEctUZ016316@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Fri, 28 Oct 2005 14:38: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/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: Fri, 28 Oct 2005 14:38:56 -0000 suz 2005-10-28 14:38:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet6 nd6.c Log: MFC Rev 1.60 perform NUD on an IPv6-aware point-to-point interface Approved by: re(scottl) Revision Changes Path 1.48.2.4 +2 -0 src/sys/netinet6/nd6.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 14:38:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4946A16A430; Fri, 28 Oct 2005 14:38:56 +0000 (GMT) (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 DE17743D6D; Fri, 28 Oct 2005 14:38:55 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEctA8016334; Fri, 28 Oct 2005 14:38:55 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEct5J016333; Fri, 28 Oct 2005 14:38:55 GMT (envelope-from suz) Message-Id: <200510281438.j9SEct5J016333@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Fri, 28 Oct 2005 14:38: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/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: Fri, 28 Oct 2005 14:38:56 -0000 suz 2005-10-28 14:38:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netinet6 nd6.c Log: MFC Rev 1.60 perform NUD on an IPv6-aware point-to-point interface Approved by: re(scottl) Revision Changes Path 1.43.2.8 +2 -0 src/sys/netinet6/nd6.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 14:41:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD81716A420; Fri, 28 Oct 2005 14:41:36 +0000 (GMT) (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 1E7E643D5D; Fri, 28 Oct 2005 14:41:28 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEfSRG016509; Fri, 28 Oct 2005 14:41:28 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEfSlt016508; Fri, 28 Oct 2005 14:41:28 GMT (envelope-from ru) Message-Id: <200510281441.j9SEfSlt016508@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 28 Oct 2005 14:41: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/netgraph ng_bridge.h ng_ksocket.h ng_parse.h ng_pppoe.h ng_vlan.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, 28 Oct 2005 14:41:36 -0000 ru 2005-10-28 14:41:28 UTC FreeBSD src repository Modified files: sys/netgraph ng_bridge.h ng_ksocket.h ng_parse.h ng_pppoe.h ng_vlan.h Log: Use variable-sized arrays where appropriate. Revision Changes Path 1.4 +1 -1 src/sys/netgraph/ng_bridge.h 1.13 +1 -1 src/sys/netgraph/ng_ksocket.h 1.13 +1 -1 src/sys/netgraph/ng_parse.h 1.22 +3 -3 src/sys/netgraph/ng_pppoe.h 1.2 +1 -1 src/sys/netgraph/ng_vlan.h From owner-cvs-all@FreeBSD.ORG Fri Oct 28 14:38:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9742316A426; Fri, 28 Oct 2005 14:38:56 +0000 (GMT) (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 356DD43D6A; Fri, 28 Oct 2005 14:38:56 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEcuTm016351; Fri, 28 Oct 2005 14:38:56 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEcuwt016350; Fri, 28 Oct 2005 14:38:56 GMT (envelope-from suz) Message-Id: <200510281438.j9SEcuwt016350@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Fri, 28 Oct 2005 14:38:56 +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/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: Fri, 28 Oct 2005 14:38:56 -0000 suz 2005-10-28 14:38:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/netinet6 nd6.c Log: MFC Rev 1.60 perform NUD on an IPv6-aware point-to-point interface Approved by: re(scottl) Revision Changes Path 1.48.2.3.2.1 +2 -0 src/sys/netinet6/nd6.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 14:48:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1856116A41F; Fri, 28 Oct 2005 14:48:44 +0000 (GMT) (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 636A943D5A; Fri, 28 Oct 2005 14:48:43 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEmhNG016824; Fri, 28 Oct 2005 14:48:43 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEmhG3016823; Fri, 28 Oct 2005 14:48:43 GMT (envelope-from garga) Message-Id: <200510281448.j9SEmhG3016823@repoman.freebsd.org> From: Renato Botelho Date: Fri, 28 Oct 2005 14:48: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/lang/munger 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, 28 Oct 2005 14:48:44 -0000 garga 2005-10-28 14:48:43 UTC FreeBSD ports repository Modified files: lang/munger Makefile distinfo Log: - Update to 4.76 PR: ports/88132 Submitted by: maintainer Revision Changes Path 1.13 +1 -1 ports/lang/munger/Makefile 1.12 +2 -2 ports/lang/munger/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 14:55:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1657D16A420; Fri, 28 Oct 2005 14:55:14 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDBE543D45; Fri, 28 Oct 2005 14:55:13 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEtD4Q017181; Fri, 28 Oct 2005 14:55:13 GMT (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEtDPn017180; Fri, 28 Oct 2005 14:55:13 GMT (envelope-from fenner) Message-Id: <200510281455.j9SEtDPn017180@repoman.freebsd.org> From: Bill Fenner Date: Fri, 28 Oct 2005 14:55: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/cgi cgi-style.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: Fri, 28 Oct 2005 14:55:14 -0000 fenner 2005-10-28 14:55:13 UTC FreeBSD doc repository (src,ports committer) Modified files: en/cgi cgi-style.pl Log: Update cgi-style to match the new web site look. Add an optional 2nd argument to html_header(); if it's missing or supplied and non-zero, html_header returns XHTML doctype; if it's supplied and zero, html_header returns HTML 4.01 doctype. cvsweb and mailindex are the only HTML4 holdouts. cvsweb should be updated to 3.x which is XHTML, but that's a seperate step. I left $hsty_home alone, because I couldn't find anything that used it or any obvious image to use for it in the new layout. Revision Changes Path 1.23 +146 -29 www/en/cgi/cgi-style.pl From owner-cvs-all@FreeBSD.ORG Fri Oct 28 14:55:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1149B16A41F; Fri, 28 Oct 2005 14:55:58 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D33443D46; Fri, 28 Oct 2005 14:55:57 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEtvSe017268; Fri, 28 Oct 2005 14:55:57 GMT (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEtvM3017267; Fri, 28 Oct 2005 14:55:57 GMT (envelope-from fenner) Message-Id: <200510281455.j9SEtvM3017267@repoman.freebsd.org> From: Bill Fenner Date: Fri, 28 Oct 2005 14:55: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: www/en/cgi cvsweb.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: Fri, 28 Oct 2005 14:55:58 -0000 fenner 2005-10-28 14:55:57 UTC FreeBSD doc repository (src,ports committer) Modified files: en/cgi cvsweb.cgi Log: Temporary hack for HTML headers with new cgi-style.pl; this should be really fixed when importing cvsweb 3. Revision Changes Path 1.89 +4 -12 www/en/cgi/cvsweb.cgi From owner-cvs-all@FreeBSD.ORG Fri Oct 28 15:06:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5ECD216A421; Fri, 28 Oct 2005 15:06:35 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B26843D46; Fri, 28 Oct 2005 15:06:35 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SF6Y8L017784; Fri, 28 Oct 2005 15:06:35 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SF6Ysd017783; Fri, 28 Oct 2005 15:06:34 GMT (envelope-from vs) Message-Id: <200510281506.j9SF6Ysd017783@repoman.freebsd.org> From: Volker Stolz Date: Fri, 28 Oct 2005 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/quake2forge 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, 28 Oct 2005 15:06:35 -0000 vs 2005-10-28 15:06:34 UTC FreeBSD ports repository Modified files: games/quake2forge Makefile pkg-plist Log: - Make USE_XLIB optional - Cleanup PLIST_SUB while here PR: ports/84197 Submitted by: Ed Schouten via maintainer Revision Changes Path 1.16 +25 -13 ports/games/quake2forge/Makefile 1.6 +8 -8 ports/games/quake2forge/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Oct 28 15:30:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 254D616A41F; Fri, 28 Oct 2005 15:30:52 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D606743D48; Fri, 28 Oct 2005 15:30:51 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SFUplI018857; Fri, 28 Oct 2005 15:30:51 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SFUpAu018856; Fri, 28 Oct 2005 15:30:51 GMT (envelope-from nyan) Message-Id: <200510281530.j9SFUpAu018856@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 28 Oct 2005 15:30: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/sys/pc98/conf DEFAULTS 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: Fri, 28 Oct 2005 15:30:52 -0000 nyan 2005-10-28 15:30:51 UTC FreeBSD src repository Modified files: sys/pc98/conf GENERIC Added files: sys/pc98/conf DEFAULTS Log: Move the isa, npx, mem and io devices and the PC98 option from GENERIC into DEFAULTS. Revision Changes Path 1.1 +18 -0 src/sys/pc98/conf/DEFAULTS (new) 1.273 +1 -7 src/sys/pc98/conf/GENERIC From owner-cvs-all@FreeBSD.ORG Fri Oct 28 15:45:34 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3F8D16A41F; Fri, 28 Oct 2005 15:45:34 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4943743D72; Fri, 28 Oct 2005 15:45:26 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 12:02:13 -0400 From: John Baldwin To: Bill Paul Date: Fri, 28 Oct 2005 10:30:20 -0400 User-Agent: KMail/1.8.2 References: <200510280217.j9S2HfPn056812@repoman.freebsd.org> In-Reply-To: <200510280217.j9S2HfPn056812@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510281030.22004.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/pci if_wb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 15:45:35 -0000 On Thursday 27 October 2005 10:17 pm, Bill Paul wrote: > wpaul 2005-10-28 02:17:41 UTC > > FreeBSD src repository > > Modified files: > sys/pci if_wb.c > Log: > Remove forgotten, no longer needed WB_UNLOCK() from the end wb_ioctl(). > With this change, the driver tests good (at least on i386): > > wb0: port 0xb800-0xb87f mem > 0xe6800000-0xe680007f irq 12 at device 10.0 on pci0 miibus1: on > wb0 > amphy0: on miibus1 > amphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > wb0: Ethernet address: 00:00:e8:18:2a:02 > wb0: link state changed to DOWN > wb0: link state changed to UP Thanks for testing this! Sorry about the extra unlock. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Fri Oct 28 15:45:55 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 116DC16A41F; Fri, 28 Oct 2005 15:45:55 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0B1743D5E; Fri, 28 Oct 2005 15:45:44 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 12:02:13 -0400 From: John Baldwin To: Peter Wemm Date: Fri, 28 Oct 2005 10:41:42 -0400 User-Agent: KMail/1.8.2 References: <200510251948.j9PJmmmj043891@repoman.freebsd.org> <200510261320.46985.jhb@freebsd.org> <200510261648.27126.peter@wemm.org> In-Reply-To: <200510261648.27126.peter@wemm.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510281041.44147.jhb@freebsd.org> Cc: Mark Linimon , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_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, 28 Oct 2005 15:45:55 -0000 On Wednesday 26 October 2005 07:48 pm, Peter Wemm wrote: > On Wednesday 26 October 2005 10:20 am, John Baldwin wrote: > > On Tuesday 25 October 2005 06:45 pm, Mark Linimon wrote: > > > On Tue, Oct 25, 2005 at 07:48:48PM +0000, John Baldwin wrote: > > > > Reorganize the interrupt handling code a bit to make a few > > > > things cleaner and increase flexibility to allow various > > > > different approaches to be tried in the future. > > > > > > Wow. Having (in a previous existance) worked on real-time OS > > > interrupt handlers I can likely guess how much work went into this. > > > Nice. > > > > Actually, this diff wasn't a huge deal, it was mostly just a > > refactoring of what was already there. > > Of course the real challenge is to make things like the puc device do > the right thing automatically instead of needing 'options > PUC_FASTINTR'. You mean like sio(4) tried to? The problem is that with the previosu code if sio(4) went first, it would register INTR_FAST and some later PCI device wouldn't be able to register its interrupt. There's not an easy solution to that problem if you want to keep the semantics that INTR_FAST implies INTR_EXCL. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Fri Oct 28 15:45:36 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27CC316A420; Fri, 28 Oct 2005 15:45:36 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1A9A43D78; Fri, 28 Oct 2005 15:45:26 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 12:02:13 -0400 From: John Baldwin To: Stefan Farfeleder Date: Fri, 28 Oct 2005 10:33:46 -0400 User-Agent: KMail/1.8.2 References: <200510281045.j9SAjJmR096150@repoman.freebsd.org> In-Reply-To: <200510281045.j9SAjJmR096150@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510281033.48001.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/bin/sh memalloc.c memalloc.h miscbltin.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 15:45:36 -0000 On Friday 28 October 2005 06:45 am, Stefan Farfeleder wrote: > stefanf 2005-10-28 10:45:19 UTC > > FreeBSD src repository > > Modified files: > bin/sh memalloc.c memalloc.h miscbltin.c > Log: > Protect malloc, realloc and free calls with INT{ON,OFF} directly in > chkalloc, ckrealloc and ckfree (added), respectively. sh jumps out of the > signal handler using longjmp which is obviously a bad idea during malloc > calls. > > Note: I think there is still a small race here because volatile > sig_atomic_t only guarantees atomic reads and writes while we're doing > increments and decrements. > > Protect a setmode call with INT{ON,OFF} as it calls malloc internally. > > PR: 45478 > Patch from: Nate Eldredge If you are just doing a simple reference count you can use an int and use either the refcount API from sys/refcount.h or the atomic_foo_int() operations directly from machine/atomic.h. Those should all work fine in userland. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Fri Oct 28 15:46:01 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 431AD16A458; Fri, 28 Oct 2005 15:46:01 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A1BB43D78; Fri, 28 Oct 2005 15:45:52 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 12:02:14 -0400 From: John Baldwin To: "Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=" Date: Fri, 28 Oct 2005 10:47:55 -0400 User-Agent: KMail/1.8.2 References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <864q723dqt.fsf@xps.des.no> In-Reply-To: <864q723dqt.fsf@xps.des.no> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200510281047.57496.jhb@freebsd.org> Cc: cvs-src@freebsd.org, "Bjoern A. Zeeb" , Ruslan Ermilov , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.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, 28 Oct 2005 15:46:01 -0000 On Thursday 27 October 2005 04:29 pm, Dag-Erling Sm=F8rgrav wrote: > Ruslan Ermilov writes: > > On Thu, Oct 27, 2005 at 05:15:28PM +0000, Bjoern A. Zeeb wrote: > > > On Thu, 27 Oct 2005, Ruslan Ermilov wrote: > > > > Log: > > > > Installing debug modules was a bad idea -- I bogusly assumed that > > > > our kernel linker will only load PT_LOAD segments, apparently not. > > > > Instead, produce .dbg objects from .debug objects, and install > > > > them together with non-debug objects, as described in objcopy(1). > > > > > > is that because of this change? > > > > Yes. I sent a patch for kldxref(8) that fixes this for review to > > amd64@. These messages are harmless otherwise. > > Wouldn't it be cleaner (and potentially simpler) to fix this by making > the kernel linker skip non-PT_LOAD sections? > > (I just peeked at sys/kern/link_elf.c and it looks to me like it > *already* DTRT, so what exactly is the problem?) amd64 uses link_elf_obj.c which loads raw .o files, not .so files. =2D-=20 John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" =3D http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Fri Oct 28 15:46:04 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF4F316A4CD; Fri, 28 Oct 2005 15:46:03 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8932743D79; Fri, 28 Oct 2005 15:45:55 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 12:02:14 -0400 From: John Baldwin To: Yar Tikhiy Date: Fri, 28 Oct 2005 10:45:55 -0400 User-Agent: KMail/1.8.2 References: <200510231406.j9NE6r8L008373@repoman.freebsd.org> <20051027082115.GA749@garage.freebsd.pl> <20051027091920.GA11982@comp.chem.msu.su> In-Reply-To: <20051027091920.GA11982@comp.chem.msu.su> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510281045.57862.jhb@freebsd.org> Cc: freebsd-rc@freebsd.org, cvs-src@freebsd.org, src-committers@freebsd.org, Pawel Jakub Dawidek , cvs-all@freebsd.org Subject: Re: cvs commit: src/etc/rc.d ike named ppp-user sshd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 15:46:05 -0000 On Thursday 27 October 2005 05:19 am, Yar Tikhiy wrote: > On Thu, Oct 27, 2005 at 10:21:16AM +0200, Pawel Jakub Dawidek wrote: > > On Thu, Oct 27, 2005 at 11:14:56AM +0400, Yar Tikhiy wrote: > > +> On Thu, Oct 27, 2005 at 08:33:53AM +0200, Pawel Jakub Dawidek wrote: > > +> > On Sun, Oct 23, 2005 at 02:06:53PM +0000, Yar Tikhiy wrote: > > +> > +> yar 2005-10-23 14:06:53 UTC > > +> > +> > > +> > +> FreeBSD src repository > > +> > +> > > +> > +> Modified files: > > +> > +> etc/rc.d ike named ppp-user sshd > > +> > +> Log: > > +> > +> Don't be lazy, set the "command" variable even if > > +> > +> /etc/defaults/rc.conf will provide foo_program, too. > > +> > +> By specifying "command" we explicitly say that we're > > +> > +> going to rely on rc.subr(8) default methods, and > > +> > +> rc.subr(8) will take advantage of this soon. > > +> > +> > > +> > +> The majority of our rc.d scripts already set "command" > > +> > +> if appropriate, so fix just the non-compliant handful. > > +> > [...] > > +> > +> name="named" > > +> > +> rcvar=`set_rcvar` > > +> > +> +command="/usr/sbin/${name}" > > +> > [...] > > +> > +> name="ppp" > > +> > +> rcvar=`set_rcvar` > > +> > +> +command="/usr/sbin/ppp" > > +> > [...] > > +> > +> name="sshd" > > +> > +> rcvar=`set_rcvar` > > +> > +> +command="/usr/sbin/${name}" > > +> > > > +> > Any reason you didn't used ${name} in ppp case? > > +> > > +> I was just blinded by my being solid sure that $name was "ppp-user". > > +> Nowever, now I'm in doubt whether $name should be "ppp". The script > > +> is named ppp-user and it PROVIDEs ppp-user, hence sysadmins can > > +> rightfully assume that its rc.conf.d file is ppp-user, too. Such > > +> assumption will be broken since it is $name that is passed to > > +> load_rc_config. I think $name should be changed to "ppp-user" in > > +> CURRENT. This will introduce minor incompatibility, but also > > +> eliminate a source of further confusion. > > > > It is confusing, but maybe we should rename ppp-user to ppp? > > I'm not sure how well sh(1) will handle things like > > ppp-user_enable="YES", etc. > > Yes, this is much better than my lame proposal because so we will > have to worry about neither variable naming nor compatibility with > installations using ppp and rc.conf.d at once. We change the PROVIDE > line and fix all dependent rc.d scripts, then request the repocopy > of ppp-user to ppp, fix /etc/netstart, and finally kill the old > file. Does this plan look OK? > > P.S. Looks like it's time to move this thread to -rc, setting > Mail-Followup-To accordingly. Yeah, I was actually surprised it was called /etc/rc.d/ppp-user instead of /etc/rc.d/ppp when I went to setup pppoe at home yesterday. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Fri Oct 28 15:47:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23B7416A41F; Fri, 28 Oct 2005 15:47:54 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C50DB43D72; Fri, 28 Oct 2005 15:47:53 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SFlrap021469; Fri, 28 Oct 2005 15:47:53 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SFlrIE021468; Fri, 28 Oct 2005 15:47:53 GMT (envelope-from marcus) Message-Id: <200510281547.j9SFlrIE021468@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 28 Oct 2005 15:47: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/deskutils/planner 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: Fri, 28 Oct 2005 15:47:54 -0000 marcus 2005-10-28 15:47:53 UTC FreeBSD ports repository Modified files: deskutils/planner pkg-descr Log: Update WWW. PR: 88143 Revision Changes Path 1.5 +1 -1 ports/deskutils/planner/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Oct 28 15:48:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DA9516A41F; Fri, 28 Oct 2005 15:48:10 +0000 (GMT) (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 EB97343D48; Fri, 28 Oct 2005 15:48:09 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SFm9RO021509; Fri, 28 Oct 2005 15:48:09 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SFm92u021508; Fri, 28 Oct 2005 15:48:09 GMT (envelope-from scottl) Message-Id: <200510281548.j9SFm92u021508@repoman.freebsd.org> From: Scott Long Date: Fri, 28 Oct 2005 15:48: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/sys/dev/aac aac.c aacreg.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, 28 Oct 2005 15:48:10 -0000 scottl 2005-10-28 15:48:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/aac aac.c aacreg.h Log: MFC: Fix regression with Dell PERC3/ROMB controllers Approved by: re Revision Changes Path 1.109.2.2 +41 -28 src/sys/dev/aac/aac.c 1.21.2.2 +5 -0 src/sys/dev/aac/aacreg.h From owner-cvs-all@FreeBSD.ORG Fri Oct 28 15:58:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08B4F16A41F; Fri, 28 Oct 2005 15:58:20 +0000 (GMT) (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 C9B8C43D46; Fri, 28 Oct 2005 15:58:19 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SFwJCP022228; Fri, 28 Oct 2005 15:58:19 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SFwJPQ022227; Fri, 28 Oct 2005 15:58:19 GMT (envelope-from joerg) Message-Id: <200510281558.j9SFwJPQ022227@repoman.freebsd.org> From: Joerg Wunsch Date: Fri, 28 Oct 2005 15:58: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/conf files files.i386 files.sparc64 src/sys/modules Makefile src/sys/modules/i2c/controllers/pcf Makefile src/sys/i386/isa pcf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 15:58:20 -0000 joerg 2005-10-28 15:58:19 UTC FreeBSD src repository Modified files: sys/conf files files.i386 files.sparc64 sys/modules Makefile sys/modules/i2c/controllers/pcf Makefile Removed files: sys/i386/isa pcf.c Log: Finally complete some work on generalizing the PCF8584-based I2C drivers I started quite some time before. Retire the old i386-only pcf driver, and activate the new general driver that has been sitting in the tree already for quite some time. Build the i2c modules for sparc64 architectures as well (where I've been developing all this on). Revision Changes Path 1.1061 +1 -0 src/sys/conf/files 1.542 +1 -1 src/sys/conf/files.i386 1.74 +2 -0 src/sys/conf/files.sparc64 1.24 +0 -633 src/sys/i386/isa/pcf.c (dead) 1.460 +1 -0 src/sys/modules/Makefile 1.3 +10 -1 src/sys/modules/i2c/controllers/pcf/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 15:58:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2E5916A41F; Fri, 28 Oct 2005 15:58:56 +0000 (GMT) (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 4039743D45; Fri, 28 Oct 2005 15:58:56 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SFwuP2022308; Fri, 28 Oct 2005 15:58:56 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SFwuKm022307; Fri, 28 Oct 2005 15:58:56 GMT (envelope-from thierry) Message-Id: <200510281558.j9SFwuKm022307@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 28 Oct 2005 15:58: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/bouml 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, 28 Oct 2005 15:58:57 -0000 thierry 2005-10-28 15:58:56 UTC FreeBSD ports repository Modified files: devel/bouml Makefile distinfo pkg-plist Log: Upgrade to 2.7. Changelog at . Revision Changes Path 1.17 +1 -1 ports/devel/bouml/Makefile 1.17 +3 -3 ports/devel/bouml/distinfo 1.7 +2 -0 ports/devel/bouml/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Oct 28 16:02:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEC1A16A41F; Fri, 28 Oct 2005 16:02:21 +0000 (GMT) (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 B7A7243D46; Fri, 28 Oct 2005 16:02:20 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.3/8.13.3) with ESMTP id j9SG2IhG028911 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 28 Oct 2005 20:02:18 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.3/8.13.1/Submit) id j9SG2Itw028910; Fri, 28 Oct 2005 20:02:18 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Fri, 28 Oct 2005 20:02:18 +0400 From: Gleb Smirnoff To: John Baldwin Message-ID: <20051028160218.GJ41520@cell.sick.ru> References: <200510251948.j9PJmmmj043891@repoman.freebsd.org> <200510261320.46985.jhb@freebsd.org> <200510261648.27126.peter@wemm.org> <200510281041.44147.jhb@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200510281041.44147.jhb@freebsd.org> User-Agent: Mutt/1.5.6i Cc: Mark Linimon , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Peter Wemm , cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_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, 28 Oct 2005 16:02:21 -0000 John, On Fri, Oct 28, 2005 at 10:41:42AM -0400, John Baldwin wrote: J> > Of course the real challenge is to make things like the puc device do J> > the right thing automatically instead of needing 'options J> > PUC_FASTINTR'. J> J> You mean like sio(4) tried to? The problem is that with the previosu code if J> sio(4) went first, it would register INTR_FAST and some later PCI device J> wouldn't be able to register its interrupt. There's not an easy solution to J> that problem if you want to keep the semantics that INTR_FAST implies J> INTR_EXCL. is it possible to implement such a feature that driver requests INTR_FAST and it succeds only and only if interrupt isn't shared? For example I've got a console server with three puc devices. Since one of them share its irq with ATA, I can't trun on PUC_FASTINTR on this box. However, theoretically it is possible two make two pucs use a fast interrupt handler and one not. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-all@FreeBSD.ORG Fri Oct 28 16:07:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB98416A41F; Fri, 28 Oct 2005 16:07:53 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B1A443D6A; Fri, 28 Oct 2005 16:07:52 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SG7qGD022877; Fri, 28 Oct 2005 16:07:52 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SG7qvF022876; Fri, 28 Oct 2005 16:07:52 GMT (envelope-from yar) Message-Id: <200510281607.j9SG7qvF022876@repoman.freebsd.org> From: Yar Tikhiy Date: Fri, 28 Oct 2005 16:07: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/etc/rc.d NETWORKING ipfw ppp-user routing X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 16:07:54 -0000 yar 2005-10-28 16:07:52 UTC FreeBSD src repository Modified files: etc/rc.d NETWORKING ipfw ppp-user routing Log: Transforming "ppp-user" into just "ppp", step 1: The rcorder(8) condition PROVIDE'd by the script and REQUIRE'd by the others becomes "ppp". The ultimate goal of the transformation is to reduce confusion resulting from the fact that $name has been "ppp" already. Discussed with: pjd, -rc Revision Changes Path 1.10 +1 -1 src/etc/rc.d/NETWORKING 1.11 +1 -1 src/etc/rc.d/ipfw 1.9 +1 -1 src/etc/rc.d/ppp-user 1.142 +1 -1 src/etc/rc.d/routing From owner-cvs-all@FreeBSD.ORG Fri Oct 28 16:11:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBB4116A41F; Fri, 28 Oct 2005 16:11:02 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B3DC43D70; Fri, 28 Oct 2005 16:10:56 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SGAuQg023717; Fri, 28 Oct 2005 16:10:56 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SGAuGQ023713; Fri, 28 Oct 2005 16:10:56 GMT (envelope-from yar) Message-Id: <200510281610.j9SGAuGQ023713@repoman.freebsd.org> From: Yar Tikhiy Date: Fri, 28 Oct 2005 16:10: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/etc/rc.d ppp-user X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 16:11:03 -0000 yar 2005-10-28 16:10:56 UTC FreeBSD src repository Modified files: etc/rc.d ppp-user Log: Use: command="/path/to/${name}" since it's applicable here. It's the current style of rc.d. Pointed out by: pjd Revision Changes Path 1.10 +1 -1 src/etc/rc.d/ppp-user From owner-cvs-all@FreeBSD.ORG Fri Oct 28 16:21:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E842D16A41F for ; Fri, 28 Oct 2005 16:21:52 +0000 (GMT) (envelope-from lehmann@ans-netz.de) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [83.136.81.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82F3143D53 for ; Fri, 28 Oct 2005 16:21:51 +0000 (GMT) (envelope-from lehmann@ans-netz.de) Received: (qmail 30972 invoked by uid 89); 28 Oct 2005 16:21:49 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (83.136.81.185) by avocado.salatschuessel.net with SMTP; 28 Oct 2005 16:21:49 -0000 Date: Fri, 28 Oct 2005 18:21:49 +0200 From: Oliver Lehmann To: Sergey Matveychuk Message-Id: <20051028182149.49c06881.lehmann@ans-netz.de> In-Reply-To: <200510271940.j9RJePVS023200@repoman.freebsd.org> References: <200510271940.j9RJePVS023200@repoman.freebsd.org> X-Mailer: Sylpheed version 2.0.3 (GTK+ 2.6.10; amd64-portbld-freebsd6.0) 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/Mk bsd.ruby.mk ports/security/vuxml vuln.xml ports/lang/ruby16 Makefile distinfo ports/lang/ruby18 Makefile distinfo ports/lang/ruby18/files patch-lib_xmlrpc_utils.rb X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 16:21:53 -0000 Hm, something is broken with openssl from ports I've updated yesterday (probably not caused by this commit) root@avocado ruby18> make ===> Building for ruby-1.8.2_5 compiling bigdecimal compiling curses compiling dbm compiling digest compiling digest/md5 compiling digest/rmd160 compiling digest/sha1 compiling digest/sha2 compiling dl compiling enumerator compiling etc compiling fcntl compiling io/wait compiling nkf compiling openssl cc -fPIC -O -pipe -march=pentium3 -fPIC -I/usr/local/include -I. -I../.. -I../../. -I../.././ext/openssl -DHAVE_UNISTD_H -DHAVE_SYS_TIME_H -DHAVE_ASSERT_H -DHAVE_OPENSSL_SSL_H -DHAVE_OPENSSL_CONF_API_H -DHAVE_BN_MOD_ADD -DHAVE_BN_MOD_SQR -DHAVE_BN_MOD_SUB -DHAVE_BN_PSEUDO_RAND_RANGE -DHAVE_BN_RAND_RANGE -DHAVE_CONF_GET1_DEFAULT_CONFIG_FILE -DHAVE_EVP_CIPHER_CTX_SET_PADDING -DHAVE_EVP_CIPHERFINAL_EX -DHAVE_EVP_CIPHERINIT_EX -DHAVE_EVP_DIGESTFINAL_EX -DHAVE_EVP_DIGESTINIT_EX -DHAVE_EVP_MD_CTX_CLEANUP -DHAVE_EVP_MD_CTX_CREATE -DHAVE_EVP_MD_CTX_DESTROY -DHAVE_EVP_MD_CTX_INIT -DHAVE_HMAC_CTX_CLEANUP -DHAVE_HMAC_CTX_INIT -DHAVE_PEM_DEF_CALLBACK -DHAVE_X509V3_SET_NCONF -DHAVE_X509_CRL_ADD0_REVOKED -DHAVE_X509_CRL_SET_ISSUER_NAME -DHAVE_X509_CRL_SET_VERSION -DHAVE_X509_CRL_SORT -DHAVE_VA_ARGS_MACRO -DHAVE_OPENSSL_ENGINE_H -DHAVE_ENGINE_ADD -DHAVE_ENGINE_LOAD_BUILTIN_ENGINES -DHAVE_ENGINE_GET_DIGEST -DHAVE_ENGINE_GET_CIPHER -DHAVE_ENGINE_CLEANUP -DHAVE_OPENSSL_OCSP_H -DHAVE_ST_FLAGS -DHAVE_ST_ENGINE -DHAVE_ST_SINGLE -c ossl_x509store.c ossl_x509store.c: In function `ossl_x509stctx_set_time': ossl_x509store.c:541: error: structure has no member named `flags' *** Error code 1 1 error *** Error code 1 1 error *** Error code 2 Stop in /usr/ports/lang/ruby18. Exit 1 root@avocado ruby18> -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-cvs-all@FreeBSD.ORG Fri Oct 28 16:31:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88DE016A41F; Fri, 28 Oct 2005 16:31:35 +0000 (GMT) (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 45A3343D46; Fri, 28 Oct 2005 16:31:35 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SGVZiQ025049; Fri, 28 Oct 2005 16:31:35 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SGVZYV025048; Fri, 28 Oct 2005 16:31:35 GMT (envelope-from scottl) Message-Id: <200510281631.j9SGVZYV025048@repoman.freebsd.org> From: Scott Long Date: Fri, 28 Oct 2005 16:31:35 +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/sys/dev/aac aac.c aacreg.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, 28 Oct 2005 16:31:35 -0000 scottl 2005-10-28 16:31:34 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/aac aac.c aacreg.h Log: MFC: Fix regression in Dell PERC/ROMB systems. Approved by: re Revision Changes Path 1.109.2.1.2.1 +41 -28 src/sys/dev/aac/aac.c 1.21.2.1.2.1 +5 -0 src/sys/dev/aac/aacreg.h From owner-cvs-all@FreeBSD.ORG Fri Oct 28 16:39:51 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80A9516A420; Fri, 28 Oct 2005 16:39:51 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B6F743D45; Fri, 28 Oct 2005 16:39:50 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.3/8.13.3) with ESMTP id j9SGbAPk059861; Fri, 28 Oct 2005 10:37:10 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 28 Oct 2005 10:37:09 -0600 (MDT) Message-Id: <20051028.103709.74689710.imp@bsdimp.com> To: glebius@freebsd.org From: Warner Losh In-Reply-To: <20051028160218.GJ41520@cell.sick.ru> References: <200510261648.27126.peter@wemm.org> <200510281041.44147.jhb@freebsd.org> <20051028160218.GJ41520@cell.sick.ru> 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-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Fri, 28 Oct 2005 10:37:10 -0600 (MDT) Cc: src-committers@freebsd.org, jhb@freebsd.org, peter@wemm.org, cvs-src@freebsd.org, cvs-all@freebsd.org, linimon@lonesome.com Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_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, 28 Oct 2005 16:39:51 -0000 From: Gleb Smirnoff Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.c ... Date: Fri, 28 Oct 2005 20:02:18 +0400 > John, > > On Fri, Oct 28, 2005 at 10:41:42AM -0400, John Baldwin wrote: > J> > Of course the real challenge is to make things like the puc device do > J> > the right thing automatically instead of needing 'options > J> > PUC_FASTINTR'. > J> > J> You mean like sio(4) tried to? The problem is that with the previosu code if > J> sio(4) went first, it would register INTR_FAST and some later PCI device > J> wouldn't be able to register its interrupt. There's not an easy solution to > J> that problem if you want to keep the semantics that INTR_FAST implies > J> INTR_EXCL. > > is it possible to implement such a feature that driver requests INTR_FAST > and it succeds only and only if interrupt isn't shared? Not really. The problem is that you don't know it is shared until it is too late. You have no way of really knowing if a device uses interrupts until its driver attaches and requests an interrupt. Given how we do our device probing, there's not really a chance to 'downgrade' the FAST to non-FAST later with driver notification (we can trivially downgrade what we do to ithread, but then the driver might not actually work). Warner From owner-cvs-all@FreeBSD.ORG Fri Oct 28 16:50:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19F2316A41F; Fri, 28 Oct 2005 16:50:12 +0000 (GMT) (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 C40EA43D46; Fri, 28 Oct 2005 16:50:11 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SGoBRQ033251; Fri, 28 Oct 2005 16:50:11 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SGoBge033250; Fri, 28 Oct 2005 16:50:11 GMT (envelope-from garga) Message-Id: <200510281650.j9SGoBge033250@repoman.freebsd.org> From: Renato Botelho Date: Fri, 28 Oct 2005 16:50: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/security/chkrootkit 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, 28 Oct 2005 16:50:12 -0000 garga 2005-10-28 16:50:11 UTC FreeBSD ports repository Modified files: security/chkrootkit Makefile distinfo Log: - Unbreak: Update to 0.46a Approved by: maintainer Revision Changes Path 1.25 +1 -3 ports/security/chkrootkit/Makefile 1.19 +2 -2 ports/security/chkrootkit/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 16:53:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1721616A41F for ; Fri, 28 Oct 2005 16:53:17 +0000 (GMT) (envelope-from lehmann@ans-netz.de) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [83.136.81.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4738D43D53 for ; Fri, 28 Oct 2005 16:53:14 +0000 (GMT) (envelope-from lehmann@ans-netz.de) Received: (qmail 40284 invoked by uid 89); 28 Oct 2005 16:53:12 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (83.136.81.185) by avocado.salatschuessel.net with SMTP; 28 Oct 2005 16:53:12 -0000 Date: Fri, 28 Oct 2005 18:53:12 +0200 From: Oliver Lehmann To: sem@FreeBSD.org Message-Id: <20051028185312.4520c40c.lehmann@ans-netz.de> In-Reply-To: <20051028182149.49c06881.lehmann@ans-netz.de> References: <200510271940.j9RJePVS023200@repoman.freebsd.org> <20051028182149.49c06881.lehmann@ans-netz.de> X-Mailer: Sylpheed version 2.0.3 (GTK+ 2.6.10; amd64-portbld-freebsd6.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Fri__28_Oct_2005_18_53_12_+0200_bRMq5/Y1VOimgfKq" 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/Mk bsd.ruby.mk ports/security/vuxml vuln.xml ports/lang/ruby16 Makefile distinfo ports/lang/ruby18 Makefile distinfo ports/lang/ruby18/files patch-lib_xmlrpc_utils.rb X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 16:53:17 -0000 This is a multi-part message in MIME format. --Multipart=_Fri__28_Oct_2005_18_53_12_+0200_bRMq5/Y1VOimgfKq Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Oliver Lehmann wrote: > Hm, something is broken with openssl from ports I've updated yesterday > (probably not caused by this commit) The attached patch (which I took from their CVS (1.2.2.3 -> 1.2.2.4) fixed this for me. Could you check if it still compiles/works with system-openssl and then commit the patch? -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ --Multipart=_Fri__28_Oct_2005_18_53_12_+0200_bRMq5/Y1VOimgfKq-- From owner-cvs-all@FreeBSD.ORG Fri Oct 28 16:53:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FC3A16A41F; Fri, 28 Oct 2005 16:53:40 +0000 (GMT) (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 0565143D46; Fri, 28 Oct 2005 16:53:40 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SGrdGe033563; Fri, 28 Oct 2005 16:53:39 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SGrdWH033562; Fri, 28 Oct 2005 16:53:39 GMT (envelope-from linimon) Message-Id: <200510281653.j9SGrdWH033562@repoman.freebsd.org> From: Mark Linimon Date: Fri, 28 Oct 2005 16:53: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/x11-themes/metacity-theme-6nome Makefile ports/x11-themes/metacity-theme-aero Makefile ports/x11-themes/metacity-theme-alloy-c Makefile ports/x11-themes/metacity-theme-hacked-2 Makefile ports/x11-themes/metacity-theme-iridium-rounded Makefile ports/x11-themes/metacity-themes 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, 28 Oct 2005 16:53:40 -0000 linimon 2005-10-28 16:53:39 UTC FreeBSD ports repository Modified files: x11-themes/metacity-theme-6nome Makefile x11-themes/metacity-theme-aero Makefile x11-themes/metacity-theme-alloy-c Makefile x11-themes/metacity-theme-hacked-2 Makefile x11-themes/metacity-theme-iridium-rounded Makefile x11-themes/metacity-themes Makefile Log: Update maintainer address. Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/x11-themes/metacity-theme-6nome/Makefile 1.2 +1 -1 ports/x11-themes/metacity-theme-aero/Makefile 1.2 +1 -1 ports/x11-themes/metacity-theme-alloy-c/Makefile 1.2 +1 -1 ports/x11-themes/metacity-theme-hacked-2/Makefile 1.2 +1 -1 ports/x11-themes/metacity-theme-iridium-rounded/Makefile 1.4 +1 -1 ports/x11-themes/metacity-themes/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 16:55:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9C2016A41F; Fri, 28 Oct 2005 16:55:38 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6441C43D45; Fri, 28 Oct 2005 16:55:38 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SGtcVn033701; Fri, 28 Oct 2005 16:55:38 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SGtcqC033700; Fri, 28 Oct 2005 16:55:38 GMT (envelope-from yar) Message-Id: <200510281655.j9SGtcqC033700@repoman.freebsd.org> From: Yar Tikhiy Date: Fri, 28 Oct 2005 16:55: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/rc.d devd ipmon newsyslog powerd sendmail X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 16:55:39 -0000 yar 2005-10-28 16:55:38 UTC FreeBSD src repository Modified files: etc/rc.d devd ipmon newsyslog powerd sendmail Log: Use ${name} in pathnames where appropriate. The sendmail script already was on this way, but it didn't reach the end of it yet. Revision Changes Path 1.8 +1 -1 src/etc/rc.d/devd 1.14 +1 -1 src/etc/rc.d/ipmon 1.4 +1 -1 src/etc/rc.d/newsyslog 1.3 +1 -1 src/etc/rc.d/powerd 1.16 +3 -3 src/etc/rc.d/sendmail From owner-cvs-all@FreeBSD.ORG Fri Oct 28 17:05:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B5B716A41F; Fri, 28 Oct 2005 17:05:16 +0000 (GMT) (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 D51FD43D60; Fri, 28 Oct 2005 17:05:15 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SH5F4o034492; Fri, 28 Oct 2005 17:05:15 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SH5FLm034491; Fri, 28 Oct 2005 17:05:15 GMT (envelope-from ehaupt) Message-Id: <200510281705.j9SH5FLm034491@repoman.freebsd.org> From: Emanuel Haupt Date: Fri, 28 Oct 2005 17:05: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/archivers/p5-Archive-Tar Makefile ports/audio/id3lib Makefile ports/audio/lopster Makefile ports/audio/p5-Audio-CD Makefile ports/converters/p5-Convert-TNEF Makefile ports/dns/pdnsd Makefile ports/editors/chexedit Makefile ports/net/arping 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, 28 Oct 2005 17:05:16 -0000 ehaupt 2005-10-28 17:05:15 UTC FreeBSD ports repository Modified files: archivers/p5-Archive-Tar Makefile audio/id3lib Makefile audio/lopster Makefile audio/p5-Audio-CD Makefile converters/p5-Convert-TNEF Makefile dns/pdnsd Makefile editors/chexedit Makefile net/arping Makefile net/asfrecorder Makefile net/gq Makefile net/netsed Makefile net/xsmbrowser Makefile net-mgmt/ipfm Makefile net-mgmt/nat Makefile net-mgmt/sing Makefile palm/makeztxt Makefile palm/palmpower Makefile security/arirang Makefile sysutils/mksunbootcd Makefile www/smb2www Makefile Log: Reset maintainer, does not respond to mails for 19 days. Since a few days his MTA also remains unresponsive [1]. [1] Unable to deliver to destination domain Failed to deliver to domain oven.org after 73 tries. The last error was: CantConnectToHost Approved by: portmgr (linimon) Revision Changes Path 1.21 +1 -1 ports/archivers/p5-Archive-Tar/Makefile 1.21 +1 -1 ports/audio/id3lib/Makefile 1.31 +1 -1 ports/audio/lopster/Makefile 1.7 +1 -1 ports/audio/p5-Audio-CD/Makefile 1.9 +1 -1 ports/converters/p5-Convert-TNEF/Makefile 1.13 +1 -1 ports/dns/pdnsd/Makefile 1.7 +1 -1 ports/editors/chexedit/Makefile 1.12 +1 -1 ports/net-mgmt/ipfm/Makefile 1.5 +1 -1 ports/net-mgmt/nat/Makefile 1.7 +1 -1 ports/net-mgmt/sing/Makefile 1.16 +1 -1 ports/net/arping/Makefile 1.7 +1 -1 ports/net/asfrecorder/Makefile 1.29 +1 -1 ports/net/gq/Makefile 1.5 +1 -1 ports/net/netsed/Makefile 1.11 +1 -1 ports/net/xsmbrowser/Makefile 1.6 +1 -1 ports/palm/makeztxt/Makefile 1.8 +1 -1 ports/palm/palmpower/Makefile 1.8 +1 -1 ports/security/arirang/Makefile 1.7 +1 -1 ports/sysutils/mksunbootcd/Makefile 1.10 +1 -1 ports/www/smb2www/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 18:11:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A4AE16A41F; Fri, 28 Oct 2005 18:11:36 +0000 (GMT) (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 DCA5043D48; Fri, 28 Oct 2005 18:11:35 +0000 (GMT) (envelope-from garga@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SIBZxi041282; Fri, 28 Oct 2005 18:11:35 GMT (envelope-from garga@repoman.freebsd.org) Received: (from garga@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SIBZ3p041281; Fri, 28 Oct 2005 18:11:35 GMT (envelope-from garga) Message-Id: <200510281811.j9SIBZ3p041281@repoman.freebsd.org> From: Renato Botelho Date: Fri, 28 Oct 2005 18:11: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/balance 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, 28 Oct 2005 18:11:36 -0000 garga 2005-10-28 18:11:35 UTC FreeBSD ports repository Modified files: net/balance Makefile distinfo Log: - Update to 3.31 PR: ports/88146 Submitted by: maintainer Revision Changes Path 1.18 +1 -1 ports/net/balance/Makefile 1.14 +2 -2 ports/net/balance/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 18:13:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86D8516A41F; Fri, 28 Oct 2005 18:13:07 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4398743D46; Fri, 28 Oct 2005 18:13:07 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SID7ZQ041408; Fri, 28 Oct 2005 18:13:07 GMT (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SID7Nx041407; Fri, 28 Oct 2005 18:13:07 GMT (envelope-from jeh) Message-Id: <200510281813.j9SID7Nx041407@repoman.freebsd.org> From: "James E. Housley" Date: Fri, 28 Oct 2005 18:13: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/security/uvscan-dat 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, 28 Oct 2005 18:13:07 -0000 jeh 2005-10-28 18:13:07 UTC FreeBSD ports repository Modified files: security/uvscan-dat Makefile distinfo Log: Update to DAT 4615 Revision Changes Path 1.438 +1 -1 ports/security/uvscan-dat/Makefile 1.433 +2 -2 ports/security/uvscan-dat/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 18:25:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4D2A16A41F; Fri, 28 Oct 2005 18:25:01 +0000 (GMT) (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 8FDAF43D45; Fri, 28 Oct 2005 18:25:01 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SIP16X041903; Fri, 28 Oct 2005 18:25:01 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SIP1Hj041902; Fri, 28 Oct 2005 18:25:01 GMT (envelope-from joel) Message-Id: <200510281825.j9SIP1Hj041902@repoman.freebsd.org> From: Joel Dahl Date: Fri, 28 Oct 2005 18:25:01 +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/dingo 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: Fri, 28 Oct 2005 18:25:02 -0000 joel 2005-10-28 18:25:01 UTC FreeBSD doc repository Modified files: en/projects/dingo index.sgml Log: Lowercase HTML tags. Revision Changes Path 1.19 +100 -100 www/en/projects/dingo/index.sgml From owner-cvs-all@FreeBSD.ORG Fri Oct 28 18:30:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 904BB16A420; Fri, 28 Oct 2005 18:30:59 +0000 (GMT) (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 0650543D48; Fri, 28 Oct 2005 18:30:59 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SIUwFO042263; Fri, 28 Oct 2005 18:30:58 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SIUwnf042262; Fri, 28 Oct 2005 18:30:58 GMT (envelope-from ehaupt) Message-Id: <200510281830.j9SIUwnf042262@repoman.freebsd.org> From: Emanuel Haupt Date: Fri, 28 Oct 2005 18: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/net/spread Makefile distinfo pkg-deinstall pkg-plist ports/net/spread/files patch-Makefile.in patch-configuration.c patch-sp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 18:30:59 -0000 ehaupt 2005-10-28 18:30:58 UTC FreeBSD ports repository Modified files: net/spread Makefile distinfo pkg-plist net/spread/files patch-Makefile.in patch-configuration.c patch-sp.c Added files: net/spread pkg-deinstall Log: - Update to 3.17.3 - Provide pkg-deinstall - Cleanup PR: 86901 Submitted by: Chris Mikkelson Approved by: maintainer timeout (16 days after postponement) Revision Changes Path 1.15 +36 -29 ports/net/spread/Makefile 1.8 +2 -2 ports/net/spread/distinfo 1.4 +15 -15 ports/net/spread/files/patch-Makefile.in 1.2 +3 -3 ports/net/spread/files/patch-configuration.c 1.2 +7 -7 ports/net/spread/files/patch-sp.c 1.1 +29 -0 ports/net/spread/pkg-deinstall (new) 1.8 +8 -3 ports/net/spread/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Oct 28 18:33:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1822F16A41F; Fri, 28 Oct 2005 18:33:48 +0000 (GMT) (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 CA65143D45; Fri, 28 Oct 2005 18:33:47 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SIXl2h042331; Fri, 28 Oct 2005 18:33:47 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SIXl50042330; Fri, 28 Oct 2005 18:33:47 GMT (envelope-from joel) Message-Id: <200510281833.j9SIXl50042330@repoman.freebsd.org> From: Joel Dahl Date: Fri, 28 Oct 2005 18:33:47 +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/dingo 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: Fri, 28 Oct 2005 18:33:48 -0000 joel 2005-10-28 18:33:47 UTC FreeBSD doc repository Modified files: en/projects/dingo index.sgml Log: Mark "Import CARP from OpenBSD" as done and change owner to glebius. OK'ed by: mlaier Revision Changes Path 1.20 +5 -7 www/en/projects/dingo/index.sgml From owner-cvs-all@FreeBSD.ORG Fri Oct 28 18:34:19 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41ADA16A420; Fri, 28 Oct 2005 18:34:19 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E8ED43D48; Fri, 28 Oct 2005 18:34:18 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 14:51:05 -0400 From: John Baldwin To: Gleb Smirnoff Date: Fri, 28 Oct 2005 14:33:20 -0400 User-Agent: KMail/1.8.2 References: <200510251948.j9PJmmmj043891@repoman.freebsd.org> <200510281041.44147.jhb@freebsd.org> <20051028160218.GJ41520@cell.sick.ru> In-Reply-To: <20051028160218.GJ41520@cell.sick.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510281433.22369.jhb@freebsd.org> Cc: Mark Linimon , src-committers@freebsd.org, cvs-all@freebsd.org, Peter Wemm , cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_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, 28 Oct 2005 18:34:19 -0000 On Friday 28 October 2005 12:02 pm, Gleb Smirnoff wrote: > John, > > On Fri, Oct 28, 2005 at 10:41:42AM -0400, John Baldwin wrote: > J> > Of course the real challenge is to make things like the puc device do > J> > the right thing automatically instead of needing 'options > J> > PUC_FASTINTR'. > J> > J> You mean like sio(4) tried to? The problem is that with the previosu > code if J> sio(4) went first, it would register INTR_FAST and some later > PCI device J> wouldn't be able to register its interrupt. There's not an > easy solution to J> that problem if you want to keep the semantics that > INTR_FAST implies J> INTR_EXCL. > > is it possible to implement such a feature that driver requests INTR_FAST > and it succeds only and only if interrupt isn't shared? > > For example I've got a console server with three puc devices. Since one of > them share its irq with ATA, I can't trun on PUC_FASTINTR on this box. > However, theoretically it is possible two make two pucs use a fast > interrupt handler and one not. INTR_EXCL will do this for bus_setup_intr(). INTR_FAST used to basically imply INTR_EXCL. However, the definition of 'shared' is poor, and that's the hard problem. The current definition of shared is 'does anyone else have a handler registered already'. However, that definition isn't very adequate. In your example, if the puc that shares its IRQ with ATA probes first, then it's INTR_EXCL request will succeed, but ATA won't be able to setup an interrupt handler. If ATA probes first, then puc will fall back to non-INTR_FAST (which is what sio(4) does except sio(4) depends on INTR_FAST implying INTR_EXCL which it no longer does). One possible idea is to walk the entire PCI device tree first to "reserve" interrupts somehow, but that doesn't take into account drivers that don't actually use interrupts, or drivers that use MSI interrupts and not intpin interrupts (coming in the not too distant future), etc. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Fri Oct 28 18:37:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B97016A41F; Fri, 28 Oct 2005 18:37:10 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBF6643D46; Fri, 28 Oct 2005 18:37:09 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SIb9WN042591; Fri, 28 Oct 2005 18:37:09 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SIb97b042590; Fri, 28 Oct 2005 18:37:09 GMT (envelope-from stefanf) Message-Id: <200510281837.j9SIb97b042590@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 28 Oct 2005 18:37: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/bin/sh eval.c exec.c exec.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, 28 Oct 2005 18:37:10 -0000 stefanf 2005-10-28 18:37:09 UTC FreeBSD src repository Modified files: bin/sh eval.c exec.c exec.h Log: Add the POSIX options -v and -V to the 'command' builtin. Both describe the type of their argument, if it is a shell function, an alias, a builtin, etc. -V is more verbose than -v. PR: 77259, 84539 Revision Changes Path 1.47 +13 -1 src/bin/sh/eval.c 1.27 +47 -12 src/bin/sh/exec.c 1.13 +7 -0 src/bin/sh/exec.h From owner-cvs-all@FreeBSD.ORG Fri Oct 28 18:39:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46FFC16A41F; Fri, 28 Oct 2005 18:39:01 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 042B143D45; Fri, 28 Oct 2005 18:39:01 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SId0ce042662; Fri, 28 Oct 2005 18:39:00 GMT (envelope-from cracauer@repoman.freebsd.org) Received: (from cracauer@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SId03o042661; Fri, 28 Oct 2005 18:39:00 GMT (envelope-from cracauer) Message-Id: <200510281839.j9SId03o042661@repoman.freebsd.org> From: Martin Cracauer Date: Fri, 28 Oct 2005 18: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/sys/gnu/fs/ext2fs ext2_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 18:39:01 -0000 cracauer 2005-10-28 18:39:00 UTC FreeBSD src repository Modified files: sys/gnu/fs/ext2fs ext2_vnops.c Log: Fix this: kern/87959 cracauer ext2fs: no cp(1) possible, mmap returns EINVAL ext2fs was missing vnode_create_vobject. (Reisefs probably has the same problem but I want to get this in quick for 6-release) Revision Changes Path 1.104 +6 -2 src/sys/gnu/fs/ext2fs/ext2_vnops.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 18:40:13 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A578B16A41F; Fri, 28 Oct 2005 18:40:13 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06DC743D45; Fri, 28 Oct 2005 18:40:12 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 14:57:00 -0400 From: John Baldwin To: Joerg Wunsch Date: Fri, 28 Oct 2005 14:39:18 -0400 User-Agent: KMail/1.8.2 References: <200510281558.j9SFwJPQ022227@repoman.freebsd.org> In-Reply-To: <200510281558.j9SFwJPQ022227@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510281439.19760.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf files files.i386 files.sparc64 src/sys/modules Makefile src/sys/modules/i2c/controllers/pcf Makefile src/sys/i386/isa pcf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 18:40:13 -0000 On Friday 28 October 2005 11:58 am, Joerg Wunsch wrote: > joerg 2005-10-28 15:58:19 UTC > > FreeBSD src repository > > Modified files: > sys/conf files files.i386 files.sparc64 > sys/modules Makefile > sys/modules/i2c/controllers/pcf Makefile > Removed files: > sys/i386/isa pcf.c > Log: > Finally complete some work on generalizing the PCF8584-based I2C > drivers I started quite some time before. > > Retire the old i386-only pcf driver, and activate the new general > driver that has been sitting in the tree already for quite some > time. > > Build the i2c modules for sparc64 architectures as well (where I've > been developing all this on). Thanks! -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Fri Oct 28 18:44:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03E9B16A41F; Fri, 28 Oct 2005 18:44:01 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F15843D46; Fri, 28 Oct 2005 18:44:00 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SIi0kt042980; Fri, 28 Oct 2005 18:44:00 GMT (envelope-from cracauer@repoman.freebsd.org) Received: (from cracauer@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SIi0ZW042979; Fri, 28 Oct 2005 18:44:00 GMT (envelope-from cracauer) Message-Id: <200510281844.j9SIi0ZW042979@repoman.freebsd.org> From: Martin Cracauer Date: Fri, 28 Oct 2005 18:44:00 +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/sys/gnu/fs/ext2fs ext2_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 18:44:01 -0000 cracauer 2005-10-28 18:44:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/gnu/fs/ext2fs ext2_vnops.c Log: Fix this: kern/87959 cracauer ext2fs: no cp(1) possible, mmap returns EINVAL ext2fs was missing vnode_create_vobject. (Reisefs probably has the same problem but I want to get this in quick for 6-release) releng-6 branches commits approved by Scott Long. Approved by: re Revision Changes Path 1.103.4.1 +6 -2 src/sys/gnu/fs/ext2fs/ext2_vnops.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 18:44:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF46116A420; Fri, 28 Oct 2005 18:44:26 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 640EC43D48; Fri, 28 Oct 2005 18:44:26 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SIiQWs043272; Fri, 28 Oct 2005 18:44:26 GMT (envelope-from cracauer@repoman.freebsd.org) Received: (from cracauer@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SIiQOA043271; Fri, 28 Oct 2005 18:44:26 GMT (envelope-from cracauer) Message-Id: <200510281844.j9SIiQOA043271@repoman.freebsd.org> From: Martin Cracauer Date: Fri, 28 Oct 2005 18:44: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/sys/gnu/fs/ext2fs ext2_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 18:44:26 -0000 cracauer 2005-10-28 18:44:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/gnu/fs/ext2fs ext2_vnops.c Log: Fix this: kern/87959 cracauer ext2fs: no cp(1) possible, mmap returns EINVAL ext2fs was missing vnode_create_vobject. (Reisefs probably has the same problem but I want to get this in quick for 6-release) releng-6 branches commits approved by Scott Long. Approved by: re Revision Changes Path 1.103.2.1 +6 -2 src/sys/gnu/fs/ext2fs/ext2_vnops.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:02:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC74016A41F; Fri, 28 Oct 2005 19:02:22 +0000 (GMT) (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 813C843D4C; Fri, 28 Oct 2005 19:02:22 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJ2Mhu044812; Fri, 28 Oct 2005 19:02:22 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJ2MIr044811; Fri, 28 Oct 2005 19:02:22 GMT (envelope-from jhb) Message-Id: <200510281902.j9SJ2MIr044811@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19: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/sys/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, 28 Oct 2005 19:02:23 -0000 jhb 2005-10-28 19:02:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/conf NOTES Log: MFC: Add COMPAT_FREEBSD5. Approved by: re (scottl) Revision Changes Path 1.1325.2.6 +3 -0 src/sys/conf/NOTES From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:04:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4FF316A41F; Fri, 28 Oct 2005 19:04:04 +0000 (GMT) (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 6B18F43D46; Fri, 28 Oct 2005 19:04:04 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJ44h9044929; Fri, 28 Oct 2005 19:04:04 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJ44rT044928; Fri, 28 Oct 2005 19:04:04 GMT (envelope-from jhb) Message-Id: <200510281904.j9SJ44rT044928@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:04: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/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 src/usr.sbin/config config.8 config.h config.y configvers.h 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, 28 Oct 2005 19:04:04 -0000 jhb 2005-10-28 19:04:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 usr.sbin/config config.8 config.h config.y configvers.h main.c Log: MFC: Sync config(8) with HEAD: - Add -V option to dump version. - Implicitly include DEFAULTS if it exists in the current directory before the specified kernel config. Approved by: re (scottl) Revision Changes Path 1.135.2.1 +1 -1 src/sys/conf/Makefile.alpha 1.16.2.1 +1 -1 src/sys/conf/Makefile.amd64 1.10.2.1 +1 -1 src/sys/conf/Makefile.arm 1.265.2.1 +1 -1 src/sys/conf/Makefile.i386 1.62.2.1 +1 -1 src/sys/conf/Makefile.ia64 1.167.2.1 +1 -1 src/sys/conf/Makefile.pc98 1.277.2.1 +1 -1 src/sys/conf/Makefile.powerpc 1.33.2.1 +1 -1 src/sys/conf/Makefile.sparc64 1.43.2.1 +5 -1 src/usr.sbin/config/config.8 1.56.2.1 +1 -0 src/usr.sbin/config/config.h 1.66.2.1 +16 -0 src/usr.sbin/config/config.y 1.35.2.1 +1 -1 src/usr.sbin/config/configvers.h 1.64.2.1 +16 -5 src/usr.sbin/config/main.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:05:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3F2A16A41F; Fri, 28 Oct 2005 19:05:44 +0000 (GMT) (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 82BC943D45; Fri, 28 Oct 2005 19:05:44 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJ5iKC045079; Fri, 28 Oct 2005 19:05:44 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJ5ih3045078; Fri, 28 Oct 2005 19:05:44 GMT (envelope-from ru) Message-Id: <200510281905.j9SJ5ih3045078@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 28 Oct 2005 19:05: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 ng_iface.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, 28 Oct 2005 19:05:44 -0000 ru 2005-10-28 19:05:44 UTC FreeBSD src repository Modified files: share/man/man4 ng_iface.4 Log: Document NGM_IFACE_GET_IFINDEX. Revision Changes Path 1.19 +3 -1 src/share/man/man4/ng_iface.4 From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:07:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A71E16A41F; Fri, 28 Oct 2005 19:07:16 +0000 (GMT) (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 DEA9A43D45; Fri, 28 Oct 2005 19:07:15 +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 A75771A3C1A; Fri, 28 Oct 2005 12:07:15 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 678A8511F2; Fri, 28 Oct 2005 15:07:14 -0400 (EDT) Date: Fri, 28 Oct 2005 15:07:14 -0400 From: Kris Kennaway To: Jean-Yves Lefort Message-ID: <20051028190713.GA10866@xor.obsecurity.org> References: <200510280845.j9S8jRKo084883@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/04w6evG8XlLl3ft" Content-Disposition: inline In-Reply-To: <200510280845.j9S8jRKo084883@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/audio/libid3tag 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, 28 Oct 2005 19:07:16 -0000 --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 28, 2005 at 08:45:26AM +0000, Jean-Yves Lefort wrote: > jylefort 2005-10-28 08:45:26 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > audio/libid3tag Makefile=20 > Log: > Create the ${PREFIX}/libdata/pkgconfig directory. It is needed on > 4.x/5.x -RELEASE systems built exclusively from ports. Are you sure? This is in BSD.local.dist. Kris --/04w6evG8XlLl3ft Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYnbhWry0BWjoQKURAhslAJ4zZG2lOQlA/liWSef/ir629ErfegCcCtb6 Ce/hfGaFCdnNHD9twwUOF4w= =fffT -----END PGP SIGNATURE----- --/04w6evG8XlLl3ft-- From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:07:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD93B16A420; Fri, 28 Oct 2005 19:07:36 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E0FE43D45; Fri, 28 Oct 2005 19:07:36 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJ7avN045161; Fri, 28 Oct 2005 19:07:36 GMT (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJ7aZd045160; Fri, 28 Oct 2005 19:07:36 GMT (envelope-from fenner) Message-Id: <200510281907.j9SJ7aZd045160@repoman.freebsd.org> From: Bill Fenner Date: Fri, 28 Oct 2005 19:07:36 +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 cgi-style.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: Fri, 28 Oct 2005 19:07:36 -0000 fenner 2005-10-28 19:07:36 UTC FreeBSD doc repository (src,ports committer) Modified files: en/cgi cgi-style.pl Log: Disable the CSS workaround for the / quirk for HTML4 pages. It looks like Firefox applies the relative size twice, making the fonts too small. Instead, now they'll be too big - just a bit bigger than the "Large" web site font. This only applies to HTML4 pages, which as I mentioned before are cvsweb and mailindex, and I don't think that mailindex uses tables. This means that this problem should be fixed when someone (no promises) imports cvsweb 3 which uses XHTML. This commit brought to you by CSS, Web Quirks, IE and our favorite IRC channel. Revision Changes Path 1.24 +2 -2 www/en/cgi/cgi-style.pl From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:09:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50E8816A41F; Fri, 28 Oct 2005 19:09:01 +0000 (GMT) (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 138D943D45; Fri, 28 Oct 2005 19:09:01 +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 D07151A3C1C; Fri, 28 Oct 2005 12:09:00 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 85059511F2; Fri, 28 Oct 2005 15:08:59 -0400 (EDT) Date: Fri, 28 Oct 2005 15:08:58 -0400 From: Kris Kennaway To: Renato Botelho Message-ID: <20051028190857.GB10866@xor.obsecurity.org> References: <200510281207.j9SC7dUn099754@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1UWUbFP1cBYEclgG" Content-Disposition: inline In-Reply-To: <200510281207.j9SC7dUn099754@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/chkrootkit 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, 28 Oct 2005 19:09:01 -0000 --1UWUbFP1cBYEclgG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 28, 2005 at 12:07:36PM +0000, Renato Botelho wrote: > garga 2005-10-28 12:07:36 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > security/chkrootkit Makefile=20 > Log: > chkproc sends a 25 signal to init causing a reboot after a 30s sleep > =20 > Mark it as BROKEN until the problem is fixed. ITYM IGNORE. Kris --1UWUbFP1cBYEclgG Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYndJWry0BWjoQKURAlWqAJ9McEx245peBak/PRrgvpypFHMFzACgvGRL TsTOoF2lGENa3mkf/2sPO74= =X4mQ -----END PGP SIGNATURE----- --1UWUbFP1cBYEclgG-- From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:10:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D14D016A41F; Fri, 28 Oct 2005 19:10:10 +0000 (GMT) (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 3C39143D46; Fri, 28 Oct 2005 19:10:10 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJAA5q045248; Fri, 28 Oct 2005 19:10:10 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJAA6A045247; Fri, 28 Oct 2005 19:10:10 GMT (envelope-from joel) Message-Id: <200510281910.j9SJAA6A045247@repoman.freebsd.org> From: Joel Dahl Date: Fri, 28 Oct 2005 19:10:10 +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/smp 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: Fri, 28 Oct 2005 19:10:11 -0000 joel 2005-10-28 19:10:09 UTC FreeBSD doc repository Modified files: en/smp index.sgml Log: Use entities. Revision Changes Path 1.162 +2 -2 www/en/smp/index.sgml From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:20:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2868F16A420; Fri, 28 Oct 2005 19:20:01 +0000 (GMT) (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 D5A0143D46; Fri, 28 Oct 2005 19:20:00 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJK0XS045691; Fri, 28 Oct 2005 19:20:00 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJK0FT045690; Fri, 28 Oct 2005 19:20:00 GMT (envelope-from jhb) Message-Id: <200510281920.j9SJK0FT045690@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:20:00 +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/sys/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, 28 Oct 2005 19:20:01 -0000 jhb 2005-10-28 19:20:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/conf NOTES Log: MF6: Add COMPAT_FREEBSD5. Approved by: re (scottl) Revision Changes Path 1.1325.2.4.2.2 +3 -0 src/sys/conf/NOTES From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:20:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E70916A41F; Fri, 28 Oct 2005 19:20:54 +0000 (GMT) (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 E929943D46; Fri, 28 Oct 2005 19:20:53 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJKr9m045907; Fri, 28 Oct 2005 19:20:53 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJKrCx045906; Fri, 28 Oct 2005 19:20:53 GMT (envelope-from jhb) Message-Id: <200510281920.j9SJKrCx045906@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:20:53 +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/sys/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 src/usr.sbin/config config.8 config.h config.y configvers.h 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, 28 Oct 2005 19:20:54 -0000 jhb 2005-10-28 19:20:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 usr.sbin/config config.8 config.h config.y configvers.h main.c Log: MF6: config -V and support for DEFAULTS. Approved by: re (scottl) Revision Changes Path 1.135.4.1 +1 -1 src/sys/conf/Makefile.alpha 1.16.4.1 +1 -1 src/sys/conf/Makefile.amd64 1.10.4.1 +1 -1 src/sys/conf/Makefile.arm 1.265.4.1 +1 -1 src/sys/conf/Makefile.i386 1.62.4.1 +1 -1 src/sys/conf/Makefile.ia64 1.167.4.1 +1 -1 src/sys/conf/Makefile.pc98 1.277.4.1 +1 -1 src/sys/conf/Makefile.powerpc 1.33.4.1 +1 -1 src/sys/conf/Makefile.sparc64 1.43.4.1 +5 -1 src/usr.sbin/config/config.8 1.56.4.1 +1 -0 src/usr.sbin/config/config.h 1.66.4.1 +16 -0 src/usr.sbin/config/config.y 1.35.4.1 +1 -1 src/usr.sbin/config/configvers.h 1.64.4.1 +16 -5 src/usr.sbin/config/main.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:21:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C9BF16A41F; Fri, 28 Oct 2005 19:21:31 +0000 (GMT) (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 F1ED343D6A; Fri, 28 Oct 2005 19:21:28 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJLRp3046012; Fri, 28 Oct 2005 19:21:27 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJLRKt046011; Fri, 28 Oct 2005 19:21:27 GMT (envelope-from jhb) Message-Id: <200510281921.j9SJLRKt046011@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:21: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/amd64/conf DEFAULTS GENERIC src/sys/i386/conf DEFAULTS GENERIC src/sys/pc98/conf DEFAULTS 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: Fri, 28 Oct 2005 19:21:32 -0000 jhb 2005-10-28 19:21:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/conf GENERIC sys/i386/conf GENERIC sys/pc98/conf GENERIC Added files: (Branch: RELENG_6) sys/amd64/conf DEFAULTS sys/i386/conf DEFAULTS sys/pc98/conf DEFAULTS Log: MFC: Add DEFAULTS files for amd64, i386, and pc98. Approved by: re (scottl) Revision Changes Path 1.2.2.1 +14 -0 src/sys/amd64/conf/DEFAULTS (new) 1.439.2.7 +1 -4 src/sys/amd64/conf/GENERIC 1.1.2.1 +17 -0 src/sys/i386/conf/DEFAULTS (new) 1.429.2.4 +1 -7 src/sys/i386/conf/GENERIC 1.1.2.1 +18 -0 src/sys/pc98/conf/DEFAULTS (new) 1.269.2.6 +1 -7 src/sys/pc98/conf/GENERIC From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:22:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0647016A422; Fri, 28 Oct 2005 19:22:42 +0000 (GMT) (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 C804143D45; Fri, 28 Oct 2005 19:22:41 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJMfQ2046129; Fri, 28 Oct 2005 19:22:41 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJMfNN046128; Fri, 28 Oct 2005 19:22:41 GMT (envelope-from jhb) Message-Id: <200510281922.j9SJMfNN046128@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:22: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/sys/amd64/conf DEFAULTS GENERIC src/sys/i386/conf DEFAULTS GENERIC src/sys/pc98/conf DEFAULTS 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: Fri, 28 Oct 2005 19:22:42 -0000 jhb 2005-10-28 19:22:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/amd64/conf GENERIC sys/i386/conf GENERIC sys/pc98/conf GENERIC Added files: (Branch: RELENG_6_0) sys/amd64/conf DEFAULTS sys/i386/conf DEFAULTS sys/pc98/conf DEFAULTS Log: MF6: Add DEFAULTS files for amd64, i386, and pc98. Approved by: re (scottl) Revision Changes Path 1.2.4.1 +14 -0 src/sys/amd64/conf/DEFAULTS (new) 1.439.2.6.2.1 +1 -4 src/sys/amd64/conf/GENERIC 1.1.4.1 +17 -0 src/sys/i386/conf/DEFAULTS (new) 1.429.2.3.2.1 +1 -7 src/sys/i386/conf/GENERIC 1.1.4.1 +18 -0 src/sys/pc98/conf/DEFAULTS (new) 1.269.2.5.2.1 +1 -7 src/sys/pc98/conf/GENERIC From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:24:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8345116A41F; Fri, 28 Oct 2005 19:24:13 +0000 (GMT) (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 3BECA43D45; Fri, 28 Oct 2005 19:24:13 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJODTL046185; Fri, 28 Oct 2005 19:24:13 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJODIT046184; Fri, 28 Oct 2005 19:24:13 GMT (envelope-from jhb) Message-Id: <200510281924.j9SJODIT046184@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:24:13 +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/man5 libmap.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: Fri, 28 Oct 2005 19:24:13 -0000 jhb 2005-10-28 19:24:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man5 libmap.conf.5 Log: MFC: Sync with head updating examples to match 6.x. Approved by: re (scottl) Revision Changes Path 1.9.2.1 +24 -10 src/share/man/man5/libmap.conf.5 From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:24:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE60F16A41F; Fri, 28 Oct 2005 19:24:41 +0000 (GMT) (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 4870343D48; Fri, 28 Oct 2005 19:24:41 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJOfZT046227; Fri, 28 Oct 2005 19:24:41 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJOfsr046226; Fri, 28 Oct 2005 19:24:41 GMT (envelope-from jhb) Message-Id: <200510281924.j9SJOfsr046226@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:24: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/share/man/man5 libmap.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: Fri, 28 Oct 2005 19:24:41 -0000 jhb 2005-10-28 19:24:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) share/man/man5 libmap.conf.5 Log: MF6: Sync with HEAD updating examples for 6.x. Approved by: re (scottl) Revision Changes Path 1.9.4.1 +24 -10 src/share/man/man5/libmap.conf.5 From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:51:05 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFEC016A420; Fri, 28 Oct 2005 19:51:04 +0000 (GMT) (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 AC14743D73; Fri, 28 Oct 2005 19:51:02 +0000 (GMT) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJp2n8047634; Fri, 28 Oct 2005 19:51:02 GMT (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJp2TE047633; Fri, 28 Oct 2005 19:51:02 GMT (envelope-from olgeni) Message-Id: <200510281951.j9SJp2TE047633@repoman.freebsd.org> From: Jimmy Olgeni Date: Fri, 28 Oct 2005 19:51: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/lang/erlang Makefile Makefile.lib Makefile.man distinfo pkg-message pkg-plist ports/lang/erlang/files patch-lib_sasl_src_rb.erl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 19:51:05 -0000 olgeni 2005-10-28 19:51:02 UTC FreeBSD ports repository Modified files: lang/erlang Makefile Makefile.lib Makefile.man distinfo pkg-message pkg-plist Added files: lang/erlang/files patch-lib_sasl_src_rb.erl Log: Upgrade to release R10B-8. Revision Changes Path 1.78 +4 -5 ports/lang/erlang/Makefile 1.14 +19 -18 ports/lang/erlang/Makefile.lib 1.7 +11 -17 ports/lang/erlang/Makefile.man 1.22 +6 -6 ports/lang/erlang/distinfo 1.3 +14 -0 ports/lang/erlang/files/patch-lib_sasl_src_rb.erl (new) 1.12 +1 -1 ports/lang/erlang/pkg-message 1.16 +1 -1 ports/lang/erlang/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Oct 28 19:51:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26D8B16A420; Fri, 28 Oct 2005 19:51:50 +0000 (GMT) (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 D650043D45; Fri, 28 Oct 2005 19:51:49 +0000 (GMT) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJpnB9047683; Fri, 28 Oct 2005 19:51:49 GMT (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJpnJX047682; Fri, 28 Oct 2005 19:51:49 GMT (envelope-from olgeni) Message-Id: <200510281951.j9SJpnJX047682@repoman.freebsd.org> From: Jimmy Olgeni Date: Fri, 28 Oct 2005 19:51: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/lang/erlang-doc 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, 28 Oct 2005 19:51:50 -0000 olgeni 2005-10-28 19:51:49 UTC FreeBSD ports repository Modified files: lang/erlang-doc Makefile distinfo pkg-plist Log: Upgrade to release R10B-8. Revision Changes Path 1.27 +54 -55 ports/lang/erlang-doc/Makefile 1.23 +86 -86 ports/lang/erlang-doc/distinfo 1.16 +26 -26 ports/lang/erlang-doc/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Oct 28 20:21:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7292916A41F; Fri, 28 Oct 2005 20:21:25 +0000 (GMT) (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 2EBF143D45; Fri, 28 Oct 2005 20:21:25 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SKLP4G049427; Fri, 28 Oct 2005 20:21:25 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SKLPGQ049426; Fri, 28 Oct 2005 20:21:25 GMT (envelope-from brooks) Message-Id: <200510282021.j9SKLPGQ049426@repoman.freebsd.org> From: Brooks Davis Date: Fri, 28 Oct 2005 20:21: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/audio/slimserver 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, 28 Oct 2005 20:21:25 -0000 brooks 2005-10-28 20:21:25 UTC FreeBSD ports repository Modified files: audio/slimserver Makefile distinfo Log: Upgrade to slimserver 6.2.0. New features include: - Built-in support WMA radio and files for all operating systems. - Wake-on-LAN function. - Seven day alarm. - Replay gain support. Revision Changes Path 1.19 +1 -4 ports/audio/slimserver/Makefile 1.10 +2 -2 ports/audio/slimserver/distinfo From owner-cvs-all@FreeBSD.ORG Fri Oct 28 20:25:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 954CA16A420; Fri, 28 Oct 2005 20:25:04 +0000 (GMT) (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 1DC9843D45; Fri, 28 Oct 2005 20:25:03 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SKP3ZB049582; Fri, 28 Oct 2005 20:25:03 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SKP2YO049581; Fri, 28 Oct 2005 20:25:02 GMT (envelope-from pjd) Message-Id: <200510282025.j9SKP2YO049581@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 28 Oct 2005 20:25: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/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: Fri, 28 Oct 2005 20:25:05 -0000 pjd 2005-10-28 20:25:02 UTC FreeBSD src repository Modified files: sys/geom/raid3 g_raid3.c Log: Fix possible live-lock under heavy load where we can't allocate more memory for request. I was sure graid3 should handle such situations well, but green@ reported it is not and we want to fix it before 6.0. Submitted by: green Revision Changes Path 1.42 +12 -1 src/sys/geom/raid3/g_raid3.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 20:26:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C70E016A41F; Fri, 28 Oct 2005 20:26:19 +0000 (GMT) (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 7D8BF43D83; Fri, 28 Oct 2005 20:26:19 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SKQJgv049740; Fri, 28 Oct 2005 20:26:19 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SKQJqe049739; Fri, 28 Oct 2005 20:26:19 GMT (envelope-from pjd) Message-Id: <200510282026.j9SKQJqe049739@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 28 Oct 2005 20:26: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/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: Fri, 28 Oct 2005 20:26:19 -0000 pjd 2005-10-28 20:26:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/geom/raid3 g_raid3.c Log: Fix possible live-lock under heavy load where we can't allocate more memory for request. I was sure graid3 should handle such situations well, but green@ reported it is not and we want to fix it before 6.0. Submitted by: green Approved by: re (scottl) Revision Changes Path 1.40.2.2 +12 -1 src/sys/geom/raid3/g_raid3.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 20:27:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F6F916A41F; Fri, 28 Oct 2005 20:27:53 +0000 (GMT) (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 49A9143D49; Fri, 28 Oct 2005 20:27:53 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SKRrSC049818; Fri, 28 Oct 2005 20:27:53 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SKRrtW049817; Fri, 28 Oct 2005 20:27:53 GMT (envelope-from pjd) Message-Id: <200510282027.j9SKRrtW049817@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 28 Oct 2005 20:27:53 +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/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: Fri, 28 Oct 2005 20:27:53 -0000 pjd 2005-10-28 20:27:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/geom/raid3 g_raid3.c Log: Fix possible live-lock under heavy load where we can't allocate more memory for request. I was sure graid3 should handle such situations well, but green@ reported it is not and we want to fix it before 6.0. Submitted by: green Approved by: re (scottl) Revision Changes Path 1.40.2.1.2.1 +12 -1 src/sys/geom/raid3/g_raid3.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 20:29:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E8B316A424; Fri, 28 Oct 2005 20:29:43 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18E4B43D49; Fri, 28 Oct 2005 20:29:43 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SKTgar049929; Fri, 28 Oct 2005 20:29:42 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SKTgAX049928; Fri, 28 Oct 2005 20:29:42 GMT (envelope-from glebius) Message-Id: <200510282029.j9SKTgAX049928@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 28 Oct 2005 20:29: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/netinet in.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 20:29:43 -0000 glebius 2005-10-28 20:29:42 UTC FreeBSD src repository Modified files: sys/netinet in.c Log: First fill in structure with valid values, and only then attach it to the global list. Reviewed by: rwatson Revision Changes Path 1.92 +2 -2 src/sys/netinet/in.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 20:36:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6762416A41F; Fri, 28 Oct 2005 20:36:31 +0000 (GMT) (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 2018E43D46; Fri, 28 Oct 2005 20:36:31 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SKaVw0050266; Fri, 28 Oct 2005 20:36:31 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SKaV3d050265; Fri, 28 Oct 2005 20:36:31 GMT (envelope-from ehaupt) Message-Id: <200510282036.j9SKaV3d050265@repoman.freebsd.org> From: Emanuel Haupt Date: Fri, 28 Oct 2005 20: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/disktool Makefile ports/sysutils/disktool/files extrapatch-disktool.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 20:36:31 -0000 ehaupt 2005-10-28 20:36:30 UTC FreeBSD ports repository Modified files: sysutils/disktool Makefile Added files: sysutils/disktool/files extrapatch-disktool.c Log: - Add extra patch to fix functionality under > 4.x (disk usage would always show 0) - Bump PORTREVISION PR: 88151 Submitted by: Serge Gagnon Revision Changes Path 1.7 +8 -1 ports/sysutils/disktool/Makefile 1.1 +15 -0 ports/sysutils/disktool/files/extrapatch-disktool.c (new) From owner-cvs-all@FreeBSD.ORG Fri Oct 28 20:42:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C49116A41F; Fri, 28 Oct 2005 20:42:43 +0000 (GMT) (envelope-from bra@fsn.hu) Received: from people.fsn.hu (people.fsn.hu [195.228.252.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B03643D45; Fri, 28 Oct 2005 20:42:42 +0000 (GMT) (envelope-from bra@fsn.hu) Received: from localhost (localhost [127.0.0.1]) by people.fsn.hu (Postfix) with ESMTP id 7DB0984408; Thu, 27 Oct 2005 09:59:47 +0200 (CEST) Received: from people.fsn.hu ([127.0.0.1]) by localhost (people.fsn.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 34118-01-2; Thu, 27 Oct 2005 09:59:42 +0200 (CEST) Received: from [127.0.0.1] (unknown [192.168.2.3]) by people.fsn.hu (Postfix) with ESMTP id F284F8441F; Thu, 27 Oct 2005 09:59:41 +0200 (CEST) Message-ID: <436088E9.2010900@fsn.hu> Date: Thu, 27 Oct 2005 09:59:37 +0200 From: Attila Nagy User-Agent: Mozilla Thunderbird 1.0.7 (X11/20050930) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Peter Wemm References: <200510262216.j9QMGrZB009716@repoman.freebsd.org> In-Reply-To: <200510262216.j9QMGrZB009716@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at fsn.hu Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/amd64/amd64 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, 28 Oct 2005 20:42:43 -0000 Hello, Peter Wemm wrote: > peter 2005-10-26 22:16:52 UTC > > FreeBSD src repository > > Modified files: > sys/amd64/amd64 machdep.c > Log: > Change PHYSMAP_SIZE to allow for more memory segments. The old value was > too low for certain Dell amd64 machines. > > Revision Changes Path > 1.643 +1 -1 src/sys/amd64/amd64/machdep.c Great, thank you. Could you please close amd64/87112? It would be great, if you could MFC this change. Thanks, -- Attila Nagy e-mail: Attila.Nagy@fsn.hu Adopt a directory on our free software phone: +3630 306 6758 server! http://www.fsn.hu/?f=brick From owner-cvs-all@FreeBSD.ORG Fri Oct 28 21:24:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3620816A41F; Fri, 28 Oct 2005 21:24:55 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAD7943D46; Fri, 28 Oct 2005 21:24:54 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id D90542FDE; Fri, 28 Oct 2005 16:24:53 -0500 (CDT) Date: Fri, 28 Oct 2005 16:24:53 -0500 To: Attila Nagy Message-ID: <20051028212453.GE8959@soaustin.net> References: <200510262216.j9QMGrZB009716@repoman.freebsd.org> <436088E9.2010900@fsn.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <436088E9.2010900@fsn.hu> User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Peter Wemm Subject: Re: cvs commit: src/sys/amd64/amd64 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, 28 Oct 2005 21:24:55 -0000 On Thu, Oct 27, 2005 at 09:59:37AM +0200, Attila Nagy wrote: > Great, thank you. Could you please close amd64/87112? The correct state for a PR that we believe to have been fixed by a change to HEAD is 'patched' so I've set it to that and assigned it to peter as an MFC reminder. mcl From owner-cvs-all@FreeBSD.ORG Fri Oct 28 21:25:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63C4A16A41F; Fri, 28 Oct 2005 21:25:29 +0000 (GMT) (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 89E8543D53; Fri, 28 Oct 2005 21:25:28 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SLPS5C059562; Fri, 28 Oct 2005 21:25:28 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SLPSE4059561; Fri, 28 Oct 2005 21:25:28 GMT (envelope-from ru) Message-Id: <200510282125.j9SLPSE4059561@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 28 Oct 2005 21:25: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/etc/mtree BSD.usr.dist src/usr.bin/calendar Makefile src/usr.bin/calendar/calendars calendar.ukrainian src/usr.bin/calendar/calendars/uk_UA.KOI8-U calendar.all calendar.holiday calendar.misc calendar.orthodox X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 21:25:29 -0000 ru 2005-10-28 21:25:28 UTC FreeBSD src repository Modified files: etc/mtree BSD.usr.dist usr.bin/calendar Makefile Added files: usr.bin/calendar/calendars calendar.ukrainian usr.bin/calendar/calendars/uk_UA.KOI8-U calendar.all calendar.holiday calendar.misc calendar.orthodox Log: Add some significant Ukrainian dates. PR: 88076 Submitted by: Andriy Gapon Revision Changes Path 1.313 +2 -0 src/etc/mtree/BSD.usr.dist 1.31 +1 -1 src/usr.bin/calendar/Makefile 1.1 +12 -0 src/usr.bin/calendar/calendars/calendar.ukrainian (new) 1.1 +14 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.all (new) 1.1 +22 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.holiday (new) 1.1 +18 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.misc (new) 1.1 +35 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.orthodox (new) From owner-cvs-all@FreeBSD.ORG Fri Oct 28 21:40:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22E3F16A41F; Fri, 28 Oct 2005 21:40:48 +0000 (GMT) (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 ACB8843D64; Fri, 28 Oct 2005 21:40:47 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SLelkR060470; Fri, 28 Oct 2005 21:40:47 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SLel1p060469; Fri, 28 Oct 2005 21:40:47 GMT (envelope-from linimon) Message-Id: <200510282140.j9SLel1p060469@repoman.freebsd.org> From: Mark Linimon Date: Fri, 28 Oct 2005 21:40: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/deskutils/journal 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, 28 Oct 2005 21:40:48 -0000 linimon 2005-10-28 21:40:47 UTC FreeBSD ports repository Modified files: deskutils/journal Makefile Log: Mark DEPRECATED and reset bouncing maintainer address. Mastersite has disappeared. PR: 88141 Submitted by: Jean Milanez Melo Revision Changes Path 1.2 +4 -1 ports/deskutils/journal/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 21:41:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3997116A41F; Fri, 28 Oct 2005 21:41:43 +0000 (GMT) (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 E9E2C43D46; Fri, 28 Oct 2005 21:41:42 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SLfgVE060509; Fri, 28 Oct 2005 21:41:42 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SLfgE7060508; Fri, 28 Oct 2005 21:41:42 GMT (envelope-from sos) Message-Id: <200510282141.j9SLfgE7060508@repoman.freebsd.org> From: Søren Schmidt Date: Fri, 28 Oct 2005 21:41: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/dev/ata atapi-cd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 21:41:43 -0000 sos 2005-10-28 21:41:42 UTC FreeBSD src repository Modified files: sys/dev/ata atapi-cd.c Log: Return the right format (LBA/MSF) in TOC entries. Null the TOC on media change even if no media present. Reported by: des Revision Changes Path 1.183 +7 -5 src/sys/dev/ata/atapi-cd.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 21:57:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFA8016A41F; Fri, 28 Oct 2005 21:57:04 +0000 (GMT) (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 ACAE343D45; Fri, 28 Oct 2005 21:57:04 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SLv4B7061153; Fri, 28 Oct 2005 21:57:04 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SLv4tf061152; Fri, 28 Oct 2005 21:57:04 GMT (envelope-from brooks) Message-Id: <200510282157.j9SLv4tf061152@repoman.freebsd.org> From: Brooks Davis Date: Fri, 28 Oct 2005 21: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/sbin/ifconfig ifieee80211.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 21:57:05 -0000 brooks 2005-10-28 21:57:04 UTC FreeBSD src repository Modified files: sbin/ifconfig ifieee80211.c Log: Don't crash when given an invalid nwkey string. PR: misc/88159 Revision Changes Path 1.27 +2 -0 src/sbin/ifconfig/ifieee80211.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 21:59:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C7DC16A41F; Fri, 28 Oct 2005 21:59:08 +0000 (GMT) (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 23F3143D45; Fri, 28 Oct 2005 21:59:08 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SLx8QQ061307; Fri, 28 Oct 2005 21:59:08 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SLx8Nk061306; Fri, 28 Oct 2005 21:59:08 GMT (envelope-from thierry) Message-Id: <200510282159.j9SLx8Nk061306@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 28 Oct 2005 21:59: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/www/horde Makefile distinfo pkg-plist ports/www/horde/files patch-config_mime_drivers.php.dist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 21:59:08 -0000 thierry 2005-10-28 21:59:08 UTC FreeBSD ports repository Modified files: www/horde Makefile distinfo pkg-plist www/horde/files patch-config_mime_drivers.php.dist Log: Upgrade to 3.0.6. Changelog at Revision Changes Path 1.22 +1 -1 ports/www/horde/Makefile 1.11 +2 -2 ports/www/horde/distinfo 1.4 +10 -12 ports/www/horde/files/patch-config_mime_drivers.php.dist 1.8 +0 -5 ports/www/horde/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:17:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D893A16A421; Fri, 28 Oct 2005 22:17:56 +0000 (GMT) (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 A3E1543D45; Fri, 28 Oct 2005 22:17:56 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMHuVg062067; Fri, 28 Oct 2005 22:17:56 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMHuZU062066; Fri, 28 Oct 2005 22:17:56 GMT (envelope-from roam) Message-Id: <200510282217.j9SMHuZU062066@repoman.freebsd.org> From: Peter Pentchev Date: Fri, 28 Oct 2005 22:17: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/textproc Makefile ports/textproc/s5 Makefile distinfo pkg-descr pkg-plist ports/textproc/s5/files s5-blank.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, 28 Oct 2005 22:17:57 -0000 roam 2005-10-28 22:17:56 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/s5 Makefile distinfo pkg-descr pkg-plist textproc/s5/files s5-blank.sh Log: Add S5 1.1, Eric Meyer's Simple Standards-based Slide Show System. WWW: http://www.meyerweb.com/eric/tools/s5/ Revision Changes Path 1.878 +1 -0 ports/textproc/Makefile 1.1 +36 -0 ports/textproc/s5/Makefile (new) 1.1 +2 -0 ports/textproc/s5/distinfo (new) 1.1 +13 -0 ports/textproc/s5/files/s5-blank.sh (new) 1.1 +10 -0 ports/textproc/s5/pkg-descr (new) 1.1 +69 -0 ports/textproc/s5/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:22:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C67B216A41F; Fri, 28 Oct 2005 22:22:46 +0000 (GMT) (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 7E13F43D49; Fri, 28 Oct 2005 22:22:46 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMMkfT062359; Fri, 28 Oct 2005 22:22:46 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMMkLr062358; Fri, 28 Oct 2005 22:22:46 GMT (envelope-from roam) Message-Id: <200510282222.j9SMMkLr062358@repoman.freebsd.org> From: Peter Pentchev Date: Fri, 28 Oct 2005 22:22: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 Makefile ports/net/urelay 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: Fri, 28 Oct 2005 22:22:46 -0000 roam 2005-10-28 22:22:46 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/urelay Makefile distinfo pkg-descr Log: Add urelay 1.0, an UCSPI connection proxy. When used in conjunction with tcpserver and tcpclient, it may serve as a TCP proxy with some additional benefits such as sending a chunk of data at the start of the connection and "swallowing" a reply. Revision Changes Path 1.1564 +1 -0 ports/net/Makefile 1.1 +20 -0 ports/net/urelay/Makefile (new) 1.1 +2 -0 ports/net/urelay/distinfo (new) 1.1 +7 -0 ports/net/urelay/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:43:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF12016A41F; Fri, 28 Oct 2005 22:43:34 +0000 (GMT) (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 9DABD43D45; Fri, 28 Oct 2005 22:43:34 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMhYQ7063254; Fri, 28 Oct 2005 22:43:34 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMhYPQ063253; Fri, 28 Oct 2005 22:43:34 GMT (envelope-from kris) Message-Id: <200510282243.j9SMhYPQ063253@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:43: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/devel/alleyoop 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, 28 Oct 2005 22:43:35 -0000 kris 2005-10-28 22:43:34 UTC FreeBSD ports repository Modified files: devel/alleyoop Makefile Log: BROKEN: Does not compile Revision Changes Path 1.5 +2 -0 ports/devel/alleyoop/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:44:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1534316A41F; Fri, 28 Oct 2005 22:44:45 +0000 (GMT) (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 C4D2E43D49; Fri, 28 Oct 2005 22:44:44 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMiicU063305; Fri, 28 Oct 2005 22:44:44 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMii6M063304; Fri, 28 Oct 2005 22:44:44 GMT (envelope-from kris) Message-Id: <200510282244.j9SMii6M063304@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:44: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/lang/clisp 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, 28 Oct 2005 22:44:45 -0000 kris 2005-10-28 22:44:44 UTC FreeBSD ports repository Modified files: lang/clisp Makefile Log: BROKEN on amd64 and ia64: Does not compile Revision Changes Path 1.30 +4 -0 ports/lang/clisp/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:45:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0412016A41F; Fri, 28 Oct 2005 22:45:33 +0000 (GMT) (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 8A1B843D46; Fri, 28 Oct 2005 22:45:32 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMjWdg063408; Fri, 28 Oct 2005 22:45:32 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMjWS9063407; Fri, 28 Oct 2005 22:45:32 GMT (envelope-from kris) Message-Id: <200510282245.j9SMjWS9063407@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:45: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/audio/festival 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, 28 Oct 2005 22:45:33 -0000 kris 2005-10-28 22:45:32 UTC FreeBSD ports repository Modified files: audio/festival Makefile Log: BROKEN on !i386: Does not build Revision Changes Path 1.33 +4 -0 ports/audio/festival/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:45:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EFF716A422; Fri, 28 Oct 2005 22:45:53 +0000 (GMT) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39FE643D45; Fri, 28 Oct 2005 22:45:53 +0000 (GMT) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMjr0p063442; Fri, 28 Oct 2005 22:45:53 GMT (envelope-from avatar@repoman.freebsd.org) Received: (from avatar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMjrHE063441; Fri, 28 Oct 2005 22:45:53 GMT (envelope-from avatar) Message-Id: <200510282245.j9SMjrHE063441@repoman.freebsd.org> From: Tai-hwa Liang Date: Fri, 28 Oct 2005 22:45: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/net if_fwsubr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 22:45:53 -0000 avatar 2005-10-28 22:45:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_fwsubr.c Log: MFC: (1.16) Fixing a name collision in module declaration by renaming "firewire" to "if_firewire." According to the PR originator and Cai's test, this bug prevents a RELENG_6 GENERIC kernel from loading if_fwip.ko and will panic the kernel if users compile "device fwip" into their GENERIC kernel. Approved by: re (scottl) Revision Changes Path 1.12.2.3 +3 -3 src/sys/net/if_fwsubr.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:47:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95E1D16A420; Fri, 28 Oct 2005 22:47:10 +0000 (GMT) (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 2C81643D49; Fri, 28 Oct 2005 22:47:10 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMlAAw063500; Fri, 28 Oct 2005 22:47:10 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMlAlB063499; Fri, 28 Oct 2005 22:47:10 GMT (envelope-from kris) Message-Id: <200510282247.j9SMlAlB063499@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:47: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/audio/linux-esound 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, 28 Oct 2005 22:47:10 -0000 kris 2005-10-28 22:47:09 UTC FreeBSD ports repository Modified files: audio/linux-esound Makefile Log: NOT_FOR_ARCHS=amd64 since the distinfo is incorrect Revision Changes Path 1.11 +2 -0 ports/audio/linux-esound/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:47:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 497C816A41F; Fri, 28 Oct 2005 22:47:41 +0000 (GMT) (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 0682743D49; Fri, 28 Oct 2005 22:47:41 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMleBP063538; Fri, 28 Oct 2005 22:47:40 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMlepi063537; Fri, 28 Oct 2005 22:47:40 GMT (envelope-from brooks) Message-Id: <200510282247.j9SMlepi063537@repoman.freebsd.org> From: Brooks Davis Date: Fri, 28 Oct 2005 22:47: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/usr.sbin/vipw vipw.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, 28 Oct 2005 22:47:41 -0000 brooks 2005-10-28 22:47:40 UTC FreeBSD src repository Modified files: usr.sbin/vipw vipw.8 Log: s/insure/ensure/ in previous commit. My dictionary and m-w.com say they are synonymous, but ensure seems slightly closer and does not have the connotation of buying insurance. Reported by: Jason McIntyre Revision Changes Path 1.16 +1 -1 src/usr.sbin/vipw/vipw.8 From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:47:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A336516A420; Fri, 28 Oct 2005 22:47:45 +0000 (GMT) (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 6050243D48; Fri, 28 Oct 2005 22:47:45 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMlj58063567; Fri, 28 Oct 2005 22:47:45 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMlj1E063566; Fri, 28 Oct 2005 22:47:45 GMT (envelope-from kris) Message-Id: <200510282247.j9SMlj1E063566@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22: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/graphics/linux-ungif 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, 28 Oct 2005 22:47:45 -0000 kris 2005-10-28 22:47:45 UTC FreeBSD ports repository Modified files: graphics/linux-ungif Makefile Log: NOT_FOR_ARCHS=amd64 since the distinfo is incorrect Revision Changes Path 1.8 +2 -0 ports/graphics/linux-ungif/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:48:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6035116A41F; Fri, 28 Oct 2005 22:48:40 +0000 (GMT) (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 1C45C43D46; Fri, 28 Oct 2005 22:48:40 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMmdW1063607; Fri, 28 Oct 2005 22:48:40 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMmdtT063606; Fri, 28 Oct 2005 22:48:39 GMT (envelope-from kris) Message-Id: <200510282248.j9SMmdtT063606@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:48: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/www/middleman 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, 28 Oct 2005 22:48:40 -0000 kris 2005-10-28 22:48:39 UTC FreeBSD ports repository Modified files: www/middleman Makefile Log: BROKEN on 7.0: Does not compile Revision Changes Path 1.22 +7 -1 ports/www/middleman/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:49:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2415516A41F; Fri, 28 Oct 2005 22:49:23 +0000 (GMT) (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 D398943D49; Fri, 28 Oct 2005 22:49:22 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMnM1N063657; Fri, 28 Oct 2005 22:49:22 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMnMZD063656; Fri, 28 Oct 2005 22:49:22 GMT (envelope-from kris) Message-Id: <200510282249.j9SMnMZD063656@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:49: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/nss_ldap 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, 28 Oct 2005 22:49:23 -0000 kris 2005-10-28 22:49:22 UTC FreeBSD ports repository Modified files: net/nss_ldap Makefile Log: BROKEN on 7.0: Does not compile Revision Changes Path 1.11 +4 -0 ports/net/nss_ldap/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:50:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9A6616A41F; Fri, 28 Oct 2005 22:50:21 +0000 (GMT) (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 964A943D49; Fri, 28 Oct 2005 22:50:21 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMoLXv063748; Fri, 28 Oct 2005 22:50:21 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMoLEx063747; Fri, 28 Oct 2005 22:50:21 GMT (envelope-from kris) Message-Id: <200510282250.j9SMoLEx063747@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:50: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/lang/ocaml 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, 28 Oct 2005 22:50:22 -0000 kris 2005-10-28 22:50:21 UTC FreeBSD ports repository Modified files: lang/ocaml Makefile Log: BROKEN on ia64: Segfault during build Revision Changes Path 1.49 +2 -2 ports/lang/ocaml/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:51:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBC3216A420; Fri, 28 Oct 2005 22:51:16 +0000 (GMT) (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 A7A8C43D4C; Fri, 28 Oct 2005 22:51:16 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMpGk5063839; Fri, 28 Oct 2005 22:51:16 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMpG9o063838; Fri, 28 Oct 2005 22:51:16 GMT (envelope-from kris) Message-Id: <200510282251.j9SMpG9o063838@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:51: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/devel/omniORB 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, 28 Oct 2005 22:51:17 -0000 kris 2005-10-28 22:51:16 UTC FreeBSD ports repository Modified files: devel/omniORB Makefile Log: BROKEN on 7.0: Does not compile Revision Changes Path 1.37 +7 -1 ports/devel/omniORB/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:52:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1256D16A41F; Fri, 28 Oct 2005 22:52:32 +0000 (GMT) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C075F43D46; Fri, 28 Oct 2005 22:52:31 +0000 (GMT) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMqVO8063884; Fri, 28 Oct 2005 22:52:31 GMT (envelope-from avatar@repoman.freebsd.org) Received: (from avatar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMqVul063883; Fri, 28 Oct 2005 22:52:31 GMT (envelope-from avatar) Message-Id: <200510282252.j9SMqVul063883@repoman.freebsd.org> From: Tai-hwa Liang Date: Fri, 28 Oct 2005 22:52:31 +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/sys/net if_fwsubr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 22:52:32 -0000 avatar 2005-10-28 22:52:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/net if_fwsubr.c Log: MFC: (1.16) Fixing a name collision in module declaration by renaming "firewire" to "if_firewire." According to the PR originator and Cai's testing result, this bug prevents a RELENG_6 GENERIC kernel from loading if_fwip.ko and will panic the kernel if users compile "device fwip" into their GENERIC kernel. Approved by: re (scottl) Revision Changes Path 1.12.2.2.2.1 +3 -3 src/sys/net/if_fwsubr.c From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:52:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7C3D16A48C; Fri, 28 Oct 2005 22:52:43 +0000 (GMT) (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 8338343D46; Fri, 28 Oct 2005 22:52:43 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMqhZe063929; Fri, 28 Oct 2005 22:52:43 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMqhja063928; Fri, 28 Oct 2005 22:52:43 GMT (envelope-from kris) Message-Id: <200510282252.j9SMqhja063928@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:52: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/quake2-data 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, 28 Oct 2005 22:52:46 -0000 kris 2005-10-28 22:52:43 UTC FreeBSD ports repository Modified files: games/quake2-data Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.3 +2 -0 ports/games/quake2-data/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:53:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6996216A41F; Fri, 28 Oct 2005 22:53:02 +0000 (GMT) (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 260CC43D46; Fri, 28 Oct 2005 22:53:02 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMr2i6063979; Fri, 28 Oct 2005 22:53:02 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMr2bW063978; Fri, 28 Oct 2005 22:53:02 GMT (envelope-from kris) Message-Id: <200510282253.j9SMr2bW063978@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:53: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/games/quake3-data 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, 28 Oct 2005 22:53:02 -0000 kris 2005-10-28 22:53:02 UTC FreeBSD ports repository Modified files: games/quake3-data Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.8 +2 -0 ports/games/quake3-data/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:55:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8205516A41F; Fri, 28 Oct 2005 22:55:03 +0000 (GMT) (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 376CD43D46; Fri, 28 Oct 2005 22:55:03 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMt3U3064045; Fri, 28 Oct 2005 22:55:03 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMt3M4064044; Fri, 28 Oct 2005 22:55:03 GMT (envelope-from kris) Message-Id: <200510282255.j9SMt3M4064044@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:55: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/graphics/xmfract 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, 28 Oct 2005 22:55:03 -0000 kris 2005-10-28 22:55:02 UTC FreeBSD ports repository Modified files: graphics/xmfract Makefile Log: BROKEN on !i386 and >= 6.0: Internal compiler error Revision Changes Path 1.13 +7 -1 ports/graphics/xmfract/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:55:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E70D16A41F; Fri, 28 Oct 2005 22:55:58 +0000 (GMT) (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 BFD4F43D48; Fri, 28 Oct 2005 22:55:57 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMtvhR064137; Fri, 28 Oct 2005 22:55:57 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMtviU064136; Fri, 28 Oct 2005 22:55:57 GMT (envelope-from kris) Message-Id: <200510282255.j9SMtviU064136@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:55: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/py-matplotlib 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, 28 Oct 2005 22:55:58 -0000 kris 2005-10-28 22:55:57 UTC FreeBSD ports repository Modified files: math/py-matplotlib Makefile Log: BROKEN on 7.0: Does not build Revision Changes Path 1.11 +4 -0 ports/math/py-matplotlib/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:57:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4991516A420; Fri, 28 Oct 2005 22:57:17 +0000 (GMT) (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 069DA43D4C; Fri, 28 Oct 2005 22:57:17 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMvGPL064203; Fri, 28 Oct 2005 22:57:16 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMvGIO064202; Fri, 28 Oct 2005 22:57:16 GMT (envelope-from kris) Message-Id: <200510282257.j9SMvGIO064202@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:57: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/gnunet 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, 28 Oct 2005 22:57:17 -0000 kris 2005-10-28 22:57:16 UTC FreeBSD ports repository Modified files: net/gnunet Makefile Log: BROKEN on 7.0: Does not compile Revision Changes Path 1.50 +7 -1 ports/net/gnunet/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:57:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78FCF16A41F; Fri, 28 Oct 2005 22:57:43 +0000 (GMT) (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 34C4D43D45; Fri, 28 Oct 2005 22:57:43 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMvhRg064233; Fri, 28 Oct 2005 22:57:43 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMvh7s064232; Fri, 28 Oct 2005 22:57:43 GMT (envelope-from brooks) Message-Id: <200510282257.j9SMvh7s064232@repoman.freebsd.org> From: Brooks Davis Date: Fri, 28 Oct 2005 22:57:43 +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/etc/rc.d localpkg X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 22:57:43 -0000 brooks 2005-10-28 22:57:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) etc/rc.d localpkg Log: MFC rev 1.6: Don't print anything if we can't do any localpkg shutdown (start already does this). Submitted by: Andre Albsmeier PR: conf/86606 Revision Changes Path 1.4.2.2 +1 -2 src/etc/rc.d/localpkg From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:58:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6BB216A42F; Fri, 28 Oct 2005 22:58:03 +0000 (GMT) (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 62FB643D45; Fri, 28 Oct 2005 22:58:03 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMw3Og064289; Fri, 28 Oct 2005 22:58:03 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMw3ff064288; Fri, 28 Oct 2005 22:58:03 GMT (envelope-from kris) Message-Id: <200510282258.j9SMw3ff064288@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:58: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/www/gecko-sharp20 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, 28 Oct 2005 22:58:03 -0000 kris 2005-10-28 22:58:03 UTC FreeBSD ports repository Modified files: www/gecko-sharp20 Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.4 +2 -0 ports/www/gecko-sharp20/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 22:58:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1B5316A424; Fri, 28 Oct 2005 22:58:52 +0000 (GMT) (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 AEF2443D48; Fri, 28 Oct 2005 22:58:52 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMwqGP064366; Fri, 28 Oct 2005 22:58:52 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMwqtu064365; Fri, 28 Oct 2005 22:58:52 GMT (envelope-from kris) Message-Id: <200510282258.j9SMwqtu064365@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 22:58: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/www/dokuwiki 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, 28 Oct 2005 22:58:53 -0000 kris 2005-10-28 22:58:52 UTC FreeBSD ports repository Modified files: www/dokuwiki Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.11 +2 -0 ports/www/dokuwiki/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:00:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 430B616A41F; Fri, 28 Oct 2005 23:00:02 +0000 (GMT) (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 EB74443D48; Fri, 28 Oct 2005 23:00:01 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SN01Rx064433; Fri, 28 Oct 2005 23:00:01 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SN01qA064432; Fri, 28 Oct 2005 23:00:01 GMT (envelope-from kris) Message-Id: <200510282300.j9SN01qA064432@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23: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: ports/games/amy 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, 28 Oct 2005 23:00:02 -0000 kris 2005-10-28 23:00:01 UTC FreeBSD ports repository Modified files: games/amy Makefile Log: BROKEN on amd64: Segfault during build Revision Changes Path 1.10 +7 -1 ports/games/amy/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:01:37 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10BE616A420; Fri, 28 Oct 2005 23:01:37 +0000 (GMT) (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 ABCC943D77; Fri, 28 Oct 2005 23:01:35 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SN1Zv1064561; Fri, 28 Oct 2005 23:01:35 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SN1Zfg064560; Fri, 28 Oct 2005 23:01:35 GMT (envelope-from kris) Message-Id: <200510282301.j9SN1Zfg064560@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:01: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/security/cfs 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, 28 Oct 2005 23:01:37 -0000 kris 2005-10-28 23:01:35 UTC FreeBSD ports repository Modified files: security/cfs Makefile Log: BROKEN on 7.0: Does not compile Revision Changes Path 1.22 +7 -1 ports/security/cfs/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:02:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C53816A41F; Fri, 28 Oct 2005 23:02:40 +0000 (GMT) (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 6F17143D62; Fri, 28 Oct 2005 23:02:27 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SN2QXV064608; Fri, 28 Oct 2005 23:02:26 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SN2QnZ064607; Fri, 28 Oct 2005 23:02:26 GMT (envelope-from kris) Message-Id: <200510282302.j9SN2QnZ064607@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:02: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/commoncpp 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, 28 Oct 2005 23:02:40 -0000 kris 2005-10-28 23:02:26 UTC FreeBSD ports repository Modified files: devel/commoncpp Makefile Log: BROKEN on 7.0: Does not compile Revision Changes Path 1.24 +7 -1 ports/devel/commoncpp/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:03:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2711316A41F; Fri, 28 Oct 2005 23:03:16 +0000 (GMT) (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 AAB4D43D62; Fri, 28 Oct 2005 23:03:15 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SN3FBk064658; Fri, 28 Oct 2005 23:03:15 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SN3FMm064657; Fri, 28 Oct 2005 23:03:15 GMT (envelope-from kris) Message-Id: <200510282303.j9SN3FMm064657@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:03: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/editors/hte 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, 28 Oct 2005 23:03:16 -0000 kris 2005-10-28 23:03:15 UTC FreeBSD ports repository Modified files: editors/hte Makefile Log: BROKEN on ia64: Does not build Revision Changes Path 1.24 +4 -0 ports/editors/hte/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:04:09 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFC2816A41F; Fri, 28 Oct 2005 23:04:08 +0000 (GMT) (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 ACD7043D6D; Fri, 28 Oct 2005 23:04:08 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SN48og064701; Fri, 28 Oct 2005 23:04:08 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SN481J064700; Fri, 28 Oct 2005 23:04:08 GMT (envelope-from kris) Message-Id: <200510282304.j9SN481J064700@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:04: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/multimedia/istanbul 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, 28 Oct 2005 23:04:09 -0000 kris 2005-10-28 23:04:08 UTC FreeBSD ports repository Modified files: multimedia/istanbul Makefile Log: BROKEN on !i386: Configure fails Revision Changes Path 1.4 +2 -2 ports/multimedia/istanbul/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:05:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83D2616A420; Fri, 28 Oct 2005 23:05:07 +0000 (GMT) (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 3AEF443D45; Fri, 28 Oct 2005 23:05:07 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SN57id064785; Fri, 28 Oct 2005 23:05:07 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SN56Fn064776; Fri, 28 Oct 2005 23:05:06 GMT (envelope-from kris) Message-Id: <200510282305.j9SN56Fn064776@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:05: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/japanese/uim 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, 28 Oct 2005 23:05:07 -0000 kris 2005-10-28 23:05:06 UTC FreeBSD ports repository Modified files: japanese/uim Makefile Log: BROKEN on ia64: Segfault during build Revision Changes Path 1.38 +4 -0 ports/japanese/uim/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:06:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9256616A41F; Fri, 28 Oct 2005 23:06:23 +0000 (GMT) (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 4F42B43D48; Fri, 28 Oct 2005 23:06:23 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SN6NcC064888; Fri, 28 Oct 2005 23:06:23 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SN6NPT064887; Fri, 28 Oct 2005 23:06:23 GMT (envelope-from kris) Message-Id: <200510282306.j9SN6NPT064887@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:06: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/lang/librep 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, 28 Oct 2005 23:06:23 -0000 kris 2005-10-28 23:06:23 UTC FreeBSD ports repository Modified files: lang/librep Makefile Log: BROKEN on ia64: Does not build Revision Changes Path 1.58 +5 -0 ports/lang/librep/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:07:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F78416A420; Fri, 28 Oct 2005 23:07:42 +0000 (GMT) (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 0AA9343D49; Fri, 28 Oct 2005 23:07:42 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SN7fMO064939; Fri, 28 Oct 2005 23:07:41 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SN7fLc064938; Fri, 28 Oct 2005 23:07:41 GMT (envelope-from kris) Message-Id: <200510282307.j9SN7fLc064938@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:07: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/www/sidplug 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, 28 Oct 2005 23:07:42 -0000 kris 2005-10-28 23:07:41 UTC FreeBSD ports repository Modified files: www/sidplug Makefile Log: Extend -fPIC hack to cover ia64 to try and fix build Revision Changes Path 1.8 +1 -1 ports/www/sidplug/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:07:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA16016A41F; Fri, 28 Oct 2005 23:07:50 +0000 (GMT) (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 A45F743D48; Fri, 28 Oct 2005 23:07:50 +0000 (GMT) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SN7o7T064989; Fri, 28 Oct 2005 23:07:50 GMT (envelope-from mi@repoman.freebsd.org) Received: (from mi@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SN7o7D064988; Fri, 28 Oct 2005 23:07:50 GMT (envelope-from mi) Message-Id: <200510282307.j9SN7o7D064988@repoman.freebsd.org> From: Mikhail Teterin Date: Fri, 28 Oct 2005 23:07: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/net/rdist6 Makefile ports/net/rdist6/files patch-ae X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2005 23:07:51 -0000 mi 2005-10-28 23:07:50 UTC FreeBSD ports repository Modified files: net/rdist6 Makefile net/rdist6/files patch-ae Log: Fix patch-ae to compare the specified rsh-equivalent with "/usr/bin/rsh" instead of the compiled in _PATH_REMSH, which is now ssh. This allows some users to still specify /usr/bin/rsh and (if they run as root) have the program use rcmd(), while solving the problems like that in the PR: 79093 Submitted by: Alex Deiter Bump PORTREVISION. Revision Changes Path 1.27 +1 -1 ports/net/rdist6/Makefile 1.4 +1 -1 ports/net/rdist6/files/patch-ae From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:08:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6402816A422; Fri, 28 Oct 2005 23:08:38 +0000 (GMT) (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 2156543D49; Fri, 28 Oct 2005 23:08:38 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SN8c5X065031; Fri, 28 Oct 2005 23:08:38 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SN8cRl065030; Fri, 28 Oct 2005 23:08:38 GMT (envelope-from kris) Message-Id: <200510282308.j9SN8cRl065030@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:08: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/x11-toolkits/slingshot 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, 28 Oct 2005 23:08:38 -0000 kris 2005-10-28 23:08:37 UTC FreeBSD ports repository Modified files: x11-toolkits/slingshot Makefile Log: BROKEN on ia64: Missing -fPIC from shared libraries Revision Changes Path 1.24 +2 -2 ports/x11-toolkits/slingshot/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:09:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AF2316A420; Fri, 28 Oct 2005 23:09:32 +0000 (GMT) (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 29A0143D7E; Fri, 28 Oct 2005 23:09:25 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SN9Pav065083; Fri, 28 Oct 2005 23:09:25 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SN9PIc065082; Fri, 28 Oct 2005 23:09:25 GMT (envelope-from kris) Message-Id: <200510282309.j9SN9PIc065082@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:09: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/print/texinfo 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, 28 Oct 2005 23:09:32 -0000 kris 2005-10-28 23:09:24 UTC FreeBSD ports repository Modified files: print/texinfo pkg-plist Log: Back out previous commit, which was a mistake. Revision Changes Path 1.7 +2 -0 ports/print/texinfo/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:10:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A5DD16A41F; Fri, 28 Oct 2005 23:10:51 +0000 (GMT) (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 AE36C43D5A; Fri, 28 Oct 2005 23:10:50 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNAoJS065211; Fri, 28 Oct 2005 23:10:50 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNAo0b065210; Fri, 28 Oct 2005 23:10:50 GMT (envelope-from kris) Message-Id: <200510282310.j9SNAo0b065210@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:10: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/devel/i386-rtems-gcc 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, 28 Oct 2005 23:10:51 -0000 kris 2005-10-28 23:10:50 UTC FreeBSD ports repository Modified files: devel/i386-rtems-gcc Makefile Log: BROKEN on 7.0: Configure fails Revision Changes Path 1.44 +4 -0 ports/devel/i386-rtems-gcc/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:12:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A618516A41F; Fri, 28 Oct 2005 23:12:21 +0000 (GMT) (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 631C443D46; Fri, 28 Oct 2005 23:12:21 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNCLGe065311; Fri, 28 Oct 2005 23:12:21 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNCLpd065310; Fri, 28 Oct 2005 23:12:21 GMT (envelope-from kris) Message-Id: <200510282312.j9SNCLpd065310@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:12: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/i386-rtems-gdb 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, 28 Oct 2005 23:12:21 -0000 kris 2005-10-28 23:12:21 UTC FreeBSD ports repository Modified files: devel/i386-rtems-gdb Makefile Log: arm target is BROKEN on sparc64: Does not build Revision Changes Path 1.24 +4 -0 ports/devel/i386-rtems-gdb/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:12:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED7F916A41F; Fri, 28 Oct 2005 23:12:56 +0000 (GMT) (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 AA26A43D46; Fri, 28 Oct 2005 23:12:56 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNCuKK065346; Fri, 28 Oct 2005 23:12:56 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNCu4e065345; Fri, 28 Oct 2005 23:12:56 GMT (envelope-from kris) Message-Id: <200510282312.j9SNCu4e065345@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:12: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/i386-rtems-gcc 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, 28 Oct 2005 23:12:57 -0000 kris 2005-10-28 23:12:56 UTC FreeBSD ports repository Modified files: devel/i386-rtems-gcc Makefile Log: sparc64 6.0 seems to be buildable now. Revision Changes Path 1.45 +2 -2 ports/devel/i386-rtems-gcc/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:13:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00CD616A41F; Fri, 28 Oct 2005 23:13:43 +0000 (GMT) (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 B15C643D4C; Fri, 28 Oct 2005 23:13:42 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNDgQk065436; Fri, 28 Oct 2005 23:13:42 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNDg4S065435; Fri, 28 Oct 2005 23:13:42 GMT (envelope-from kris) Message-Id: <200510282313.j9SNDg4S065435@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:13: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/editors/ooodict-af_ZA 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, 28 Oct 2005 23:13:43 -0000 kris 2005-10-28 23:13:42 UTC FreeBSD ports repository Modified files: editors/ooodict-af_ZA Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.3 +2 -0 ports/editors/ooodict-af_ZA/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:14:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F84316A41F; Fri, 28 Oct 2005 23:14:08 +0000 (GMT) (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 1C53E43D45; Fri, 28 Oct 2005 23:14:08 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNE7Dv065500; Fri, 28 Oct 2005 23:14:08 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNE7DG065499; Fri, 28 Oct 2005 23:14:07 GMT (envelope-from kris) Message-Id: <200510282314.j9SNE7DG065499@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:14: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/editors/ooodict-da_DK 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, 28 Oct 2005 23:14:08 -0000 kris 2005-10-28 23:14:07 UTC FreeBSD ports repository Modified files: editors/ooodict-da_DK Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.10 +2 -0 ports/editors/ooodict-da_DK/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:14:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D926716A41F; Fri, 28 Oct 2005 23:14:35 +0000 (GMT) (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 9587E43D46; Fri, 28 Oct 2005 23:14:35 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNEZBK065538; Fri, 28 Oct 2005 23:14:35 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNEZac065537; Fri, 28 Oct 2005 23:14:35 GMT (envelope-from kris) Message-Id: <200510282314.j9SNEZac065537@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:14: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/german/ooodict-de_DE 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, 28 Oct 2005 23:14:36 -0000 kris 2005-10-28 23:14:35 UTC FreeBSD ports repository Modified files: german/ooodict-de_DE Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.9 +2 -0 ports/german/ooodict-de_DE/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:15:00 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B07416A41F; Fri, 28 Oct 2005 23:15:00 +0000 (GMT) (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 9114B43D46; Fri, 28 Oct 2005 23:14:59 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNExwl065572; Fri, 28 Oct 2005 23:14:59 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNExgk065571; Fri, 28 Oct 2005 23:14:59 GMT (envelope-from kris) Message-Id: <200510282314.j9SNExgk065571@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:14: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/editors/ooodict-el_GR 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, 28 Oct 2005 23:15:00 -0000 kris 2005-10-28 23:14:59 UTC FreeBSD ports repository Modified files: editors/ooodict-el_GR Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.9 +2 -0 ports/editors/ooodict-el_GR/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:15:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9610816A41F; Fri, 28 Oct 2005 23:15:24 +0000 (GMT) (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 5B76243D76; Fri, 28 Oct 2005 23:15:23 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNFN1C065653; Fri, 28 Oct 2005 23:15:23 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNFNA8065652; Fri, 28 Oct 2005 23:15:23 GMT (envelope-from kris) Message-Id: <200510282315.j9SNFNA8065652@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:15: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/editors/ooodict-ga_IE 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, 28 Oct 2005 23:15:24 -0000 kris 2005-10-28 23:15:23 UTC FreeBSD ports repository Modified files: editors/ooodict-ga_IE Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.3 +2 -0 ports/editors/ooodict-ga_IE/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:15:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AF7916A41F; Fri, 28 Oct 2005 23:15:46 +0000 (GMT) (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 B40D043D55; Fri, 28 Oct 2005 23:15:44 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNFiV9065715; Fri, 28 Oct 2005 23:15:44 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNFiJ7065714; Fri, 28 Oct 2005 23:15:44 GMT (envelope-from kris) Message-Id: <200510282315.j9SNFiJ7065714@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:15: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/editors/ooodict-it_IT 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, 28 Oct 2005 23:15:46 -0000 kris 2005-10-28 23:15:44 UTC FreeBSD ports repository Modified files: editors/ooodict-it_IT Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.10 +2 -0 ports/editors/ooodict-it_IT/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:16:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97FD416A41F; Fri, 28 Oct 2005 23:16:03 +0000 (GMT) (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 52A1D43D58; Fri, 28 Oct 2005 23:16:03 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNG3Uj065753; Fri, 28 Oct 2005 23:16:03 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNG3c4065752; Fri, 28 Oct 2005 23:16:03 GMT (envelope-from kris) Message-Id: <200510282316.j9SNG3c4065752@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:16: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/editors/ooodict-nl_NL 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, 28 Oct 2005 23:16:03 -0000 kris 2005-10-28 23:16:03 UTC FreeBSD ports repository Modified files: editors/ooodict-nl_NL Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.10 +2 -0 ports/editors/ooodict-nl_NL/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:16:28 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E4A316A41F; Fri, 28 Oct 2005 23:16:28 +0000 (GMT) (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 419A843D58; Fri, 28 Oct 2005 23:16:28 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNGSPK065791; Fri, 28 Oct 2005 23:16:28 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNGSSE065790; Fri, 28 Oct 2005 23:16:28 GMT (envelope-from kris) Message-Id: <200510282316.j9SNGSSE065790@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:16: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/polish/ooodict_PL 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, 28 Oct 2005 23:16:28 -0000 kris 2005-10-28 23:16:28 UTC FreeBSD ports repository Modified files: polish/ooodict_PL Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.13 +2 -0 ports/polish/ooodict_PL/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:16:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A49EA16A41F; Fri, 28 Oct 2005 23:16:48 +0000 (GMT) (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 6068143D46; Fri, 28 Oct 2005 23:16:48 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNGmqf065825; Fri, 28 Oct 2005 23:16:48 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNGmYZ065824; Fri, 28 Oct 2005 23:16:48 GMT (envelope-from kris) Message-Id: <200510282316.j9SNGmYZ065824@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:16: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/editors/ooodict-ro_RO 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, 28 Oct 2005 23:16:48 -0000 kris 2005-10-28 23:16:48 UTC FreeBSD ports repository Modified files: editors/ooodict-ro_RO Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.3 +2 -0 ports/editors/ooodict-ro_RO/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:17:08 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 511FA16A41F; Fri, 28 Oct 2005 23:17:08 +0000 (GMT) (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 7D0CE43D48; Fri, 28 Oct 2005 23:17:07 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNH7Ep065871; Fri, 28 Oct 2005 23:17:07 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNH7vH065870; Fri, 28 Oct 2005 23:17:07 GMT (envelope-from kris) Message-Id: <200510282317.j9SNH7vH065870@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:17: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/editors/ooodict-sk_SK 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, 28 Oct 2005 23:17:08 -0000 kris 2005-10-28 23:17:07 UTC FreeBSD ports repository Modified files: editors/ooodict-sk_SK Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.10 +2 -0 ports/editors/ooodict-sk_SK/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:17:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4755316A41F; Fri, 28 Oct 2005 23:17:30 +0000 (GMT) (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 EEF7B43D48; Fri, 28 Oct 2005 23:17:29 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNHTfF065909; Fri, 28 Oct 2005 23:17:29 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNHT19065908; Fri, 28 Oct 2005 23:17:29 GMT (envelope-from kris) Message-Id: <200510282317.j9SNHT19065908@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:17: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/russian/ooodict-ru_RU 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, 28 Oct 2005 23:17:30 -0000 kris 2005-10-28 23:17:29 UTC FreeBSD ports repository Modified files: russian/ooodict-ru_RU Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.7 +2 -0 ports/russian/ooodict-ru_RU/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:17:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCD9016A41F; Fri, 28 Oct 2005 23:17:56 +0000 (GMT) (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 9882A43D49; Fri, 28 Oct 2005 23:17:56 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNHua8065943; Fri, 28 Oct 2005 23:17:56 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNHudH065942; Fri, 28 Oct 2005 23:17:56 GMT (envelope-from kris) Message-Id: <200510282317.j9SNHudH065942@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:17: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/ooodict-en_AU 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, 28 Oct 2005 23:17:57 -0000 kris 2005-10-28 23:17:56 UTC FreeBSD ports repository Modified files: editors/ooodict-en_AU Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.3 +2 -0 ports/editors/ooodict-en_AU/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:18:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CB8A16A41F; Fri, 28 Oct 2005 23:18:20 +0000 (GMT) (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 C035343D46; Fri, 28 Oct 2005 23:18:19 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNIJQ4065985; Fri, 28 Oct 2005 23:18:19 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNIJ8G065984; Fri, 28 Oct 2005 23:18:19 GMT (envelope-from kris) Message-Id: <200510282318.j9SNIJ8G065984@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:18: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/editors/ooodict-en_NZ 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, 28 Oct 2005 23:18:20 -0000 kris 2005-10-28 23:18:19 UTC FreeBSD ports repository Modified files: editors/ooodict-en_NZ Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.3 +2 -0 ports/editors/ooodict-en_NZ/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:18:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3284C16A41F; Fri, 28 Oct 2005 23:18:40 +0000 (GMT) (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 C707643D48; Fri, 28 Oct 2005 23:18:39 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNIdsn066020; Fri, 28 Oct 2005 23:18:39 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNIdmI066019; Fri, 28 Oct 2005 23:18:39 GMT (envelope-from kris) Message-Id: <200510282318.j9SNIdmI066019@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:18: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/editors/ooodict-es_MX 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, 28 Oct 2005 23:18:40 -0000 kris 2005-10-28 23:18:39 UTC FreeBSD ports repository Modified files: editors/ooodict-es_MX Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.3 +2 -0 ports/editors/ooodict-es_MX/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:20:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DAE316A425; Fri, 28 Oct 2005 23:20:46 +0000 (GMT) (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 2A8D743D46; Fri, 28 Oct 2005 23:20:46 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNKkkg066181; Fri, 28 Oct 2005 23:20:46 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNKkWv066180; Fri, 28 Oct 2005 23:20:46 GMT (envelope-from kris) Message-Id: <200510282320.j9SNKkWv066180@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:20: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/cln 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, 28 Oct 2005 23:20:46 -0000 kris 2005-10-28 23:20:46 UTC FreeBSD ports repository Modified files: math/cln Makefile Log: BROKEN on ia64: Does not compile Revision Changes Path 1.23 +2 -2 ports/math/cln/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:22:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E35D116A41F; Fri, 28 Oct 2005 23:22:17 +0000 (GMT) (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 86F2843D48; Fri, 28 Oct 2005 23:22:17 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNMHgU066236; Fri, 28 Oct 2005 23:22:17 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNMHTw066235; Fri, 28 Oct 2005 23:22:17 GMT (envelope-from kris) Message-Id: <200510282322.j9SNMHTw066235@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:22: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/comms/lirc 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, 28 Oct 2005 23:22:18 -0000 kris 2005-10-28 23:22:17 UTC FreeBSD ports repository Modified files: comms/lirc Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.17 +2 -0 ports/comms/lirc/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:23:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEFED16A41F; Fri, 28 Oct 2005 23:23:30 +0000 (GMT) (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 7D46243D45; Fri, 28 Oct 2005 23:23:30 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNNUMn066290; Fri, 28 Oct 2005 23:23:30 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNNUWD066289; Fri, 28 Oct 2005 23:23:30 GMT (envelope-from kris) Message-Id: <200510282323.j9SNNUWD066289@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:23: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/math/octave-forge 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, 28 Oct 2005 23:23:30 -0000 kris 2005-10-28 23:23:30 UTC FreeBSD ports repository Modified files: math/octave-forge Makefile Log: BROKEN: Incorrect pkg-plist Revision Changes Path 1.9 +2 -0 ports/math/octave-forge/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:24:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5B3B16A41F; Fri, 28 Oct 2005 23:24:40 +0000 (GMT) (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 A104543D45; Fri, 28 Oct 2005 23:24:40 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNOehi066345; Fri, 28 Oct 2005 23:24:40 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNOeEQ066344; Fri, 28 Oct 2005 23:24:40 GMT (envelope-from kris) Message-Id: <200510282324.j9SNOeEQ066344@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:24: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/p5-GStreamer 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, 28 Oct 2005 23:24:41 -0000 kris 2005-10-28 23:24:40 UTC FreeBSD ports repository Modified files: multimedia/p5-GStreamer Makefile Log: BROKEN on amd64: Coredump during build Revision Changes Path 1.3 +7 -1 ports/multimedia/p5-GStreamer/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:26:05 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 584FD16A41F; Fri, 28 Oct 2005 23:26:05 +0000 (GMT) (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 DC24143D48; Fri, 28 Oct 2005 23:26:04 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNQ41r066502; Fri, 28 Oct 2005 23:26:04 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNQ4Ca066501; Fri, 28 Oct 2005 23:26:04 GMT (envelope-from kris) Message-Id: <200510282326.j9SNQ4Ca066501@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:26: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/graphics/stamp 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, 28 Oct 2005 23:26:05 -0000 kris 2005-10-28 23:26:04 UTC FreeBSD ports repository Modified files: graphics/stamp Makefile Log: BROKEN: Incomplete pkg-plist Revision Changes Path 1.13 +2 -0 ports/graphics/stamp/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:27:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30A8616A420; Fri, 28 Oct 2005 23:27:25 +0000 (GMT) (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 E1B4C43D48; Fri, 28 Oct 2005 23:27:24 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNROKR066553; Fri, 28 Oct 2005 23:27:24 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNRO90066552; Fri, 28 Oct 2005 23:27:24 GMT (envelope-from kris) Message-Id: <200510282327.j9SNRO90066552@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:27: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/chinese/xemacs 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, 28 Oct 2005 23:27:25 -0000 kris 2005-10-28 23:27:24 UTC FreeBSD ports repository Modified files: chinese/xemacs Makefile Log: BROKEN on i386 and ia64: Configure fails Revision Changes Path 1.19 +7 -1 ports/chinese/xemacs/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:28:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2770016A41F; Fri, 28 Oct 2005 23:28:40 +0000 (GMT) (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 D837143D45; Fri, 28 Oct 2005 23:28:39 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNSdYQ066656; Fri, 28 Oct 2005 23:28:39 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNSdk7066655; Fri, 28 Oct 2005 23:28:39 GMT (envelope-from kris) Message-Id: <200510282328.j9SNSdk7066655@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23:28: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/www/linuxpluginwrapper 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, 28 Oct 2005 23:28:40 -0000 kris 2005-10-28 23:28:39 UTC FreeBSD ports repository Modified files: www/linuxpluginwrapper Makefile Log: BROKEN: Broken by update to acroread7 Revision Changes Path 1.42 +2 -0 ports/www/linuxpluginwrapper/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:29:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E67B16A41F; Fri, 28 Oct 2005 23:29:20 +0000 (GMT) (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 4A09A43D45; Fri, 28 Oct 2005 23:29:20 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNTKkW066702; Fri, 28 Oct 2005 23:29:20 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNTKe2066701; Fri, 28 Oct 2005 23:29:20 GMT (envelope-from kris) Message-Id: <200510282329.j9SNTKe2066701@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 28 Oct 2005 23: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/astro/nova 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, 28 Oct 2005 23:29:20 -0000 kris 2005-10-28 23:29:20 UTC FreeBSD ports repository Modified files: astro/nova Makefile Log: BROKEN: Broken dependency Revision Changes Path 1.6 +2 -0 ports/astro/nova/Makefile From owner-cvs-all@FreeBSD.ORG Fri Oct 28 23:51:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D333A16A41F; Fri, 28 Oct 2005 23:51:51 +0000 (GMT) (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 8E4AD43D45; Fri, 28 Oct 2005 23:51:51 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SNppgg067639; Fri, 28 Oct 2005 23:51:51 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SNppO1067638; Fri, 28 Oct 2005 23:51:51 GMT (envelope-from hq) Message-Id: <200510282351.j9SNppO1067638@repoman.freebsd.org> From: Herve Quiroz Date: Fri, 28 Oct 2005 23:51: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/devel/antlr 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, 28 Oct 2005 23:51:52 -0000 hq 2005-10-28 23:51:51 UTC FreeBSD ports repository Modified files: devel/antlr Makefile distinfo pkg-plist Log: Update to 2.7.5 PR: 88161 Submitted by: Frerich Raabe Revision Changes Path 1.9 +3 -3 ports/devel/antlr/Makefile 1.5 +2 -2 ports/devel/antlr/distinfo 1.5 +3 -0 ports/devel/antlr/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 01:07:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99DAD16A41F; Sat, 29 Oct 2005 01:07:47 +0000 (GMT) (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 5701C43D49; Sat, 29 Oct 2005 01:07:47 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T17lds078982; Sat, 29 Oct 2005 01:07:47 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T17lfg078981; Sat, 29 Oct 2005 01:07:47 GMT (envelope-from hq) Message-Id: <200510290107.j9T17lfg078981@repoman.freebsd.org> From: Herve Quiroz Date: Sat, 29 Oct 2005 01:07: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-mgmt/pfpro 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, 29 Oct 2005 01:07:47 -0000 hq 2005-10-29 01:07:46 UTC FreeBSD ports repository Modified files: net-mgmt/pfpro Makefile pkg-plist Log: - Unbreak: fix pkg-plist [1] - Add $FreeBSD$ tag in pkg-plist PR: 88131 [1] Submitted by: maintainer [1] Revision Changes Path 1.3 +0 -2 ports/net-mgmt/pfpro/Makefile 1.2 +2 -0 ports/net-mgmt/pfpro/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 01:14:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B67D16A41F; Sat, 29 Oct 2005 01:14:25 +0000 (GMT) (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 0EA4043D49; Sat, 29 Oct 2005 01:14:25 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T1EOo4079263; Sat, 29 Oct 2005 01:14:24 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T1EOAp079262; Sat, 29 Oct 2005 01:14:24 GMT (envelope-from ahze) Message-Id: <200510290114.j9T1EOAp079262@repoman.freebsd.org> From: Michael Johnson Date: Sat, 29 Oct 2005 01:14: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/libopensync 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, 29 Oct 2005 01:14:25 -0000 ahze 2005-10-29 01:14:24 UTC FreeBSD ports repository Modified files: devel/libopensync Makefile Log: - Fix fetch by using MASTER_SITE_LOCAL Revision Changes Path 1.4 +3 -3 ports/devel/libopensync/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 01:18:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0BBC16A41F; Sat, 29 Oct 2005 01:18:07 +0000 (GMT) (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 7C25E43D55; Sat, 29 Oct 2005 01:18:07 +0000 (GMT) (envelope-from ahze@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T1I75V079431; Sat, 29 Oct 2005 01:18:07 GMT (envelope-from ahze@repoman.freebsd.org) Received: (from ahze@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T1I7G5079430; Sat, 29 Oct 2005 01:18:07 GMT (envelope-from ahze) Message-Id: <200510290118.j9T1I7G5079430@repoman.freebsd.org> From: Michael Johnson Date: Sat, 29 Oct 2005 01:18: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/math/fftw3 Makefile ports/math/fftw3-long 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, 29 Oct 2005 01:18:07 -0000 ahze 2005-10-29 01:18:07 UTC FreeBSD ports repository Modified files: math/fftw3 Makefile math/fftw3-long Makefile Log: - Fix fftw3-long by ALWAYS using math/ldouble even if CPUTYPE is defined since some CPUTYPES work and others don't. Revision Changes Path 1.5 +0 -2 ports/math/fftw3-long/Makefile 1.38 +1 -1 ports/math/fftw3/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 02:18:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C53B616A41F; Sat, 29 Oct 2005 02:18:30 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15EF343D66; Sat, 29 Oct 2005 02:18:27 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T2IRxM081526; Sat, 29 Oct 2005 02:18:27 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T2IRR5081525; Sat, 29 Oct 2005 02:18:27 GMT (envelope-from wpaul) Message-Id: <200510290218.j9T2IRR5081525@repoman.freebsd.org> From: Bill Paul Date: Sat, 29 Oct 2005 02:18: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/sys/dev/if_ndis if_ndis.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 02:18:30 -0000 wpaul 2005-10-29 02:18:27 UTC FreeBSD src repository Modified files: sys/dev/if_ndis if_ndis.c Log: Fix ndis_getstate_80211() so that it properly reports the authmode and channel to ifconfig. Also use the SSID and channel info from the association info that we already have instead of using ndis_get_info() to ask the driver for it again. Revision Changes Path 1.112 +77 -32 src/sys/dev/if_ndis/if_ndis.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 02:20:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CE6216A431; Sat, 29 Oct 2005 02:20:45 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCBFF43D4C; Sat, 29 Oct 2005 02:20:44 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T2Ki5p081714; Sat, 29 Oct 2005 02:20:44 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T2Ki9m081713; Sat, 29 Oct 2005 02:20:44 GMT (envelope-from wpaul) Message-Id: <200510290220.j9T2Ki9m081713@repoman.freebsd.org> From: Bill Paul Date: Sat, 29 Oct 2005 02:20:44 +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/if_ndis if_ndis.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 02:20:45 -0000 wpaul 2005-10-29 02:20:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/if_ndis if_ndis.c Log: MFC: fix channel and authmode reporting for ifconfig (note: authmode reporting is a no-op in 5.x and always shows up as OPEN) Revision Changes Path 1.69.2.11 +77 -32 src/sys/dev/if_ndis/if_ndis.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 02:46:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACC4716A41F; Sat, 29 Oct 2005 02:46:59 +0000 (GMT) (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 667A843D45; Sat, 29 Oct 2005 02:46:59 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T2kx5Y082787; Sat, 29 Oct 2005 02:46:59 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T2kx4e082786; Sat, 29 Oct 2005 02:46:59 GMT (envelope-from mjacob) Message-Id: <200510290246.j9T2kx4e082786@repoman.freebsd.org> From: Matt Jacob Date: Sat, 29 Oct 2005 02:46: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/dev/isp isp.c isp_freebsd.c isp_ioctl.h ispmbox.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, 29 Oct 2005 02:46:59 -0000 mjacob 2005-10-29 02:46:59 UTC FreeBSD src repository Modified files: sys/dev/isp isp.c isp_freebsd.c isp_ioctl.h ispmbox.h Log: Add an ioctl framework for doing FC task management functions from a user space tool- useful for doing FC target mode certification. Revision Changes Path 1.114 +1 -1 src/sys/dev/isp/isp.c 1.107 +59 -0 src/sys/dev/isp/isp_freebsd.c 1.13 +12 -0 src/sys/dev/isp/isp_ioctl.h 1.48 +1 -0 src/sys/dev/isp/ispmbox.h From owner-cvs-all@FreeBSD.ORG Sat Oct 29 03:01:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C692816A420; Sat, 29 Oct 2005 03:01:17 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C2B043D45; Sat, 29 Oct 2005 03:01:17 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T31HM0083495; Sat, 29 Oct 2005 03:01:17 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T31H3P083494; Sat, 29 Oct 2005 03:01:17 GMT (envelope-from wpaul) Message-Id: <200510290301.j9T31H3P083494@repoman.freebsd.org> From: Bill Paul Date: Sat, 29 Oct 2005 03:01: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/txp if_txp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 03:01:18 -0000 wpaul 2005-10-29 03:01:17 UTC FreeBSD src repository Modified files: sys/dev/txp if_txp.c Log: Remove call to txp_set_filter() from txp_attach(). txp_set_filter() needs the ifp, so you can't call it before doing if_alloc(). Also, there's really no need to call it here anyway: the code I originally ported from OpenBSD incorrectly set the station address only once at device attach time, instead of setting in txp_init(). This meant you couldn't change the address with ifconfig txp0 ether xx:xx:xx:xx:xx:xx. I added the call to txp_set_filter() in txp_init() to correct this, but forgot to remove the call from txp_attach(). Until now, it never mattered. With this fix, the txp driver tests good: txp0: <3Com 3cR990-TX-97 Etherlink with 3XP Processor> port 0xb800-0xb87f mem 0xe6800000-0xe683ffff irq 12 at device 10.0 on pci0 txp0: Ethernet address: 00:01:03:d4:91:4f Revision Changes Path 1.38 +0 -2 src/sys/dev/txp/if_txp.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 03:08:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5905116A420; Sat, 29 Oct 2005 03:08:44 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FD1C43D49; Sat, 29 Oct 2005 03:08:43 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T38hHH083828; Sat, 29 Oct 2005 03:08:43 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T38hS1083827; Sat, 29 Oct 2005 03:08:43 GMT (envelope-from davidxu) Message-Id: <200510290308.j9T38hS1083827@repoman.freebsd.org> From: David Xu Date: Sat, 29 Oct 2005 03:08: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/libthr/arch/i386/include pthread_md.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, 29 Oct 2005 03:08:44 -0000 davidxu 2005-10-29 03:08:43 UTC FreeBSD src repository Modified files: lib/libthr/arch/i386/include pthread_md.h Log: Kill unused variable declaration. Revision Changes Path 1.5 +0 -2 src/lib/libthr/arch/i386/include/pthread_md.h From owner-cvs-all@FreeBSD.ORG Sat Oct 29 03:20:22 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D0B716A41F; Sat, 29 Oct 2005 03:20:22 +0000 (GMT) (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 3FC5C43D48; Sat, 29 Oct 2005 03:20:21 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86]) by mailout1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9T3KBDD031093; Sat, 29 Oct 2005 13:20:11 +1000 Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9T3K7bv020653; Sat, 29 Oct 2005 13:20:08 +1000 Date: Sat, 29 Oct 2005 13:20:07 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Warner Losh In-Reply-To: <20051028.103709.74689710.imp@bsdimp.com> Message-ID: <20051029124828.C30731@delplex.bde.org> References: <200510261648.27126.peter@wemm.org> <200510281041.44147.jhb@freebsd.org> <20051028160218.GJ41520@cell.sick.ru> <20051028.103709.74689710.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: src-committers@freebsd.org, jhb@freebsd.org, peter@wemm.org, cvs-src@freebsd.org, cvs-all@freebsd.org, glebius@freebsd.org, linimon@lonesome.com Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_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, 29 Oct 2005 03:20:22 -0000 On Fri, 28 Oct 2005, Warner Losh wrote: > From: Gleb Smirnoff > Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.c ... > Date: Fri, 28 Oct 2005 20:02:18 +0400 > >> John, >> >> On Fri, Oct 28, 2005 at 10:41:42AM -0400, John Baldwin wrote: [peter wrote] >> J> > Of course the real challenge is to make things like the puc device do >> J> > the right thing automatically instead of needing 'options >> J> > PUC_FASTINTR'. >> J> >> J> You mean like sio(4) tried to? The problem is that with the previosu code if >> J> sio(4) went first, it would register INTR_FAST and some later PCI device >> J> wouldn't be able to register its interrupt. There's not an easy solution to >> J> that problem if you want to keep the semantics that INTR_FAST implies >> J> INTR_EXCL. sio never tried to handle this. It just expresses its preference for INTR_FAST by trying for INTR_FAST first, and then expresses its capability of not using INTR_FAST by retrying without INTR_FAST. Higher layers have no support for allowing drivers to do the right thing, which is for the drivers to make just 1 call to bus_setup_intr(), with preferences and capabilities expressed in the flags, and higher layers wiring the interrupts dynamically so as to satisfy the most preferences while staying within capabilities. The PUC_FASTINTR hack handles this poorly. The CY_PCI_FASTINTR hack handles this poorly, but not as poorly as the PUC_FASTINTR hack since it has a smaller scope. The log message that added CY_PUC_FASTINTR points out part of the problem fixed in this commit: % RCS file: /home/ncvs/src/sys/dev/cy/cy_pci.c,v % Working file: cy_pci.c % ---------------------------- % revision 1.10 % date: 1999/01/15 10:00:12; author: bde; state: Exp; lines: +13 -2 % branches: 1.10.2; % Use a fast interrupt handler for the PCI version of the cy driver % if option CY_PCI_FASTINTR is configured and mapping the irq to a % fastintr is possible. Unfortunately, this has to be optional because % pci_map_int_right() doesn't handle the INTR_EXCL flag right -- % INTR_EXCL is honoured even if the interrupt needs to be non-exclusive % for other devices to work. % ---------------------------- >> is it possible to implement such a feature that driver requests INTR_FAST >> and it succeds only and only if interrupt isn't shared? This is exactly what we had. It doesn't work... > Not really. The problem is that you don't know it is shared until it > is too late. You have no way of really knowing if a device uses > interrupts until its driver attaches and requests an interrupt. Given > how we do our device probing, there's not really a chance to > 'downgrade' the FAST to non-FAST later with driver notification (we > can trivially downgrade what we do to ithread, but then the driver > might not actually work). Attaching the interrupt only at open time and detaching it at last-close time would work OK, and is needed anyway to handle timesharing of normal unshareable isa interrupts (RF_TIMESHARE is another problematic higher level flag, since it doesn't do anything to make the necessary timesharing actually work). Problems with this: - the console device now wants its interrupt enabled at all times, and doesn't tuen off the interrupt at the device level on close - programs like getty would keep devices opened and would have to be killed to let the interrupt wiring change - interrupt unwiring doesn't work right, partly due to supporting historical braindamage in ppbus. The interrupt thread should go away on the last detachment from it, but doesn't. ppbus sets up and tears down its interrupt for every user-level i/o, since its timesharing involves a sort of open/close for every i/o. RF_SHAREABLE is another problematic higher level flag. sio doesn't set it for the interrupt resource, so the interrupt should be unshareable, but interrupt sharing works anyway. Bruce From owner-cvs-all@FreeBSD.ORG Sat Oct 29 03:27:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E033816A41F; Sat, 29 Oct 2005 03:27:43 +0000 (GMT) (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 96A2743D48; Sat, 29 Oct 2005 03:27:43 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T3RhCS084723; Sat, 29 Oct 2005 03:27:43 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T3RhTt084722; Sat, 29 Oct 2005 03:27:43 GMT (envelope-from imp) Message-Id: <200510290327.j9T3RhTt084722@repoman.freebsd.org> From: Warner Losh Date: Sat, 29 Oct 2005 03:27: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/dev/pccbb pccbb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 03:27:44 -0000 imp 2005-10-29 03:27:43 UTC FreeBSD src repository Modified files: sys/dev/pccbb pccbb.c Log: Shut down the card bus bridge hardware on detach. Before we'd just free the resoruces w/o actually turning off the interrupts. This lead to interrupt storms if you were to insert a card after kldunloading the driver. Revision Changes Path 1.133 +14 -6 src/sys/dev/pccbb/pccbb.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 03:36:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46BBA16A41F; Sat, 29 Oct 2005 03:36:01 +0000 (GMT) (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 03F3C43D46; Sat, 29 Oct 2005 03:36:01 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T3a01W085136; Sat, 29 Oct 2005 03:36:00 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T3a0qA085135; Sat, 29 Oct 2005 03:36:00 GMT (envelope-from imp) Message-Id: <200510290336.j9T3a0qA085135@repoman.freebsd.org> From: Warner Losh Date: Sat, 29 Oct 2005 03:36: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/pccbb pccbb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 03:36:01 -0000 imp 2005-10-29 03:36:00 UTC FreeBSD src repository Modified files: sys/dev/pccbb pccbb.c Log: Shutdown a little better by commenting the shutdown code and acknowledging any interrupts after we turn off the interrupt mask. Revision Changes Path 1.134 +9 -4 src/sys/dev/pccbb/pccbb.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 03:44:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A3DE16A41F; Sat, 29 Oct 2005 03:44:43 +0000 (GMT) (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 CBB8143D46; Sat, 29 Oct 2005 03:44:42 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T3iggE085502; Sat, 29 Oct 2005 03:44:42 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T3ig3w085501; Sat, 29 Oct 2005 03:44:42 GMT (envelope-from novel) Message-Id: <200510290344.j9T3ig3w085501@repoman.freebsd.org> From: Roman Bogorodskiy Date: Sat, 29 Oct 2005 03:44: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/emulators/pearpc 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, 29 Oct 2005 03:44:43 -0000 novel 2005-10-29 03:44:42 UTC FreeBSD ports repository Modified files: emulators/pearpc Makefile Log: - Do not allow making an optimized build unless WITH_OPTIMIZED_CFLAGS is not defined - Add WITH_DEBUG knob (disabled by default) Revision Changes Path 1.17 +8 -1 ports/emulators/pearpc/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 03:48:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCAEB16A41F; Sat, 29 Oct 2005 03:48:24 +0000 (GMT) (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 8B08843D45; Sat, 29 Oct 2005 03:48:24 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T3mOLB085645; Sat, 29 Oct 2005 03:48:24 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T3mOes085644; Sat, 29 Oct 2005 03:48:24 GMT (envelope-from imp) Message-Id: <200510290348.j9T3mOes085644@repoman.freebsd.org> From: Warner Losh Date: Sat, 29 Oct 2005 03:48:24 +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/pccard pccarddevs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 03:48:25 -0000 imp 2005-10-29 03:48:24 UTC FreeBSD src repository Modified files: sys/dev/pccard pccarddevs Log: Add Global Village lan modem. Add Billionton LNA-100B[1] Reported by: [1] Alan newsletter at acsoftware dot org Revision Changes Path 1.121 +6 -2 src/sys/dev/pccard/pccarddevs From owner-cvs-all@FreeBSD.ORG Sat Oct 29 03:49:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54D2B16A41F; Sat, 29 Oct 2005 03:49:45 +0000 (GMT) (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 1279C43D45; Sat, 29 Oct 2005 03:49:45 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T3nihB085694; Sat, 29 Oct 2005 03:49:44 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T3ni0L085693; Sat, 29 Oct 2005 03:49:44 GMT (envelope-from imp) Message-Id: <200510290349.j9T3ni0L085693@repoman.freebsd.org> From: Warner Losh Date: Sat, 29 Oct 2005 03:49: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/dev/ed if_ed_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 03:49:45 -0000 imp 2005-10-29 03:49:44 UTC FreeBSD src repository Modified files: sys/dev/ed if_ed_pccard.c Log: Add Billionton LNA-100B variation that Alan reported in arch. [1] Also add Global Village lan modem, even though I'm unsure if it works. Reported by: Alan newsletter at acsoftware dot org Revision Changes Path 1.109 +3 -1 src/sys/dev/ed/if_ed_pccard.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 03:56:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7027216A41F; Sat, 29 Oct 2005 03:56:04 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12ED843D46; Sat, 29 Oct 2005 03:56:04 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T3u34t086022; Sat, 29 Oct 2005 03:56:03 GMT (envelope-from lawrance@repoman.freebsd.org) Received: (from lawrance@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T3u3cl086021; Sat, 29 Oct 2005 03:56:03 GMT (envelope-from lawrance) Message-Id: <200510290356.j9T3u3cl086021@repoman.freebsd.org> From: Sam Lawrance Date: Sat, 29 Oct 2005 03:56: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/databases/postgis-jdbc 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, 29 Oct 2005 03:56:04 -0000 lawrance 2005-10-29 03:56:03 UTC FreeBSD ports repository Modified files: databases/postgis-jdbc Makefile distinfo Log: Update to 1.0.4. Prodded by ... PR: ports/88100 Submitted by: Jean Milanez Melo Revision Changes Path 1.6 +4 -4 ports/databases/postgis-jdbc/Makefile 1.3 +2 -2 ports/databases/postgis-jdbc/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 04:03:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6387216A41F; Sat, 29 Oct 2005 04:03:32 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from speedfactory.net (mail5.speedfactory.net [66.23.216.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD2A843D45; Sat, 29 Oct 2005 04:03:31 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.5b3) with ESMTP id 986705 for multiple; Sat, 29 Oct 2005 00:01:28 -0400 Received: from zion.baldwin.cx (zion.baldwin.cx [192.168.0.7]) (authenticated bits=0) by server.baldwin.cx (8.13.1/8.13.1) with ESMTP id j9T43RtT012674; Sat, 29 Oct 2005 00:03:27 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Bill Paul Date: Sat, 29 Oct 2005 00:03:24 -0400 User-Agent: KMail/1.8 References: <200510290301.j9T31H3P083494@repoman.freebsd.org> In-Reply-To: <200510290301.j9T31H3P083494@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200510290003.25709.jhb@FreeBSD.org> X-Spam-Status: No, score=-2.8 required=4.2 tests=ALL_TRUSTED autolearn=failed version=3.0.2 X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on server.baldwin.cx X-Server: High Performance Mail Server - http://surgemail.com r=100 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/txp if_txp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 04:03:32 -0000 On Friday 28 October 2005 11:01 pm, Bill Paul wrote: > wpaul 2005-10-29 03:01:17 UTC > > FreeBSD src repository > > Modified files: > sys/dev/txp if_txp.c > Log: > Remove call to txp_set_filter() from txp_attach(). txp_set_filter() nee= ds > the ifp, so you can't call it before doing if_alloc(). Also, there's > really no need to call it here anyway: the code I originally ported from > OpenBSD incorrectly set the station address only once at device attach > time, instead of setting in txp_init(). This meant you couldn't change > the address with ifconfig txp0 ether xx:xx:xx:xx:xx:xx. I added the > call to txp_set_filter() in txp_init() to correct this, but forgot to > remove the call from txp_attach(). Until now, it never mattered. > > With this fix, the txp driver tests good: > > txp0: <3Com 3cR990-TX-97 Etherlink with 3XP Processor> port 0xb800-0xb8= 7f > mem 0xe6800000-0xe683ffff irq 12 at device 10.0 on pci0 txp0: Ethernet > address: 00:01:03:d4:91:4f Thanks again for testing and fixing the bogons. =2D-=20 John Baldwin =A0<>< =A0http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" =A0=3D =A0http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Sat Oct 29 04:17:03 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B84116A41F; Sat, 29 Oct 2005 04:17:03 +0000 (GMT) (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 B34E243D48; Sat, 29 Oct 2005 04:17:02 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T4H2j5086929; Sat, 29 Oct 2005 04:17:02 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T4H2Vd086928; Sat, 29 Oct 2005 04:17:02 GMT (envelope-from dougb) Message-Id: <200510290417.j9T4H2Vd086928@repoman.freebsd.org> From: Doug Barton Date: Sat, 29 Oct 2005 04:17: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/x11/xscreensaver/files patch-hacks_glx_antmaze.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 04:17:03 -0000 dougb 2005-10-29 04:17:02 UTC FreeBSD ports repository Removed files: x11/xscreensaver/files patch-hacks_glx_antmaze.c Log: Remove patch that is no longer needed Revision Changes Path 1.2 +0 -57 ports/x11/xscreensaver/files/patch-hacks_glx_antmaze.c (dead) From owner-cvs-all@FreeBSD.ORG Sat Oct 29 04:22:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 527B816A41F; Sat, 29 Oct 2005 04:22:22 +0000 (GMT) (envelope-from wes@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D9AB43D46; Sat, 29 Oct 2005 04:22:22 +0000 (GMT) (envelope-from wes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T4MLBM087182; Sat, 29 Oct 2005 04:22:21 GMT (envelope-from wes@repoman.freebsd.org) Received: (from wes@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T4MLqa087181; Sat, 29 Oct 2005 04:22:21 GMT (envelope-from wes) Message-Id: <200510290422.j9T4MLqa087181@repoman.freebsd.org> From: Wes Peters Date: Sat, 29 Oct 2005 04:22: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/avra Makefile ports/devel/avra/files patch-SOURCE-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, 29 Oct 2005 04:22:22 -0000 wes 2005-10-29 04:22:21 UTC FreeBSD ports repository Modified files: devel/avra Makefile devel/avra/files patch-SOURCE-Makefile Log: Make port PREFIX-aware. Bump PORTREVISION to match. Revision Changes Path 1.2 +1 -0 ports/devel/avra/Makefile 1.2 +17 -6 ports/devel/avra/files/patch-SOURCE-Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 04:25:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61E6C16A41F; Sat, 29 Oct 2005 04:25:01 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E95BB43D49; Sat, 29 Oct 2005 04:25:00 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T4P0HT087486; Sat, 29 Oct 2005 04:25:00 GMT (envelope-from lawrance@repoman.freebsd.org) Received: (from lawrance@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T4P0AK087485; Sat, 29 Oct 2005 04:25:00 GMT (envelope-from lawrance) Message-Id: <200510290425.j9T4P0AK087485@repoman.freebsd.org> From: Sam Lawrance Date: Sat, 29 Oct 2005 04:25: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/palm/synce-dccm Makefile ports/palm/synce-gnomevfs Makefile ports/palm/synce-kde Makefile ports/palm/synce-librapi2 Makefile ports/palm/synce-libsynce Makefile ports/palm/synce-multisync Makefile ports/palm/synce-rra 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, 29 Oct 2005 04:25:01 -0000 lawrance 2005-10-29 04:25:00 UTC FreeBSD ports repository Modified files: palm/synce-dccm Makefile palm/synce-gnomevfs Makefile palm/synce-kde Makefile palm/synce-librapi2 Makefile palm/synce-libsynce Makefile palm/synce-multisync Makefile palm/synce-rra Makefile palm/synce-serial Makefile palm/synce-trayicon Makefile palm/uppc-kmod Makefile Log: Drop maintainership since I no longer have a pocket pc. I'll be keeping an eye on these, especially uppc-kmod in case anyone wants to take it over and keep it working. Revision Changes Path 1.9 +1 -1 ports/palm/synce-dccm/Makefile 1.10 +1 -1 ports/palm/synce-gnomevfs/Makefile 1.12 +1 -1 ports/palm/synce-kde/Makefile 1.12 +1 -1 ports/palm/synce-librapi2/Makefile 1.12 +1 -1 ports/palm/synce-libsynce/Makefile 1.4 +1 -1 ports/palm/synce-multisync/Makefile 1.8 +1 -1 ports/palm/synce-rra/Makefile 1.9 +1 -1 ports/palm/synce-serial/Makefile 1.8 +1 -1 ports/palm/synce-trayicon/Makefile 1.13 +1 -1 ports/palm/uppc-kmod/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 04:30:00 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27BCD16A41F; Sat, 29 Oct 2005 04:30:00 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7430143D46; Sat, 29 Oct 2005 04:29:59 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87]) by mailout2.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9T4TwbZ007401; Sat, 29 Oct 2005 14:29:58 +1000 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-3) with ESMTP id j9T4TtDZ028231; Sat, 29 Oct 2005 14:29:56 +1000 Date: Sat, 29 Oct 2005 14:29:55 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: John Baldwin In-Reply-To: <200510281033.48001.jhb@freebsd.org> Message-ID: <20051029140403.O30901@delplex.bde.org> References: <200510281045.j9SAjJmR096150@repoman.freebsd.org> <200510281033.48001.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, Stefan Farfeleder , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/bin/sh memalloc.c memalloc.h miscbltin.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 04:30:00 -0000 On Fri, 28 Oct 2005, John Baldwin wrote: > On Friday 28 October 2005 06:45 am, Stefan Farfeleder wrote: >> stefanf 2005-10-28 10:45:19 UTC >> >> FreeBSD src repository >> >> Modified files: >> bin/sh memalloc.c memalloc.h miscbltin.c >> Log: >> Protect malloc, realloc and free calls with INT{ON,OFF} directly in >> chkalloc, ckrealloc and ckfree (added), respectively. sh jumps out of the >> signal handler using longjmp which is obviously a bad idea during malloc >> calls. >> >> Note: I think there is still a small race here because volatile >> sig_atomic_t only guarantees atomic reads and writes while we're doing >> increments and decrements. Stefan should know that only atomic writes are guaranteed, but there seems to be no problem in practice since the inc/dec is not done in signal handlers (never?) and atomic reads work in practice. From n869.txt: % [#2] The type defined is % % sig_atomic_t % % which is the (possibly volatile-qualified) integer type of % an object that can be accessed as an atomic entity, even in ^^^^^^^^ This may require atomic reads to work... % the presence of asynchronous interrupts. % % [#5] If the signal occurs other than as the result of % calling the abort or raise function, the behavior is % undefined if the signal handler refers to any object with ^^^^^^^^^ % static storage duration other than by assigning a value to ^^^^^^^^^ % an object declared as volatile sig_atomic_t, or the signal ...but I think this has precedence. sh (ab)uses "volatile sig_atomic_t" for exactly the opposite of what it is for. Normally signal handlers set a flag and the flag must be volatile so that non-signal-handling code sees it changing, but in sh it is non-signal-handling-code that sets the flag and signal-handling code that reads the flag. The standard doesn't cover this, except to say that the reference to the flag in the signal handler gives undefined behaviour since the reference is not an assignment. Volatility makes no difference as far as the standard says -- the behaviour is still undefined. Volatility may be needed in theory but not in practice since there is s sequence point after the assignment in INTOFF and compilers can't defer assignments to globals for very long since they don't know if other functions access the globals (especially if the accesses are for undefined behaviour in signal handlers). >> Protect a setmode call with INT{ON,OFF} as it calls malloc internally. >> >> PR: 45478 >> Patch from: Nate Eldredge > > If you are just doing a simple reference count you can use an int and use > either the refcount API from sys/refcount.h or the atomic_foo_int() > operations directly from machine/atomic.h. Those should all work fine in > userland. I think this is not needed in sh, since it doesn't matter if a signal handler sees an in-between count. Bruce From owner-cvs-all@FreeBSD.ORG Sat Oct 29 04:42:15 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D965216A41F; Sat, 29 Oct 2005 04:42:15 +0000 (GMT) (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 9476143D45; Sat, 29 Oct 2005 04:42:15 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T4gFtr088303; Sat, 29 Oct 2005 04:42:15 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T4gFdh088302; Sat, 29 Oct 2005 04:42:15 GMT (envelope-from novel) Message-Id: <200510290442.j9T4gFdh088302@repoman.freebsd.org> From: Roman Bogorodskiy Date: Sat, 29 Oct 2005 04:42: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/astro/xearth/files freebsd.committers.markers X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 04:42:16 -0000 novel 2005-10-29 04:42:15 UTC FreeBSD ports repository Modified files: astro/xearth/files freebsd.committers.markers Log: Add myself. Revision Changes Path 1.211 +1 -0 ports/astro/xearth/files/freebsd.committers.markers From owner-cvs-all@FreeBSD.ORG Sat Oct 29 05:00:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B355A16A41F; Sat, 29 Oct 2005 05:00:26 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 612EF43D46; Sat, 29 Oct 2005 05:00:26 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T50Qrl096206; Sat, 29 Oct 2005 05:00:26 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T50QcV096205; Sat, 29 Oct 2005 05:00:26 GMT (envelope-from yar) Message-Id: <200510290500.j9T50QcV096205@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 29 Oct 2005 05:00: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/etc/rc.d ppp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 05:00:27 -0000 yar 2005-10-29 05:00:25 UTC FreeBSD src repository Modified files: etc/rc.d ppp Log: Transforming "ppp-user" into just "ppp", step 2: This file has been repo-copied from src/etc/rc.d/ppp-user. (Forced commit.) Revision Changes Path 1.11 +0 -0 src/etc/rc.d/ppp From owner-cvs-all@FreeBSD.ORG Sat Oct 29 05:05:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F05C116A41F; Sat, 29 Oct 2005 05:05:52 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9949443D45; Sat, 29 Oct 2005 05:05:52 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T55qvN096472; Sat, 29 Oct 2005 05:05:52 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T55qQ9096471; Sat, 29 Oct 2005 05:05:52 GMT (envelope-from yar) Message-Id: <200510290505.j9T55qQ9096471@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 29 Oct 2005 05:05: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/etc/rc.d 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, 29 Oct 2005 05:05:53 -0000 yar 2005-10-29 05:05:52 UTC FreeBSD src repository Modified files: etc/rc.d Makefile Log: Transforming "ppp-user" into just "ppp", step 3: Install "ppp" (just repocopied) instead of "ppp-user". Revision Changes Path 1.59 +1 -1 src/etc/rc.d/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 05:08:00 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF23616A420; Sat, 29 Oct 2005 05:08:00 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A29A343D4C; Sat, 29 Oct 2005 05:08:00 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T580Vn096557; Sat, 29 Oct 2005 05:08:00 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5801K096556; Sat, 29 Oct 2005 05:08:00 GMT (envelope-from yar) Message-Id: <200510290508.j9T5801K096556@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 29 Oct 2005 05:08: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/etc netstart X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 05:08:01 -0000 yar 2005-10-29 05:08:00 UTC FreeBSD src repository Modified files: etc netstart Log: Transforming "ppp-user" into just "ppp", step 4: The legacy script "/etc/netstart" will start "ppp", not "ppp-user". Revision Changes Path 1.66 +1 -1 src/etc/netstart From owner-cvs-all@FreeBSD.ORG Sat Oct 29 05:12:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42FA816A41F; Sat, 29 Oct 2005 05:12:16 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B72D43D6B; Sat, 29 Oct 2005 05:12:14 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T5CExI096771; Sat, 29 Oct 2005 05:12:14 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5CETj096770; Sat, 29 Oct 2005 05:12:14 GMT (envelope-from yar) Message-Id: <200510290512.j9T5CETj096770@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 29 Oct 2005 05:12: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/etc/rc.d ppp-user X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 05:12:16 -0000 yar 2005-10-29 05:12:14 UTC FreeBSD src repository Removed files: etc/rc.d ppp-user Log: Transforming "ppp-user" into just "ppp", step 5: Finally, delete the old, unfittingly named file "ppp-user". Revision Changes Path 1.11 +0 -49 src/etc/rc.d/ppp-user (dead) From owner-cvs-all@FreeBSD.ORG Sat Oct 29 05:19:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4414616A41F; Sat, 29 Oct 2005 05:19:52 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F089943D45; Sat, 29 Oct 2005 05:19:51 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T5Jpbe097073; Sat, 29 Oct 2005 05:19:51 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5JpZU097072; Sat, 29 Oct 2005 05:19:51 GMT (envelope-from rodrigc) Message-Id: <200510290519.j9T5JpZU097072@repoman.freebsd.org> From: Craig Rodrigues Date: Sat, 29 Oct 2005 05:19: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/devel/apr Makefile distinfo pkg-plist ports/devel/apr/files patch-apr_hints.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: Sat, 29 Oct 2005 05:19:52 -0000 rodrigc 2005-10-29 05:19:51 UTC FreeBSD ports repository (src committer) Modified files: devel/apr Makefile distinfo pkg-plist devel/apr/files patch-apr_hints.m4 Log: Upgrade to apr-1.2.2 Revision Changes Path 1.56 +1 -1 ports/devel/apr/Makefile 1.13 +4 -4 ports/devel/apr/distinfo 1.9 +2 -2 ports/devel/apr/files/patch-apr_hints.m4 1.15 +4 -2 ports/devel/apr/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 05:27:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3BE016A41F; Sat, 29 Oct 2005 05:27:32 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 718EA43D45; Sat, 29 Oct 2005 05:27:32 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T5RW7M097393; Sat, 29 Oct 2005 05:27:32 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5RWfW097392; Sat, 29 Oct 2005 05:27:32 GMT (envelope-from yar) Message-Id: <200510290527.j9T5RWfW097392@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 29 Oct 2005 05:27:32 +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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 05:27:32 -0000 yar 2005-10-29 05:27:32 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc UPDATING Log: Record renaming rc.d/ppp-user to rc.d/ppp. Revision Changes Path 1.21 +2 -0 src/ObsoleteFiles.inc 1.423 +5 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Sat Oct 29 05:45:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8631216A41F; Sat, 29 Oct 2005 05:45:40 +0000 (GMT) (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 0FC9B43D45; Sat, 29 Oct 2005 05:45:40 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T5jdox098169; Sat, 29 Oct 2005 05:45:39 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5jds8098168; Sat, 29 Oct 2005 05:45:39 GMT (envelope-from kris) Message-Id: <200510290545.j9T5jds8098168@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 29 Oct 2005 05: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/comms/lirc 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, 29 Oct 2005 05:45:40 -0000 kris 2005-10-29 05:45:39 UTC FreeBSD ports repository Modified files: comms/lirc Makefile Log: Back out previous commit, the pkg-plist may have been fixed already. Revision Changes Path 1.18 +0 -2 ports/comms/lirc/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 05:49:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2308516A41F; Sat, 29 Oct 2005 05:49:07 +0000 (GMT) (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 D443743D48; Sat, 29 Oct 2005 05:49:06 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T5n6cR098303; Sat, 29 Oct 2005 05:49:06 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5n67G098302; Sat, 29 Oct 2005 05:49:06 GMT (envelope-from imp) Message-Id: <200510290549.j9T5n67G098302@repoman.freebsd.org> From: Warner Losh Date: Sat, 29 Oct 2005 05:49: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/sys/dev/pci pci.c pcireg.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, 29 Oct 2005 05:49:07 -0000 imp 2005-10-29 05:49:06 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c pcireg.h Log: Use symbolic name rather thanhard coding the cap pointer offset for type two devices. Revision Changes Path 1.302 +1 -1 src/sys/dev/pci/pci.c 1.48 +1 -0 src/sys/dev/pci/pcireg.h From owner-cvs-all@FreeBSD.ORG Sat Oct 29 05:49:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2D8516A425; Sat, 29 Oct 2005 05:49:24 +0000 (GMT) (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 8ED5243D46; Sat, 29 Oct 2005 05:49:24 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T5nOAk098343; Sat, 29 Oct 2005 05:49:24 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5nO2w098342; Sat, 29 Oct 2005 05:49:24 GMT (envelope-from maho) Message-Id: <200510290549.j9T5nO2w098342@repoman.freebsd.org> From: Maho Nakata Date: Sat, 29 Oct 2005 05: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/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: Sat, 29 Oct 2005 05:49:25 -0000 maho 2005-10-29 05:49:24 UTC FreeBSD ports repository Modified files: editors/openoffice.org-2.0 Makefile distinfo Log: Update to 2.0.0 Revision Changes Path 1.211 +5 -6 ports/editors/openoffice.org-2.0/Makefile 1.79 +2 -2 ports/editors/openoffice.org-2.0/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 05:52:18 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A043F16A41F; Sat, 29 Oct 2005 05:52:18 +0000 (GMT) (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 3244E43D46; Sat, 29 Oct 2005 05:52:18 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T5qIwi098557; Sat, 29 Oct 2005 05:52:18 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5qIcZ098556; Sat, 29 Oct 2005 05:52:18 GMT (envelope-from imp) Message-Id: <200510290552.j9T5qIcZ098556@repoman.freebsd.org> From: Warner Losh Date: Sat, 29 Oct 2005 05:52: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/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: Sat, 29 Oct 2005 05:52:18 -0000 imp 2005-10-29 05:52:18 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: MFp4: When doing lazy allocation, it turns out that we need to record the actual resource values we received from the system rather than the range we requested. Since we request a range starting at 0, we would record that number. Later, since this == 0, we'd allocate again. However, we wouldn't write the new resource into the BAR. This resulted in a resource leak as well as a BAR that couldn't access the resource at all since rman_get_start, et al, were wrong. MFC After: 1 week (assuming RELENG_6 is open for business) Revision Changes Path 1.303 +3 -0 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 06:14:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 154E216A41F; Sat, 29 Oct 2005 06:14:46 +0000 (GMT) (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 77CC443D4C; Sat, 29 Oct 2005 06:14:45 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6Eja6099355; Sat, 29 Oct 2005 06:14:45 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6EjZP099354; Sat, 29 Oct 2005 06:14:45 GMT (envelope-from ache) Message-Id: <200510290614.j9T6EjZP099354@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Sat, 29 Oct 2005 06:14: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/www/lynx-current 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, 29 Oct 2005 06:14:46 -0000 ache 2005-10-29 06:14:45 UTC FreeBSD ports repository Modified files: www/lynx-current Makefile distinfo pkg-plist Log: Upgrade to 2.8.6dev.14 Revision Changes Path 1.167 +3 -3 ports/www/lynx-current/Makefile 1.178 +2 -2 ports/www/lynx-current/distinfo 1.41 +0 -1 ports/www/lynx-current/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 06:26:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB47216A41F; Sat, 29 Oct 2005 06:26:23 +0000 (GMT) (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 A554F43D48; Sat, 29 Oct 2005 06:26:23 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6QNk8099779; Sat, 29 Oct 2005 06:26:23 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6QNdh099778; Sat, 29 Oct 2005 06:26:23 GMT (envelope-from dougb) Message-Id: <200510290626.j9T6QNdh099778@repoman.freebsd.org> From: Doug Barton Date: Sat, 29 Oct 2005 06:26: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/x11/xscreensaver/files patch-hacks_glx_antmaze.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 06:26:24 -0000 dougb 2005-10-29 06:26:23 UTC FreeBSD ports repository Added files: x11/xscreensaver/files patch-hacks_glx_antmaze.c Log: Re-add this patch that is needed for 4.22. I am seeing weird behavior with 4.23, and therefore plan to delay the upgrade till I'm sure it's ok. Revision Changes Path 1.3 +57 -0 ports/x11/xscreensaver/files/patch-hacks_glx_antmaze.c (new) From owner-cvs-all@FreeBSD.ORG Sat Oct 29 06:38:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5086E16A41F; Sat, 29 Oct 2005 06:38:17 +0000 (GMT) (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 DFB5843D48; Sat, 29 Oct 2005 06:38:13 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6cDvh000279; Sat, 29 Oct 2005 06:38:13 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6cDSK000278; Sat, 29 Oct 2005 06:38:13 GMT (envelope-from scottl) Message-Id: <200510290638.j9T6cDSK000278@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 06:38:13 +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/ufs/ffs ffs_alloc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 06:38:17 -0000 scottl 2005-10-29 06:38:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_alloc.c Log: MFC rev 1.136 and 1.137 Submitted by: tegge Approved by: re Revision Changes Path 1.132.2.2 +6 -0 src/sys/ufs/ffs/ffs_alloc.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 06:40:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 217EA16A41F; Sat, 29 Oct 2005 06:40:42 +0000 (GMT) (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 D2DE643D5E; Sat, 29 Oct 2005 06:40:41 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6efal000454; Sat, 29 Oct 2005 06:40:41 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6efbv000453; Sat, 29 Oct 2005 06:40:41 GMT (envelope-from scottl) Message-Id: <200510290640.j9T6efbv000453@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 06:40: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/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: Sat, 29 Oct 2005 06:40:42 -0000 scottl 2005-10-29 06:40:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_snapshot.c Log: MFC rev 1.106 - 1.110 Submitted by: tegge Approved by: re Revision Changes Path 1.103.2.2 +50 -58 src/sys/ufs/ffs/ffs_snapshot.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 06:42:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E47EF16A41F; Sat, 29 Oct 2005 06:42:25 +0000 (GMT) (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 95DD143D46; Sat, 29 Oct 2005 06:42:25 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6gPSM000514; Sat, 29 Oct 2005 06:42:25 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6gPdR000513; Sat, 29 Oct 2005 06:42:25 GMT (envelope-from scottl) Message-Id: <200510290642.j9T6gPdR000513@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 06:42: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/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: Sat, 29 Oct 2005 06:42:26 -0000 scottl 2005-10-29 06:42:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_vfsops.c Log: MFC rev 1.294 Submitted by: tegge Approved by: re Revision Changes Path 1.290.2.4 +1 -3 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 06:42:43 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1A7716A41F; Sat, 29 Oct 2005 06:42:43 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DB4843D46; Sat, 29 Oct 2005 06:42:43 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6ghIs000558; Sat, 29 Oct 2005 06:42:43 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6ghnV000557; Sat, 29 Oct 2005 06:42:43 GMT (envelope-from nork) Message-Id: <200510290642.j9T6ghnV000557@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sat, 29 Oct 2005 06:42: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/converters/p5-MIME-Base32 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, 29 Oct 2005 06:42:43 -0000 nork 2005-10-29 06:42:43 UTC FreeBSD ports repository Modified files: converters/p5-MIME-Base32 Makefile pkg-plist Log: Fix pkg-plist on 4-stable. Pointed out by: pointyhat via kris Revision Changes Path 1.2 +1 -0 ports/converters/p5-MIME-Base32/Makefile 1.2 +2 -2 ports/converters/p5-MIME-Base32/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 06:43:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EF4D16A41F; Sat, 29 Oct 2005 06:43:56 +0000 (GMT) (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 D0CA343D45; Sat, 29 Oct 2005 06:43:55 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6ht5p000658; Sat, 29 Oct 2005 06:43:55 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6htJQ000657; Sat, 29 Oct 2005 06:43:55 GMT (envelope-from scottl) Message-Id: <200510290643.j9T6htJQ000657@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 06:43: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/sys/ufs/ffs ffs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 06:43:56 -0000 scottl 2005-10-29 06:43:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_vnops.c Log: MFC rev 1.158 Submitted by: tegge Approved by: re Revision Changes Path 1.157.2.1 +1 -1 src/sys/ufs/ffs/ffs_vnops.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 06:45:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7C0D16A41F; Sat, 29 Oct 2005 06:45:38 +0000 (GMT) (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 A6B8E43D45; Sat, 29 Oct 2005 06:45:38 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6jcJH000774; Sat, 29 Oct 2005 06:45:38 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6jcCu000773; Sat, 29 Oct 2005 06:45:38 GMT (envelope-from scottl) Message-Id: <200510290645.j9T6jcCu000773@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 06:45: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/kern vfs_bio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 06:45:39 -0000 scottl 2005-10-29 06:45:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_bio.c Log: MFC rev 1.497 Submitted by: tegge Approved by: re Revision Changes Path 1.491.2.4 +1 -2 src/sys/kern/vfs_bio.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 07:00:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D974C16A41F; Sat, 29 Oct 2005 07:00:45 +0000 (GMT) (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 73CA443D62; Sat, 29 Oct 2005 07:00:45 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T70j9f001443; Sat, 29 Oct 2005 07:00:45 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T70jac001442; Sat, 29 Oct 2005 07:00:45 GMT (envelope-from scottl) Message-Id: <200510290700.j9T70jac001442@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 07:00: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/sys/kern vfs_bio.c src/sys/ufs/ffs ffs_alloc.c ffs_snapshot.c ffs_vfsops.c ffs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 07:00:46 -0000 scottl 2005-10-29 07:00:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/kern vfs_bio.c sys/ufs/ffs ffs_alloc.c ffs_snapshot.c ffs_vfsops.c ffs_vnops.c Log: Sync RELENG_6_0 with all of the FFS fixes from Tor. Submitted by: tegge Approved by: re Revision Changes Path 1.491.2.3.2.1 +1 -2 src/sys/kern/vfs_bio.c 1.132.2.1.2.1 +6 -0 src/sys/ufs/ffs/ffs_alloc.c 1.103.2.1.2.1 +50 -58 src/sys/ufs/ffs/ffs_snapshot.c 1.290.2.3.2.1 +1 -3 src/sys/ufs/ffs/ffs_vfsops.c 1.157.4.1 +1 -1 src/sys/ufs/ffs/ffs_vnops.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 07:13:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5009516A41F; Sat, 29 Oct 2005 07:13:30 +0000 (GMT) (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 1144243D48; Sat, 29 Oct 2005 07:13:30 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T7DTam002113; Sat, 29 Oct 2005 07:13:29 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T7DTXP002112; Sat, 29 Oct 2005 07:13:29 GMT (envelope-from dougb) Message-Id: <200510290713.j9T7DTXP002112@repoman.freebsd.org> From: Doug Barton Date: Sat, 29 Oct 2005 07: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/dns/bind8 Makefile distinfo ports/dns/bind84 Makefile ports/dns/bind9 Makefile ports/dns/fpdns Makefile ports/editors/pico Makefile ports/irc/sirc Makefile ports/mail/pine-pgp-filters Makefile ports/mail/pine4 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, 29 Oct 2005 07:13:30 -0000 dougb 2005-10-29 07:13:29 UTC FreeBSD ports repository Modified files: dns/bind8 Makefile distinfo dns/bind84 Makefile dns/bind9 Makefile dns/fpdns Makefile editors/pico Makefile irc/sirc Makefile mail/pine-pgp-filters Makefile mail/pine4 Makefile sysutils/shlock Makefile distinfo textproc/htdig Makefile x11/xscreensaver Makefile x11-wm/windowmaker Makefile Log: For the ports that I maintain, do the following as appropriate: 1. Add myself as a backup master site (Sourceforge and CPAN ports already have good enough coverage, so skip them). 2. For all ports that have them, download the PGP signature files. 3. For ports in 2, add a verify target to the Makefile 4. For ports where I was already providing a master site, update the URL. 5. Pet portlint in a couple of places. Revision Changes Path 1.52 +9 -2 ports/dns/bind8/Makefile 1.25 +4 -0 ports/dns/bind8/distinfo 1.10 +6 -1 ports/dns/bind84/Makefile 1.65 +5 -1 ports/dns/bind9/Makefile 1.5 +5 -1 ports/dns/fpdns/Makefile 1.19 +2 -1 ports/editors/pico/Makefile 1.13 +1 -1 ports/irc/sirc/Makefile 1.7 +4 -1 ports/mail/pine-pgp-filters/Makefile 1.83 +2 -1 ports/mail/pine4/Makefile 1.8 +7 -3 ports/sysutils/shlock/Makefile 1.5 +2 -0 ports/sysutils/shlock/distinfo 1.31 +2 -1 ports/textproc/htdig/Makefile 1.127 +2 -2 ports/x11-wm/windowmaker/Makefile 1.79 +2 -1 ports/x11/xscreensaver/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 07:19:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DCEE16A41F; Sat, 29 Oct 2005 07:19:13 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B04CD43D49; Sat, 29 Oct 2005 07:19:12 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T7JCGV002346; Sat, 29 Oct 2005 07:19:12 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T7JCef002345; Sat, 29 Oct 2005 07:19:12 GMT (envelope-from stefanf) Message-Id: <200510290719.j9T7JCef002345@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 29 Oct 2005 07:19: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/bin/sh eval.c exec.c exec.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, 29 Oct 2005 07:19:13 -0000 stefanf 2005-10-29 07:19:12 UTC FreeBSD src repository Modified files: bin/sh eval.c exec.c exec.h Log: Forced commit to note the patch for the previous commit was Submitted by: rodrigc Revision Changes Path 1.48 +0 -0 src/bin/sh/eval.c 1.28 +0 -0 src/bin/sh/exec.c 1.14 +0 -0 src/bin/sh/exec.h From owner-cvs-all@FreeBSD.ORG Sat Oct 29 08:05:15 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2134516A41F; Sat, 29 Oct 2005 08:05:15 +0000 (GMT) (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 AA38743D45; Sat, 29 Oct 2005 08:05:14 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T85EKk003939; Sat, 29 Oct 2005 08:05:14 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T85E2w003932; Sat, 29 Oct 2005 08:05:14 GMT (envelope-from oliver) Message-Id: <200510290805.j9T85E2w003932@repoman.freebsd.org> From: Oliver Lehmann Date: Sat, 29 Oct 2005 08:05: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/cyphesis 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, 29 Oct 2005 08:05:15 -0000 oliver 2005-10-29 08:05:13 UTC FreeBSD ports repository Modified files: net/cyphesis Makefile Log: I accidentally commented IGNORE for OSVERSION < 500000 out. Revision Changes Path 1.6 +1 -1 ports/net/cyphesis/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 08:15:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FAE516A41F; Sat, 29 Oct 2005 08:15:30 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E46343D46; Sat, 29 Oct 2005 08:15:30 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T8FUwG004389; Sat, 29 Oct 2005 08:15:30 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T8FU1e004388; Sat, 29 Oct 2005 08:15:30 GMT (envelope-from bde) Message-Id: <200510290815.j9T8FU1e004388@repoman.freebsd.org> From: Bruce Evans Date: Sat, 29 Oct 2005 08:15: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/lib/msun/src e_rem_pio2f.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 08:15:30 -0000 bde 2005-10-29 08:15:30 UTC FreeBSD src repository Modified files: lib/msun/src e_rem_pio2f.c Log: Start trying to make the float precision trig functions actually worth using under FreeBSD. Before this commit, all float precision functions except exp2f() were implemented using only float precision, apparently because Cygnus needed this in 1993 for embedded systems with slow or inefficient double precision. For FreeBSD, except possibly on systems that do floating point entirely in software (very old i386 and now arm), this just gives a more complicated implementation, many bugs, and usually worse performance for float precision than for double precision. The bugs and worse performance were particulary large in arg reduction for trig functions. We want to divide by an approximation to pi/2 which has as many as 1584 bits, so we should use the widest type that is efficient and/or easy to use, i.e., double. Use fdlibm's __kernel_rem_pio2() to do this as Sun apparently intended. Cygnus's k_rem_pio2f.c is now unused. e_rem_pio2f.c still needs to be separate from e_rem_pio2.c so that it can be optimized for float args. Similarly for long double precision. This speeds up cosf(x) on large args by a factor of about 2. Correct arg reduction on large args is still inherently very slow, so hopefully these args rarely occur in practice. There is much more efficiency to be gained by using double precision to speed up arg reduction on medium and small float args. Revision Changes Path 1.13 +28 -30 src/lib/msun/src/e_rem_pio2f.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 08:22:10 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E612F16A41F; Sat, 29 Oct 2005 08:22:10 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A42C943D46; Sat, 29 Oct 2005 08:22:10 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T8MAEX004765; Sat, 29 Oct 2005 08:22:10 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T8MAtr004759; Sat, 29 Oct 2005 08:22:10 GMT (envelope-from stefanf) Message-Id: <200510290822.j9T8MAtr004759@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 29 Oct 2005 08:22: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/bin/sh sh.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, 29 Oct 2005 08:22:11 -0000 stefanf 2005-10-29 08:22:09 UTC FreeBSD src repository Modified files: bin/sh sh.1 Log: Document that read -t timeout returns 1 if the timeout elapses. Revision Changes Path 1.111 +1 -1 src/bin/sh/sh.1 From owner-cvs-all@FreeBSD.ORG Sat Oct 29 08:32:21 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5723516A41F; Sat, 29 Oct 2005 08:32:21 +0000 (GMT) (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 14FE743D46; Sat, 29 Oct 2005 08:32:21 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T8WKbX005192; Sat, 29 Oct 2005 08:32:20 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T8WK57005191; Sat, 29 Oct 2005 08:32:20 GMT (envelope-from erwin) Message-Id: <200510290832.j9T8WK57005191@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 29 Oct 2005 08:32: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: 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, 29 Oct 2005 08:32:21 -0000 erwin 2005-10-29 08:32:20 UTC FreeBSD ports repository Modified files: . modules Log: s5 --> ports/textproc/s5 Revision Changes Path 1.13483 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Oct 29 08:32:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 617F416A41F; Sat, 29 Oct 2005 08:32:47 +0000 (GMT) (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 200DC43D48; Sat, 29 Oct 2005 08:32:47 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T8WlU5005260; Sat, 29 Oct 2005 08:32:47 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T8Wle3005259; Sat, 29 Oct 2005 08:32:47 GMT (envelope-from erwin) Message-Id: <200510290832.j9T8Wle3005259@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 29 Oct 2005 08: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: 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, 29 Oct 2005 08:32:47 -0000 erwin 2005-10-29 08:32:46 UTC FreeBSD ports repository Modified files: . modules Log: urelay --> ports/net/urelay Revision Changes Path 1.13484 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Oct 29 08:46:38 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F7AA16A41F; Sat, 29 Oct 2005 08:46:38 +0000 (GMT) (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 3D5E043D45; Sat, 29 Oct 2005 08:46:38 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T8kbKB005928; Sat, 29 Oct 2005 08:46:38 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T8kbSF005927; Sat, 29 Oct 2005 08:46:37 GMT (envelope-from blackend) Message-Id: <200510290846.j9T8kbSF005927@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 29 Oct 2005 08:46:37 +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: Sat, 29 Oct 2005 08:46:38 -0000 blackend 2005-10-29 08:46:37 UTC FreeBSD doc repository Modified files: en/projects/c99 index.sgml Log: s/6.x/6.X/ etc. for consistency with the rest of the doc/www Revision Changes Path 1.100 +13 -13 www/en/projects/c99/index.sgml From owner-cvs-all@FreeBSD.ORG Sat Oct 29 09:01:14 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94EEA16A41F; Sat, 29 Oct 2005 09:01:14 +0000 (GMT) (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 4D5EB43D48; Sat, 29 Oct 2005 09:01:14 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T91Erc013679; Sat, 29 Oct 2005 09:01:14 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T91Erk013678; Sat, 29 Oct 2005 09:01:14 GMT (envelope-from blackend) Message-Id: <200510290901.j9T91Erk013678@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 29 Oct 2005 09:01: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/fr/projects cvsweb.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, 29 Oct 2005 09:01:14 -0000 blackend 2005-10-29 09:01:13 UTC FreeBSD doc repository Modified files: fr/projects cvsweb.sgml Log: MFen 1.30 --> 1.32 Submitted by: Antoine Brodin Revision Changes Path 1.9 +5 -5 www/fr/projects/cvsweb.sgml From owner-cvs-all@FreeBSD.ORG Sat Oct 29 09:06:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C24BB16A41F; Sat, 29 Oct 2005 09:06:59 +0000 (GMT) (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 1500043D49; Sat, 29 Oct 2005 09:06:59 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T96wLE013885; Sat, 29 Oct 2005 09:06:58 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T96wrI013884; Sat, 29 Oct 2005 09:06:58 GMT (envelope-from blackend) Message-Id: <200510290906.j9T96wrI013884@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 29 Oct 2005 09:06: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/fr/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: Sat, 29 Oct 2005 09:07:00 -0000 blackend 2005-10-29 09:06:58 UTC FreeBSD doc repository Modified files: fr/projects/c99 index.sgml Log: MFen 1.95 --> 1.100 Submitted by: Antoine Brodin Revision Changes Path 1.8 +141 -144 www/fr/projects/c99/index.sgml From owner-cvs-all@FreeBSD.ORG Sat Oct 29 09:13:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 678DF16A41F; Sat, 29 Oct 2005 09:13:32 +0000 (GMT) (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 2253043D46; Sat, 29 Oct 2005 09:13:32 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T9DVsF014199; Sat, 29 Oct 2005 09:13:32 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T9DVx5014198; Sat, 29 Oct 2005 09:13:31 GMT (envelope-from obrien) Message-Id: <200510290913.j9T9DVx5014198@repoman.freebsd.org> From: "David E. O'Brien" Date: Sat, 29 Oct 2005 09:13: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/contrib/gcc/config freebsd-spec.h src/gnu/usr.bin/cc/cc_tools freebsd-native.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, 29 Oct 2005 09:13:32 -0000 obrien 2005-10-29 09:13:31 UTC FreeBSD src repository Modified files: contrib/gcc/config freebsd-spec.h gnu/usr.bin/cc/cc_tools freebsd-native.h Log: Catch up with FreeBSD 7. Revision Changes Path 1.21 +2 -2 src/contrib/gcc/config/freebsd-spec.h 1.25 +1 -1 src/gnu/usr.bin/cc/cc_tools/freebsd-native.h From owner-cvs-all@FreeBSD.ORG Sat Oct 29 09:19:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA46A16A41F; Sat, 29 Oct 2005 09:19:07 +0000 (GMT) (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 A755843D45; Sat, 29 Oct 2005 09:19:07 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T9J7nm014464; Sat, 29 Oct 2005 09:19:07 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T9J71F014463; Sat, 29 Oct 2005 09:19:07 GMT (envelope-from blackend) Message-Id: <200510290919.j9T9J71F014463@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 29 Oct 2005 09:19: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: www/fr/docproj sgml.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, 29 Oct 2005 09:19:08 -0000 blackend 2005-10-29 09:19:06 UTC FreeBSD doc repository Modified files: fr/docproj sgml.sgml Log: MFen 1.23 --> 1.26 Submitted by: Antoine Brodin Revision Changes Path 1.9 +24 -31 www/fr/docproj/sgml.sgml From owner-cvs-all@FreeBSD.ORG Sat Oct 29 09:21:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C1B016A41F; Sat, 29 Oct 2005 09:21:58 +0000 (GMT) (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 49C8743D48; Sat, 29 Oct 2005 09:21:58 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T9LwaS014592; Sat, 29 Oct 2005 09:21:58 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T9LwwM014591; Sat, 29 Oct 2005 09:21:58 GMT (envelope-from blackend) Message-Id: <200510290921.j9T9LwwM014591@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 29 Oct 2005 09:21: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: www/fr/copyright trademarks.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, 29 Oct 2005 09:21:58 -0000 blackend 2005-10-29 09:21:57 UTC FreeBSD doc repository Modified files: fr/copyright trademarks.sgml Log: MFen 1.11 --> 1.13 Submitted by: Antoine Brodin Revision Changes Path 1.6 +3 -3 www/fr/copyright/trademarks.sgml From owner-cvs-all@FreeBSD.ORG Sat Oct 29 09:49:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2252F16A41F; Sat, 29 Oct 2005 09:49:45 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D318543D49; Sat, 29 Oct 2005 09:49:44 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T9ni3F015540; Sat, 29 Oct 2005 09:49:44 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T9ni1d015539; Sat, 29 Oct 2005 09:49:44 GMT (envelope-from stefanf) Message-Id: <200510290949.j9T9ni1d015539@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 29 Oct 2005 09:49:44 +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: Sat, 29 Oct 2005 09:49:45 -0000 stefanf 2005-10-29 09:49:44 UTC FreeBSD doc repository (src committer) Modified files: en/projects/c99 index.sgml Log: Mark command -p, -v and -V as done in 7.X. Make myself responsible for that task. Revision Changes Path 1.101 +9 -9 www/en/projects/c99/index.sgml From owner-cvs-all@FreeBSD.ORG Sat Oct 29 09:58:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85FC716A41F; Sat, 29 Oct 2005 09:58:16 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4422143D46; Sat, 29 Oct 2005 09:58:16 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T9wG0l015880; Sat, 29 Oct 2005 09:58:16 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T9wG6w015879; Sat, 29 Oct 2005 09:58:16 GMT (envelope-from stefanf) Message-Id: <200510290958.j9T9wG6w015879@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 29 Oct 2005 09:58: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: 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: Sat, 29 Oct 2005 09:58:16 -0000 stefanf 2005-10-29 09:58:15 UTC FreeBSD doc repository (src committer) Modified files: en/projects/c99 index.sgml Log: getgrgid_r() and getgrnam_r() are done in 6.X too. Revision Changes Path 1.102 +2 -2 www/en/projects/c99/index.sgml From owner-cvs-all@FreeBSD.ORG Sat Oct 29 09:59:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5624316A41F; Sat, 29 Oct 2005 09:59:41 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10FCD43D46; Sat, 29 Oct 2005 09:59:41 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T9xeRj015946; Sat, 29 Oct 2005 09:59:40 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T9xeCl015945; Sat, 29 Oct 2005 09:59:40 GMT (envelope-from jylefort) Message-Id: <200510290959.j9T9xeCl015945@repoman.freebsd.org> From: Jean-Yves Lefort Date: Sat, 29 Oct 2005 09:59: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/bazaar-ng 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, 29 Oct 2005 09:59:41 -0000 jylefort 2005-10-29 09:59:40 UTC FreeBSD ports repository Modified files: devel/bazaar-ng Makefile distinfo pkg-plist Log: Update to 0.6 PR: ports/88145 Submitted by: maintainer Revision Changes Path 1.2 +2 -2 ports/devel/bazaar-ng/Makefile 1.2 +2 -2 ports/devel/bazaar-ng/distinfo 1.2 +82 -6 ports/devel/bazaar-ng/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 10:07:37 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7CAE16A41F; Sat, 29 Oct 2005 10:07:37 +0000 (GMT) (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 9678D43D46; Sat, 29 Oct 2005 10:07:37 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TA7boa016318; Sat, 29 Oct 2005 10:07:37 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TA7bSp016317; Sat, 29 Oct 2005 10:07:37 GMT (envelope-from blackend) Message-Id: <200510291007.j9TA7bSp016317@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 29 Oct 2005 10:07:37 +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/fr/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: Sat, 29 Oct 2005 10:07:38 -0000 blackend 2005-10-29 10:07:37 UTC FreeBSD doc repository Modified files: fr/projects/c99 index.sgml Log: MFen 1.100 --> 1.101 Revision Changes Path 1.9 +13 -10 www/fr/projects/c99/index.sgml From owner-cvs-all@FreeBSD.ORG Sat Oct 29 10:22:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B46716A41F; Sat, 29 Oct 2005 10:22:41 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAF5943D45; Sat, 29 Oct 2005 10:22:40 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TAMeaq016941; Sat, 29 Oct 2005 10:22:40 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TAMeKJ016940; Sat, 29 Oct 2005 10:22:40 GMT (envelope-from jylefort) Message-Id: <200510291022.j9TAMeKJ016940@repoman.freebsd.org> From: Jean-Yves Lefort Date: Sat, 29 Oct 2005 10:22: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/misc/xrmap 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, 29 Oct 2005 10:22:41 -0000 jylefort 2005-10-29 10:22:40 UTC FreeBSD ports repository Modified files: misc/xrmap Makefile distinfo pkg-plist Log: Add a missing data file (fixes a crash in earthview). PR: ports/88160 Submitted by: maintainer Revision Changes Path 1.18 +6 -2 ports/misc/xrmap/Makefile 1.11 +2 -0 ports/misc/xrmap/distinfo 1.8 +1 -0 ports/misc/xrmap/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 10:29:46 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F76D16A41F; Sat, 29 Oct 2005 10:29:46 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C080F43D48; Sat, 29 Oct 2005 10:29:45 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TATjCY017325; Sat, 29 Oct 2005 10:29:45 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TATjOr017324; Sat, 29 Oct 2005 10:29:45 GMT (envelope-from jylefort) Message-Id: <200510291029.j9TATjOr017324@repoman.freebsd.org> From: Jean-Yves Lefort Date: Sat, 29 Oct 2005 10:29: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/devel/cmunge 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, 29 Oct 2005 10:29:46 -0000 jylefort 2005-10-29 10:29:45 UTC FreeBSD ports repository Modified files: devel/cmunge Makefile Log: Fix hardcoded paths in the cmunge script. PR: ports/88163 Submitted by: maintainer Revision Changes Path 1.2 +7 -0 ports/devel/cmunge/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 10:34:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCBAC16A420; Sat, 29 Oct 2005 10:34:19 +0000 (GMT) (envelope-from vsevolod@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B80743D46; Sat, 29 Oct 2005 10:34:19 +0000 (GMT) (envelope-from vsevolod@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TAYJje017490; Sat, 29 Oct 2005 10:34:19 GMT (envelope-from vsevolod@repoman.freebsd.org) Received: (from vsevolod@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TAYJ04017489; Sat, 29 Oct 2005 10:34:19 GMT (envelope-from vsevolod) Message-Id: <200510291034.j9TAYJ04017489@repoman.freebsd.org> From: Vsevolod Stakhov Date: Sat, 29 Oct 2005 10:34: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/chmlib 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, 29 Oct 2005 10:34:19 -0000 vsevolod 2005-10-29 10:34:19 UTC FreeBSD ports repository Modified files: misc/chmlib pkg-plist Log: Remove libchm.a from pkg-plist as it is no longer installed. Reported by: krismail Revision Changes Path 1.3 +0 -1 ports/misc/chmlib/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 10:54:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A0A516A420; Sat, 29 Oct 2005 10:54:30 +0000 (GMT) (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 2765543D45; Sat, 29 Oct 2005 10:54:30 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TAsTnL018191; Sat, 29 Oct 2005 10:54:30 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TAsTaa018190; Sat, 29 Oct 2005 10:54:29 GMT (envelope-from blackend) Message-Id: <200510291054.j9TAsTaa018190@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 29 Oct 2005 10:54:29 +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/fr/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: Sat, 29 Oct 2005 10:54:30 -0000 blackend 2005-10-29 10:54:29 UTC FreeBSD doc repository Modified files: fr/projects/c99 index.sgml Log: MFen 1.101 --> 1.102 Revision Changes Path 1.10 +3 -3 www/fr/projects/c99/index.sgml From owner-cvs-all@FreeBSD.ORG Sat Oct 29 10:56:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCD4B16A41F; Sat, 29 Oct 2005 10:56:36 +0000 (GMT) (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 9B20F43D48; Sat, 29 Oct 2005 10:56:36 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TAuaxs018329; Sat, 29 Oct 2005 10:56:36 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TAuaDh018328; Sat, 29 Oct 2005 10:56:36 GMT (envelope-from tobez) Message-Id: <200510291056.j9TAuaDh018328@repoman.freebsd.org> From: Anton Berezin Date: Sat, 29 Oct 2005 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/textproc/p5-Lingua-EN-Infinitive 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, 29 Oct 2005 10:56:37 -0000 tobez 2005-10-29 10:56:36 UTC FreeBSD ports repository Modified files: textproc/p5-Lingua-EN-Infinitive Makefile distinfo Log: Update to 1.09. Revision Changes Path 1.7 +1 -1 ports/textproc/p5-Lingua-EN-Infinitive/Makefile 1.6 +2 -2 ports/textproc/p5-Lingua-EN-Infinitive/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 11:00:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41B9116A41F; Sat, 29 Oct 2005 11:00:11 +0000 (GMT) (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 E9A0543D46; Sat, 29 Oct 2005 11:00:10 +0000 (GMT) (envelope-from tobez@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TB0AdM018474; Sat, 29 Oct 2005 11:00:10 GMT (envelope-from tobez@repoman.freebsd.org) Received: (from tobez@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TB0AZm018473; Sat, 29 Oct 2005 11:00:10 GMT (envelope-from tobez) Message-Id: <200510291100.j9TB0AZm018473@repoman.freebsd.org> From: Anton Berezin Date: Sat, 29 Oct 2005 11: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 LEGAL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 11:00:11 -0000 tobez 2005-10-29 11:00:10 UTC FreeBSD ports repository Modified files: . LEGAL Log: Remove a non-sensical line. PR: 88169 Submitted by: Marc van Woerkom Revision Changes Path 1.429 +1 -2 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Sat Oct 29 12:31:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8927216A41F; Sat, 29 Oct 2005 12:31:04 +0000 (GMT) (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 4624E43D49; Sat, 29 Oct 2005 12:31:04 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TCV454021941; Sat, 29 Oct 2005 12:31:04 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TCV4oX021940; Sat, 29 Oct 2005 12:31:04 GMT (envelope-from kuriyama) Message-Id: <200510291231.j9TCV4oX021940@repoman.freebsd.org> From: Jun Kuriyama Date: Sat, 29 Oct 2005 12:31: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/p5-Test-Exception 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, 29 Oct 2005 12:31:04 -0000 kuriyama 2005-10-29 12:31:03 UTC FreeBSD ports repository Modified files: devel/p5-Test-Exception Makefile Log: Test::Builder::Tester is included in Test::Simple, now. Approved by: erwin (maintainer) Revision Changes Path 1.10 +3 -7 ports/devel/p5-Test-Exception/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 12:33:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB19D16A41F; Sat, 29 Oct 2005 12:33:31 +0000 (GMT) (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 A937B43D46; Sat, 29 Oct 2005 12:33:31 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TCXVYt022005; Sat, 29 Oct 2005 12:33:31 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TCXVdo022004; Sat, 29 Oct 2005 12:33:31 GMT (envelope-from kuriyama) Message-Id: <200510291233.j9TCXVdo022004@repoman.freebsd.org> From: Jun Kuriyama Date: Sat, 29 Oct 2005 12:33: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/p5-Test-Exception 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, 29 Oct 2005 12:33:32 -0000 kuriyama 2005-10-29 12:33:31 UTC FreeBSD ports repository Modified files: devel/p5-Test-Exception Makefile Log: Forced commit: grrr, sorry, not yet approved by maintainer... Revision Changes Path 1.11 +0 -0 ports/devel/p5-Test-Exception/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 12:36:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A91B716A41F; Sat, 29 Oct 2005 12:36:53 +0000 (GMT) (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 5FE5843D45; Sat, 29 Oct 2005 12:36:53 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TCarW0022155; Sat, 29 Oct 2005 12:36:53 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TCarJR022154; Sat, 29 Oct 2005 12:36:53 GMT (envelope-from arved) Message-Id: <200510291236.j9TCarJR022154@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 29 Oct 2005 12:36: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/news/klibido 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, 29 Oct 2005 12:36:53 -0000 arved 2005-10-29 12:36:53 UTC FreeBSD ports repository Modified files: news/klibido Makefile distinfo Log: Update to 0.2.4.1 PR: 88171 Submitted by: maintainer Revision Changes Path 1.6 +1 -1 ports/news/klibido/Makefile 1.5 +2 -2 ports/news/klibido/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 13:08:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB2D816A425; Sat, 29 Oct 2005 13:08:36 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89C8843D45; Sat, 29 Oct 2005 13:08:36 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TD8aLZ030367; Sat, 29 Oct 2005 13:08:36 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TD8a1v030366; Sat, 29 Oct 2005 13:08:36 GMT (envelope-from stefanf) Message-Id: <200510291308.j9TD8a1v030366@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 29 Oct 2005 13:08: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/bin/sh sh.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, 29 Oct 2005 13:08:37 -0000 stefanf 2005-10-29 13:08:35 UTC FreeBSD src repository Modified files: bin/sh sh.1 Log: Document command -v and -V. Glanced at by: simon Revision Changes Path 1.112 +39 -2 src/bin/sh/sh.1 From owner-cvs-all@FreeBSD.ORG Sat Oct 29 13:26:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF7C816A41F; Sat, 29 Oct 2005 13:26:57 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F8AD43D45; Sat, 29 Oct 2005 13:26:57 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TDQvtg031038; Sat, 29 Oct 2005 13:26:57 GMT (envelope-from lawrance@repoman.freebsd.org) Received: (from lawrance@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TDQvpJ031037; Sat, 29 Oct 2005 13:26:57 GMT (envelope-from lawrance) Message-Id: <200510291326.j9TDQvpJ031037@repoman.freebsd.org> From: Sam Lawrance Date: Sat, 29 Oct 2005 13:26: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/irc/blackened 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, 29 Oct 2005 13:26:58 -0000 lawrance 2005-10-29 13:26:57 UTC FreeBSD ports repository Modified files: irc/blackened Makefile Log: - set new mastersite - give maintainership to submitter PR: ports/88175 Submitted by: Martin Hudec Revision Changes Path 1.16 +2 -6 ports/irc/blackened/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 13:40:32 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD9EA16A425; Sat, 29 Oct 2005 13:40:32 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2538C43D45; Sat, 29 Oct 2005 13:40:32 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TDeW5i031643; Sat, 29 Oct 2005 13:40:32 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TDeWPm031642; Sat, 29 Oct 2005 13:40:32 GMT (envelope-from davidxu) Message-Id: <200510291340.j9TDeWPm031642@repoman.freebsd.org> From: David Xu Date: Sat, 29 Oct 2005 13:40: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/lib/libthr/arch/arm/arm pthread_md.c src/lib/libthr/arch/arm/include pthread_md.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, 29 Oct 2005 13:40:32 -0000 davidxu 2005-10-29 13:40:31 UTC FreeBSD src repository Modified files: lib/libthr/arch/arm/arm pthread_md.c lib/libthr/arch/arm/include pthread_md.h Log: Remove unused variable. Reviewed by: cognet Revision Changes Path 1.2 +0 -4 src/lib/libthr/arch/arm/arm/pthread_md.c 1.3 +0 -5 src/lib/libthr/arch/arm/include/pthread_md.h From owner-cvs-all@FreeBSD.ORG Sat Oct 29 13:48:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 964DA16A41F; Sat, 29 Oct 2005 13:48:50 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59D4443D48; Sat, 29 Oct 2005 13:48:50 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TDmou7031968; Sat, 29 Oct 2005 13:48:50 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TDmou5031967; Sat, 29 Oct 2005 13:48:50 GMT (envelope-from edwin) Message-Id: <200510291348.j9TDmou5031967@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 29 Oct 2005 13:48: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/games/groundhog Makefile ports/games/groundhog/files patch-src-highscore.cc patch-src__game.cc patch-src__pocket.h patch-src__score.cc patch-src__score.h patch-src_highscore_tab.cc patch-src_new_highscore_dialog.h patch-src_options_dialog.h patch-src_solved_dialog.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: Sat, 29 Oct 2005 13:48:50 -0000 edwin 2005-10-29 13:48:50 UTC FreeBSD ports repository Modified files: games/groundhog Makefile games/groundhog/files patch-src-highscore.cc Added files: games/groundhog/files patch-src__game.cc patch-src__pocket.h patch-src__score.cc patch-src__score.h patch-src_highscore_tab.cc patch-src_new_highscore_dialog.h patch-src_options_dialog.h patch-src_solved_dialog.cc Log: Make port working on 5.3 and higher (finally) Thanks to the debian package for the g++ patches. Revision Changes Path 1.14 +2 -8 ports/games/groundhog/Makefile 1.3 +34 -5 ports/games/groundhog/files/patch-src-highscore.cc 1.1 +49 -0 ports/games/groundhog/files/patch-src__game.cc (new) 1.1 +19 -0 ports/games/groundhog/files/patch-src__pocket.h (new) 1.1 +74 -0 ports/games/groundhog/files/patch-src__score.cc (new) 1.1 +50 -0 ports/games/groundhog/files/patch-src__score.h (new) 1.1 +51 -0 ports/games/groundhog/files/patch-src_highscore_tab.cc (new) 1.1 +19 -0 ports/games/groundhog/files/patch-src_new_highscore_dialog.h (new) 1.1 +0 -0 ports/games/groundhog/files/patch-src_options_dialog.h (new) 1.1 +27 -0 ports/games/groundhog/files/patch-src_solved_dialog.cc (new) From owner-cvs-all@FreeBSD.ORG Sat Oct 29 13:54:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C077216A41F; Sat, 29 Oct 2005 13:54:29 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E74843D45; Sat, 29 Oct 2005 13:54:29 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TDsTnh034220; Sat, 29 Oct 2005 13:54:29 GMT (envelope-from lawrance@repoman.freebsd.org) Received: (from lawrance@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TDsT6u034219; Sat, 29 Oct 2005 13:54:29 GMT (envelope-from lawrance) Message-Id: <200510291354.j9TDsT6u034219@repoman.freebsd.org> From: Sam Lawrance Date: Sat, 29 Oct 2005 13:54: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/audio/mp3c 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: Sat, 29 Oct 2005 13:54:29 -0000 lawrance 2005-10-29 13:54:29 UTC FreeBSD ports repository Modified files: audio/mp3c Makefile pkg-descr Log: Update mastersite and WWW link PR: ports/87927 Submitted by: Jean Milanez Melo Approved by: Joris Vandalon (maintainer) Revision Changes Path 1.6 +2 -3 ports/audio/mp3c/Makefile 1.2 +2 -0 ports/audio/mp3c/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Oct 29 13:59:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEBDC16A41F; Sat, 29 Oct 2005 13:59:29 +0000 (GMT) (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 5305A43D45; Sat, 29 Oct 2005 13:59:29 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TDxTZn034442; Sat, 29 Oct 2005 13:59:29 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TDxT9D034441; Sat, 29 Oct 2005 13:59:29 GMT (envelope-from novel) Message-Id: <200510291359.j9TDxT9D034441@repoman.freebsd.org> From: Roman Bogorodskiy Date: Sat, 29 Oct 2005 13:59: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/x11/xidle 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, 29 Oct 2005 13:59:30 -0000 novel 2005-10-29 13:59:29 UTC FreeBSD ports repository Modified files: x11/xidle Makefile Log: Fix build on 4.x. Reported by: pointyhat via kris Revision Changes Path 1.2 +1 -1 ports/x11/xidle/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 14:09:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00B0B16A41F; Sat, 29 Oct 2005 14:09:34 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1D5043D4C; Sat, 29 Oct 2005 14:09:33 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TE9X9x034819; Sat, 29 Oct 2005 14:09:33 GMT (envelope-from lawrance@repoman.freebsd.org) Received: (from lawrance@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TE9XNp034818; Sat, 29 Oct 2005 14:09:33 GMT (envelope-from lawrance) Message-Id: <200510291409.j9TE9XNp034818@repoman.freebsd.org> From: Sam Lawrance Date: Sat, 29 Oct 2005 14:09: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/biology/flip 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, 29 Oct 2005 14:09:34 -0000 lawrance 2005-10-29 14:09:33 UTC FreeBSD ports repository Modified files: biology/flip Makefile Log: Mark DEPRECATED since upstream is unmaintained and mastersite is gone. PR: ports/88004 Submitted by: Jean Milanez Melo Approved by: Tony Maher (maintainer) Revision Changes Path 1.6 +3 -0 ports/biology/flip/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 14:17:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2951E16A41F; Sat, 29 Oct 2005 14:17:02 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9A6843D45; Sat, 29 Oct 2005 14:17:01 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TEH1tk035245; Sat, 29 Oct 2005 14:17:01 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TEH1UQ035244; Sat, 29 Oct 2005 14:17:01 GMT (envelope-from jylefort) Message-Id: <200510291417.j9TEH1UQ035244@repoman.freebsd.org> From: Jean-Yves Lefort Date: Sat, 29 Oct 2005 14:17: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 Makefile ports/games/dangerdeep Makefile distinfo pkg-descr ports/games/dangerdeep/files patch-SConstruct patch-src_coastmap.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, 29 Oct 2005 14:17:02 -0000 jylefort 2005-10-29 14:17:01 UTC FreeBSD ports repository Modified files: games Makefile Added files: games/dangerdeep Makefile distinfo pkg-descr games/dangerdeep/files patch-SConstruct patch-src_coastmap.cpp Log: Add dangerdeep. Danger from the deep (aka dangerdeep) is a Free / Open Source World War II German submarine simulation. It is currently available for FreeBSD, Linux/i386 and Windows, but since it uses SDL/OpenGL it should be portable to other operating systems or platforms. WWW: http://dangerdeep.sourceforge.net/ PR: ports/88168 Submitted by: Jose Alonso Cardenas Marquez Revision Changes Path 1.861 +1 -0 ports/games/Makefile 1.1 +72 -0 ports/games/dangerdeep/Makefile (new) 1.1 +2 -0 ports/games/dangerdeep/distinfo (new) 1.1 +72 -0 ports/games/dangerdeep/files/patch-SConstruct (new) 1.1 +11 -0 ports/games/dangerdeep/files/patch-src_coastmap.cpp (new) 1.1 +6 -0 ports/games/dangerdeep/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sat Oct 29 14:17:51 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDECC16A41F; Sat, 29 Oct 2005 14:17:51 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F10E43D46; Sat, 29 Oct 2005 14:17:51 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TEHpFJ035301; Sat, 29 Oct 2005 14:17:51 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TEHpI1035300; Sat, 29 Oct 2005 14:17:51 GMT (envelope-from jylefort) Message-Id: <200510291417.j9TEHpI1035300@repoman.freebsd.org> From: Jean-Yves Lefort Date: Sat, 29 Oct 2005 14:17: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: 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, 29 Oct 2005 14:17:52 -0000 jylefort 2005-10-29 14:17:51 UTC FreeBSD ports repository Modified files: . modules Log: dangerdeep --> ports/games/dangerdeep Revision Changes Path 1.13485 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Oct 29 14:36:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BC5016A41F; Sat, 29 Oct 2005 14:36:01 +0000 (GMT) (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 5D9B243D48; Sat, 29 Oct 2005 14:35:53 +0000 (GMT) (envelope-from erwin@mail.droso.net) Received: from localhost (localhost [127.0.0.1]) by mail.droso.net (Postfix) with ESMTP id 5C760229A8; Sat, 29 Oct 2005 16:35:52 +0200 (CEST) Received: by mail.droso.net (Postfix, from userid 1001) id 34267229A7; Sat, 29 Oct 2005 16:35:51 +0200 (CEST) Date: Sat, 29 Oct 2005 16:35:51 +0200 From: Erwin Lansing To: Jun Kuriyama Message-ID: <20051029143550.GM1217@droso.net> Mail-Followup-To: Jun Kuriyama , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200510291233.j9TCXVdo022004@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="97hb3pjH1uXXjziO" Content-Disposition: inline In-Reply-To: <200510291233.j9TCXVdo022004@repoman.freebsd.org> X-Operating-System: FreeBSD/i386 5.4-RELEASE User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd 0.1 Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/p5-Test-Exception 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, 29 Oct 2005 14:36:01 -0000 --97hb3pjH1uXXjziO Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 29, 2005 at 12:33:31PM +0000, Jun Kuriyama wrote: > kuriyama 2005-10-29 12:33:31 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > devel/p5-Test-Exception Makefile=20 > Log: > Forced commit: grrr, sorry, not yet approved by maintainer... Now it is :-) -erwin --=20 Erwin Lansing DISCLAIMER: No electrons were harmed while sending this message. --97hb3pjH1uXXjziO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDY4jGqy9aWxUlaZARAgTrAKDQpfGAaIV+l5amdzaleDPfwqCA7wCfWO7X Zcix2+cX1DVj+vnR1Bd1lCc= =Xw63 -----END PGP SIGNATURE----- --97hb3pjH1uXXjziO-- From owner-cvs-all@FreeBSD.ORG Sat Oct 29 14:52:23 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EB8616A41F; Sat, 29 Oct 2005 14:52:23 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1B0B43D48; Sat, 29 Oct 2005 14:52:22 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TEqM57036593; Sat, 29 Oct 2005 14:52:22 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TEqMmc036592; Sat, 29 Oct 2005 14:52:22 GMT (envelope-from nork) Message-Id: <200510291452.j9TEqMmc036592@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sat, 29 Oct 2005 14: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/net/liveMedia 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, 29 Oct 2005 14:52:23 -0000 nork 2005-10-29 14:52:22 UTC FreeBSD ports repository Modified files: net/liveMedia Makefile distinfo Log: Update to 2005.10.28b. Revision Changes Path 1.211 +1 -1 ports/net/liveMedia/Makefile 1.198 +2 -2 ports/net/liveMedia/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 14:59:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F10F116A41F; Sat, 29 Oct 2005 14:59:47 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF09143D48; Sat, 29 Oct 2005 14:59:47 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TExldQ036971; Sat, 29 Oct 2005 14:59:47 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TExlAR036970; Sat, 29 Oct 2005 14:59:47 GMT (envelope-from nork) Message-Id: <200510291459.j9TExlAR036970@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sat, 29 Oct 2005 14:59: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/sylpheed2-devel 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, 29 Oct 2005 14:59:48 -0000 nork 2005-10-29 14:59:47 UTC FreeBSD ports repository Modified files: mail/sylpheed2-devel Makefile distinfo pkg-plist Log: Update to 2.1.5. Submitted by: Herbert J. Skuhra Revision Changes Path 1.123 +1 -1 ports/mail/sylpheed2-devel/Makefile 1.89 +2 -2 ports/mail/sylpheed2-devel/distinfo 1.30 +1 -1 ports/mail/sylpheed2-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:01:49 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE75216A41F; Sat, 29 Oct 2005 15:01:49 +0000 (GMT) (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 77C2043D48; Sat, 29 Oct 2005 15:01:49 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TF1n70037132; Sat, 29 Oct 2005 15:01:49 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TF1n6m037131; Sat, 29 Oct 2005 15:01:49 GMT (envelope-from oliver) Message-Id: <200510291501.j9TF1n6m037131@repoman.freebsd.org> From: Oliver Lehmann Date: Sat, 29 Oct 2005 15:01: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/ember Makefile distinfo pkg-plist ports/games/ember/files patch-src-framework-prefix.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, 29 Oct 2005 15:01:49 -0000 oliver 2005-10-29 15:01:49 UTC FreeBSD ports repository Modified files: games/ember Makefile distinfo pkg-plist Removed files: games/ember/files patch-src-framework-prefix.cpp Log: update to 0.3.4 Revision Changes Path 1.5 +10 -14 ports/games/ember/Makefile 1.3 +2 -2 ports/games/ember/distinfo 1.2 +0 -74 ports/games/ember/files/patch-src-framework-prefix.cpp (dead) 1.3 +21 -18 ports/games/ember/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:03:55 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C826916A41F; Sat, 29 Oct 2005 15:03:55 +0000 (GMT) (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 6075143D46; Sat, 29 Oct 2005 15:03:55 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TF3tsE037216; Sat, 29 Oct 2005 15:03:55 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TF3tAp037215; Sat, 29 Oct 2005 15:03:55 GMT (envelope-from kuriyama) Message-Id: <200510291503.j9TF3tAp037215@repoman.freebsd.org> From: Jun Kuriyama Date: Sat, 29 Oct 2005 15:03: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/p5-Test-Pod 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, 29 Oct 2005 15:03:55 -0000 kuriyama 2005-10-29 15:03:55 UTC FreeBSD ports repository Modified files: devel/p5-Test-Pod Makefile distinfo Log: - Upgrade to 1.22. - Change dependency on Test::Builder::Tester to Test-Simple. - Remove dependency on p5-IO-stringy which was mistakenly included in the past distribution (from Changes file). Approved by: mat (maintainer) Revision Changes Path 1.13 +2 -6 ports/devel/p5-Test-Pod/Makefile 1.12 +2 -2 ports/devel/p5-Test-Pod/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:04:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FE2916A41F; Sat, 29 Oct 2005 15:04:53 +0000 (GMT) (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 CD83F43D46; Sat, 29 Oct 2005 15:04:52 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TF4qeD037378; Sat, 29 Oct 2005 15:04:52 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TF4qrW037377; Sat, 29 Oct 2005 15:04:52 GMT (envelope-from kuriyama) Message-Id: <200510291504.j9TF4qrW037377@repoman.freebsd.org> From: Jun Kuriyama Date: Sat, 29 Oct 2005 15:04: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-Test-SubCalls 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, 29 Oct 2005 15:04:53 -0000 kuriyama 2005-10-29 15:04:52 UTC FreeBSD ports repository Modified files: devel/p5-Test-SubCalls Makefile Log: - Change dependency on Test::Builder::Tester to Test-Simple. Approved by: lth (maintainer) Revision Changes Path 1.3 +2 -1 ports/devel/p5-Test-SubCalls/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:05:25 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8F9E16A427; Sat, 29 Oct 2005 15:05:25 +0000 (GMT) (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 718D943D48; Sat, 29 Oct 2005 15:05:25 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TF5PKb037456; Sat, 29 Oct 2005 15:05:25 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TF5PHh037455; Sat, 29 Oct 2005 15:05:25 GMT (envelope-from scottl) Message-Id: <200510291505.j9TF5PHh037455@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 15: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/dev/aac aac.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 15:05:26 -0000 scottl 2005-10-29 15:05:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/aac aac.c Log: MFC rev 1.113 Submitted by: delphij Approved by: re Revision Changes Path 1.109.2.3 +3 -0 src/sys/dev/aac/aac.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:08:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 472B716A41F; Sat, 29 Oct 2005 15:08:22 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03EF943D45; Sat, 29 Oct 2005 15:08:22 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TF8LUg037591; Sat, 29 Oct 2005 15:08:21 GMT (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TF8L4X037590; Sat, 29 Oct 2005 15:08:21 GMT (envelope-from fenner) Message-Id: <200510291508.j9TF8L4X037590@repoman.freebsd.org> From: Bill Fenner Date: Sat, 29 Oct 2005 15:08:21 +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 cgi-style.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: Sat, 29 Oct 2005 15:08:22 -0000 fenner 2005-10-29 15:08:21 UTC FreeBSD doc repository (src,ports committer) Modified files: en/cgi cgi-style.pl Log: Conditionally set $hsty_base to http://www.FreeBSD.org/: 1. If we're not running under cgi (for the mailindex run out of cron) 2. If we're running on docs.freebsd.org (because it doesn't have the style files, and the "home" link would point to docs home, not the home home) 3. If we're running on people.freebsd.org, to facilitate my testing Otherwise, keep it relative for the benefit of mirrors. docs problem pointed out by: Mark Trettin (mkt AT trettin DOT org) Revision Changes Path 1.25 +10 -2 www/en/cgi/cgi-style.pl From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:09:52 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAB4C16A41F; Sat, 29 Oct 2005 15:09:52 +0000 (GMT) (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 A984C43D46; Sat, 29 Oct 2005 15:09:52 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TF9qdj037651; Sat, 29 Oct 2005 15:09:52 GMT (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TF9qeD037650; Sat, 29 Oct 2005 15:09:52 GMT (envelope-from erwin) Message-Id: <200510291509.j9TF9qeD037650@repoman.freebsd.org> From: Erwin Lansing Date: Sat, 29 Oct 2005 15:09: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-IO-String 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, 29 Oct 2005 15:09:53 -0000 erwin 2005-10-29 15:09:52 UTC FreeBSD ports repository Modified files: devel/p5-IO-String Makefile distinfo Log: Update to 1.07 PR: 88113 Submitted by: leeym Revision Changes Path 1.11 +1 -1 ports/devel/p5-IO-String/Makefile 1.7 +2 -2 ports/devel/p5-IO-String/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:11:09 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D044B16A41F; Sat, 29 Oct 2005 15:11:09 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8ED6E43D49; Sat, 29 Oct 2005 15:11:09 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFB9vT037799; Sat, 29 Oct 2005 15:11:09 GMT (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFB9gZ037798; Sat, 29 Oct 2005 15:11:09 GMT (envelope-from fenner) Message-Id: <200510291511.j9TFB9gZ037798@repoman.freebsd.org> From: Bill Fenner Date: Sat, 29 Oct 2005 15:11:09 +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 cgi-style.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: Sat, 29 Oct 2005 15:11:10 -0000 fenner 2005-10-29 15:11:09 UTC FreeBSD doc repository (src,ports committer) Modified files: en/cgi cgi-style.pl Log: Add hub to the list of hosts, I forgot that docs cgi scripts actually run on hub. Revision Changes Path 1.26 +3 -3 www/en/cgi/cgi-style.pl From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:13:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCE4E16A41F; Sat, 29 Oct 2005 15:13:07 +0000 (GMT) (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 7BB3843D46; Sat, 29 Oct 2005 15:13:07 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFD7hG037897; Sat, 29 Oct 2005 15:13:07 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFD7lW037896; Sat, 29 Oct 2005 15:13:07 GMT (envelope-from scottl) Message-Id: <200510291513.j9TFD7lW037896@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 15:13:07 +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/sys/dev/aac aac.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 15:13:07 -0000 scottl 2005-10-29 15:13:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/aac aac.c Log: MFC rev 1.113 Submitted by delphij Approved by: re Revision Changes Path 1.109.2.1.2.2 +3 -0 src/sys/dev/aac/aac.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:25:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F375716A41F; Sat, 29 Oct 2005 15:25:01 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9A4F43D48; Sat, 29 Oct 2005 15:25:01 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFP1W4038365; Sat, 29 Oct 2005 15:25:01 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFP13Z038364; Sat, 29 Oct 2005 15:25:01 GMT (envelope-from krion) Message-Id: <200510291525.j9TFP13Z038364@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 29 Oct 2005 15:25: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/usr.sbin/pkg_install/delete main.c src/usr.sbin/pkg_install/info 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: Sat, 29 Oct 2005 15:25:02 -0000 krion 2005-10-29 15:25:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/pkg_install/delete main.c usr.sbin/pkg_install/info main.c Log: MFC: delete/main.c:1.27 info/main.c:1.48 Fix pkg_info(1) and pkg_delete(1) to handle properly packages which names start with a digit. PR: bin/76858 Submitted by: Matthew D. Fuller Approved by: re Revision Changes Path 1.26.8.1 +1 -1 src/usr.sbin/pkg_install/delete/main.c 1.47.2.1 +1 -1 src/usr.sbin/pkg_install/info/main.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:27:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5F7616A41F; Sat, 29 Oct 2005 15:27:12 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6039C43D45; Sat, 29 Oct 2005 15:27:12 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFRCWc038499; Sat, 29 Oct 2005 15:27:12 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFRCRu038498; Sat, 29 Oct 2005 15:27:12 GMT (envelope-from krion) Message-Id: <200510291527.j9TFRCRu038498@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 29 Oct 2005 15:27:12 +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/usr.sbin/pkg_install/delete main.c src/usr.sbin/pkg_install/info 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: Sat, 29 Oct 2005 15:27:12 -0000 krion 2005-10-29 15:27:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) usr.sbin/pkg_install/delete main.c usr.sbin/pkg_install/info main.c Log: MFC: delete/main.c:1.27 info/main.c:1.48 Fix pkg_info(1) and pkg_delete(1) to handle properly packages which names start with a digit. PR: bin/76858 Submitted by: Matthew D. Fuller Approved by: re Revision Changes Path 1.26.10.1 +1 -1 src/usr.sbin/pkg_install/delete/main.c 1.47.4.1 +1 -1 src/usr.sbin/pkg_install/info/main.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:45:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 805AA16A41F; Sat, 29 Oct 2005 15:45:54 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 513FF43D48; Sat, 29 Oct 2005 15:45:54 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFjsBB039155; Sat, 29 Oct 2005 15:45:54 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFjsfs039154; Sat, 29 Oct 2005 15:45:54 GMT (envelope-from krion) Message-Id: <200510291545.j9TFjsfs039154@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 29 Oct 2005 15:45: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/pkg_install/version perform.c test-pkg_version.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, 29 Oct 2005 15:45:54 -0000 krion 2005-10-29 15:45:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/pkg_install/version perform.c test-pkg_version.sh Log: MFC: perform.c:1.14 test-pkg_version.sh:1.6 date: 2005/10/10 12:35:30; author: krion; state: Exp; lines: +9 -4 * pkg_version(1) exits if INDEX files is not found and -I is not specified. The result is that the package will be listed with a '?' as if it was not found within the INDEX file, so fix this behaviour. * Remove trailing spaces. PR: bin/87136 Submitted by: Sean Farley Approved by: re Revision Changes Path 1.12.2.2 +10 -5 src/usr.sbin/pkg_install/version/perform.c 1.5.8.1 +1 -1 src/usr.sbin/pkg_install/version/test-pkg_version.sh From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:47:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C882A16A41F; Sat, 29 Oct 2005 15:47:20 +0000 (GMT) (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 874C843D46; Sat, 29 Oct 2005 15:47:20 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFlKvI039232; Sat, 29 Oct 2005 15:47:20 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFlKHf039231; Sat, 29 Oct 2005 15:47:20 GMT (envelope-from kuriyama) Message-Id: <200510291547.j9TFlKHf039231@repoman.freebsd.org> From: Jun Kuriyama Date: Sat, 29 Oct 2005 15: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/www/p5-HTTP-WebTest 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, 29 Oct 2005 15:47:21 -0000 kuriyama 2005-10-29 15:47:20 UTC FreeBSD ports repository Modified files: www/p5-HTTP-WebTest Makefile Log: - Change dependency on Test::Builder::Tester to Test-Simple. Revision Changes Path 1.7 +2 -3 ports/www/p5-HTTP-WebTest/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:49:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FCFF16A421; Sat, 29 Oct 2005 15:49:02 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B551443D49; Sat, 29 Oct 2005 15:49:01 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFn1Dg039289; Sat, 29 Oct 2005 15:49:01 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFn1qV039288; Sat, 29 Oct 2005 15:49:01 GMT (envelope-from krion) Message-Id: <200510291549.j9TFn1qV039288@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 29 Oct 2005 15:49:01 +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/usr.sbin/pkg_install/version perform.c test-pkg_version.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, 29 Oct 2005 15:49:02 -0000 krion 2005-10-29 15:49:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) usr.sbin/pkg_install/version perform.c test-pkg_version.sh Log: MFC: perform.c:1.14 test-pkg_version.sh:1.6 date: 2005/10/10 12:35:30; author: krion; state: Exp; lines: +9 -4 * pkg_version(1) exits if INDEX files is not found and -I is not specified. The result is that the package will be listed with a '?' as if it was not found within the INDEX file, so fix this behaviour. * Remove trailing spaces. PR: bin/87136 Submitted by: Sean Farley Approved by: re Revision Changes Path 1.12.2.1.2.1 +5 -0 src/usr.sbin/pkg_install/version/perform.c 1.5.10.1 +1 -1 src/usr.sbin/pkg_install/version/test-pkg_version.sh From owner-cvs-all@FreeBSD.ORG Sat Oct 29 15:56:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4CD516A41F; Sat, 29 Oct 2005 15:56:06 +0000 (GMT) (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 7F8AE43D53; Sat, 29 Oct 2005 15:56:06 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFu6GF039576; Sat, 29 Oct 2005 15:56:06 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFu6lE039575; Sat, 29 Oct 2005 15:56:06 GMT (envelope-from kuriyama) Message-Id: <200510291556.j9TFu6lE039575@repoman.freebsd.org> From: Jun Kuriyama Date: Sat, 29 Oct 2005 15:56: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/converters/p5-JSON 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, 29 Oct 2005 15:56:07 -0000 kuriyama 2005-10-29 15:56:06 UTC FreeBSD ports repository Modified files: converters/p5-JSON Makefile distinfo pkg-plist Log: - Upgrade to 1.00. - Fix dependencies. PR: ports/87676 Submitted by: tobez Revision Changes Path 1.3 +15 -4 ports/converters/p5-JSON/Makefile 1.2 +2 -2 ports/converters/p5-JSON/distinfo 1.3 +2 -0 ports/converters/p5-JSON/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 16:01:30 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11AE816A41F; Sat, 29 Oct 2005 16:01:30 +0000 (GMT) (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 C40B943D46; Sat, 29 Oct 2005 16:01:29 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TG1TWE039898; Sat, 29 Oct 2005 16:01:29 GMT (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TG1Ti8039897; Sat, 29 Oct 2005 16:01:29 GMT (envelope-from linimon) Message-Id: <200510291601.j9TG1Ti8039897@repoman.freebsd.org> From: Mark Linimon Date: Sat, 29 Oct 2005 16:01: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 LEGAL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 16:01:30 -0000 linimon 2005-10-29 16:01:29 UTC FreeBSD ports repository Modified files: . LEGAL Log: Re-alphabetize. Revision Changes Path 1.430 +3 -3 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Sat Oct 29 16:34:50 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCF2916A41F; Sat, 29 Oct 2005 16:34:50 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 910FA43D46; Sat, 29 Oct 2005 16:34:50 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TGYoDm041705; Sat, 29 Oct 2005 16:34:50 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TGYoHC041704; Sat, 29 Oct 2005 16:34:50 GMT (envelope-from bde) Message-Id: <200510291634.j9TGYoHC041704@repoman.freebsd.org> From: Bruce Evans Date: Sat, 29 Oct 2005 16:34: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/lib/msun/src e_rem_pio2f.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 16:34:51 -0000 bde 2005-10-29 16:34:50 UTC FreeBSD src repository Modified files: lib/msun/src e_rem_pio2f.c Log: Use double precision to simplify and optimize arg reduction for small and medium size args too: instead of conditionally subtracting a float 17+24, 17+17+24 or 17+17+17+24 bit approximation to pi/2, always subtract a double 33+53 bit one. The float version is now closer to the double version than to old versions of itself -- it uses the same 33+53 bit approximation as the simplest cases in the double version, and where the float version had to switch to the slow general case at |x| == 2^7*pi/2, it now switches at |x| == 2^19*pi/2 the same as the double version. This speeds up arg reduction by a factor of 2 for |x| between 3*pi/4 and 2^7*pi/4, and by a factor of 7 for |x| between 2^7*pi/4 and 2^19*pi/4. Revision Changes Path 1.14 +22 -97 src/lib/msun/src/e_rem_pio2f.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 16:35:15 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39B6716A426; Sat, 29 Oct 2005 16:35:15 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE64443D46; Sat, 29 Oct 2005 16:35:14 +0000 (GMT) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TGZEhj041746; Sat, 29 Oct 2005 16:35:14 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TGZEjl041745; Sat, 29 Oct 2005 16:35:14 GMT (envelope-from remko) Message-Id: <200510291635.j9TGZEjl041745@repoman.freebsd.org> From: Remko Lodder Date: Sat, 29 Oct 2005 16:35: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: doc/en_US.ISO8859-1/books/handbook/advanced-networking 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, 29 Oct 2005 16:35:15 -0000 remko 2005-10-29 16:35:14 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Correct the bridge sysctl information (the list of bridge interfaces should not have a comma in it). PR: docs/87355 Submitted by: Marc Haase Revision Changes Path 1.368 +1 -1 doc/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Oct 29 17:01:54 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37C7616A41F; Sat, 29 Oct 2005 17:01:54 +0000 (GMT) (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 E88D643D48; Sat, 29 Oct 2005 17:01:53 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TH1r9t050074; Sat, 29 Oct 2005 17:01:53 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TH1rSM050073; Sat, 29 Oct 2005 17:01:53 GMT (envelope-from delphij) Message-Id: <200510291701.j9TH1rSM050073@repoman.freebsd.org> From: Xin LI Date: Sat, 29 Oct 2005 17:01: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/releng 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: Sat, 29 Oct 2005 17:01:54 -0000 delphij 2005-10-29 17:01:53 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/releng article.sgml Log: Reflect the fact that sysinstall was moved to usr.sbin/ long ago. Remove a stale comment that said this is only in -CURRENT. Revision Changes Path 1.71 +4 -5 doc/en_US.ISO8859-1/articles/releng/article.sgml From owner-cvs-all@FreeBSD.ORG Sat Oct 29 17:14:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25BD316A41F; Sat, 29 Oct 2005 17:14:12 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D951F43D46; Sat, 29 Oct 2005 17:14:11 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9THEBp8050911; Sat, 29 Oct 2005 17:14:11 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9THEB8D050910; Sat, 29 Oct 2005 17:14:11 GMT (envelope-from bde) Message-Id: <200510291714.j9THEB8D050910@repoman.freebsd.org> From: Bruce Evans Date: Sat, 29 Oct 2005 17:14: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/lib/msun/src math_private.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, 29 Oct 2005 17:14:12 -0000 bde 2005-10-29 17:14:11 UTC FreeBSD src repository Modified files: lib/msun/src math_private.h Log: Implement inline functions to give the complex result x+I*y from float or double args x and y. x+I*y cannot be used directly yet due to compiler bugs. Submitted by: Steve Kargl Revision Changes Path 1.18 +42 -0 src/lib/msun/src/math_private.h From owner-cvs-all@FreeBSD.ORG Sat Oct 29 17:17:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A29016A41F; Sat, 29 Oct 2005 17:17:06 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCBAA43D46; Sat, 29 Oct 2005 17:17:05 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9THH50w051133; Sat, 29 Oct 2005 17:17:05 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9THH5aJ051132; Sat, 29 Oct 2005 17:17:05 GMT (envelope-from jylefort) Message-Id: <200510291717.j9THH5aJ051132@repoman.freebsd.org> From: Jean-Yves Lefort Date: Sat, 29 Oct 2005 17:17: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/deskutils Makefile ports/deskutils/pypanel 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, 29 Oct 2005 17:17:06 -0000 jylefort 2005-10-29 17:17:05 UTC FreeBSD ports repository Modified files: deskutils Makefile Added files: deskutils/pypanel Makefile distinfo pkg-descr pkg-plist Log: Add pypanel. PyPanel is a lightweight panel/taskbar written in Python and C for X11 window managers. It can be easily customized to match any desktop theme or taste. PyPanel works with EWMH compliant WMs (Openbox, PekWM, FVWM, ...). Some of the customizable features include: * Transparency with shading/tinting * Panel dimensions, location and layout * Font type and colors with Xft and shadow support * Button events/actions * Clock and workspace name display * System Tray (Notification Area) * Autohiding * Application Launcher * Custom Application Icons WWW: http://pypanel.sourceforge.net/ PR: ports/87907 Submitted by: Florian Unglaub Revision Changes Path 1.200 +1 -0 ports/deskutils/Makefile 1.1 +52 -0 ports/deskutils/pypanel/Makefile (new) 1.1 +2 -0 ports/deskutils/pypanel/distinfo (new) 1.1 +17 -0 ports/deskutils/pypanel/pkg-descr (new) 1.1 +7 -0 ports/deskutils/pypanel/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Oct 29 17:18:26 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8A9D16A41F; Sat, 29 Oct 2005 17:18:26 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 690D143D46; Sat, 29 Oct 2005 17:18:26 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9THIQ6S051186; Sat, 29 Oct 2005 17:18:26 GMT (envelope-from jylefort@repoman.freebsd.org) Received: (from jylefort@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9THIQr4051185; Sat, 29 Oct 2005 17:18:26 GMT (envelope-from jylefort) Message-Id: <200510291718.j9THIQr4051185@repoman.freebsd.org> From: Jean-Yves Lefort Date: Sat, 29 Oct 2005 17: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: 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, 29 Oct 2005 17:18:26 -0000 jylefort 2005-10-29 17:18:26 UTC FreeBSD ports repository Modified files: . modules Log: pypanel --> ports/deskutils/pypanel Revision Changes Path 1.13486 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Oct 29 17:34:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5544516A41F; Sat, 29 Oct 2005 17:34:33 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1415B43D46; Sat, 29 Oct 2005 17:34:33 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9THYWvR051895; Sat, 29 Oct 2005 17:34:32 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9THYW4C051894; Sat, 29 Oct 2005 17:34:32 GMT (envelope-from cy) Message-Id: <200510291734.j9THYW4C051894@repoman.freebsd.org> From: Cy Schubert Date: Sat, 29 Oct 2005 17:34: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/krb5 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, 29 Oct 2005 17:34:33 -0000 cy 2005-10-29 17:34:32 UTC FreeBSD ports repository Modified files: security/krb5 Makefile Log: Fails to build on 4.11. Revision Changes Path 1.90 +2 -0 ports/security/krb5/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 17:46:57 2005 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19C2216A420; Sat, 29 Oct 2005 17:46:57 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from viefep19-int.chello.at (viefep11-int.chello.at [213.46.255.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9545943D48; Sat, 29 Oct 2005 17:46:55 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from wombat.fafoe.narf.at ([213.47.85.26]) by viefep19-int.chello.at (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20051029174653.SUZP22340.viefep19-int.chello.at@wombat.fafoe.narf.at>; Sat, 29 Oct 2005 19:46:53 +0200 Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 1D520238; Sat, 29 Oct 2005 19:46:51 +0200 (CEST) Date: Sat, 29 Oct 2005 19:46:50 +0200 From: Stefan Farfeleder To: Bruce Evans Message-ID: <20051029174645.GF21302@wombat.fafoe.narf.at> References: <200510281045.j9SAjJmR096150@repoman.freebsd.org> <200510281033.48001.jhb@freebsd.org> <20051029140403.O30901@delplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051029140403.O30901@delplex.bde.org> User-Agent: Mutt/1.5.11 Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/bin/sh memalloc.c memalloc.h miscbltin.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 17:46:57 -0000 On Sat, Oct 29, 2005 at 02:29:55PM +1000, Bruce Evans wrote: > On Fri, 28 Oct 2005, John Baldwin wrote: > > >On Friday 28 October 2005 06:45 am, Stefan Farfeleder wrote: > >>stefanf 2005-10-28 10:45:19 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: > >> bin/sh memalloc.c memalloc.h miscbltin.c > >> Log: > >> Protect malloc, realloc and free calls with INT{ON,OFF} directly in > >>chkalloc, ckrealloc and ckfree (added), respectively. sh jumps out of the > >>signal handler using longjmp which is obviously a bad idea during malloc > >>calls. > >> > >> Note: I think there is still a small race here because volatile > >>sig_atomic_t only guarantees atomic reads and writes while we're doing > >>increments and decrements. > > Stefan should know that only atomic writes are guaranteed, but there seems > to be no problem in practice since the inc/dec is not done in signal > handlers Yes, after some more thinking I agree that the current code is fine. Stefan From owner-cvs-all@FreeBSD.ORG Sat Oct 29 17:50:22 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EF0E16A41F; Sat, 29 Oct 2005 17:50:22 +0000 (GMT) (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 5C60443D49; Sat, 29 Oct 2005 17:50:22 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9THoMTh052513; Sat, 29 Oct 2005 17:50:22 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9THoMPG052512; Sat, 29 Oct 2005 17:50:22 GMT (envelope-from ehaupt) Message-Id: <200510291750.j9THoMPG052512@repoman.freebsd.org> From: Emanuel Haupt Date: Sat, 29 Oct 2005 17:50: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/games/fillets-ng 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, 29 Oct 2005 17:50:22 -0000 ehaupt 2005-10-29 17:50:22 UTC FreeBSD ports repository Modified files: games/fillets-ng Makefile Log: - Fully respect $LOCALBASE - Bump PORTREVISION PR: 88067 Reported by: pointyhat via kris Submitted by: Dmitry Marakasov (maintainer) Revision Changes Path 1.3 +3 -2 ports/games/fillets-ng/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 17:53:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 702D016A41F; Sat, 29 Oct 2005 17:53:12 +0000 (GMT) (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 2E12643D45; Sat, 29 Oct 2005 17:53:12 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9THrCpg052651; Sat, 29 Oct 2005 17:53:12 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9THrCVd052650; Sat, 29 Oct 2005 17:53:12 GMT (envelope-from mnag) Message-Id: <200510291753.j9THrCVd052650@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 17: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/games/battleball 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, 29 Oct 2005 17:53:12 -0000 mnag 2005-10-29 17:53:12 UTC FreeBSD ports repository Modified files: games/battleball Makefile distinfo Log: Update MASTER_SITES Take MAINTAINER Remove DEPRECATED PR: 88180 Submitted by: Martin Hudec Revision Changes Path 1.26 +3 -6 ports/games/battleball/Makefile 1.4 +2 -2 ports/games/battleball/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 17:57:05 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D05916A41F for ; Sat, 29 Oct 2005 17:57:05 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from mail1.fluidhosting.com (mail1.fluidhosting.com [204.14.90.61]) by mx1.FreeBSD.org (Postfix) with SMTP id 4245843D49 for ; Sat, 29 Oct 2005 17:57:04 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 66939 invoked by uid 399); 29 Oct 2005 17:57:03 -0000 Received: from unknown (HELO ?192.168.1.101?) (dougb@dougbarton.net@127.0.0.1) by 127.0.0.1 with SMTP; 29 Oct 2005 17:57:03 -0000 Message-ID: <4363B7ED.8060300@FreeBSD.org> Date: Sat, 29 Oct 2005 10:57:01 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Mozilla Thunderbird 1.0.7 (X11/20050929) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Yar Tikhiy References: <200510281655.j9SGtcqC033700@repoman.freebsd.org> In-Reply-To: <200510281655.j9SGtcqC033700@repoman.freebsd.org> X-Enigmail-Version: 0.93.0.0 Content-Type: text/plain; charset=ISO-8859-1 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 devd ipmon newsyslog powerd sendmail X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 17:57:05 -0000 Yar Tikhiy wrote: > yar 2005-10-28 16:55:38 UTC > > FreeBSD src repository > > Modified files: > etc/rc.d devd ipmon newsyslog powerd sendmail > Log: > Use ${name} in pathnames where appropriate. > The sendmail script already was on this way, > but it didn't reach the end of it yet. > > Revision Changes Path > 1.8 +1 -1 src/etc/rc.d/devd > 1.14 +1 -1 src/etc/rc.d/ipmon > 1.4 +1 -1 src/etc/rc.d/newsyslog > 1.3 +1 -1 src/etc/rc.d/powerd > 1.16 +3 -3 src/etc/rc.d/sendmail > > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/etc/rc.d/devd.diff?&r1=1.7&r2=1.8&f=h > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/etc/rc.d/ipmon.diff?&r1=1.13&r2=1.14&f=h > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/etc/rc.d/newsyslog.diff?&r1=1.3&r2=1.4&f=h > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/etc/rc.d/powerd.diff?&r1=1.2&r2=1.3&f=h > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/etc/rc.d/sendmail.diff?&r1=1.15&r2=1.16&f=h Were there reasons other than semantic correctness for this change? I am generally hesitant to churn things like this where nothing is broken. Doug -- This .signature sanitized for your protection From owner-cvs-all@FreeBSD.ORG Sat Oct 29 18:04:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5110716A41F; Sat, 29 Oct 2005 18:04:24 +0000 (GMT) (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 0E59043D45; Sat, 29 Oct 2005 18:04:24 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TI4NMO053168; Sat, 29 Oct 2005 18:04:23 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TI4Npe053167; Sat, 29 Oct 2005 18:04:23 GMT (envelope-from mnag) Message-Id: <200510291804.j9TI4Npe053167@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 18:04: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/irc/gseen.mod 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, 29 Oct 2005 18:04:24 -0000 mnag 2005-10-29 18:04:23 UTC FreeBSD ports repository Modified files: irc/gseen.mod Makefile Log: Respect LOCALBASE Fix dependencies Fix EXTRACT_DEPENDS Bump PORTREVISION PR: 88179 Submitted by: Gerrit Beine (maintainer) Revision Changes Path 1.4 +9 -2 ports/irc/gseen.mod/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 18:14:31 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C2A516A41F; Sat, 29 Oct 2005 18:14:31 +0000 (GMT) (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 5517F43D45; Sat, 29 Oct 2005 18:14:31 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TIEVs1053583; Sat, 29 Oct 2005 18:14:31 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TIEVEJ053582; Sat, 29 Oct 2005 18:14:31 GMT (envelope-from ehaupt) Message-Id: <200510291814.j9TIEVEJ053582@repoman.freebsd.org> From: Emanuel Haupt Date: Sat, 29 Oct 2005 18:14: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/www/webresolve 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, 29 Oct 2005 18:14:31 -0000 ehaupt 2005-10-29 18:14:30 UTC FreeBSD ports repository Modified files: www/webresolve Makefile Log: - Respect PREFIX - Build without debug symbols - Bump PORTREVISION - Cleanup PR: 88148 Reported by: pointyhat via kris Submitted by: Joseph Scott (maintainer) Revision Changes Path 1.6 +9 -2 ports/www/webresolve/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 18:27:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 984DD16A41F; Sat, 29 Oct 2005 18:27:13 +0000 (GMT) (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 5526D43D45; Sat, 29 Oct 2005 18:27:13 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TIRDln054025; Sat, 29 Oct 2005 18:27:13 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TIRDxl054024; Sat, 29 Oct 2005 18:27:13 GMT (envelope-from oliver) Message-Id: <200510291827.j9TIRDxl054024@repoman.freebsd.org> From: Oliver Lehmann Date: Sat, 29 Oct 2005 18:27: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/ember/files patch-src-framework-osdir.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, 29 Oct 2005 18:27:13 -0000 oliver 2005-10-29 18:27:13 UTC FreeBSD ports repository Removed files: games/ember/files patch-src-framework-osdir.h Log: remove not needed patch file Revision Changes Path 1.2 +0 -196 ports/games/ember/files/patch-src-framework-osdir.h (dead) From owner-cvs-all@FreeBSD.ORG Sat Oct 29 18:41:36 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9325E16A41F; Sat, 29 Oct 2005 18:41:36 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5009D43D58; Sat, 29 Oct 2005 18:41:36 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TIfapX055208; Sat, 29 Oct 2005 18:41:36 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TIfabS055202; Sat, 29 Oct 2005 18:41:36 GMT (envelope-from stefanf) Message-Id: <200510291841.j9TIfabS055202@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 29 Oct 2005 18:41: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/bin/sh options.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 18:41:36 -0000 stefanf 2005-10-29 18:41:36 UTC FreeBSD src repository Modified files: bin/sh options.c Log: Include disabled options in the output of 'set +o'. POSIX says the output of set +o can be used to reload previous settings, for this to work disabled options must be printed as well or otherwise options that were set in the mean time won't be turned off. To avoid an excessively long output line I formatted the output to print only six options per line. Submitted by: Jilles Tjoelker PR: 73500 Revision Changes Path 1.24 +8 -11 src/bin/sh/options.c From owner-cvs-all@FreeBSD.ORG Sat Oct 29 18:42:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5540B16A41F; Sat, 29 Oct 2005 18:42:45 +0000 (GMT) (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 212D443D45; Sat, 29 Oct 2005 18:42:45 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TIgjpA055521; Sat, 29 Oct 2005 18:42:45 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TIgiBK055520; Sat, 29 Oct 2005 18:42:45 GMT (envelope-from ehaupt) Message-Id: <200510291842.j9TIgiBK055520@repoman.freebsd.org> From: Emanuel Haupt Date: Sat, 29 Oct 2005 18:42: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/math/fxt Makefile distinfo pkg-plist ports/math/fxt/files patch-aux0::aux0print.cc patch-bmat::bitmatprint.cc patch-bpol::bitpolprint.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: Sat, 29 Oct 2005 18:42:45 -0000 ehaupt 2005-10-29 18:42:44 UTC FreeBSD ports repository Modified files: math/fxt Makefile distinfo pkg-plist Removed files: math/fxt/files patch-aux0::aux0print.cc patch-bmat::bitmatprint.cc patch-bpol::bitpolprint.cc Log: - Update to 2005.10.06 - Remove files/* (3 patches) PR: 88191 Submitted by: KATO Tsuguru Revision Changes Path 1.14 +8 -10 ports/math/fxt/Makefile 1.10 +2 -2 ports/math/fxt/distinfo 1.2 +0 -11 ports/math/fxt/files/patch-aux0::aux0print.cc (dead) 1.2 +0 -10 ports/math/fxt/files/patch-bmat::bitmatprint.cc (dead) 1.2 +0 -10 ports/math/fxt/files/patch-bpol::bitpolprint.cc (dead) 1.9 +114 -49 ports/math/fxt/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 18:45:29 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B1A116A41F; Sat, 29 Oct 2005 18:45:29 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B2B743D48; Sat, 29 Oct 2005 18:45:29 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TIjSJs055874; Sat, 29 Oct 2005 18:45:28 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TIjSeK055873; Sat, 29 Oct 2005 18:45:28 GMT (envelope-from cy) Message-Id: <200510291845.j9TIjSeK055873@repoman.freebsd.org> From: Cy Schubert Date: Sat, 29 Oct 2005 18:45: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/security/krb5 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, 29 Oct 2005 18:45:29 -0000 cy 2005-10-29 18:45:28 UTC FreeBSD ports repository Modified files: security/krb5 Makefile Log: Relocate BROKEN conditional. Revision Changes Path 1.91 +4 -4 ports/security/krb5/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 18:45:33 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADA6A16A420; Sat, 29 Oct 2005 18:45:33 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 377FC43D48; Sat, 29 Oct 2005 18:45:33 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.54 (FreeBSD)) id 1EVvhs-0006v2-9u; Sat, 29 Oct 2005 19:45:32 +0100 Date: Sat, 29 Oct 2005 19:45:32 +0100 From: Ceri Davies To: Brooks Davis Message-ID: <20051029184532.GP99857@submonkey.net> Mail-Followup-To: Ceri Davies , Brooks Davis , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200510282247.j9SMlepi063537@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7AwgMNpd3VkAVXjS" Content-Disposition: inline In-Reply-To: <200510282247.j9SMlepi063537@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.11 Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/vipw vipw.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, 29 Oct 2005 18:45:33 -0000 --7AwgMNpd3VkAVXjS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 28, 2005 at 10:47:40PM +0000, Brooks Davis wrote: > brooks 2005-10-28 22:47:40 UTC >=20 > FreeBSD src repository >=20 > Modified files: > usr.sbin/vipw vipw.8=20 > Log: > s/insure/ensure/ in previous commit. My dictionary and m-w.com say they > are synonymous, but ensure seems slightly closer and does not have the > connotation of buying insurance. > =20 > Reported by: Jason McIntyre Hah! I was going to whine about this too, but let it slide (again, due to the dictionary telling me it was OK). Good to see I have cover for those days where I don't feel all that pedantic :) Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --7AwgMNpd3VkAVXjS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDY8NMocfcwTS3JF8RAuDWAJ9g1KJWtI/2TbJgMLOwSVIV0mvRrwCgisri GDednkkD+65McaAEj63weVg= =udbw -----END PGP SIGNATURE----- --7AwgMNpd3VkAVXjS-- From owner-cvs-all@FreeBSD.ORG Sat Oct 29 18:48:59 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C7AB16A41F; Sat, 29 Oct 2005 18:48:59 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B5343D4C; Sat, 29 Oct 2005 18:48:58 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.54 (FreeBSD)) id 1EVvlB-000AYG-Lj; Sat, 29 Oct 2005 19:48:57 +0100 Date: Sat, 29 Oct 2005 19:48:57 +0100 From: Ceri Davies To: "David E. O'Brien" Message-ID: <20051029184857.GQ99857@submonkey.net> Mail-Followup-To: Ceri Davies , "David E. O'Brien" , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200510290913.j9T9DVx5014198@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KaGhPsiNaI6/sRd6" Content-Disposition: inline In-Reply-To: <200510290913.j9T9DVx5014198@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.11 Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/gcc/config freebsd-spec.h src/gnu/usr.bin/cc/cc_tools freebsd-native.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, 29 Oct 2005 18:48:59 -0000 --KaGhPsiNaI6/sRd6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 29, 2005 at 09:13:31AM +0000, David E. O'Brien wrote: > obrien 2005-10-29 09:13:31 UTC >=20 > FreeBSD src repository >=20 > Modified files: > contrib/gcc/config freebsd-spec.h=20 > gnu/usr.bin/cc/cc_tools freebsd-native.h=20 > Log: > Catch up with FreeBSD 7. > | @@ -7,7 +7,7 @@ > | #define FREEBSD_NATIVE 1 > | =20 > | /* Fake out gcc/config/freebsd.h. */ > | -#define FBSD_MAJOR 5 > | +#define FBSD_MAJOR 7 Is it bad that this is still set to 5 in RELENG_6? Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --KaGhPsiNaI6/sRd6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDY8QZocfcwTS3JF8RAqmOAKCFviu40sbVb/pmbNa3HMnsIg3Q3wCcCX86 XWBMMh8aocrE2Tct0OykOvY= =861f -----END PGP SIGNATURE----- --KaGhPsiNaI6/sRd6-- From owner-cvs-all@FreeBSD.ORG Sat Oct 29 18:49:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A14D116A41F; Sat, 29 Oct 2005 18:49:45 +0000 (GMT) (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 26A0043D45; Sat, 29 Oct 2005 18:49:45 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TInjOB055973; Sat, 29 Oct 2005 18:49:45 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TInjCZ055972; Sat, 29 Oct 2005 18:49:45 GMT (envelope-from mnag) Message-Id: <200510291849.j9TInjCZ055972@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 18:49: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/devel/acpicatools 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, 29 Oct 2005 18:49:45 -0000 mnag 2005-10-29 18:49:44 UTC FreeBSD ports repository Modified files: devel/acpicatools Makefile Log: Add more one MASTER_SITES [1] Remove obsolete MASTER_SITES Use MASTER_SITES group PR: 88152 [1] Submitted by: Jean Milanez Melo [1] Revision Changes Path 1.25 +4 -5 ports/devel/acpicatools/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 18:53:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D655116A41F; Sat, 29 Oct 2005 18:53:11 +0000 (GMT) (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 5BC0B43D48; Sat, 29 Oct 2005 18:53:11 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TIrB2L056183; Sat, 29 Oct 2005 18:53:11 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TIrBIM056182; Sat, 29 Oct 2005 18:53:11 GMT (envelope-from ehaupt) Message-Id: <200510291853.j9TIrBIM056182@repoman.freebsd.org> From: Emanuel Haupt Date: Sat, 29 Oct 2005 18:53: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/games/freecell-solver 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: Sat, 29 Oct 2005 18:53:12 -0000 ehaupt 2005-10-29 18:53:11 UTC FreeBSD ports repository Modified files: games/freecell-solver Makefile distinfo pkg-descr Log: - Update to 2.8.11 - Update master site - Update WWW PR: 88189 Submitted by: KATO Tsuguru Revision Changes Path 1.31 +2 -7 ports/games/freecell-solver/Makefile 1.26 +2 -2 ports/games/freecell-solver/distinfo 1.2 +1 -1 ports/games/freecell-solver/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Oct 29 19:12:41 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E98F16A41F; Sat, 29 Oct 2005 19:12:41 +0000 (GMT) (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 4B6C443D45; Sat, 29 Oct 2005 19:12:41 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TJCf34057116; Sat, 29 Oct 2005 19:12:41 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TJCfST057115; Sat, 29 Oct 2005 19:12:41 GMT (envelope-from mnag) Message-Id: <200510291912.j9TJCfST057115@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 19:12: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/asis 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, 29 Oct 2005 19:12:41 -0000 mnag 2005-10-29 19:12:40 UTC FreeBSD ports repository Modified files: devel/asis Makefile pkg-plist Log: Change MASTER_SITES [1] Make portlint happyer PR: 88156 [1] Submitted by: Jean Milanez Melo [1] Approved by: Thomas Quinot (maintainer) Revision Changes Path 1.17 +4 -3 ports/devel/asis/Makefile 1.6 +20 -22 ports/devel/asis/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 19:13:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 608E216A41F; Sat, 29 Oct 2005 19:13:04 +0000 (GMT) (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 1F84B43D45; Sat, 29 Oct 2005 19:13:04 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TJD3Nj057161; Sat, 29 Oct 2005 19:13:03 GMT (envelope-from ehaupt@repoman.freebsd.org) Received: (from ehaupt@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TJD31A057160; Sat, 29 Oct 2005 19:13:03 GMT (envelope-from ehaupt) Message-Id: <200510291913.j9TJD31A057160@repoman.freebsd.org> From: Emanuel Haupt Date: Sat, 29 Oct 2005 19:13: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/www/cherokee 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, 29 Oct 2005 19:13:04 -0000 ehaupt 2005-10-29 19:13:03 UTC FreeBSD ports repository Modified files: www/cherokee Makefile distinfo Log: Update to 0.4.28 PR: 88195 Submitted by: KATO Tsuguru Revision Changes Path 1.14 +1 -1 ports/www/cherokee/Makefile 1.11 +2 -2 ports/www/cherokee/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 19:13:44 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 877E016A41F; Sat, 29 Oct 2005 19:13:44 +0000 (GMT) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2191C43D45; Sat, 29 Oct 2005 19:13:44 +0000 (GMT) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TJDi4T057270; Sat, 29 Oct 2005 19:13:44 GMT (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TJDh9N057269; Sat, 29 Oct 2005 19:13:43 GMT (envelope-from naddy) Message-Id: <200510291913.j9TJDh9N057269@repoman.freebsd.org> From: Christian Weisgerber Date: Sat, 29 Oct 2005 19:13: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/graphviz Makefile ports/graphics/graphviz/files patch-dotty::dotty.lefty X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 19:13:44 -0000 naddy 2005-10-29 19:13:43 UTC FreeBSD ports repository Modified files: graphics/graphviz Makefile Added files: graphics/graphviz/files patch-dotty::dotty.lefty Log: Upstream fix for very insecure temp file creation in example script (CVE-2005-2965). Approved by: perky Revision Changes Path 1.55 +1 -1 ports/graphics/graphviz/Makefile 1.1 +21 -0 ports/graphics/graphviz/files/patch-dotty::dotty.lefty (new) From owner-cvs-all@FreeBSD.ORG Sat Oct 29 19:26:53 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 436C216A41F; Sat, 29 Oct 2005 19:26:53 +0000 (GMT) (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 F148943D45; Sat, 29 Oct 2005 19:26:52 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TJQqZI057776; Sat, 29 Oct 2005 19:26:52 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TJQqlu057775; Sat, 29 Oct 2005 19:26:52 GMT (envelope-from mnag) Message-Id: <200510291926.j9TJQqlu057775@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 19:26: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/audio/py-sdl_mixer Makefile ports/audio/py-sdl_mixer/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: Sat, 29 Oct 2005 19:26:53 -0000 mnag 2005-10-29 19:26:52 UTC FreeBSD ports repository Modified files: audio/py-sdl_mixer Makefile Added files: audio/py-sdl_mixer/files patch-setup.py Log: Respect LOCALBASE/X11BASE PR: 88149 Notified by: kris Submitted by: Jose Alonso Cardenas Marquez (maintainer) Revision Changes Path 1.3 +4 -0 ports/audio/py-sdl_mixer/Makefile 1.1 +19 -0 ports/audio/py-sdl_mixer/files/patch-setup.py (new) From owner-cvs-all@FreeBSD.ORG Sat Oct 29 19:34:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2902B16A41F; Sat, 29 Oct 2005 19:34:13 +0000 (GMT) (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 9F97F43D45; Sat, 29 Oct 2005 19:34:12 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TJYCtK058089; Sat, 29 Oct 2005 19:34:12 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TJYCmm058088; Sat, 29 Oct 2005 19:34:12 GMT (envelope-from mnag) Message-Id: <200510291934.j9TJYCmm058088@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 19: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/chinese/tocps 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, 29 Oct 2005 19:34:13 -0000 mnag 2005-10-29 19:34:12 UTC FreeBSD ports repository Modified files: chinese/tocps Makefile Log: Fix DISTNAME Notified by: kris Revision Changes Path 1.7 +1 -1 ports/chinese/tocps/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 19:43:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 051B116A41F; Sat, 29 Oct 2005 19:43:34 +0000 (GMT) (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 05A8643D5A; Sat, 29 Oct 2005 19:43:29 +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 8BA561A3C24; Sat, 29 Oct 2005 12:43:29 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id E5ADD51494; Sat, 29 Oct 2005 15:43:28 -0400 (EDT) Date: Sat, 29 Oct 2005 15:43:28 -0400 From: Kris Kennaway To: Cy Schubert Message-ID: <20051029194328.GB33698@xor.obsecurity.org> References: <200510291734.j9THYW4C051894@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="oC1+HKm2/end4ao3" Content-Disposition: inline In-Reply-To: <200510291734.j9THYW4C051894@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/krb5 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, 29 Oct 2005 19:43:34 -0000 --oC1+HKm2/end4ao3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 29, 2005 at 05:34:32PM +0000, Cy Schubert wrote: > cy 2005-10-29 17:34:32 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > security/krb5 Makefile=20 > Log: > Fails to build on 4.11. Nor anywhere else, per the logs I've been sending you for months. Kris --oC1+HKm2/end4ao3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDY9DgWry0BWjoQKURAmvIAKDNNLlDV+C05TT1G0LpEUsVzKs2LwCdFlAp j50fqA44wrg6BcL51wrYAYE= =tjFL -----END PGP SIGNATURE----- --oC1+HKm2/end4ao3-- From owner-cvs-all@FreeBSD.ORG Sat Oct 29 19:44:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AD0C16A41F; Sat, 29 Oct 2005 19:44:35 +0000 (GMT) (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 27CAB43D45; Sat, 29 Oct 2005 19:44: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 180361A3C1A; Sat, 29 Oct 2005 12:44:35 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 6960D51534; Sat, 29 Oct 2005 15:44:34 -0400 (EDT) Date: Sat, 29 Oct 2005 15:44:34 -0400 From: Kris Kennaway To: Ceri Davies , "David E. O'Brien" , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20051029194434.GC33698@xor.obsecurity.org> References: <200510290913.j9T9DVx5014198@repoman.freebsd.org> <20051029184857.GQ99857@submonkey.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ghzN8eJ9Qlbqn3iT" Content-Disposition: inline In-Reply-To: <20051029184857.GQ99857@submonkey.net> User-Agent: Mutt/1.4.2.1i Cc: Subject: Re: cvs commit: src/contrib/gcc/config freebsd-spec.h src/gnu/usr.bin/cc/cc_tools freebsd-native.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, 29 Oct 2005 19:44:35 -0000 --ghzN8eJ9Qlbqn3iT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 29, 2005 at 07:48:57PM +0100, Ceri Davies wrote: > On Sat, Oct 29, 2005 at 09:13:31AM +0000, David E. O'Brien wrote: > > obrien 2005-10-29 09:13:31 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > contrib/gcc/config freebsd-spec.h=20 > > gnu/usr.bin/cc/cc_tools freebsd-native.h=20 > > Log: > > Catch up with FreeBSD 7. >=20 > > | @@ -7,7 +7,7 @@ > > | #define FREEBSD_NATIVE 1 > > | =20 > > | /* Fake out gcc/config/freebsd.h. */ > > | -#define FBSD_MAJOR 5 > > | +#define FBSD_MAJOR 7 >=20 > Is it bad that this is still set to 5 in RELENG_6? We need to see the impact of this on ports first. Kris --ghzN8eJ9Qlbqn3iT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDY9EhWry0BWjoQKURAn0CAJ0RJlaHwlkME9jbsPtCW4YEvEmM+ACgulce 4dESOhytVc1/yoO9f8BJEzk= =GqPZ -----END PGP SIGNATURE----- --ghzN8eJ9Qlbqn3iT-- From owner-cvs-all@FreeBSD.ORG Sat Oct 29 19:51:13 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9478016A41F; Sat, 29 Oct 2005 19:51:13 +0000 (GMT) (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 5087043D45; Sat, 29 Oct 2005 19:51:13 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TJpDYw059318; Sat, 29 Oct 2005 19:51:13 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TJpDuO059317; Sat, 29 Oct 2005 19:51:13 GMT (envelope-from mnag) Message-Id: <200510291951.j9TJpDuO059317@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 19:51: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/ltris 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, 29 Oct 2005 19:51:13 -0000 mnag 2005-10-29 19:51:13 UTC FreeBSD ports repository Modified files: games/ltris Makefile distinfo pkg-plist Log: Update to 1.0.11 PR: 88190 Submitted by: KATO Tsuguru Revision Changes Path 1.20 +14 -2 ports/games/ltris/Makefile 1.12 +2 -2 ports/games/ltris/distinfo 1.5 +1 -0 ports/games/ltris/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 20:07:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1238116A41F; Sat, 29 Oct 2005 20:07:57 +0000 (GMT) (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 B0E2143D49; Sat, 29 Oct 2005 20:07:56 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TK7uOv059880; Sat, 29 Oct 2005 20:07:56 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TK7uxC059879; Sat, 29 Oct 2005 20:07:56 GMT (envelope-from mnag) Message-Id: <200510292007.j9TK7uxC059879@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 20: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/devel/py-ll-url 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, 29 Oct 2005 20:07:57 -0000 mnag 2005-10-29 20:07:56 UTC FreeBSD ports repository Modified files: devel/py-ll-url Makefile Log: DEPRECATED and Schedule for deletion PR: 87997 Submitted by: Choe, Cheng-Dae (maintainer) Revision Changes Path 1.2 +3 -0 ports/devel/py-ll-url/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 20:11:57 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCC3216A41F; Sat, 29 Oct 2005 20:11:57 +0000 (GMT) (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 9975243D46; Sat, 29 Oct 2005 20:11:57 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TKBvhV060152; Sat, 29 Oct 2005 20:11:57 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TKBv1r060151; Sat, 29 Oct 2005 20:11:57 GMT (envelope-from mnag) Message-Id: <200510292011.j9TKBv1r060151@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 20: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/py-ansistyle 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, 29 Oct 2005 20:11:58 -0000 mnag 2005-10-29 20:11:57 UTC FreeBSD ports repository Modified files: devel/py-ansistyle Makefile Log: DEPRECATED and Schedule for remove PR: 87998 Submitted by: "Choe, Cheng-Dae" (maintainer) Revision Changes Path 1.9 +3 -0 ports/devel/py-ansistyle/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 20:14:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B2CC16A41F; Sat, 29 Oct 2005 20:14:48 +0000 (GMT) (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 ECEAE43D45; Sat, 29 Oct 2005 20:14:47 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TKElis060294; Sat, 29 Oct 2005 20:14:47 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TKEl8P060293; Sat, 29 Oct 2005 20:14:47 GMT (envelope-from mnag) Message-Id: <200510292014.j9TKEl8P060293@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 20:14: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/math/coq 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, 29 Oct 2005 20:14:48 -0000 mnag 2005-10-29 20:14:47 UTC FreeBSD ports repository Modified files: math/coq Makefile Log: Drop MAINTAINER PR: 88197 Submitted by: Rene Ladan (maintainer) Revision Changes Path 1.7 +1 -1 ports/math/coq/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 20:17:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37AC916A41F; Sat, 29 Oct 2005 20:17:19 +0000 (GMT) (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 D192043D49; Sat, 29 Oct 2005 20:17:18 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TKHIiH060444; Sat, 29 Oct 2005 20:17:18 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TKHIA1060443; Sat, 29 Oct 2005 20:17:18 GMT (envelope-from mnag) Message-Id: <200510292017.j9TKHIA1060443@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 20:17: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/audio/tempest_for_eliza 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, 29 Oct 2005 20:17:19 -0000 mnag 2005-10-29 20:17:18 UTC FreeBSD ports repository Modified files: audio/tempest_for_eliza Makefile Log: Drop MAINTAINER PR: 88198 Submitted by: Rene Ladan (maintainer) Revision Changes Path 1.15 +1 -1 ports/audio/tempest_for_eliza/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 20:20:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E73316A41F; Sat, 29 Oct 2005 20:20:47 +0000 (GMT) (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 0060D43D45; Sat, 29 Oct 2005 20:20: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 E03181A3C25; Sat, 29 Oct 2005 13:20:46 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1FE2651494; Sat, 29 Oct 2005 16:20:46 -0400 (EDT) Date: Sat, 29 Oct 2005 16:20:45 -0400 From: Kris Kennaway To: Marcus Alves Grando Message-ID: <20051029202045.GA50253@xor.obsecurity.org> References: <200510292007.j9TK7uxC059879@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zYM0uCDKw75PZbzx" Content-Disposition: inline In-Reply-To: <200510292007.j9TK7uxC059879@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/py-ll-url 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, 29 Oct 2005 20:20:47 -0000 --zYM0uCDKw75PZbzx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 29, 2005 at 08:07:56PM +0000, Marcus Alves Grando wrote: > mnag 2005-10-29 20:07:56 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > devel/py-ll-url Makefile=20 > Log: > DEPRECATED and Schedule for deletion > =20 > PR: 87997 > Submitted by: Choe, Cheng-Dae (maintainer) Why not mark it BROKEN because of the build errors? Kris --zYM0uCDKw75PZbzx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDY9mdWry0BWjoQKURAnf7AKDfzl2tPeC7U44cuKDRD2R44phQOwCdHfod 1/wAmcAspFJVd5fewee+XDE= =FSgI -----END PGP SIGNATURE----- --zYM0uCDKw75PZbzx-- From owner-cvs-all@FreeBSD.ORG Sat Oct 29 20:21:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1E5B16A41F; Sat, 29 Oct 2005 20:21:18 +0000 (GMT) (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 9E14643D45; Sat, 29 Oct 2005 20:21:18 +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 8FD7A1A3C25; Sat, 29 Oct 2005 13:21:18 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 9F268533A5; Sat, 29 Oct 2005 16:21:17 -0400 (EDT) Date: Sat, 29 Oct 2005 16:21:17 -0400 From: Kris Kennaway To: Marcus Alves Grando , f@xor.obsecurity.org Message-ID: <20051029202114.GB50253@xor.obsecurity.org> References: <200510292011.j9TKBv1r060151@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="p4qYPpj5QlsIQJ0K" Content-Disposition: inline In-Reply-To: <200510292011.j9TKBv1r060151@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, "Choe, Cheng-Dae" , cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/py-ansistyle 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, 29 Oct 2005 20:21:19 -0000 --p4qYPpj5QlsIQJ0K Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 29, 2005 at 08:11:57PM +0000, Marcus Alves Grando wrote: > mnag 2005-10-29 20:11:57 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > devel/py-ansistyle Makefile=20 > Log: > DEPRECATED and Schedule for remove This was also reported to the maintainer as being broken. > Submitted by: "Choe, Cheng-Dae" (maintainer) Kris --p4qYPpj5QlsIQJ0K Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDY9m6Wry0BWjoQKURAqTZAKCE7T5/3eshfnz2WnmHb7guvbmLTwCgyvUv D8v0rSfd/Y+DcmIirE7nk+4= =gjvW -----END PGP SIGNATURE----- --p4qYPpj5QlsIQJ0K-- From owner-cvs-all@FreeBSD.ORG Sat Oct 29 20:27:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67C5D16A41F; Sat, 29 Oct 2005 20:27:06 +0000 (GMT) (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 225AA43D45; Sat, 29 Oct 2005 20:27:06 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TKR6Yd061198; Sat, 29 Oct 2005 20:27:06 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TKR6rL061197; Sat, 29 Oct 2005 20:27:06 GMT (envelope-from mnag) Message-Id: <200510292027.j9TKR6rL061197@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 20:27: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/lang/bf2c Makefile ports/x11-toolkits/ocaml-lablgtk2 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, 29 Oct 2005 20:27:06 -0000 mnag 2005-10-29 20:27:05 UTC FreeBSD ports repository Modified files: lang/bf2c Makefile x11-toolkits/ocaml-lablgtk2 Makefile Log: Drop MAINTAINER PR: 88196 Submitted by: Rene Ladan (maintainer) Revision Changes Path 1.4 +1 -1 ports/lang/bf2c/Makefile 1.5 +1 -1 ports/x11-toolkits/ocaml-lablgtk2/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 20:34:35 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7271316A41F; Sat, 29 Oct 2005 20:34:35 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from mail.grupos.com.br (mail.grupos.com.br [200.203.183.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02D0843D45; Sat, 29 Oct 2005 20:34:34 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from corp.grupos.com.br (unknown [150.162.166.55]) by mail.grupos.com.br (Postfix) with ESMTP id 73C5011E0FE; Sat, 29 Oct 2005 18:34:33 -0200 (BRST) Received: from [192.168.1.3] (200-193-76-39.fnsce7006.dsl.brasiltelecom.net.br [200.193.76.39]) (Authenticated sender: marcus@corp.grupos.com.br) by corp.grupos.com.br (Postfix) with ESMTP id D55DE551A; Sat, 29 Oct 2005 18:34:32 -0200 (BRST) Message-ID: <4363DCD5.9090403@FreeBSD.org> Date: Sat, 29 Oct 2005 18:34:29 -0200 From: Marcus Alves Grando User-Agent: Thunderbird 1.4.1 (X11/20051006) MIME-Version: 1.0 To: Kris Kennaway References: <200510292011.j9TKBv1r060151@repoman.freebsd.org> <20051029202114.GB50253@xor.obsecurity.org> In-Reply-To: <20051029202114.GB50253@xor.obsecurity.org> X-Enigmail-Version: 0.93.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: f@xor.obsecurity.org, cvs-ports@FreeBSD.org, "Choe, Cheng-Dae" , cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/py-ansistyle 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, 29 Oct 2005 20:34:35 -0000 Kris Kennaway wrote: > On Sat, Oct 29, 2005 at 08:11:57PM +0000, Marcus Alves Grando wrote: >> mnag 2005-10-29 20:11:57 UTC >> >> FreeBSD ports repository >> >> Modified files: >> devel/py-ansistyle Makefile >> Log: >> DEPRECATED and Schedule for remove > > This was also reported to the maintainer as being broken. Maintainer say devel/py-ll-core now include devel/py-ansistyle and py-ll-url. Because that, port marked as DEPRECATED. Regards -- 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 Sat Oct 29 20:38:15 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B745D16A41F; Sat, 29 Oct 2005 20:38:15 +0000 (GMT) (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 B0A2743D5D; Sat, 29 Oct 2005 20:38:11 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TKcBaX061701; Sat, 29 Oct 2005 20:38:11 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TKcBeI061700; Sat, 29 Oct 2005 20:38:11 GMT (envelope-from mnag) Message-Id: <200510292038.j9TKcBeI061700@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 20:38: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/audio/gnump3d 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, 29 Oct 2005 20:38:15 -0000 mnag 2005-10-29 20:38:11 UTC FreeBSD ports repository Modified files: audio/gnump3d Makefile distinfo pkg-plist Log: Update to 2.9.6 PR: 88187 Submitted by: KATO Tsuguru Revision Changes Path 1.38 +1 -1 ports/audio/gnump3d/Makefile 1.22 +4 -4 ports/audio/gnump3d/distinfo 1.24 +2 -2 ports/audio/gnump3d/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 20:38:48 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F1D116A41F; Sat, 29 Oct 2005 20:38:48 +0000 (GMT) (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 344C843D67; Sat, 29 Oct 2005 20:38:47 +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 247211A3C1A; Sat, 29 Oct 2005 13:38:47 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 4BE7B51494; Sat, 29 Oct 2005 16:38:46 -0400 (EDT) Date: Sat, 29 Oct 2005 16:38:46 -0400 From: Kris Kennaway To: Marcus Alves Grando Message-ID: <20051029203846.GA50637@xor.obsecurity.org> References: <200510292011.j9TKBv1r060151@repoman.freebsd.org> <20051029202114.GB50253@xor.obsecurity.org> <4363DCD5.9090403@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3V7upXqbjpZ4EhLz" Content-Disposition: inline In-Reply-To: <4363DCD5.9090403@FreeBSD.org> User-Agent: Mutt/1.4.2.1i Cc: f@xor.obsecurity.org, "Choe, Cheng-Dae" , cvs-all@FreeBSD.org, ports-committers@FreeBSD.org, Kris Kennaway , cvs-ports@FreeBSD.org Subject: Re: cvs commit: ports/devel/py-ansistyle 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, 29 Oct 2005 20:38:48 -0000 --3V7upXqbjpZ4EhLz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 29, 2005 at 06:34:29PM -0200, Marcus Alves Grando wrote: > Kris Kennaway wrote: > > On Sat, Oct 29, 2005 at 08:11:57PM +0000, Marcus Alves Grando wrote: > >> mnag 2005-10-29 20:11:57 UTC > >> > >> FreeBSD ports repository > >> > >> Modified files: > >> devel/py-ansistyle Makefile=20 > >> Log: > >> DEPRECATED and Schedule for remove > >=20 > > This was also reported to the maintainer as being broken. >=20 > Maintainer say devel/py-ll-core now include devel/py-ansistyle and > py-ll-url. Because that, port marked as DEPRECATED. Yes, and currently the port *does not build* (as a result). Therefore, instead of allowing the builds to continue to fail for the next few months, it should also be marked BROKEN. Kris --3V7upXqbjpZ4EhLz Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDY93VWry0BWjoQKURAhUdAJ49xe4l6/n2PaKtRxolRihhMeiFMACcDFV5 oV5oVoBADemVOiSnXzZIQCg= =Xl10 -----END PGP SIGNATURE----- --3V7upXqbjpZ4EhLz-- From owner-cvs-all@FreeBSD.ORG Sat Oct 29 20:42:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 367A816A428; Sat, 29 Oct 2005 20:42:40 +0000 (GMT) (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 26E2343D86; Sat, 29 Oct 2005 20:42:05 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TKg5jF062035; Sat, 29 Oct 2005 20:42:05 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TKg5vF062034; Sat, 29 Oct 2005 20:42:05 GMT (envelope-from thierry) Message-Id: <200510292042.j9TKg5vF062034@repoman.freebsd.org> From: Thierry Thomas Date: Sat, 29 Oct 2005 20:42: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/net/mercury 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, 29 Oct 2005 20:42:40 -0000 thierry 2005-10-29 20:42:05 UTC FreeBSD ports repository Modified files: net/mercury Makefile distinfo pkg-plist Log: Upgrade to 1710 Beta 9b. Revision Changes Path 1.17 +1 -1 ports/net/mercury/Makefile 1.16 +2 -2 ports/net/mercury/distinfo 1.12 +7 -0 ports/net/mercury/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 20:49:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B537616A41F; Sat, 29 Oct 2005 20:49:12 +0000 (GMT) (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 7004143D48; Sat, 29 Oct 2005 20:49:12 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TKnCQx069457; Sat, 29 Oct 2005 20:49:12 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TKnCq4069456; Sat, 29 Oct 2005 20:49:12 GMT (envelope-from mnag) Message-Id: <200510292049.j9TKnCq4069456@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 20:49: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/py-ansistyle Makefile ports/devel/py-ll-url 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, 29 Oct 2005 20:49:12 -0000 mnag 2005-10-29 20:49:12 UTC FreeBSD ports repository Modified files: devel/py-ansistyle Makefile devel/py-ll-url Makefile Log: Mark as BROKEN too. Notified by: kris Revision Changes Path 1.10 +1 -0 ports/devel/py-ansistyle/Makefile 1.3 +1 -0 ports/devel/py-ll-url/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 20:50:00 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5EB716A41F; Sat, 29 Oct 2005 20:50:00 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from mail.grupos.com.br (mail.grupos.com.br [200.203.183.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A04C43D48; Sat, 29 Oct 2005 20:50:00 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from corp.grupos.com.br (unknown [150.162.166.55]) by mail.grupos.com.br (Postfix) with ESMTP id 4F9FE11E00E; Sat, 29 Oct 2005 18:49:59 -0200 (BRST) Received: from [192.168.1.3] (200-193-76-39.fnsce7006.dsl.brasiltelecom.net.br [200.193.76.39]) (Authenticated sender: marcus@corp.grupos.com.br) by corp.grupos.com.br (Postfix) with ESMTP id 51600551A; Sat, 29 Oct 2005 18:49:58 -0200 (BRST) Message-ID: <4363E075.5090001@FreeBSD.org> Date: Sat, 29 Oct 2005 18:49:57 -0200 From: Marcus Alves Grando User-Agent: Thunderbird 1.4.1 (X11/20051006) MIME-Version: 1.0 To: Kris Kennaway References: <200510292011.j9TKBv1r060151@repoman.freebsd.org> <20051029202114.GB50253@xor.obsecurity.org> <4363DCD5.9090403@FreeBSD.org> <20051029203846.GA50637@xor.obsecurity.org> In-Reply-To: <20051029203846.GA50637@xor.obsecurity.org> X-Enigmail-Version: 0.93.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: f@xor.obsecurity.org, cvs-ports@FreeBSD.org, "Choe, Cheng-Dae" , cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/py-ansistyle 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, 29 Oct 2005 20:50:01 -0000 Marked as BROKEN too. Thanks Kris Kennaway wrote: > On Sat, Oct 29, 2005 at 06:34:29PM -0200, Marcus Alves Grando wrote: >> Kris Kennaway wrote: >>> On Sat, Oct 29, 2005 at 08:11:57PM +0000, Marcus Alves Grando wrote: >>>> mnag 2005-10-29 20:11:57 UTC >>>> >>>> FreeBSD ports repository >>>> >>>> Modified files: >>>> devel/py-ansistyle Makefile >>>> Log: >>>> DEPRECATED and Schedule for remove >>> This was also reported to the maintainer as being broken. >> Maintainer say devel/py-ll-core now include devel/py-ansistyle and >> py-ll-url. Because that, port marked as DEPRECATED. > > Yes, and currently the port *does not build* (as a result). > Therefore, instead of allowing the builds to continue to fail for the > next few months, it should also be marked BROKEN. > > Kris -- 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 Sat Oct 29 21:02:58 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8905616A420; Sat, 29 Oct 2005 21:02:58 +0000 (GMT) (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 512FF43D48; Sat, 29 Oct 2005 21:02:55 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TL2tjH069973; Sat, 29 Oct 2005 21:02:55 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TL2tUP069972; Sat, 29 Oct 2005 21:02:55 GMT (envelope-from mnag) Message-Id: <200510292102.j9TL2tUP069972@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 21:02: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/pear-Net_Cyrus 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, 29 Oct 2005 21:02:58 -0000 mnag 2005-10-29 21:02:55 UTC FreeBSD ports repository Modified files: mail/pear-Net_Cyrus Makefile distinfo Log: Update to 0.3.1 PR: 88118 Submitted by: Attila Nagy (maintainer) Revision Changes Path 1.2 +1 -1 ports/mail/pear-Net_Cyrus/Makefile 1.2 +2 -2 ports/mail/pear-Net_Cyrus/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 21:09:02 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC0D116A41F; Sat, 29 Oct 2005 21:09:02 +0000 (GMT) (envelope-from lkoeller@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9460D43D46; Sat, 29 Oct 2005 21:09:02 +0000 (GMT) (envelope-from lkoeller@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TL92M7070210; Sat, 29 Oct 2005 21:09:02 GMT (envelope-from lkoeller@repoman.freebsd.org) Received: (from lkoeller@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TL92LP070209; Sat, 29 Oct 2005 21:09:02 GMT (envelope-from lkoeller) Message-Id: <200510292109.j9TL92LP070209@repoman.freebsd.org> From: Lars Koeller Date: Sat, 29 Oct 2005 21:09: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/grace Makefile ports/math/grace/files patch-ag X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 21:09:03 -0000 lkoeller 2005-10-29 21:09:02 UTC FreeBSD ports repository Modified files: math/grace Makefile Added files: math/grace/files patch-ag Log: o) Fix error when using funktion from shared libraries (dlopen, dlerror) (see http://lists.freebsd.org/pipermail/freebsd-questions/2005-October/102547.html) PR: - Submitted by: "Rob" Revision Changes Path 1.45 +1 -1 ports/math/grace/Makefile 1.3 +12 -0 ports/math/grace/files/patch-ag (new) From owner-cvs-all@FreeBSD.ORG Sat Oct 29 21:25:20 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82FE616A41F; Sat, 29 Oct 2005 21:25:20 +0000 (GMT) (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 3FB4843D45; Sat, 29 Oct 2005 21:25:20 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TLPKOR070799; Sat, 29 Oct 2005 21:25:20 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TLPKK8070798; Sat, 29 Oct 2005 21:25:20 GMT (envelope-from thierry) Message-Id: <200510292125.j9TLPKK8070798@repoman.freebsd.org> From: Thierry Thomas Date: Sat, 29 Oct 2005 21:25: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/sysutils/unidesc 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, 29 Oct 2005 21:25:20 -0000 thierry 2005-10-29 21:25:19 UTC FreeBSD ports repository Modified files: sysutils/unidesc Makefile distinfo Log: Upgrade to 2.15. Changelog at . Revision Changes Path 1.5 +1 -1 ports/sysutils/unidesc/Makefile 1.4 +2 -2 ports/sysutils/unidesc/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 21:37:16 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CD7E16A41F; Sat, 29 Oct 2005 21:37:16 +0000 (GMT) (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 277A443D46; Sat, 29 Oct 2005 21:37:16 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TLbGJK071239; Sat, 29 Oct 2005 21:37:16 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TLbGlh071238; Sat, 29 Oct 2005 21:37:16 GMT (envelope-from mnag) Message-Id: <200510292137.j9TLbGlh071238@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 21: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/multimedia/exportvideo Makefile ports/multimedia/exportvideo/files patch-configure patch-libmpeg3_configure patch-quicktime_configure patch-video_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, 29 Oct 2005 21:37:16 -0000 mnag 2005-10-29 21:37:16 UTC FreeBSD ports repository Modified files: multimedia/exportvideo Makefile multimedia/exportvideo/files patch-configure patch-libmpeg3_configure patch-quicktime_configure patch-video_Makefile Log: Respect LOCALBASE PR: 88075 Submitted by: "Frank W. Josellis" (maintainer) Revision Changes Path 1.3 +2 -1 ports/multimedia/exportvideo/Makefile 1.2 +19 -8 ports/multimedia/exportvideo/files/patch-configure 1.2 +15 -4 ports/multimedia/exportvideo/files/patch-libmpeg3_configure 1.2 +15 -4 ports/multimedia/exportvideo/files/patch-quicktime_configure 1.2 +3 -9 ports/multimedia/exportvideo/files/patch-video_Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 21:43:04 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0BC916A41F; Sat, 29 Oct 2005 21:43:04 +0000 (GMT) (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 59E3E43D45; Sat, 29 Oct 2005 21:43:04 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TLh4po071490; Sat, 29 Oct 2005 21:43:04 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TLh48U071489; Sat, 29 Oct 2005 21:43:04 GMT (envelope-from mnag) Message-Id: <200510292143.j9TLh48U071489@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 21:43: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/multimedia/exportvideo Makefile ports/multimedia/exportvideo/files patch-libmpeg3_configure patch-quicktime_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: Sat, 29 Oct 2005 21:43:04 -0000 mnag 2005-10-29 21:43:04 UTC FreeBSD ports repository Modified files: multimedia/exportvideo Makefile multimedia/exportvideo/files patch-libmpeg3_configure patch-quicktime_configure Log: Fix my last commit when use ${LOCALBASE} Revision Changes Path 1.4 +5 -0 ports/multimedia/exportvideo/Makefile 1.3 +1 -12 ports/multimedia/exportvideo/files/patch-libmpeg3_configure 1.3 +1 -12 ports/multimedia/exportvideo/files/patch-quicktime_configure From owner-cvs-all@FreeBSD.ORG Sat Oct 29 21:47:19 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E17D16A41F; Sat, 29 Oct 2005 21:47:19 +0000 (GMT) (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 6596343D5F; Sat, 29 Oct 2005 21:47:16 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TLlG21071681; Sat, 29 Oct 2005 21:47:16 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TLlGsC071680; Sat, 29 Oct 2005 21:47:16 GMT (envelope-from hq) Message-Id: <200510292147.j9TLlGsC071680@repoman.freebsd.org> From: Herve Quiroz Date: Sat, 29 Oct 2005 21:47: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/deskutils/freemind 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, 29 Oct 2005 21:47:19 -0000 hq 2005-10-29 21:47:16 UTC FreeBSD ports repository Modified files: deskutils/freemind Makefile distinfo pkg-plist Log: - Update to 0.8.0 *final* - Bump PORTEPOCH PR: 88183 Submitted by: maintainer Revision Changes Path 1.4 +4 -3 ports/deskutils/freemind/Makefile 1.3 +2 -2 ports/deskutils/freemind/distinfo 1.3 +4 -1 ports/deskutils/freemind/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Oct 29 22:07:40 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5573F16A41F; Sat, 29 Oct 2005 22:07:40 +0000 (GMT) (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 10FCD43D46; Sat, 29 Oct 2005 22:07:40 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TM7dAH072475; Sat, 29 Oct 2005 22:07:39 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TM7dNX072474; Sat, 29 Oct 2005 22:07:39 GMT (envelope-from mnag) Message-Id: <200510292207.j9TM7dNX072474@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 22:07: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/chinese/cdict5 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, 29 Oct 2005 22:07:40 -0000 mnag 2005-10-29 22:07:39 UTC FreeBSD ports repository Modified files: chinese/cdict5 Makefile Log: Mark as DEPRECATED PR: 88030 Submitted by: Jean Milanez Melo Revision Changes Path 1.7 +6 -3 ports/chinese/cdict5/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 22:13:42 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EB8616A41F; Sat, 29 Oct 2005 22:13:42 +0000 (GMT) (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 A0EC343D49; Sat, 29 Oct 2005 22:13:40 +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 8AD281A3C1A; Sat, 29 Oct 2005 15:13:40 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id A301651494; Sat, 29 Oct 2005 18:13:39 -0400 (EDT) Date: Sat, 29 Oct 2005 18:13:39 -0400 From: Kris Kennaway To: Marcus Alves Grando Message-ID: <20051029221339.GA19766@xor.obsecurity.org> References: <200510292207.j9TM7dNX072474@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UlVJffcvxoiEqYs2" Content-Disposition: inline In-Reply-To: <200510292207.j9TM7dNX072474@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/chinese/cdict5 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, 29 Oct 2005 22:13:42 -0000 --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 29, 2005 at 10:07:39PM +0000, Marcus Alves Grando wrote: > mnag 2005-10-29 22:07:39 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > chinese/cdict5 Makefile=20 > Log: > Mark as DEPRECATED > =20 > PR: 88030 > Submitted by: Jean Milanez Melo Again, isn't this now going to start causing spurious pointyhat failures since you commented out IGNORE? Kris > | -.if !exists(${DISTDIR}/cdict5-file.tgz) > | -IGNORE=3D "You have to obtain 21st Century Dictionary v5.0 data files = yourself" > | -.endif > | +#.if !exists(${DISTDIR}/cdict5-file.tgz) > | +#IGNORE=3D "You have to obtain 21st Century Dictionary v5.0 data files= yourself" > | +#.endif --UlVJffcvxoiEqYs2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDY/QSWry0BWjoQKURAg/8AKDzqpmlf8eN8RMcK2gO1/y6cEg0SwCg4IYh dlclTBWsvY5wcwA6g8rWwB8= =CwMD -----END PGP SIGNATURE----- --UlVJffcvxoiEqYs2-- From owner-cvs-all@FreeBSD.ORG Sat Oct 29 22:27:45 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFEC516A41F; Sat, 29 Oct 2005 22:27:45 +0000 (GMT) (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 0AA3F43D49; Sat, 29 Oct 2005 22:27:45 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TMRiDT073170; Sat, 29 Oct 2005 22:27:44 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TMRipd073169; Sat, 29 Oct 2005 22:27:44 GMT (envelope-from mnag) Message-Id: <200510292227.j9TMRipd073169@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 22: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/chinese/cdict5 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, 29 Oct 2005 22:27:46 -0000 mnag 2005-10-29 22:27:44 UTC FreeBSD ports repository Modified files: chinese/cdict5 Makefile Log: Mark as IGNORE too. Notified by: kris Revision Changes Path 1.8 +1 -0 ports/chinese/cdict5/Makefile From owner-cvs-all@FreeBSD.ORG Sat Oct 29 22:40:01 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FF4016A420; Sat, 29 Oct 2005 22:40:01 +0000 (GMT) (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 CB67843D4C; Sat, 29 Oct 2005 22:40:00 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TMe01o073624; Sat, 29 Oct 2005 22:40:00 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TMe0Ne073623; Sat, 29 Oct 2005 22:40:00 GMT (envelope-from mnag) Message-Id: <200510292240.j9TMe0Ne073623@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 22: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/math/graphthing 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, 29 Oct 2005 22:40:01 -0000 mnag 2005-10-29 22:40:00 UTC FreeBSD ports repository Modified files: math/graphthing Makefile distinfo Log: Update to 1.2 PR: 88192 Submitted by: KATO Tsuguru Revision Changes Path 1.23 +1 -1 ports/math/graphthing/Makefile 1.11 +2 -2 ports/math/graphthing/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 22:55:24 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C68616A41F; Sat, 29 Oct 2005 22:55:24 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id B902143D45; Sat, 29 Oct 2005 22:55:23 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr15.xs4all.nl (8.13.3/8.13.3) with ESMTP id j9TMtJ3C093686; Sun, 30 Oct 2005 00:55:20 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.13.4/8.13.3) with ESMTP id j9TMtJ64009766; Sun, 30 Oct 2005 00:55:19 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.13.4/8.13.1/Submit) id j9TMtJMp009765; Sun, 30 Oct 2005 00:55:19 +0200 (CEST) (envelope-from wb) Date: Sun, 30 Oct 2005 00:55:19 +0200 From: Wilko Bulte To: Ceri Davies , Brooks Davis , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20051029225519.GA9726@freebie.xs4all.nl> References: <200510282247.j9SMlepi063537@repoman.freebsd.org> <20051029184532.GP99857@submonkey.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051029184532.GP99857@submonkey.net> X-OS: FreeBSD 6.0-RC1 User-Agent: Mutt/1.5.9i X-Virus-Scanned: by XS4ALL Virus Scanner Cc: Subject: Re: cvs commit: src/usr.sbin/vipw vipw.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, 29 Oct 2005 22:55:24 -0000 On Sat, Oct 29, 2005 at 07:45:32PM +0100, Ceri Davies wrote.. > On Fri, Oct 28, 2005 at 10:47:40PM +0000, Brooks Davis wrote: > > brooks 2005-10-28 22:47:40 UTC > > > > FreeBSD src repository > > > > Modified files: > > usr.sbin/vipw vipw.8 > > Log: > > s/insure/ensure/ in previous commit. My dictionary and m-w.com say they > > are synonymous, but ensure seems slightly closer and does not have the > > connotation of buying insurance. > > > > Reported by: Jason McIntyre > > Hah! I was going to whine about this too, but let it slide (again, due > to the dictionary telling me it was OK). Good to see I have cover for > those days where I don't feel all that pedantic :) s/insure/make sure/ :-) -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Sat Oct 29 23:22:07 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1532016A41F; Sat, 29 Oct 2005 23:22:07 +0000 (GMT) (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 C4ED943D46; Sat, 29 Oct 2005 23:22:06 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TNM64d075152; Sat, 29 Oct 2005 23:22:06 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TNM6d8075151; Sat, 29 Oct 2005 23:22:06 GMT (envelope-from mnag) Message-Id: <200510292322.j9TNM6d8075151@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 23:22: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/math/yacas 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, 29 Oct 2005 23:22:07 -0000 mnag 2005-10-29 23:22:06 UTC FreeBSD ports repository Modified files: math/yacas Makefile distinfo Log: Update to 1.0.59 PR: 88193 Submitted by: KATO Tsuguru Revision Changes Path 1.29 +1 -1 ports/math/yacas/Makefile 1.15 +2 -2 ports/math/yacas/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 23:38:11 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0677E16A41F; Sat, 29 Oct 2005 23:38:11 +0000 (GMT) (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 B5B4C43D45; Sat, 29 Oct 2005 23:38:10 +0000 (GMT) (envelope-from mnag@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TNcALc075678; Sat, 29 Oct 2005 23:38:10 GMT (envelope-from mnag@repoman.freebsd.org) Received: (from mnag@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TNcAda075677; Sat, 29 Oct 2005 23:38:10 GMT (envelope-from mnag) Message-Id: <200510292338.j9TNcAda075677@repoman.freebsd.org> From: Marcus Alves Grando Date: Sat, 29 Oct 2005 23:38: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/ghostscript-afpl Makefile.inc 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, 29 Oct 2005 23:38:11 -0000 mnag 2005-10-29 23:38:10 UTC FreeBSD ports repository Modified files: print/ghostscript-afpl Makefile.inc distinfo Log: Update to 8.53 PR: 88194 Submitted by: KATO Tsuguru Revision Changes Path 1.19 +2 -2 ports/print/ghostscript-afpl/Makefile.inc 1.62 +2 -2 ports/print/ghostscript-afpl/distinfo From owner-cvs-all@FreeBSD.ORG Sat Oct 29 23:44:17 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64B7316A41F; Sat, 29 Oct 2005 23:44:17 +0000 (GMT) (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 1FFEE43D45; Sat, 29 Oct 2005 23:44:17 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TNiHBr075980; Sat, 29 Oct 2005 23:44:17 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TNiH6T075979; Sat, 29 Oct 2005 23:44:17 GMT (envelope-from oliver) Message-Id: <200510292344.j9TNiH6T075979@repoman.freebsd.org> From: Oliver Lehmann Date: Sat, 29 Oct 2005 23:44: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/ember 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, 29 Oct 2005 23:44:17 -0000 oliver 2005-10-29 23:44:16 UTC FreeBSD ports repository Modified files: games/ember Makefile distinfo Log: switch from tar.bz2 to tar.gz which got freshly released. The tar format got changed from tar-pax (POSIX 1003.1-2001) to ustar for supporting long filenames on FreeBSD 4 Revision Changes Path 1.6 +2 -2 ports/games/ember/Makefile 1.4 +2 -2 ports/games/ember/distinfo