From: Pavan Deolasee Date: Mon, 15 Feb 2016 18:23:22 +0000 (+0530) Subject: Fix build failure when configured with --with-openssl X-Git-Tag: XL9_5_R1BETA1~15 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=f024649c5025688fb1e1ee4527b407509f5cd1ce;p=postgres-xl.git Fix build failure when configured with --with-openssl --- diff --git a/src/backend/Makefile b/src/backend/Makefile index c533956813..16b0787e9b 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -54,6 +54,10 @@ OBJS = $(SUBDIROBJS) $(LOCALOBJS) \ $(top_builddir)/src/gtm/common/libgtm.a \ $(top_builddir)/src/gtm/libpq/libpqcomm.a +ifeq ($(with_openssl), yes) +OBJS += $(top_builddir)/src/interfaces/libpq/fe-secure-openssl.o +endif + # We put libpgport and libpgcommon into OBJS, so remove it from LIBS; also add # libldap LIBS := $(filter-out -lpgport -lpgcommon, $(LIBS)) $(LDAP_LIBS_BE)