Skip to content

Commit e1aa038

Browse files
author
jan.nijtmans
committed
Update TEA. Download tclconfig through git
1 parent 78da942 commit e1aa038

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.github/workflows/linux-build.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: Linux
22
on: [push]
3+
permissions:
4+
contents: read
35
defaults:
46
run:
57
shell: bash
@@ -14,13 +16,17 @@ jobs:
1416
- "clang"
1517
steps:
1618
- name: Checkout
17-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
20+
- name: Checkout tclconfig
21+
uses: actions/checkout@v5
22+
with:
23+
repository: tcltk/tclconfig
24+
ref: main
25+
path: tclconfig
1826
- name: Setup Environment (compiler=${{ matrix.compiler }})
1927
run: |
2028
sudo apt-get install tcl8.6-dev
2129
mkdir "$HOME/install dir"
22-
curl https://core.tcl-lang.org/tclconfig/tarball/main/tclconfig.tar.gz >tclconfig.tar.gz
23-
tar xfz tclconfig.tar.gz
2430
echo "CFGOPT=--with-tcl=/usr/lib/tcl8.6" >> $GITHUB_ENV
2531
echo "CC=$COMPILER" >> $GITHUB_ENV
2632
env:

configure

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6770,6 +6770,7 @@ fi
67706770
MACHINE="IA64"
67716771
;;
67726772
esac
6773+
do64bit_ok=yes
67736774
fi
67746775

67756776
if test "$GCC" != "yes" ; then

itclWidget/configure

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7409,6 +7409,7 @@ fi
74097409
MACHINE="IA64"
74107410
;;
74117411
esac
7412+
do64bit_ok=yes
74127413
fi
74137414

74147415
if test "$GCC" != "yes" ; then

itclWidget/tclconfig/tcl.m4

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1193,6 +1193,7 @@ AC_DEFUN([TEA_CONFIG_CFLAGS], [
11931193
MACHINE="IA64"
11941194
;;
11951195
esac
1196+
do64bit_ok=yes
11961197
fi
11971198
11981199
if test "$GCC" != "yes" ; then

0 commit comments

Comments
 (0)