<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Do not suppress errors for implicit function declarations
(which was done for https://rt.cpan.org/Ticket/Display.html?id=133493)

See:
* https://trac.macports.org/ticket/61630
* https://trac.macports.org/ticket/63022

--- cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Darwin.pm.orig
+++ cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Darwin.pm
@@ -62,7 +62,7 @@ sub cflags {
     foreach (split /\n/, $base) {
         /^(\S*)\s*=\s*(\S*)$/ and $self-&gt;{$1} = $2;
     };
-    $self-&gt;{CCFLAGS} .= " -Wno-error=implicit-function-declaration";
+
 
     return $self-&gt;{CFLAGS} = qq{
 CCFLAGS = $self-&gt;{CCFLAGS}
</pre></body></html>