diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2016-06-25 22:23:37 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2016-06-25 22:23:37 +0000 |
commit | 5c332ae6cbbed01c4458dcba3fa609e3f0875a6c (patch) | |
tree | 0a5a29224abc1c4694b963b5f6873288983315d2 /CHANGES | |
parent | 6e3401c2ab021eb9deb5fd010b6150a4a1c54fb5 (diff) |
Notes
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -10,6 +10,18 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20160625: +AUTHOR: adamw@FreeBSD.org + + A new ${opt}_CMAKE_BOOL OPTIONS helper has been added. Instead of: + + FOO_CMAKE_ON= -DWITH_FOO:BOOL=YES -DWITH_BAR:BOOL=YES + FOO_CMAKE_OFF= -DWITH_FOO:BOOL=NO -DWITH_BAR:BOOL=NO + + you can use this shortcut: + + SOMEOPT_CMAKE_BOOL= WITH_FOO WITH_BAR + 20160525: AUTHOR: mat@FreeBSD.org |