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 /unix | |
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 'unix')
-rw-r--r-- | unix/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 4978a1b..6f81666 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.47 2000/06/30 06:38:40 ericm Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.48 2000/09/02 01:18:24 ericm Exp $ # Current Tk version; used in various names. @@ -501,7 +501,8 @@ install-libraries: chmod +x $(UNIX_DIR)/install-sh; \ fi @echo "Installing header files"; - @for i in $(GENERIC_DIR)/tk.h $(GENERIC_DIR)/tkDecls.h ; \ + @for i in $(GENERIC_DIR)/tk.h $(GENERIC_DIR)/tkDecls.h \ + $(GENERIC_DIR)/tkPlatDecls.h ; \ do \ $(INSTALL_DATA) $$i $(INCLUDE_INSTALL_DIR); \ done; |