summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick McLean <chutzpah@gentoo.org>2018-03-06 11:12:46 -0800
committerPatrick McLean <chutzpah@gentoo.org>2018-03-06 11:32:41 -0800
commit2e6883dc8ad13bd074b3346b7381e983ab7e190c (patch)
tree7c0f8aa62e58f7fa16d8a529000d11ee301431f6 /dev-util/boost-build/files
parentpackage.mask: Fixed nx mask. (diff)
downloadgentoo-2e6883dc8ad13bd074b3346b7381e983ab7e190c.tar.gz
gentoo-2e6883dc8ad13bd074b3346b7381e983ab7e190c.tar.bz2
gentoo-2e6883dc8ad13bd074b3346b7381e983ab7e190c.zip
dev-util/boost-build: Unkeyworded version bump to 1.66 (bug 630754)
Unkeyworded pending testing and review from boost project team. Bug: https://bugs.gentoo.org/630754 Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'dev-util/boost-build/files')
-rw-r--r--dev-util/boost-build/files/boost-build-1.66.0-add-none-feature-options.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-util/boost-build/files/boost-build-1.66.0-add-none-feature-options.patch b/dev-util/boost-build/files/boost-build-1.66.0-add-none-feature-options.patch
new file mode 100644
index 000000000000..fd86c9e2fc71
--- /dev/null
+++ b/dev-util/boost-build/files/boost-build-1.66.0-add-none-feature-options.patch
@@ -0,0 +1,26 @@
+diff --git a/tools/features/debug-feature.jam b/tools/features/debug-feature.jam
+index 04958f9a..38b6acf1 100644
+--- a/tools/features/debug-feature.jam
++++ b/tools/features/debug-feature.jam
+@@ -8,7 +8,7 @@
+ import feature ;
+
+ feature.feature debug-symbols
+- : on off
++ : on off none
+ : propagated ;
+
+ feature.feature profiling
+diff --git a/tools/features/optimization-feature.jam b/tools/features/optimization-feature.jam
+index 761f76f1..fb2a5dec 100644
+--- a/tools/features/optimization-feature.jam
++++ b/tools/features/optimization-feature.jam
+@@ -8,7 +8,7 @@
+ import feature ;
+
+ feature.feature optimization
+- : off speed space
++ : off none speed space
+ : propagated ;
+
+ feature.feature inlining