<pre style='margin:0'>
Clemens Lang (neverpanic) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/1c483e276e41f88c0ccdd4f4defb412ad9591e06">https://github.com/macports/macports-base/commit/1c483e276e41f88c0ccdd4f4defb412ad9591e06</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 1c483e276 Update implicit func decl detection for new clangs
</span>1c483e276 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 1c483e276e41f88c0ccdd4f4defb412ad9591e06
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Fri May 26 00:18:36 2023 -0500

<span style='display:block; white-space:pre;color:#404040;'>    Update implicit func decl detection for new clangs
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Closes: https://trac.macports.org/ticket/67504
</span>---
 src/port1.0/portconfigure.tcl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/port1.0/portconfigure.tcl b/src/port1.0/portconfigure.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 2bf2a6abf..e23abfe3a 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/port1.0/portconfigure.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/port1.0/portconfigure.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1876,7 +1876,7 @@ proc portconfigure::check_implicit_function_declarations {} {
</span> 
             if {![catch {set result [exec -- {*}$args]}]} {
                 foreach line [split $result "\n"] {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                    if {[regexp -- "(?:implicit declaration of function|implicitly declaring library function) '(\[^']+)'" $line -> function]} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    if {[regexp -- "(?:implicit declaration of function|implicitly declaring library function|call to undeclared function|call to undeclared library function) '(\[^']+)'" $line -> function]} {
</span>                         set is_whitelisted no
                         foreach whitelisted ${configure.checks.implicit_function_declaration.whitelist} {
                             if {[string match -nocase $whitelisted $function]} {
</pre><pre style='margin:0'>

</pre>