Skip to content
Snippets Groups Projects
Commit 89439b8c authored by Tom Lane's avatar Tom Lane
Browse files

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.
parent 5337ad46
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
# Copyright (c) 1998, Regents of the University of California # Copyright (c) 1998, Regents of the University of California
# #
# IDENTIFICATION # IDENTIFICATION
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.95 2005/07/13 17:00:44 tgl Exp $ # $PostgreSQL: pgsql/src/Makefile.shlib,v 1.96 2005/08/07 19:02:08 tgl Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -234,7 +234,7 @@ ifeq ($(PORTNAME), unixware) ...@@ -234,7 +234,7 @@ ifeq ($(PORTNAME), unixware)
endif endif
ifeq ($(PORTNAME), cygwin) ifeq ($(PORTNAME), cygwin)
shlib = $(NAME)$(DLSUFFIX) shlib = cyg$(NAME)$(DLSUFFIX)
# needed for /contrib modules, not sure why # needed for /contrib modules, not sure why
SHLIB_LINK += $(LIBS) SHLIB_LINK += $(LIBS)
haslibarule = yes haslibarule = yes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment