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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/7ed0ec72f1bad989c7c3573f391ac043d3256dcd">https://github.com/macports/macports-ports/commit/7ed0ec72f1bad989c7c3573f391ac043d3256dcd</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 7ed0ec7  highlight: Fix build on libstdc++ systems
</span>7ed0ec7 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 7ed0ec72f1bad989c7c3573f391ac043d3256dcd
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Sun Oct 14 14:47:12 2018 -0500

<span style='display:block; white-space:pre;color:#404040;'>    highlight: Fix build on libstdc++ systems
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    There is no need to add the -stdlib flag to configure.cxxflags; MacPorts
</span><span style='display:block; white-space:pre;color:#404040;'>    does that automatically. There is, however, for this project, a need to
</span><span style='display:block; white-space:pre;color:#404040;'>    add it to configure.ldflags.
</span>---
 textproc/highlight/Portfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/textproc/highlight/Portfile b/textproc/highlight/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 3791e05..d984ebb 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/textproc/highlight/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/textproc/highlight/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -32,7 +32,7 @@ use_configure       no
</span> build.target        cli lib
 
 if {[string match *clang* ${configure.cxx}]} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    configure.cxxflags-append -stdlib=${configure.cxx_stdlib}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.ldflags-append -stdlib=${configure.cxx_stdlib}
</span> }
 configure.cxxflags-append -std=c++11
 
</pre><pre style='margin:0'>

</pre>