diff options
author | bapt <bapt@FreeBSD.org> | 2014-10-03 16:35:28 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-10-03 16:35:28 +0800 |
commit | 9390c1c196fba9bf82f756487cec9a8c80c3ce5f (patch) | |
tree | fcef6bf0f553c96f07198bc98e46cb98fb1223e8 | |
parent | 96db3ecbc7b21e9fe619d7e82c0defd072876169 (diff) | |
download | freebsd-ports-gnome-9390c1c196fba9bf82f756487cec9a8c80c3ce5f.tar.gz freebsd-ports-gnome-9390c1c196fba9bf82f756487cec9a8c80c3ce5f.tar.zst freebsd-ports-gnome-9390c1c196fba9bf82f756487cec9a8c80c3ce5f.zip |
Switch to WITH_NEW_XORG for all supported version of FreeBSD by default
-rw-r--r-- | Mk/bsd.port.mk | 6 | ||||
-rw-r--r-- | UPDATING | 15 |
2 files changed, 17 insertions, 4 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 0a6defdf3e25..2561d18ebf57 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1213,12 +1213,10 @@ _OSVERSION_MAJOR= ${OSVERSION:C/([0-9]?[0-9])([0-9][0-9])[0-9]{3}/\1/} # 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) @@ -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 |