author | Junio C Hamano <junkio@cox.net> | |
Wed, 4 Apr 2007 07:09:52 +0000 (00:09 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 4 Apr 2007 07:09:52 +0000 (00:09 -0700) |
* post1.5.1/tcltk:
Optional Tck/Tk: ignore generated files.
Eliminate checks of user-specified Tcl/Tk interpreter.
Rewrite Tcl/Tk interpreter path for the GUI tools.
Add --with-tcltk and --without-tcltk to configure.
NO_TCLTK
Optional Tck/Tk: ignore generated files.
Eliminate checks of user-specified Tcl/Tk interpreter.
Rewrite Tcl/Tk interpreter path for the GUI tools.
Add --with-tcltk and --without-tcltk to configure.
NO_TCLTK
1 | 2 | |||
---|---|---|---|---|
Makefile | patch | | diff1 | | diff2 | | blob | history |
diff --cc Makefile
index bc8b70bf1cf622331370e94608d42c5580485fcd,88f9025e4ca65eee5b8110aa8e7b72c8a3a2a4bc..ad321b35bfc3b48f6a9bbd503dc29eebdbf97d42
+++ b/Makefile
# Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
# MakeMaker (e.g. using ActiveState under Cygwin).
#
+# Define WITH_P4IMPORT to build and install Python git-p4import script.
+#
+ # Define NO_TCLTK if you do not want Tcl/Tk GUI.
+ #
+ # The TCLTK_PATH variable governs the location of the Tck/Tk interpreter.
+ # If not set it defaults to the bare 'wish'. If it is set to the empty
+ # string then NO_TCLTK will be forced (this is used by configure script).
+ #
GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
@$(SHELL_PATH) ./GIT-VERSION-GEN
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
+PYTHON_PATH_SQ = $(subst ','\'',$(PYTHON_PATH))
+ TCLTK_PATH_SQ = $(subst ','\'',$(TCLTK_PATH))
LIBS = $(GITLIBS) $(EXTLIBS)