pgsql: Use exported symbols list on macOS for loadable modules as well

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Use exported symbols list on macOS for loadable modules as well
Date: 2025-06-10 05:14:42
Message-ID: E1uOrJp-000y8E-35@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Use exported symbols list on macOS for loadable modules as well

On macOS, when building with the make system, the exported symbols
list $(SHLIB_EXPORTS) was ignored. This was probably not intentional,
it was probably just forgotten, since that combination has never
actually been used until now (for libpq-oauth).

The meson build system handles this correctly. Also, other platforms
have been doing this correctly.

This fixes it. It also does a bit of refactoring to make the code
match the layout for other platforms.

Reviewed-by: Jacob Champion <jacob(dot)champion(at)enterprisedb(dot)com>
Discussion: https://www.postgresql.org/message-id/flat/c70ca32e-b109-460d-9810-6e23ebb4473f%40eisentraut.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/3feff3916ee106c084eca848527dc2d2c3ef4e89

Modified Files
--------------
src/Makefile.shlib | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Jeff Davis 2025-06-10 18:24:26 pgsql: copyfromparse.c: use pg_ascii_tolower() rather than tolower().
Previous Message Tom Lane 2025-06-08 21:06:59 pgsql: pg_restore: fix incompatibility with old directory-format dumps.