Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Missed one! |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
49f148ad86585dbcd46b9cf07eb52c35 |
| User & Date: | dkf 2008-05-26 10:04:52.000 |
Context
|
2008-05-26
| ||
| 18:28 | (io-53.9): need to close chan before removing file check-in: b4d73a84f1 user: hobbs tags: trunk | |
| 10:04 | Missed one! check-in: 49f148ad86 user: dkf tags: trunk | |
| 10:02 | Remove obsolete winhelp targets. They weren't supported and didn't work. check-in: 2b7ac345d5 user: dkf tags: trunk | |
Changes
Changes to ChangeLog.
1 2 | 2008-05-26 Donal K. Fellows <dkf@users.sf.net> | | | | 1 2 3 4 5 6 7 8 9 10 11 | 2008-05-26 Donal K. Fellows <dkf@users.sf.net> * win/makefile.bc: Remove deprecated winhelp target. * win/Makefile.in, win/makefile.vc: It didn't work correctly anyway. 2008-05-23 Andreas Kupries <andreask@activestate.com> * win/tclWinChan.c (FileWideSeekProc): Accepted a patch by Alexandre Ferrieux <ferrieux@users.sourceforge.net> to fix the [Bug 1965787]. 'tell' now works for locations > 2 GB as well instead of going negative. |
| ︙ | ︙ |
Changes to win/Makefile.in.
1 2 3 4 5 6 | # # This file is a Makefile for Tcl. If it has the name "Makefile.in" then it # is a template for a Makefile; to generate the actual Makefile, run # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # # This file is a Makefile for Tcl. If it has the name "Makefile.in" then it # is a template for a Makefile; to generate the actual Makefile, run # "./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.129 2008/05/26 10:04:53 dkf Exp $ VERSION = @TCL_VERSION@ #-------------------------------------------------------------------------- # Things you can change to personalize the Makefile for your own site (you can # make these changes in either Makefile.in or Makefile, but changes to # Makefile will get lost if you re-run the configuration script). |
| ︙ | ︙ | |||
378 379 380 381 382 383 384 | binaries: @LIBRARIES@ $(TCLSH) libraries: doc: | < < < < < < < < | 378 379 380 381 382 383 384 385 386 387 388 389 390 391 |
binaries: @LIBRARIES@ $(TCLSH)
libraries:
doc:
$(TCLSH): $(TCL_LIB_FILE) $(TCLSH_OBJS) tclsh.$(RES)
$(CC) $(CFLAGS) $(TCLSH_OBJS) $(TCL_LIB_FILE) $(LIBS) \
tclsh.$(RES) $(CC_EXENAME) $(LDFLAGS_CONSOLE)
$(TCLTEST): $(TCL_LIB_FILE) $(TCLTEST_OBJS) $(CAT32) tclsh.$(RES)
$(CC) $(CFLAGS) $(TCLTEST_OBJS) $(TCL_LIB_FILE) $(LIBS) \
tclsh.$(RES) $(CC_EXENAME) $(LDFLAGS_CONSOLE)
|
| ︙ | ︙ |