diff options
author | ericm <ericm> | 2000-08-15 00:08:36 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-08-15 00:08:36 (GMT) |
commit | 45dcb6a5533f7a1980cdb9264f793958fa641b89 (patch) | |
tree | a0d32d8409edb97650250ac72faa5ff29e17cbb3 /win/Makefile.in | |
parent | b775edfbf6db7b080897657dbd61e3189593eff6 (diff) | |
download | tcl-45dcb6a5533f7a1980cdb9264f793958fa641b89.zip tcl-45dcb6a5533f7a1980cdb9264f793958fa641b89.tar.gz tcl-45dcb6a5533f7a1980cdb9264f793958fa641b89.tar.bz2 |
* win/makefile.vc:
* win/Makefile.in:
* unix/Makefile.in: Added tclPlatDecls.h to the list of installed
headers, for more complete stubs support. [Bug: 5241].
* generic/tcl.h: Added #include "tclPlatDecls.h" to get
platform-specific stubs declarations (Tcl_WinTCharToUtf, etc)
[Bug: 5241].
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 228e01a..b900399 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.37 2000/06/13 21:01:05 ericm Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.38 2000/08/15 00:08:37 ericm Exp $ VERSION = @TCL_VERSION@ @@ -478,7 +478,8 @@ install-libraries: fi; \ done; @echo "Installing header files"; - @for i in "$(GENERIC_DIR)/tcl.h" "$(GENERIC_DIR)/tclDecls.h" ; \ + @for i in "$(GENERIC_DIR)/tcl.h" "$(GENERIC_DIR)/tclDecls.h" \ + "$(GENERIC_DIR)/tclPlatDecls.h" ; \ do \ $(COPY) "$$i" "$(INCLUDE_INSTALL_DIR)"; \ done; |