]> 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:01:09 +0000 (23:01 -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 57d29da783250e5f8eba703da309727c2ef83692..0d2854946c93195262bdd12e0b5d95e818a60c10 100644 (file)
@@ -121,7 +121,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: