<pre style='margin:0'>
Daniel J. Luke (danielluke) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/f9cc4c1821d72f5da97e6d20c019db78c5d4a9f2">https://github.com/macports/macports-ports/commit/f9cc4c1821d72f5da97e6d20c019db78c5d4a9f2</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 f9cc4c1821d nmap: fix version comparison
</span>f9cc4c1821d is described below

<span style='display:block; white-space:pre;color:#808000;'>commit f9cc4c1821d72f5da97e6d20c019db78c5d4a9f2
</span>Author: Daniel J. Luke <dluke@macports.org>
AuthorDate: Wed Jul 31 11:05:27 2024 -0400

<span style='display:block; white-space:pre;color:#404040;'>    nmap: fix version comparison
</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/ticket/70464
</span>---
 net/nmap/Portfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/net/nmap/Portfile b/net/nmap/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 2efcc4a0603..5643b963510 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/net/nmap/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/net/nmap/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -55,7 +55,7 @@ configure.args    --without-zenmap \
</span> # https://trac.macports.org/ticket/58837
 # build system does not pass the stdlib on the link line resulting in link errors
 # for some build configurations using non-default stdlib settings
<span style='display:block; white-space:pre;background:#ffe0e0;'>-if {${os.platform} eq "darwin" && ${os.version} < 13} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {${os.platform} eq "darwin" && ${os.major} < 13} {
</span>   if {[string match *clang* ${configure.cxx}] && ${configure.cxx_stdlib} ne ""} {
     configure.ldflags-append -stdlib=${configure.cxx_stdlib}
   }
</pre><pre style='margin:0'>

</pre>