mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
Switch order of -lpgport and -lpgcommon
Conceptually, libpgcommon can depend on libpgport, but not the other way around. In the past, this might not have mattered, but it's needed now for asprintf.
This commit is contained in:
@ -410,10 +410,9 @@ libpq = -L$(libpq_builddir) -lpq
|
||||
# pgport before libpq. This does cause duplicate -lpgport's to appear
|
||||
# on client link lines.
|
||||
ifdef PGXS
|
||||
libpq_pgport = -L$(libdir) -lpgport -lpgcommon $(libpq)
|
||||
libpq_pgport = -L$(libdir) -lpgcommon -lpgport $(libpq)
|
||||
else
|
||||
libpq_pgport = -L$(top_builddir)/src/port -lpgport \
|
||||
-L$(top_builddir)/src/common -lpgcommon $(libpq)
|
||||
libpq_pgport = -L$(top_builddir)/src/common -lpgcommon -L$(top_builddir)/src/port -lpgport $(libpq)
|
||||
endif
|
||||
|
||||
# If PGXS is not defined, build libpq and libpgport dependancies as required.
|
||||
|
Reference in New Issue
Block a user