Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | It looks like "Resources/Scripts" is needed as well |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | bug-1562e10c58 |
Files: | files | file ages | folders |
SHA3-256: |
84eb0eec7db4918b8707e6d562ad118a |
User & Date: | jan.nijtmans 2024-08-13 21:02:03 |
Context
2024-08-14
| ||
19:55 | Adding a version was a bad idea check-in: 18523892a5 user: jan.nijtmans tags: core-8-6-branch | |
2024-08-13
| ||
21:02 | It looks like "Resources/Scripts" is needed as well Closed-Leaf check-in: 84eb0eec7d user: jan.nijtmans tags: bug-1562e10c58 | |
08:51 | Mark incr-1.31 testcase as "knownBug" in 8.6. Is not fixed yet on 64-bit platforms. check-in: bcdd7f1efb user: jan.nijtmans tags: core-8-6-branch | |
Changes
Changes to unix/configure.
︙ | ︙ | |||
19236 19237 19238 19239 19240 19241 19242 | # another for platform-independent scripts. #-------------------------------------------------------------------- if test "$FRAMEWORK_BUILD" = "1" ; then test -z "$TCL_PACKAGE_PATH" && \ TCL_PACKAGE_PATH="~/Library/Tcl:/Library/Tcl:~/Library/Frameworks:/Library/Frameworks" # Allow tclsh to find Tk when multiple versions are installed. See Tk [1562e10c58]. | | | 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 | # another for platform-independent scripts. #-------------------------------------------------------------------- if test "$FRAMEWORK_BUILD" = "1" ; then test -z "$TCL_PACKAGE_PATH" && \ TCL_PACKAGE_PATH="~/Library/Tcl:/Library/Tcl:~/Library/Frameworks:/Library/Frameworks" # Allow tclsh to find Tk when multiple versions are installed. See Tk [1562e10c58]. TCL_PACKAGE_PATH="$TCL_PACKAGE_PATH:/Library/Frameworks/Tk.framework/Versions/8.6/Resources/Scripts" test -z "$TCL_MODULE_PATH" && \ TCL_MODULE_PATH="~/Library/Tcl /Library/Tcl" elif test "$prefix/lib" != "$libdir"; then test -z "$TCL_PACKAGE_PATH" && TCL_PACKAGE_PATH="${libdir}:${prefix}/lib" else test -z "$TCL_PACKAGE_PATH" && TCL_PACKAGE_PATH="${prefix}/lib" fi |
︙ | ︙ |
Changes to unix/configure.in.
︙ | ︙ | |||
861 862 863 864 865 866 867 | # another for platform-independent scripts. #-------------------------------------------------------------------- if test "$FRAMEWORK_BUILD" = "1" ; then test -z "$TCL_PACKAGE_PATH" && \ TCL_PACKAGE_PATH="~/Library/Tcl:/Library/Tcl:~/Library/Frameworks:/Library/Frameworks" # Allow tclsh to find Tk when multiple versions are installed. See Tk [1562e10c58]. | | | 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 | # another for platform-independent scripts. #-------------------------------------------------------------------- if test "$FRAMEWORK_BUILD" = "1" ; then test -z "$TCL_PACKAGE_PATH" && \ TCL_PACKAGE_PATH="~/Library/Tcl:/Library/Tcl:~/Library/Frameworks:/Library/Frameworks" # Allow tclsh to find Tk when multiple versions are installed. See Tk [1562e10c58]. TCL_PACKAGE_PATH="$TCL_PACKAGE_PATH:/Library/Frameworks/Tk.framework/Versions/8.6/Resources/Scripts" test -z "$TCL_MODULE_PATH" && \ TCL_MODULE_PATH="~/Library/Tcl /Library/Tcl" elif test "$prefix/lib" != "$libdir"; then test -z "$TCL_PACKAGE_PATH" && TCL_PACKAGE_PATH="${libdir}:${prefix}/lib" else test -z "$TCL_PACKAGE_PATH" && TCL_PACKAGE_PATH="${prefix}/lib" fi |
︙ | ︙ |