<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/09ce53b1edcfdc3367abf46f92e75649b7652a6f">https://github.com/macports/macports-ports/commit/09ce53b1edcfdc3367abf46f92e75649b7652a6f</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 09ce53b1edc xxhash: fix Leopard build issue with compiler test
</span>09ce53b1edc is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 09ce53b1edcfdc3367abf46f92e75649b7652a6f
</span>Author: Ken Cunningham <kencu@macports.org>
AuthorDate: Mon Sep 6 13:19:27 2021 -0700

<span style='display:block; white-space:pre;color:#404040;'>    xxhash: fix Leopard build issue with compiler test
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    the problem is more related to usng older gcc versions
</span><span style='display:block; white-space:pre;color:#404040;'>    than it is related to the system version -- it shows up
</span><span style='display:block; white-space:pre;color:#404040;'>    on any system when an older gcc is used. So we will
</span><span style='display:block; white-space:pre;color:#404040;'>    refine this fix to a compiler test to cover all those
</span><span style='display:block; white-space:pre;color:#404040;'>    other scenarios
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    no PR as I know marius doesn't have the system to test this
</span><span style='display:block; white-space:pre;color:#404040;'>    and no current systems or builds are affected
</span>---
 devel/xxhash/Portfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/devel/xxhash/Portfile b/devel/xxhash/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index e45a571736d..9959feaa02c 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/devel/xxhash/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/devel/xxhash/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -17,7 +17,7 @@ checksums           rmd160  b4677ce900c5ef75827fb98f5b0c2832f54a62d6 \
</span>                     sha256  e6300c1846c817940982e06e1e8912c26e848fa0f1e856f5e5ccacdee0f9d981 \
                     size    145921
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-if {${os.major} < 10} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if { [string match "*gcc-4.*" ${configure.compiler}] } {
</span>     # See https://trac.macports.org/ticket/60710#no1 for why this is needed.
     patchfiles      patch-Makefile.diff
 }
</pre><pre style='margin:0'>

</pre>