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/tutorial | |
parent | a11ea5e2a3bc47321eaff824b588c07a5974a729 (diff) |
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/tutorial')
-rw-r--r-- | src/tutorial/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tutorial/Makefile b/src/tutorial/Makefile index 2e85fbc38a3..0aa3cf6a497 100644 --- a/src/tutorial/Makefile +++ b/src/tutorial/Makefile @@ -4,7 +4,7 @@ # Makefile for tutorial # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.15 2002/07/30 17:47:58 tgl Exp $ +# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.16 2002/09/05 18:28:46 petere Exp $ # #------------------------------------------------------------------------- @@ -13,7 +13,7 @@ top_builddir = ../.. include $(top_builddir)/src/Makefile.global override CFLAGS+= $(CFLAGS_SL) -override DLLLIBS := $(BE_DLLLIBS) $(DLLLIBS) +SHLIB_LINK = $(BE_DLLLIBS) # # DLOBJS are the dynamically-loaded object files. The "funcs" queries |