From: | Andres Freund <andres(at)anarazel(dot)de> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: autoconf: Don't AC_SUBST() LD in configure |
Date: | 2022-12-02 03:14:21 |
Message-ID: | E1p0wVI-001eCo-CM@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
autoconf: Don't AC_SUBST() LD in configure
The only use of $(LD) in Makefiles is for AIX, to generate the export file for
the backend. We only support the system linker on AIX and we already hardcode
the path to a number of other binaries. Removing LD substitution will simplify
the upcoming meson PGXS compatibility.
While at it, add a comment why -r is used.
A subsequent commit will remove the determination of LD from configure as
well.
Discussion: https://postgr.es/m/20221005200710.luvw5evhwf6clig6@awork3.anarazel.de
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/069de07eae7328f13be40f1f3988448639c04285
Modified Files
--------------
configure | 2 --
configure.ac | 1 -
src/Makefile.global.in | 3 ---
src/backend/Makefile | 8 +++++++-
4 files changed, 7 insertions(+), 7 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Amit Kapila | 2022-12-02 05:45:14 | pgsql: Fix incorrect output from pgoutput when using column lists. |
Previous Message | Andres Freund | 2022-12-02 03:01:23 | pgsql: autoconf: Unify CFLAGS_SSE42 and CFLAGS_ARMV8_CRC32C |