Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Don't warn any more for an OK situation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4ebdc474eceb1a698df4316c0b141b05 |
User & Date: | jan.nijtmans 2018-12-03 14:35:59.272 |
Context
2019-01-17
| ||
09:45 | fixes configure error "Windows/CE and GCC builds incompatible" as well as proper tcl_platform (if cross-compiled in unix) by mingw build. check-in: 8b4bbb54c8 user: sebres tags: trunk | |
2019-01-09
| ||
13:44 | fix cross-compile build for windows(mingw) from *nix: set default wince to off for all platforms exepting windows, take care the option (--enable-wince/--disable-wince) check-in: 66ccb87578 user: sebres tags: sebres-fix-cross-comp-mingw | |
2018-12-03
| ||
14:35 | Don't warn any more for an OK situation. check-in: 4ebdc474ec user: jan.nijtmans tags: trunk | |
2018-10-31
| ||
20:58 | Add support for DragonFly check-in: 6ff48b25e2 user: jan.nijtmans tags: trunk | |
Changes
Changes to tcl.m4.
︙ | ︙ | |||
878 879 880 881 882 883 884 | case ${TCL_DEFS} in *THREADS=1*) if test "${TCL_THREADS}" = "0"; then AC_MSG_WARN([ Building ${PACKAGE_NAME} without threads enabled, but building against Tcl that IS thread-enabled. It is recommended to use --enable-threads.]) fi | < < < < < < < < | 878 879 880 881 882 883 884 885 886 887 888 889 890 891 | case ${TCL_DEFS} in *THREADS=1*) if test "${TCL_THREADS}" = "0"; then AC_MSG_WARN([ Building ${PACKAGE_NAME} without threads enabled, but building against Tcl that IS thread-enabled. It is recommended to use --enable-threads.]) fi ;; esac AC_SUBST(TCL_THREADS) ]) #------------------------------------------------------------------------ # TEA_ENABLE_SYMBOLS -- |
︙ | ︙ |