]> granicus.if.org Git - postgresql/commitdiff
Install libpq DLL with $(INSTALL_SHLIB).
authorNoah Misch <noah@leadboat.com>
Tue, 19 Aug 2014 03:00:38 +0000 (23:00 -0400)
committerNoah Misch <noah@leadboat.com>
Tue, 19 Aug 2014 03:00:57 +0000 (23:00 -0400)
Programs need execute permission on a DLL file to load it.  MSYS
"install" ignores the mode argument, and our Cygwin build statically
links libpq into programs.  That explains the lack of buildfarm trouble.
Back-patch to 9.0 (all supported versions).

src/interfaces/libpq/Makefile

index 2b770d0a7215a61298a829191f6c9d839c5fdc13..c794b9647c6362b136c8b03262ed0242c735535d 100644 (file)
@@ -122,7 +122,7 @@ install: all installdirs install-lib
        $(INSTALL_DATA) $(srcdir)/pqexpbuffer.h '$(DESTDIR)$(includedir_internal)'
        $(INSTALL_DATA) $(srcdir)/pg_service.conf.sample '$(DESTDIR)$(datadir)/pg_service.conf.sample'
 ifneq (,$(findstring $(PORTNAME), win32 cygwin))
-       $(INSTALL_DATA) $(shlib) '$(DESTDIR)$(bindir)/$(shlib)'
+       $(INSTALL_SHLIB) $(shlib) '$(DESTDIR)$(bindir)/$(shlib)'
 endif
 
 installcheck: