Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib/ExtUtils/MM_Darwin.pm: Unbreak Perl build
On modern macOS the compiler defaults to '-Werror,-Wimplicit-function-declaration' This breaks the build on code which calls a function without a prototype (invalid in C99). Turning the check off with '-Wno-error=implicit-function-declaration' breaks the build of Perl itself on legacy versions of Darwin with compilers which do not recognise the flags. Removing it allows Perl to once again build on Mac OS X as old as 10.4 with GCC 4.0.1.
- Loading branch information