diff options
author | dgp <dgp@users.sourceforge.net> | 2008-04-02 04:25:13 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-04-02 04:25:13 (GMT) |
commit | cea4bab1e44789d1caa0e2edecd71b5bfcdac1df (patch) | |
tree | 552d54a344e1dbf00e51a3744a6e7bd7664e822c /win | |
parent | 4910cd294dec3c7b5faaf00b4ddbea754d14779a (diff) | |
download | tcl-cea4bab1e44789d1caa0e2edecd71b5bfcdac1df.zip tcl-cea4bab1e44789d1caa0e2edecd71b5bfcdac1df.tar.gz tcl-cea4bab1e44789d1caa0e2edecd71b5bfcdac1df.tar.bz2 |
* generic/tclBasic.c: Revised stubs-generation tool and interp
* tools/genStubs.tcl: creation so that "tclStubsPtr" is not present
* unix/Makefile.in: in libtcl.so, but is present only in
* win/Makefile.in: libtclstub.a. This tightens up the rules for
users of the stubs interfaces. [Bug 1819422]
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index f453595..7d71edf 100644 --- a/win/Makefile.in +++ b/win/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.124 2008/03/12 09:51:39 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.125 2008/04/02 04:25:14 dgp Exp $ VERSION = @TCL_VERSION@ @@ -267,7 +267,6 @@ GENERIC_OBJS = \ tclStringObj.$(OBJEXT) \ tclStrToD.$(OBJEXT) \ tclStubInit.$(OBJEXT) \ - tclStubLib.$(OBJEXT) \ tclThread.$(OBJEXT) \ tclThreadAlloc.$(OBJEXT) \ tclThreadJoin.$(OBJEXT) \ @@ -391,7 +390,7 @@ winhelp: $(ROOT_DIR)/tools/man2help.tcl $(MAN2TCL) $(MAN2TCL): $(ROOT_DIR)/tools/man2tcl.c $(CC) $(CFLAGS_OPTIMIZE) $(MAN2TCLFLAGS) -o $(MAN2TCL) "$(ROOT_DIR_NATIVE)"/tools/man2tcl.c -$(TCLSH): $(TCL_LIB_FILE) $(TCL_STUB_LIB_FILE) $(TCLSH_OBJS) tclsh.$(RES) +$(TCLSH): $(TCL_LIB_FILE) $(TCLSH_OBJS) tclsh.$(RES) $(CC) $(CFLAGS) $(TCLSH_OBJS) $(TCL_LIB_FILE) $(LIBS) \ tclsh.$(RES) $(CC_EXENAME) $(LDFLAGS_CONSOLE) |