diff options
author | ericm <ericm> | 2000-09-02 01:18:23 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-09-02 01:18:23 (GMT) |
commit | 6b3c72d47a56a62cdc0a26e8ad8cc8db289b2869 (patch) | |
tree | 9595245b7f08d899a74c495e6bdcf0aa4fff0a69 /win | |
parent | aefa2a80a74a6233ca64090a607df9819a54d5e1 (diff) | |
download | tk-6b3c72d47a56a62cdc0a26e8ad8cc8db289b2869.zip tk-6b3c72d47a56a62cdc0a26e8ad8cc8db289b2869.tar.gz tk-6b3c72d47a56a62cdc0a26e8ad8cc8db289b2869.tar.bz2 |
* win/makefile.vc (install-libraries):
* win/Makefile.in (install-libraries):
* unix/Makefile.in (install-libraries): Added tkPlatDecls.h to
list of header files to install.
* generic/tk.h: Added #include "tkPlatDecls.h", which declares the
platform specific component of the public Tk stubs API's.
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 6 | ||||
-rw-r--r-- | win/makefile.vc | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 0909b21..cee6a9d 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,7 +4,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.29 2000/07/18 18:17:47 mo Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.30 2000/09/02 01:18:24 ericm Exp $ TCLVERSION = @TCL_VERSION@ VERSION = @TK_VERSION@ @@ -437,8 +437,8 @@ install-libraries: fi; \ done; @echo "Installing header files"; - @for i in $(GENERIC_DIR)/tk.h $(GENERIC_DIR)/tkDecls.h \ - $(GENERIC_DIR)/tkIntXlibDecls.h ; \ + @for i in $(GENERIC_DIR)/tk.h $(GENERIC_DIR)/tkPlatDecls.h \ + $(GENERIC_DIR)/tkIntXlibDecls.h $(GENERIC_DIR)/tkDecls.h ; \ do \ $(INSTALL_DATA) $$i $(INCLUDE_INSTALL_DIR); \ done; diff --git a/win/makefile.vc b/win/makefile.vc index e656452..6e99c1c 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -4,7 +4,7 @@ # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # Copyright (c) 1995-1997 Sun Microsystems, Inc. -# RCS: @(#) $Id: makefile.vc,v 1.36 2000/08/06 00:10:56 hobbs Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.37 2000/09/02 01:18:24 ericm Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -348,6 +348,7 @@ install-libraries: @mkd "$(INCLUDE_INSTALL_DIR)\X11" copy "$(GENERICDIR)\tk.h" "$(INCLUDE_INSTALL_DIR)" copy "$(GENERICDIR)\tkDecls.h" "$(INCLUDE_INSTALL_DIR)" + copy "$(GENERICDIR)\tkPlatDecls.h" "$(INCLUDE_INSTALL_DIR)" copy "$(GENERICDIR)\tkIntXlibDecls.h" "$(INCLUDE_INSTALL_DIR)" xcopy "$(XLIBDIR)\X11\*.h" "$(INCLUDE_INSTALL_DIR)\X11" @mkd "$(SCRIPT_INSTALL_DIR)" |