From: | Thomas Munro <tmunro(at)postgresql(dot)org> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Remove configure probe for dlopen, and refactor. |
Date: | 2022-08-04 21:59:42 |
Message-ID: | E1oJisX-000Kme-TX@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Remove configure probe for dlopen, and refactor.
dlopen() is in SUSv2 and all targeted Unix systems have it. We still
need replacement functions for Windows, but we don't need a configure
probe for that.
Since it's no longer needed by other operating systems, rename dlopen.c
to win32dlopen.c and move the declarations into win32_port.h.
Likewise, the macros RTLD_NOW and RTLD_GLOBAL now only need to be
defined on Windows, since all targeted Unix systems have 'em.
Reviewed-by: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Reviewed-by: Andres Freund <andres(at)anarazel(dot)de>
Discussion: https://postgr.es/m/CA+hUKGJ3LHeP9w5Fgzdr4G8AnEtJ=z=p6hGDEm4qYGEUX5B6fQ@mail.gmail.com
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/ca1e85513e1c92afb80a74935cbbb6f7e4a3ccf9
Modified Files
--------------
configure | 43 +++++-------------------------------
configure.ac | 4 +---
src/backend/utils/fmgr/dfmgr.c | 4 ++--
src/include/pg_config.h.in | 11 ---------
src/include/port.h | 23 -------------------
src/include/port/win32_port.h | 9 ++++++++
src/port/{dlopen.c => win32dlopen.c} | 10 +++------
src/tools/msvc/Mkvcbuild.pm | 3 ++-
src/tools/msvc/Solution.pm | 3 ---
9 files changed, 23 insertions(+), 87 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | David Rowley | 2022-08-04 22:14:27 | pgsql: Fix failure to set correct operator in window run condition |
Previous Message | Robert Haas | 2022-08-04 19:30:33 | pgsql: Revert recent changes to 002_pg_upgrade.pl. |