<pre style='margin:0'>
Marcus Calhoun-Lopez (MarcusCalhoun-Lopez) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/8bf582bffa86bc69aeb6d2663c9821975636fce2">https://github.com/macports/macports-ports/commit/8bf582bffa86bc69aeb6d2663c9821975636fce2</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 8bf582bffa86bc69aeb6d2663c9821975636fce2
</span>Author: Marcus Calhoun-Lopez <mcalhoun@macports.org>
AuthorDate: Fri Nov 1 10:10:44 2019 -0700

<span style='display:block; white-space:pre;color:#404040;'>    redis: use the right compiler
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    See https://trac.macports.org/wiki/UsingTheRightCompiler
</span>---
 databases/redis/Portfile | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/databases/redis/Portfile b/databases/redis/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 36069e0..dd79ee0 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/databases/redis/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/databases/redis/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -31,6 +31,10 @@ post-patch {
</span> 
 use_configure       no
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# see ${worksrcpath}/deps/jemalloc/Makefile
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+compiler.cxx_standard   2014
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+configure.cxx-append    -std=c++14
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> # https://trac.macports.org/ticket/59245
 # Most likely related to the 'stack-check' issue.
 # To be reviewed once Xcode 11.2 comes out.
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -38,10 +42,12 @@ compiler.blacklist-append {clang > 1099}
</span> 
 if {![variant_isset universal]} {
     build.args-append \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        CC="${configure.cc} [get_canonical_archflags cc]"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        CC="${configure.cc} [get_canonical_archflags cc]" \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        CXX="${configure.cxx} [get_canonical_archflags cxx]"
</span> } else {
     foreach arch ${configure.universal_archs} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        lappend merger_build_args(${arch}) CC='${configure.cc} -arch ${arch}'
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        lappend merger_build_args(${arch}) CC='${configure.cc} -arch ${arch}' \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                           CXX='${configure.cxx} -arch ${arch}'
</span>     }
 }
 
</pre><pre style='margin:0'>

</pre>