From: Bruce Momjian Date: Wed, 6 Oct 2004 16:42:01 +0000 (+0000) Subject: The Win32 (mingw) build of libpq seems to have lost it's SSL libs from X-Git-Tag: REL8_0_0BETA4~191 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=48018da7ce0754d2d83db7bce41447b931d42337;p=postgresql 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 --- diff --git a/src/interfaces/libpq/Makefile b/src/interfaces/libpq/Makefile index b0a90b010c..6606318074 100644 --- a/src/interfaces/libpq/Makefile +++ b/src/interfaces/libpq/Makefile @@ -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