Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | [6adfa8fddf] Fix test target |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e5b56214c7d658e95d2af367ab82d7a9 |
User & Date: | gahr 2016-04-20 07:58:21.917 |
References
2016-04-22
| ||
06:24 | • New ticket [b635539f43] Seg.fault on self-destroy in a method, in self namespace. artifact: daf0d669a8 user: aku | |
Context
2017-10-19
| ||
11:05 | [tcl:1a56550e96] Ensure that method list introspection finds methods from mixins in all cases. check-in: 0274fdbceb user: dkf tags: trunk | |
2017-06-20
| ||
19:00 | Import of patch by Erik Leunissen check-in: 904f04eec9 user: dkf tags: bugfix:cross-compilation | |
2017-06-18
| ||
07:51 | Implement TIP 470: Reliable Access to OO Definition Context Object Leaf check-in: 594b9c80a8 user: dkf tags: tip-470 | |
07:36 | Implement TIP 473: Allow a Defined Target Namespace in oo::copy Closed-Leaf check-in: cc799c22cc user: dkf tags: tip-473 | |
2016-04-20
| ||
07:58 | [6adfa8fddf] Fix test target check-in: e5b56214c7 user: gahr tags: trunk | |
2016-03-01
| ||
00:07 | Update to 1.0.4 check-in: 0a6e9f1ea3 user: dkf tags: corresponds-to-Tcl8.6.5, release, release-1.0.4, trunk | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
75 76 77 78 79 80 81 | #MT=@MT@ TCLSH_PROG=@TCLSH_PROG@ INCLUDES=@PKG_INCLUDES@ @TCL_INCLUDES@ PKG_CFLAGS=@PKG_CFLAGS@ DEFS=@DEFS@ $(PKG_CFLAGS) CPPFLAGS=@CPPFLAGS@ LIBS=@PKG_LIBS@ @LIBS@ @MATH_LIBS@ | | | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | #MT=@MT@ TCLSH_PROG=@TCLSH_PROG@ INCLUDES=@PKG_INCLUDES@ @TCL_INCLUDES@ PKG_CFLAGS=@PKG_CFLAGS@ DEFS=@DEFS@ $(PKG_CFLAGS) CPPFLAGS=@CPPFLAGS@ LIBS=@PKG_LIBS@ @LIBS@ @MATH_LIBS@ PKG_TEST_LIBS=${PKG_STUB_LIB_FILE} AR=@AR@ CFLAGS=@CFLAGS@ CYGPATH=@CYGPATH@ SDX=@SDX@ #RC=@RC@ #RCFLAGS=@RES_DEFS@ #RES=@RES_SUFFIX@ |
︙ | ︙ | |||
257 258 259 260 261 262 263 | $(PKG_STUB_LIB_FILE): $(PKG_STUB_OBJECTS) -rm -f $(PKG_STUB_LIB_FILE) ${MAKE_STUB_LIB} $(RANLIB_STUB) $(PKG_STUB_LIB_FILE) $(PKG_TEST_LIB_FILE): $(PKG_STUB_LIB_FILE) $(MAKE) PKG_TEST_LIB_FILE=dummy PKG_LIB_FILE=$(PKG_TEST_LIB_FILE) \ PKG_OBJECTS="$(PKG_TEST_OBJECTS)" \ | | > | 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | $(PKG_STUB_LIB_FILE): $(PKG_STUB_OBJECTS) -rm -f $(PKG_STUB_LIB_FILE) ${MAKE_STUB_LIB} $(RANLIB_STUB) $(PKG_STUB_LIB_FILE) $(PKG_TEST_LIB_FILE): $(PKG_STUB_LIB_FILE) $(MAKE) PKG_TEST_LIB_FILE=dummy PKG_LIB_FILE=$(PKG_TEST_LIB_FILE) \ PKG_OBJECTS="$(PKG_TEST_OBJECTS)" \ LIBS="$(PKG_TEST_LIBS)" \ CFLAGS="${SHLIB_CFLAGS} -DUSE_TCL_STUBS -DUSE_TCLOO_STUBS" \ $(PKG_TEST_LIB_FILE) .c.@OBJEXT@: $(COMPILE) -c `$(CYGPATH) $<` -o $@ .rc.$(RES): $(RC) $@ $(RCFLAGS) "$<" pkgIndex.tcl: Makefile -@echo Creating pkgIndex.tcl |
︙ | ︙ |