Skip to content

Commit

Permalink
Issue #728: Disable fast TCL interp for tcl9+ temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert McLay committed Oct 23, 2024
1 parent 601f827 commit 2c7b2d1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions README.new
Original file line number Diff line number Diff line change
Expand Up @@ -187,5 +187,7 @@ Lmod 8.7+
(8.7.51) * Fix bug in load test.
(8.7.52) * Add MName:isVisible() so that load hooks can figure out if a loaded module is is visible or not.
(8.7.53) * updating docs to include link to 165_debugging_lmod.rst
W.I.P.:
(8.7.54) * Disallow fast TCL interp with TCL 9+. This will hopely fixed in the future (;->)


6 changes: 3 additions & 3 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -4641,9 +4641,9 @@ fi
DIR=$(xcrun --show-sdk-path)
TCL_INCLUDE="-I${DIR}/usr/include"
else
for i in "" tcl tcl8.8 tcl8.7 tcl8.6 tcl8.5; do
if test -f /usr/include/$i/tcl.h ; then
TCL_INCLUDE="-I/usr/include/$i"
for i in /usr/include /usr/include/tcl /usr/include/tcl9* /usr/include/tcl8* ; do
if test -f $i/tcl.h ; then
TCL_INCLUDE="-I$i"
break;
fi
done
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -770,9 +770,9 @@ if test "$FAST_TCL_INTERP" = yes ; then
DIR=$(xcrun --show-sdk-path)
TCL_INCLUDE="-I${DIR}/usr/include"
else
for i in "" tcl tcl8.8 tcl8.7 tcl8.6 tcl8.5; do
if test -f /usr/include/$i/tcl.h ; then
TCL_INCLUDE="-I/usr/include/$i"
for i in /usr/include /usr/include/tcl /usr/include/tcl9* /usr/include/tcl8* ; do
if test -f $i/tcl.h ; then
TCL_INCLUDE="-I$i"
break;
fi
done
Expand Down

0 comments on commit 2c7b2d1

Please sign in to comment.