<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/fcd8e75af470602fbd693a8accfb2c7105f9177b">https://github.com/macports/macports-ports/commit/fcd8e75af470602fbd693a8accfb2c7105f9177b</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 fcd8e75  mosh: fix build on older systems
</span>fcd8e75 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit fcd8e75af470602fbd693a8accfb2c7105f9177b
</span>Author: Ken Cunningham <kencu@macports.org>
AuthorDate: Wed Aug 22 08:11:51 2018 -0700

<span style='display:block; white-space:pre;color:#404040;'>    mosh: fix build on older systems
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    protobuf3-cpp builds without thread_local support
</span><span style='display:block; white-space:pre;color:#404040;'>    if a specific flag is added
</span>---
 net/mosh/Portfile | 5 +++++
 1 file changed, 5 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/net/mosh/Portfile b/net/mosh/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index d77c238..4e689a6 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/net/mosh/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/net/mosh/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -46,6 +46,11 @@ platform darwin {
</span>     configure.cxxflags-append -std=c++11
 }
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# force protobuf3-cpp into the no_threadlocal mode on older systems
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if { ${os.platform} eq "darwin" && ${os.major} < 11 } {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.cppflags-append -DGOOGLE_PROTOBUF_NO_THREADLOCAL
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> # Apple commoncrypto available 10.8 or later
 if {${os.platform} eq "darwin" && ${os.major} > 11} {
     configure.args-append \
</pre><pre style='margin:0'>

</pre>