aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2017-12-14 18:05:36 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2017-12-14 18:05:36 +0000
commitb4d386888a4f20f7f2f26773b6af8313d1ad087c (patch)
treecd23aa339a4a33584d5c3fc7a604438515d3c225 /CHANGES
parent5d441c034b976ecdef9297f4be433db5a3d80651 (diff)
downloadports-b4d386888a4f20f7f2f26773b6af8313d1ad087c.tar.gz
ports-b4d386888a4f20f7f2f26773b6af8313d1ad087c.zip
Add notice for soon-to-be-deprecated variables
Notes
Notes: svn path=/head/; revision=456325
Diffstat (limited to 'CHANGES')
-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