]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Clean up compilation warnings coming from PL/Perl with clang-12~
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 12 Dec 2021 23:06:11 +0000 (18:06 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 12 Dec 2021 23:06:11 +0000 (18:06 -0500)
commit580261836c115c13aa9eaeb4411f887138cedec4
tree5cd761a4a279ed21ffe205d973a2fd30fe7cd6bd
parentb30e23fe588be6dd61be07eeac96adfbddfcc54c
Clean up compilation warnings coming from PL/Perl with clang-12~

clang-12 has introduced -Wcompound-token-split-by-macro, that is causing
a large amount of warnings when building PL/Perl because of its
interactions with upstream Perl.  This commit adds one -Wno to CFLAGS at
./configure time if the flag is supported by the compiler to silence all
those warnings.

This back-patches commit 9ff47ea41 into out-of-support branches,
pursuant to newly-established project policy.  The point is to
suppress scary-looking warnings so that people building these
branches needn't expend brain cells verifying that it's safe
to ignore the warnings.

Discussion: https://postgr.es/m/d0316012-ece7-7b7e-2d36-9c38cb77cb3b@enterprisedb.com
configure
configure.in