The Win32 (mingw) build of libpq seems to have lost it's SSL libs from

the link step resulting in a build failure. The attached patch fixes
that.

Dave Page
This commit is contained in:
Bruce Momjian 2004-10-06 16:42:01 +00:00
parent 87ea6f0dbe
commit 48018da7ce
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.114 2004/10/04 20:36:12 momjian Exp $
# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.115 2004/10/06 16:42:01 momjian Exp $
#
#-------------------------------------------------------------------------
@ -47,7 +47,7 @@ endif
# matter.)
SHLIB_LINK += $(filter -lcrypt -ldes -lkrb -lcom_err -lcrypto -lk5crypto -lkrb5 -lssl -lsocket -lnsl -lresolv -lintl, $(LIBS)) $(PTHREAD_LIBS)
ifeq ($(PORTNAME), win32)
SHLIB_LINK += -lwsock32 -lws2_32
SHLIB_LINK += -lwsock32 -lws2_32 $(filter -leay32 -lssleay32, $(LIBS))
endif