aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoradamw <adamw@FreeBSD.org>2017-12-15 02:05:36 +0800
committerKoop Mast <kwm@rainbow-runner.nl>2018-02-04 06:08:46 +0800
commit66ef5f437029d12792885154b66d2bd0ae1253d8 (patch)
treecbed5fdeaece03a3b7cd3a6285843afdebab209f
parentf7e7dd391f65967a24f40b725b501c321201dc6f (diff)
downloadfreebsd-ports-gnome-66ef5f437029d12792885154b66d2bd0ae1253d8.tar.gz
freebsd-ports-gnome-66ef5f437029d12792885154b66d2bd0ae1253d8.tar.zst
freebsd-ports-gnome-66ef5f437029d12792885154b66d2bd0ae1253d8.zip
Add notice for soon-to-be-deprecated variables
-rw-r--r--CHANGES19
1 files changed, 19 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 920bfd75ddb4..a02654909f72 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,25 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
+20171214
+AUTHOT: adamw@FreeBSD.org
+
+ Support for some deprecated variables is going to be removed soon. If
+ you use any of the following constructs (usually in /etc/make.conf),
+ you must switch to the new incantations:
+
+ OLD NEW
+ ------------------------------- ------------------------------
+ WITH_[...] OPTIONS_SET= [...]
+ WITHOUT_[...] OPTIONS_UNSET= [...]
+ WITHOUT_NLS OPTIONS_UNSET= NLS
+ NOPORTDOCS OPTIONS_UNSET= DOCS
+ NOPORTEXAMPLES OPTIONS_UNSET= EXAMPLES
+ WITH_BDB_VER=[...] DEFAULT_VERSIONS+= bdb=[...]
+ OVERRIDE_LINUX_BASE_PORT=[...] DEFAULT_VERSIONS+= linux=[...]
+ WITH_OPENSSL_BASE DEFAULT_VERSIONS+= ssl=base
+ WITH_OPENSSL_PORT DEFAULT_VERSIONS+= ssl=port
+
20171130:
AUTHOR: mat@FreeBSD.org