aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2016-06-25 22:23:37 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2016-06-25 22:23:37 +0000
commit5c332ae6cbbed01c4458dcba3fa609e3f0875a6c (patch)
tree0a5a29224abc1c4694b963b5f6873288983315d2 /CHANGES
parent6e3401c2ab021eb9deb5fd010b6150a4a1c54fb5 (diff)
downloadports-5c332ae6cbbed01c4458dcba3fa609e3f0875a6c.tar.gz
ports-5c332ae6cbbed01c4458dcba3fa609e3f0875a6c.zip
Add an opt_CMAKE_BOOL options helper.
SOMEOPT_CMAKE_BOOL= WITH_FOO BAR expands to: -DWITH_FOO:BOOL=true -DBAR:BOOL=true or -DWITH_FOO:BOOL=false -DBAR:BOOL=false PR: 210576 Approved by: portmgr (mat)
Notes
Notes: svn path=/head/; revision=417497
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES12
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 8d546067fb21..d87bebf0e052 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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