pgsql: Fix build of Perl-using modules of Windows

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix build of Perl-using modules of Windows
Date: 2019-12-16 10:53:17
Message-ID: E1igo05-0005OO-G0@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix build of Perl-using modules of Windows

Commit f14413b684d57211068ee56ee04695efcc87a23a broke the build of
Perl-using modules on Windows.

Perl might have its own definitions of uid_t and gid_t, so we hide
ours, but then we can't use ours in our header files such as port.h
which don't see the Perl definition.

Hide our definition of getpeereid() on Windows in Perl-using modules,
using PLPERL_HAVE_UID_GID define. That means we can't portably use
getpeeruid() is such modules right now, but there is no need anyway.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/502423180a8cc9214861bffcb8405a42f146f160

Modified Files
--------------
src/include/port.h | 3 +++
1 file changed, 3 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Heikki Linnakangas 2019-12-16 12:00:23 pgsql: Fix yet another crash in page split during GiST index creation.
Previous Message Peter Eisentraut 2019-12-16 08:53:43 pgsql: Sort out getpeereid() and peer auth handling on Windows