diff options
author | mdejong <mdejong> | 2001-11-08 03:43:47 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-11-08 03:43:47 (GMT) |
commit | 88962c497c3d304030fbba8b2e03327a8c750d7c (patch) | |
tree | 4d86b499f2732d0d562d053d49a9eaba6f99bf91 | |
parent | 24f42ede14ad162733c4f5d19806f269d217f64a (diff) | |
download | tcl-88962c497c3d304030fbba8b2e03327a8c750d7c.zip tcl-88962c497c3d304030fbba8b2e03327a8c750d7c.tar.gz tcl-88962c497c3d304030fbba8b2e03327a8c750d7c.tar.bz2 |
* unix/Makefile.in:
* win/Makefile.in:
Print a message indicating that the user should
run "make genstubs" when the generated tclStubInit.c
file is out of date. We can't regenerate automatically
since there may be no tclsh on the system and that
would cause bootstrap problems. [Tcl bug 465874]
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | unix/Makefile.in | 5 | ||||
-rw-r--r-- | win/Makefile.in | 8 |
3 files changed, 14 insertions, 9 deletions
@@ -1,5 +1,15 @@ 2001-11-07 Mo DeJong <mdejong@users.sourceforge.net> + * unix/Makefile.in: + * win/Makefile.in: + Print a message indicating that the user should + run "make genstubs" when the generated tclStubInit.c + file is out of date. We can't regenerate automatically + since there may be no tclsh on the system and that + would cause bootstrap problems. [Tcl bug 465874] + +2001-11-07 Mo DeJong <mdejong@users.sourceforge.net> + Define TCL_INCLUDE_SPEC in tclConfig.sh. It should be included by extensions that need to find Tcl include headers in the install location. The user can override diff --git a/unix/Makefile.in b/unix/Makefile.in index 31ae68e..fef0ae9 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.83 2001/09/10 00:33:09 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.84 2001/11/08 03:43:47 mdejong Exp $ VERSION = @TCL_VERSION@ @@ -1056,8 +1056,7 @@ tclStubLib.o: $(GENERIC_DIR)/tclStubLib.c $(GENERIC_DIR)/tclStubInit.c: $(GENERIC_DIR)/tcl.decls \ $(GENERIC_DIR)/tclInt.decls - $(TCL_EXE) $(TOOL_DIR)/genStubs.tcl $(GENERIC_DIR) \ - $(GENERIC_DIR)/tcl.decls $(GENERIC_DIR)/tclInt.decls + @echo "Warning: run \"make genstubs\" to regenerate tclStubInit.c" genstubs: $(TCL_EXE) $(TOOL_DIR)/genStubs.tcl $(GENERIC_DIR) \ diff --git a/win/Makefile.in b/win/Makefile.in index 9b379d8..583a984 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.55 2001/10/01 20:58:51 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.56 2001/11/08 03:43:47 mdejong Exp $ VERSION = @TCL_VERSION@ @@ -572,11 +572,7 @@ distclean: clean $(GENERIC_DIR)/tclStubInit.c: $(GENERIC_DIR)/tcl.decls \ $(GENERIC_DIR)/tclInt.decls - @TCL_LIBRARY="$(ROOT_DIR_NATIVE)/library"; export TCL_LIBRARY; \ - $(TCLSH) "$(ROOT_DIR_NATIVE)\tools\genStubs.tcl" \ - "$(GENERIC_DIR_NATIVE)" \ - "$(GENERIC_DIR_NATIVE)\tcl.decls" \ - "$(GENERIC_DIR_NATIVE)\tclInt.decls" + @echo "Warning: run \"make genstubs\" to regenerate tclStubInit.c" genstubs: @TCL_LIBRARY="$(ROOT_DIR_NATIVE)/library"; export TCL_LIBRARY; \ |