mirror of
https://github.com/postgres/postgres.git
synced 2026-07-16 13:12:58 -04:00
oauth: Fix Autoconf build on macOS
Oversight in b0635bfda. -lintl is necessary for gettext on Mac, which
libpq-oauth depends on via pgport/pgcommon. (I'd incorrectly removed
this change from an earlier version of the patch, where it was suggested
by Peter Eisentraut.)
Per buildfarm member indri.
This commit is contained in:
parent
b0635bfda0
commit
4ea1254f35
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ $(stlib): override OBJS += $(OBJS_STATIC)
|
|||
$(stlib): $(OBJS_STATIC)
|
||||
|
||||
SHLIB_LINK_INTERNAL = $(libpq_pgport_shlib)
|
||||
SHLIB_LINK = $(LIBCURL_LDFLAGS) $(LIBCURL_LDLIBS)
|
||||
SHLIB_LINK = $(LIBCURL_LDFLAGS) $(LIBCURL_LDLIBS) $(filter -lintl, $(LIBS))
|
||||
SHLIB_PREREQS = submake-libpq
|
||||
SHLIB_EXPORTS = exports.txt
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue