]> granicus.if.org Git - postgresql/commit
Fix interaction of Perl and stdbool.h
authorPeter Eisentraut <peter_e@gmx.net>
Fri, 23 Mar 2018 14:31:10 +0000 (10:31 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Fri, 23 Mar 2018 14:31:10 +0000 (10:31 -0400)
commit7ba7986fb4364e889a705c9973fefa138650091c
treeec4b65272c7cfad83b4378ce38ee909f664e5319
parentf1a074b146c900bd439b6ef1953866f41b61a669
Fix interaction of Perl and stdbool.h

Revert the PL/Perl-specific change in
9a95a77d9d5d3003d2d67121f2731b6e5fc37336.  We must not prevent Perl from
using stdbool.h when it has been built to do so, even if it uses an
incompatible size.  Otherwise, we would be imposing our bool on Perl,
which will lead to crashes because of the size mismatch.

Instead, we undef bool after including the Perl headers, as we did
previously, but now only if we are not using stdbool.h ourselves.
Record that choice in c.h as USE_STDBOOL.  This will also make it easier
to apply that coding pattern elsewhere if necessary.
src/include/c.h
src/pl/plperl/plperl.h