diff options
author | dgp <dgp@users.sourceforge.net> | 2008-04-02 03:55:38 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-04-02 03:55:38 (GMT) |
commit | a7fb3ccca3786f584d415e800a6ef4904d4d3ba9 (patch) | |
tree | 3fee0e42cb702c6dd134e9a98427556b1fa887b2 /unix | |
parent | 75e61094c52d15415001b986ab464880604da592 (diff) | |
download | tk-a7fb3ccca3786f584d415e800a6ef4904d4d3ba9.zip tk-a7fb3ccca3786f584d415e800a6ef4904d4d3ba9.tar.gz tk-a7fb3ccca3786f584d415e800a6ef4904d4d3ba9.tar.bz2 |
* generic/tkWindow.c: Revised package initialization so that
* unix/Makefile.in: "tkStubsPtr" is not present in libtk.so, but
is present only in libtkstub.a. This tightens up the rules for users
of the stubs interfaces. [Tcl Bug 1819422].
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 96df504..ee34dec 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.143 2008/03/21 21:49:12 jenglish Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.144 2008/04/02 03:55:39 dgp Exp $ # Current Tk version; used in various names. @@ -372,7 +372,7 @@ TTK_OBJS = \ ttkTagSet.o ttkTheme.o ttkTrace.o ttkTrack.o ttkTreeview.o \ ttkWidget.o ttkStubInit.o -STUB_OBJS = tkStubInit.o tkStubLib.o +STUB_OBJS = tkStubInit.o STUB_LIB_OBJS = tkStubLib.o ttkStubLib.o @@ -446,7 +446,7 @@ GENERIC_SRCS = \ $(GENERIC_DIR)/tkTextTag.c $(GENERIC_DIR)/tkTextWind.c \ $(GENERIC_DIR)/tkOldConfig.c $(GENERIC_DIR)/tkOldTest.c \ $(GENERIC_DIR)/tkSquare.c $(GENERIC_DIR)/tkTest.c \ - $(GENERIC_DIR)/tkStubInit.c $(GENERIC_DIR)/tkStubLib.c + $(GENERIC_DIR)/tkStubInit.c TTK_SRCS = \ $(TTK_DIR)/ttkBlink.c \ |