diff options
author | Eygene Ryabinkin <rea-git@codelabs.ru> | 2007-03-28 04:12:07 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-03-31 23:59:47 -0700 |
commit | 81b63c707ed5962d45bd575c946a7127c19a3e35 (patch) | |
tree | fc0d659d556cecb3a363c8703be6a5d6294b3894 /config.mak.in | |
parent | NO_TCLTK (diff) | |
download | tgif-81b63c707ed5962d45bd575c946a7127c19a3e35.tar.xz |
Add --with-tcltk and --without-tcltk to configure.
--with-tcltk enables the search of the Tcl/Tk interpreter. If no
interpreter is found then Tcl/Tk dependend parts are disabled.
--without-tcltk unconditionally disables Tcl/Tk dependent parts.
The original behaviour is not changed: bare './configure' just
installs the Tcl/Tk part doing no checks for the interpreter.
Signed-off-by: Eygene Ryabinkin <rea-git@codelabs.ru>
Diffstat (limited to 'config.mak.in')
-rw-r--r-- | config.mak.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.mak.in b/config.mak.in index 9a578405d8..eb9d7a5549 100644 --- a/config.mak.in +++ b/config.mak.in @@ -6,6 +6,7 @@ CFLAGS = @CFLAGS@ AR = @AR@ TAR = @TAR@ #INSTALL = @INSTALL@ # needs install-sh or install.sh in sources +TCLTK_PATH = @TCLTK_PATH@ prefix = @prefix@ exec_prefix = @exec_prefix@ |