<pre style='margin:0'>
Ken (kencu) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/c60d2c7b5164e022353389cbab8e33e4eb8de18a">https://github.com/macports/macports-ports/commit/c60d2c7b5164e022353389cbab8e33e4eb8de18a</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 c60d2c7b516 clang-3.4: remove lion workaround
</span>c60d2c7b516 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit c60d2c7b5164e022353389cbab8e33e4eb8de18a
</span>Author: Ken Cunningham <kencu@macports.org>
AuthorDate: Sun Jun 27 11:12:00 2021 -0700

<span style='display:block; white-space:pre;color:#404040;'>    clang-3.4: remove lion workaround
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    at one time clang-3.4 required ICU on these older systems,
</span><span style='display:block; white-space:pre;color:#404040;'>    and ICU would not build with the system compiler on lion,
</span><span style='display:block; white-space:pre;color:#404040;'>    so a workaround was added. That workaround was later removed when
</span><span style='display:block; white-space:pre;color:#404040;'>    the need for ICU was removed (for older systems).
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    So this block can be restored to it's previous state.
</span>---
 lang/llvm-3.4/Portfile | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/lang/llvm-3.4/Portfile b/lang/llvm-3.4/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index ba60a996479..96ddec34ba5 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/lang/llvm-3.4/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/lang/llvm-3.4/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -76,17 +76,16 @@ if {${subport} eq "llvm-${llvm_version}"} {
</span>     }
 }
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-if {${os.platform} eq "darwin" && ${os.major} < 12 && ${cxx_stdlib} eq "libc++"} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    if {${os.major} < 11} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        configure.cxx_stdlib    libstdc++
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        # Have to also use bootstrap versions of deps that use libstdc++ in
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        # order to be able to build libc++.
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        depends_lib-replace port:python27 port:python27-bootstrap \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                            port:ncurses port:ncurses-bootstrap
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {${os.platform} eq "darwin" && ${os.major} < 11 && ${cxx_stdlib} eq "libc++"} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.cxx_stdlib    libstdc++
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    # Have to also use bootstrap versions of deps that use libstdc++ in
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    # order to be able to build libc++.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    depends_lib-replace         port:python27 port:python27-bootstrap \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                port:ncurses port:ncurses-bootstrap
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span>     configure.cppflags-prepend  -I${bootstrap_prefix}/include
     configure.ldflags-prepend   -L${bootstrap_prefix}/lib
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    configure.env-append    PATH=${bootstrap_prefix}/bin:$::env(PATH)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.env-append        PATH=${bootstrap_prefix}/bin:$::env(PATH)
</span> }
 
 version                 ${llvm_version}.2
</pre><pre style='margin:0'>

</pre>