summaryrefslogtreecommitdiff
path: root/src/backend/Makefile
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2017-08-20 21:22:18 -0700
committerNoah Misch <noah@leadboat.com>2017-08-20 21:22:18 -0700
commit66ed3829df959adb47f71d7c903ac59f0670f3e1 (patch)
treefec270a8890c689fe090aeeff0ce56223dd0820b /src/backend/Makefile
parentc6293249dc178f52dd508c3e6ff353af41c90b58 (diff)
downloadpostgresql-66ed3829df959adb47f71d7c903ac59f0670f3e1.tar.gz
Inject $(ICU_LIBS) regardless of platform.
It appeared in a conditional that excludes AIX, Cygwin and MinGW. Give ICU support a chance to work on those platforms. Back-patch to v10, where ICU support was introduced.
Diffstat (limited to 'src/backend/Makefile')
-rw-r--r--src/backend/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/Makefile b/src/backend/Makefile
index bce9d2c3eb..aab676dbbd 100644
--- a/src/backend/Makefile
+++ b/src/backend/Makefile
@@ -39,8 +39,8 @@ OBJS = $(SUBDIROBJS) $(LOCALOBJS) $(top_builddir)/src/port/libpgport_srv.a \
$(top_builddir)/src/common/libpgcommon_srv.a
# We put libpgport and libpgcommon into OBJS, so remove it from LIBS; also add
-# libldap
-LIBS := $(filter-out -lpgport -lpgcommon, $(LIBS)) $(LDAP_LIBS_BE)
+# libldap and ICU
+LIBS := $(filter-out -lpgport -lpgcommon, $(LIBS)) $(LDAP_LIBS_BE) $(ICU_LIBS)
# The backend doesn't need everything that's in LIBS, however
LIBS := $(filter-out -lz -lreadline -ledit -ltermcap -lncurses -lcurses, $(LIBS))
@@ -58,7 +58,7 @@ ifneq ($(PORTNAME), win32)
ifneq ($(PORTNAME), aix)
postgres: $(OBJS)
- $(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_EX) $(export_dynamic) $(call expand_subsys,$^) $(LIBS) $(ICU_LIBS) -o $@
+ $(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_EX) $(export_dynamic) $(call expand_subsys,$^) $(LIBS) -o $@
endif
endif