<pre style='margin:0'>
Chris Jones (cjones051073) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/0e16918a86d63d8ff2d9a2729f8ece5d73a2f514">https://github.com/macports/macports-ports/commit/0e16918a86d63d8ff2d9a2729f8ece5d73a2f514</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'> new 0e16918a86d root6: remove unneccesary, and broken, compiler specialisation for Darwin12 and older
</span>0e16918a86d is described below
<span style='display:block; white-space:pre;color:#808000;'>commit 0e16918a86d63d8ff2d9a2729f8ece5d73a2f514
</span>Author: Chris Jones <jonesc@macports.org>
AuthorDate: Wed Sep 23 16:49:14 2020 +0100
<span style='display:block; white-space:pre;color:#404040;'> root6: remove unneccesary, and broken, compiler specialisation for Darwin12 and older
</span>---
science/root6/Portfile | 14 +++-----------
1 file changed, 3 insertions(+), 11 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/science/root6/Portfile b/science/root6/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 08dfbdf20b0..8e3fcc13ce2 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/science/root6/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/science/root6/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -171,22 +171,14 @@ configure.args-append \
</span> # https://root-forum.cern.ch/t/v6-22-00-build-error-on-macos/40239
configure.args-append -Druntime_cxxmodules=OFF
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# Enable C++17 on 10.14 (Darwin18+)
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-# C++14 on 10.9 (Darwin13+)
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-# C++11 otherwise
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Enable C++17 on 10.14 and newer (Darwin18+)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# C++14 otherwise
</span> if { ${os.major} >= 18 } {
compiler.cxx_standard 2017
configure.args-replace -Dcxx17=OFF -Dcxx17=ON
<span style='display:block; white-space:pre;background:#ffe0e0;'>- compiler.blacklist-append macports-clang-5.0
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-} elseif { ${os.major} >= 13 } {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+} else {
</span> compiler.cxx_standard 2014
configure.args-replace -Dcxx14=OFF -Dcxx14=ON
<span style='display:block; white-space:pre;background:#ffe0e0;'>- compiler.blacklist-append macports-clang-5.0
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-} else {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- # force use of MP clang 5.0
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- compiler.blacklist-append clang {macports-clang-[7-9].0}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- compiler.fallback macports-clang-5.0
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- compiler.cxx_standard 2011
</span> }
# Configure the C++ runtime to use
</pre><pre style='margin:0'>
</pre>