Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 89439b8

Browse files
committed
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.
1 parent 5337ad4 commit 89439b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Makefile.shlib

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Copyright (c) 1998, Regents of the University of California
77
#
88
# IDENTIFICATION
9-
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.95 2005/07/13 17:00:44 tgl Exp $
9+
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.96 2005/08/07 19:02:08 tgl Exp $
1010
#
1111
#-------------------------------------------------------------------------
1212

@@ -234,7 +234,7 @@ ifeq ($(PORTNAME), unixware)
234234
endif
235235

236236
ifeq ($(PORTNAME), cygwin)
237-
shlib = $(NAME)$(DLSUFFIX)
237+
shlib = cyg$(NAME)$(DLSUFFIX)
238238
# needed for /contrib modules, not sure why
239239
SHLIB_LINK += $(LIBS)
240240
haslibarule = yes

0 commit comments

Comments
 (0)