diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2015-08-18 11:00:57 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2015-08-18 11:00:57 +0000 |
commit | bfbc1e51b7139d49dc1522a1da94b02b732232c1 (patch) | |
tree | ef2ac534a3ac13f5ed200a8d98a2c397a0db9dc2 /CHANGES | |
parent | 23ee2a7d628e74980199fb95b27ce242a5f718a6 (diff) | |
download | ports-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-- | CHANGES | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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 |