Skip to content

Commit

Permalink
Few more 9.0 -> 9.1 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.nijtmans committed Jan 7, 2025
1 parent eee1b9e commit 59f617f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 24 deletions.
14 changes: 0 additions & 14 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,6 @@ changes to the Tcl source code at

> [Tcl Source Code](https://core.tcl-lang.org/tcl/timeline)
Release Tcl 9.0.2 arises from the check-in with tag `core-9-0-2`.

Tcl patch releases have the primary purpose of delivering bug fixes
to the userbase.

# Bug fixes
- Better error-message than "interpreter uses an incompatible stubs mechanism"](https://core.tcl-lang.org/tcl/tktview/fc3509)

# Incompatibilities
- No known incompatibilities with the Tcl 9.0.0 public interface.

# Updated bundled packages, libraries, standards, data
- sqlite3 3.48.0

Release Tcl 9.1a0 arises from the check-in with tag `core-9-1-a0`.

Highlighted differences between Tcl 9.1 and Tcl 9.0 are summarized below,
Expand Down
4 changes: 2 additions & 2 deletions macosx/README
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ Detailed Instructions for building with macosx/GNUmakefile
- Unpack the Tcl source release archive.

- The following instructions assume the Tcl source tree is named "tcl${ver}",
(where ${ver} is a shell variable containing the Tcl version number e.g. '9.0').
(where ${ver} is a shell variable containing the Tcl version number e.g. '9.1').
Setup this shell variable as follows:
ver="9.0"
ver="9.1"

- Setup environment variables as desired, e.g. for a universal build on 10.9:
CFLAGS="-arch x86_64 -arch arm64 -mmacosx-version-min=10.9"
Expand Down
12 changes: 6 additions & 6 deletions unix/tcl.m4
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ AC_DEFUN([SC_PATH_TCLCONFIG], [
`ls -d /usr/local/lib 2>/dev/null` \
`ls -d /usr/contrib/lib 2>/dev/null` \
`ls -d /usr/pkg/lib 2>/dev/null` \
`ls -d /usr/lib/tcl9.0 2>/dev/null` \
`ls -d /usr/lib/tcl9.1 2>/dev/null` \
`ls -d /usr/lib 2>/dev/null` \
`ls -d /usr/lib64 2>/dev/null` \
`ls -d /usr/local/lib/tcl9.0 2>/dev/null` \
`ls -d /usr/local/lib/tcl/tcl9.0 2>/dev/null` \
`ls -d /usr/local/lib/tcl9.1 2>/dev/null` \
`ls -d /usr/local/lib/tcl/tcl9.1 2>/dev/null` \
; do
if test -f "$i/tclConfig.sh" ; then
ac_cv_c_tclconfig="`(cd $i; pwd)`"
Expand Down Expand Up @@ -226,11 +226,11 @@ AC_DEFUN([SC_PATH_TKCONFIG], [
`ls -d /usr/local/lib 2>/dev/null` \
`ls -d /usr/contrib/lib 2>/dev/null` \
`ls -d /usr/pkg/lib 2>/dev/null` \
`ls -d /usr/lib/tk9.0 2>/dev/null` \
`ls -d /usr/lib/tk9.1 2>/dev/null` \
`ls -d /usr/lib 2>/dev/null` \
`ls -d /usr/lib64 2>/dev/null` \
`ls -d /usr/local/lib/tk9.0 2>/dev/null` \
`ls -d /usr/local/lib/tcl/tk9.0 2>/dev/null` \
`ls -d /usr/local/lib/tk9.1 2>/dev/null` \
`ls -d /usr/local/lib/tcl/tk9.1 2>/dev/null` \
; do
if test -f "$i/tkConfig.sh" ; then
ac_cv_c_tkconfig="`(cd $i; pwd)`"
Expand Down
4 changes: 2 additions & 2 deletions win/README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Tcl 9.0 for Windows
Tcl 9.1 for Windows

1. Introduction
---------------
Expand All @@ -16,7 +16,7 @@ The information in this file is maintained on the web at:

In order to compile Tcl for Windows, you need the following:

Tcl 9.0 Source Distribution (plus any patches)
Tcl 9.1 Source Distribution (plus any patches)

and

Expand Down

0 comments on commit 59f617f

Please sign in to comment.