From owner-svn-ports-all@FreeBSD.ORG Fri Oct 3 08:38:09 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A04A6C4; Fri, 3 Oct 2014 08:38:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E086EACD; Fri, 3 Oct 2014 08:38:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s938c8nB032866; Fri, 3 Oct 2014 08:38:08 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s938c8sn032861; Fri, 3 Oct 2014 08:38:08 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410030838.s938c8sn032861@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 3 Oct 2014 08:38:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r369877 - in branches/2014Q4: . Mk X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2014 08:38:09 -0000 Author: bapt Date: Fri Oct 3 08:38:08 2014 New Revision: 369877 URL: https://svnweb.freebsd.org/changeset/ports/369877 QAT: https://qat.redports.org/buildarchive/r369877/ Log: MFH: r369875 Switch to WITH_NEW_XORG for all supported version of FreeBSD by default Modified: branches/2014Q4/Mk/bsd.port.mk branches/2014Q4/UPDATING Directory Properties: branches/2014Q4/ (props changed) Modified: branches/2014Q4/Mk/bsd.port.mk ============================================================================== --- branches/2014Q4/Mk/bsd.port.mk Fri Oct 3 08:36:17 2014 (r369876) +++ branches/2014Q4/Mk/bsd.port.mk Fri Oct 3 08:38:08 2014 (r369877) @@ -1217,12 +1217,10 @@ _OSVERSION_MAJOR= ${OSVERSION:C/([0-9]?[ # Enable new xorg for FreeBSD versions after Radeon KMS was imported unless # WITHOUT_NEW_XORG is set. -.if ${OSVERSION} >= 902510 -. if !defined(WITHOUT_NEW_XORG) +.if !defined(WITHOUT_NEW_XORG) WITH_NEW_XORG?= yes -. else +.else .undef WITH_NEW_XORG -. endif .endif # Only define tools here (for transition period with between pkg tools) Modified: branches/2014Q4/UPDATING ============================================================================== --- branches/2014Q4/UPDATING Fri Oct 3 08:36:17 2014 (r369876) +++ branches/2014Q4/UPDATING Fri Oct 3 08:38:08 2014 (r369877) @@ -5,6 +5,21 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20141003: + AFFECTS: xorg users + AUTHOR: bapt@FreeBSD.org + + The WITH_NEW_XORG setting has been activated by default on all versions + of FreeBSD, which allows us to have packages for xorg 1.12 and kde4. + + Please be aware that on systems that only support syscons + switching virtual terminals or exiting X + results in a black screen or the last image of their desktop + (like a screenshot) being presented. Commands can still be typed blindly. + + Most, if not all, systems should be using vt(4) and this can be enabled + by setting kern.vty=vt in /boot/loader.conf and reboot to activate. + 20141001: AFFECTS: xorg users AUTHOR: bapt@FreeBSD.org