Hide warnings from Python headers when using gcc-compatible compiler.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 26 Dec 2023 21:16:29 +0000 (16:16 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 26 Dec 2023 21:16:37 +0000 (16:16 -0500)
commit58c3151bbc045e8f575027f53c79e328381e7e61
treecdd43e3a147ae571246b477a1edf51f544eae05a
parentc4fe2e8220462a9688dba4380bda0ccb2ecaabb7
Hide warnings from Python headers when using gcc-compatible compiler.

Like commit 388e80132, use "#pragma GCC system_header" to silence
warnings appearing within the Python headers, since newer Python
versions no longer worry about some restrictions we still use like
-Wdeclaration-after-statement.

This patch improves on 388e80132 by inventing a separate wrapper
header file, allowing the pragma to be tightly scoped to just
the Python headers and not other stuff we have laying about in
plpython.h.  I applied the same technique to plperl for the same
reason: the original patch suppressed warnings for a good deal
of our own code, not only the Perl headers.

Like the previous commit, back-patch to supported branches.

Peter Eisentraut and Tom Lane

Discussion: https://postgr.es/m/ae523163-6d2a-4b81-a875-832e48dec502@eisentraut.org
src/pl/plperl/GNUmakefile
src/pl/plperl/meson.build
src/pl/plperl/plperl.h
src/pl/plperl/plperl_system.h [new file with mode: 0644]
src/pl/plpython/Makefile
src/pl/plpython/meson.build
src/pl/plpython/plpython.h
src/pl/plpython/plpython_system.h [new file with mode: 0644]