OSDN Git Service

Set shlib naming convention on Cygwin to 'cygFOO.dll', which appears
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 7 Aug 2005 19:02:08 +0000 (19:02 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 7 Aug 2005 19:02:08 +0000 (19:02 +0000)
to be the platform standard.  This should fix recursive-rule breakage
due to recent Makefile changes.  Per discussion.

src/Makefile.shlib

index b15033d..c06af60 100644 (file)
@@ -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