aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2015-08-18 11:00:57 +0000
committerMathieu Arnold <mat@FreeBSD.org>2015-08-18 11:00:57 +0000
commitbfbc1e51b7139d49dc1522a1da94b02b732232c1 (patch)
treeef2ac534a3ac13f5ed200a8d98a2c397a0db9dc2 /CHANGES
parent23ee2a7d628e74980199fb95b27ce242a5f718a6 (diff)
downloadports-bfbc1e51b7139d49dc1522a1da94b02b732232c1.tar.gz
ports-bfbc1e51b7139d49dc1522a1da94b02b732232c1.zip
Introduce <opt>_IMPLIES and <opt>_PREVENTS to register dependencies, or
conflicts, between options. PR: 191144 Submitted by: adamw Sponsored by: Absolight
Notes
Notes: svn path=/head/; revision=394573
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES14
1 files changed, 14 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 76cc764a9bef..45d5a784ed9c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,20 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
+20150818:
+AUTHOR: mat@FreeBSD.org
+
+ <opt>_IMPLIES and <opt>_PREVENTS have been introduced to register dependency,
+ or conflicts between options.
+
+ OPTIONS_DEFINE= FOO BAR BAZ
+
+ FOO_IMPLIES= BAR
+ BAZ_PREVENTS= BAR
+
+ If the FOO option is selected, the BAR option will be enabled as well. If
+ the BAZ and BAR options are both enabled, an error will be given.
+
20150817:
AUTHOR: mat@FreeBSD.org