diff options
author | andreas_kupries <akupries@shaw.ca> | 2006-12-05 18:45:50 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2006-12-05 18:45:50 (GMT) |
commit | 7a49104d3c44f44c651574cabf05deb245dc03cf (patch) | |
tree | 31ab5f08e6d36e66e99e01a3d2f8600f7a09cefe /unix/Makefile.in | |
parent | 7c22ad04aa281f88dbf8b20774d7fdd84d570284 (diff) | |
download | tcl-7a49104d3c44f44c651574cabf05deb245dc03cf.zip tcl-7a49104d3c44f44c651574cabf05deb245dc03cf.tar.gz tcl-7a49104d3c44f44c651574cabf05deb245dc03cf.tar.bz2 |
* generic/tclBasic.c: TIP #291. Define tcl_platform element for
* doc/tclvars.n: pointerSize.
* win/Makefile.in: Added installation instructions for the platform
* win/makefile.vc: package. Added the platform package.
* win/makefile.bc:
* unix/Makefile.in:
* tests/platform.test:
* tests/safe.test:
* library/platform/platform.tcl:
* library/platform/shell.tcl:
* library/platform/pkgIndex.tcl:
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index e7b2207..eb95043 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.198 2006/11/25 17:18:10 dkf Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.199 2006/12/05 18:45:51 andreas_kupries Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -753,7 +753,7 @@ install-libraries: libraries $(INSTALL_TZDATA) install-msgs else true; \ fi; \ done; - @for i in opt0.4 http1.0 encoding ../tcl8 ../tcl8/8.3 ../tcl8/8.4 ../tcl8/8.5; \ + @for i in opt0.4 http1.0 encoding ../tcl8 ../tcl8/8.3 ../tcl8/8.4 ../tcl8/8.4/platform ../tcl8/8.5; \ do \ if [ ! -d $(SCRIPT_INSTALL_DIR)/$$i ] ; then \ echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \ @@ -794,6 +794,12 @@ install-libraries: libraries $(INSTALL_TZDATA) install-msgs @$(INSTALL_DATA) $(TOP_DIR)/library/msgcat/msgcat.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.5/msgcat-1.4.2.tm; @echo "Installing package tcltest 2.3a1 as a Tcl Module"; @$(INSTALL_DATA) $(TOP_DIR)/library/tcltest/tcltest.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.5/tcltest-2.3a1.tm; + + @echo "Installing package platform 1.0.2 as a Tcl Module"; + @$(INSTALL_DATA) $(TOP_DIR)/library/platform/platform.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.4/platform-1.0.2.tm; + @echo "Installing package platform::shell 1.1.1 as a Tcl Module"; + @$(INSTALL_DATA) $(TOP_DIR)/library/platform/shell.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.4/platform/shell-1.1.1.tm; + @echo "Installing library encoding directory"; @for i in $(TOP_DIR)/library/encoding/*.enc ; do \ $(INSTALL_DATA) $$i $(SCRIPT_INSTALL_DIR)/encoding; \ |