From 97fe006e8c1e0301d371c89fab394416f6511c9a Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 7 Aug 2005 19:02:08 +0000 Subject: [PATCH] Set shlib naming convention on Cygwin to 'cygFOO.dll', which appears to be the platform standard. This should fix recursive-rule breakage due to recent Makefile changes. Per discussion. --- src/Makefile.shlib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.shlib b/src/Makefile.shlib index 0a83df3a95..93f9402dcc 100644 --- a/src/Makefile.shlib +++ b/src/Makefile.shlib @@ -234,7 +234,7 @@ ifeq ($(PORTNAME), unixware) endif ifeq ($(PORTNAME), cygwin) - shlib = $(NAME)$(DLSUFFIX) + shlib = cyg$(NAME)$(DLSUFFIX) # needed for /contrib modules, not sure why SHLIB_LINK += $(LIBS) haslibarule = yes -- 2.39.5