diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-08-07 19:02:08 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-08-07 19:02:08 +0000 |
commit | 89439b8c4fabf8e882f55c87979512af081f370b (patch) | |
tree | f3978a294b42f61365fe35597e4dae43d7df5910 /src | |
parent | 5337ad464ef91d811ecafbebf4698eab6b3d8e8d (diff) | |
download | postgresql-89439b8c4fabf8e882f55c87979512af081f370b.tar.gz postgresql-89439b8c4fabf8e882f55c87979512af081f370b.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.shlib | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib index b15033d32f5..c06af60c816 100644 --- a/src/Makefile.shlib +++ b/src/Makefile.shlib @@ -6,7 +6,7 @@ # Copyright (c) 1998, Regents of the University of California # # 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) endif ifeq ($(PORTNAME), cygwin) - shlib = $(NAME)$(DLSUFFIX) + shlib = cyg$(NAME)$(DLSUFFIX) # needed for /contrib modules, not sure why SHLIB_LINK += $(LIBS) haslibarule = yes |