diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2022-02-10 13:44:05 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2022-02-10 13:51:49 -0500 |
commit | 64dd648072958b7e91e2ea289fcb106acae3bfba (patch) | |
tree | 621ee5c182eb61886bc37816119cc553ca43f557 | |
parent | 3a32e53e1f383090f27b23d4356eb1d19172ef1b (diff) | |
download | postgresql-64dd648072958b7e91e2ea289fcb106acae3bfba.tar.gz |
Use gendef instead of pexports for building windows .def files
Modern msys systems lack pexports but have gendef instead, so use that.
Discussion: https://postgr.es/m/3ccde7a9-e4f9-e194-30e0-0936e6ad68ba@dunslane.net
Backpatch to release 9.4 to enable building with perl on older branches.
Before that pexports is not used for plperl.
-rw-r--r-- | src/pl/plperl/GNUmakefile | 2 | ||||
-rw-r--r-- | src/pl/plpython/Makefile | 2 | ||||
-rw-r--r-- | src/pl/tcl/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/pl/plperl/GNUmakefile b/src/pl/plperl/GNUmakefile index 9b1c514101..2b098bedbc 100644 --- a/src/pl/plperl/GNUmakefile +++ b/src/pl/plperl/GNUmakefile @@ -48,7 +48,7 @@ lib$(perlwithver).a: $(perlwithver).def dlltool --dllname $(perlwithver).dll --def $(perlwithver).def --output-lib lib$(perlwithver).a $(perlwithver).def: $(PERLDLL) - pexports $^ > $@ + gendef - $^ > $@ endif # win32 diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile index 667a74469e..0c6d6a6a56 100644 --- a/src/pl/plpython/Makefile +++ b/src/pl/plpython/Makefile @@ -69,7 +69,7 @@ libpython${pytverstr}.a: python${pytverstr}.def dlltool --dllname python${pytverstr}.dll --def python${pytverstr}.def --output-lib libpython${pytverstr}.a python${pytverstr}.def: - pexports $(PYTHONDLL) > $@ + gendef - $(PYTHONDLL) > $@ endif # win32 diff --git a/src/pl/tcl/Makefile b/src/pl/tcl/Makefile index 8ee4c3ff15..0b5d3f620a 100644 --- a/src/pl/tcl/Makefile +++ b/src/pl/tcl/Makefile @@ -44,7 +44,7 @@ lib$(tclwithver).a: $(tclwithver).def dlltool --dllname $(tclwithver).dll --def $(tclwithver).def --output-lib lib$(tclwithver).a $(tclwithver).def: $(TCLDLL) - pexports $^ > $@ + gendef - $^ > $@ endif # win32 |