diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-12-16 20:41:01 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-12-16 20:41:01 +0000 |
commit | 8ec96083260ddba4b0f84d2a81e08b2baad18200 (patch) | |
tree | b03ce9098a67bdb071ae333970337c5288dbee3f /src | |
parent | d0c01f29dfba8892d12685bd148d41ccdec2614b (diff) | |
download | postgresql-8ec96083260ddba4b0f84d2a81e08b2baad18200.tar.gz postgresql-8ec96083260ddba4b0f84d2a81e08b2baad18200.zip |
Cause configure --with-tcl to check for presence of <tcl.h>, as per
gripe from John Gray. Also fix thinko in pltcl Makefile: if a special
Tcl include directory is specified, that ought to be searched first.
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/tcl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/tcl/Makefile b/src/pl/tcl/Makefile index 9c9ead94312..043e399f4d6 100644 --- a/src/pl/tcl/Makefile +++ b/src/pl/tcl/Makefile @@ -2,7 +2,7 @@ # # Makefile for the pltcl shared object # -# $PostgreSQL: pgsql/src/pl/tcl/Makefile,v 1.43 2004/09/14 03:21:27 tgl Exp $ +# $PostgreSQL: pgsql/src/pl/tcl/Makefile,v 1.44 2004/12/16 20:41:01 tgl Exp $ # #------------------------------------------------------------------------- @@ -11,7 +11,7 @@ top_builddir = ../../.. include $(top_builddir)/src/Makefile.global -override CPPFLAGS += $(TCL_INCLUDE_SPEC) +override CPPFLAGS := $(TCL_INCLUDE_SPEC) $(CPPFLAGS) # Find out whether Tcl was built as a shared library --- if not, we |