summaryrefslogtreecommitdiff
path: root/src/interfaces/Makefile
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-09-25 22:23:01 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-09-25 22:23:01 +0000
commitf428d053ce075bafe1785d0ba7792f4eb92d93d5 (patch)
tree5a7e6981c0929343338ca0fa3de0f4e3e4702af1 /src/interfaces/Makefile
parente353e73768e54c7e5cfd5a1d6e97e1f6315207bb (diff)
downloadpostgresql-f428d053ce075bafe1785d0ba7792f4eb92d93d5.tar.gz
Revise Tcl/Tk configuration. Make missing Tcl after --with-tcl an error,
add --without-tk option to disable Tk. We don't need the AC_PATH_XTRA test because tkConfig.sh already contains all the information about how to compile and link with X. Also make sure that libpq is up to date for libpgtcl. Remove executable bits from pgaccess.sh, but add it to pgaccess.
Diffstat (limited to 'src/interfaces/Makefile')
-rw-r--r--src/interfaces/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/Makefile b/src/interfaces/Makefile
index 5640c8d0bc..ee9fed3851 100644
--- a/src/interfaces/Makefile
+++ b/src/interfaces/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.42 2000/08/31 16:11:30 petere Exp $
+# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.43 2000/09/25 22:23:00 petere Exp $
#
#-------------------------------------------------------------------------
@@ -24,7 +24,7 @@ ifeq ($(with_CXX), yes)
DIRS += libpq++
endif
-ifeq ($(USE_TCL), true)
+ifeq ($(with_tcl), yes)
DIRS += libpgtcl
endif