diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-09-05 18:28:46 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-09-05 18:28:46 +0000 |
commit | 337da0678ab3b0fe7e339cd35c6c50ad5441a534 (patch) | |
tree | 62b6d649585ee864a16c1922736e4c8d66ebc54b /src/Makefile | |
parent | a11ea5e2a3bc47321eaff824b588c07a5974a729 (diff) | |
download | postgresql-337da0678ab3b0fe7e339cd35c6c50ad5441a534.tar.gz |
Assorted fixes for Cygwin:
Eliminate the mysterious games that the Cygwin build plays with the linker
flag variables. DLLLIBS is gone, use SHLIB_LINK like everyone else.
Detect cygipc in configure, after the linker flags are set up, otherwise
configure might not work at all.
Make sure everything is covered by make clean.
Fix the build of the new conversion procedure modules.
Add new DLLIMPORT markers where required.
Finally, the compiler complains if we use an explicit
-I/usr/local/include, so don't do that. Curiously, -L/usr/local/lib is
still necessary.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index e0fef6aed7..cd6e5e630d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/Makefile,v 1.28 2002/09/04 15:45:50 tgl Exp $ +# $Header: /cvsroot/pgsql/src/Makefile,v 1.29 2002/09/05 18:28:45 petere Exp $ # #------------------------------------------------------------------------- @@ -34,6 +34,7 @@ clean: $(MAKE) -C pl $@ $(MAKE) -C test $@ $(MAKE) -C tutorial $@ + $(MAKE) -C utils $@ distclean maintainer-clean: -$(MAKE) -C port $@ @@ -44,4 +45,5 @@ distclean maintainer-clean: -$(MAKE) -C pl $@ -$(MAKE) -C test $@ -$(MAKE) -C tutorial $@ + -$(MAKE) -C utils $@ rm -f Makefile.port Makefile.global |