Skip to content

Commit f69bdda

Browse files
author
jan.nijtmans
committed
Prevent (unix|win)/configure being re-generated with anything else then autoconf-2.72
1 parent 25f1d9c commit f69bdda

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/linux-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
ERROR_ON_FAILURES: 1
1717
jobs:
1818
build:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
strategy:
2121
matrix:
2222
compiler:
@@ -124,7 +124,7 @@ jobs:
124124
name: Tk ${{ env.VERSION }} HTML documentation (snapshot)
125125
path: /tmp/dist/tk*/html
126126
test:
127-
runs-on: ubuntu-22.04
127+
runs-on: ubuntu-24.04
128128
strategy:
129129
matrix:
130130
compiler:

.github/workflows/linux-with-tcl9-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
ERROR_ON_FAILURES: 1
1717
jobs:
1818
build:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
strategy:
2121
matrix:
2222
compiler:
@@ -105,7 +105,7 @@ jobs:
105105
exit 1
106106
}
107107
test:
108-
runs-on: ubuntu-22.04
108+
runs-on: ubuntu-24.04
109109
strategy:
110110
matrix:
111111
compiler:

.github/workflows/onefiledist.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
linux:
1313
name: Linux
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515
defaults:
1616
run:
1717
shell: bash

.github/workflows/win-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
ERROR_ON_FAILURES: 1
1313
jobs:
1414
msvc:
15-
runs-on: windows-2022
15+
runs-on: windows-2025
1616
defaults:
1717
run:
1818
shell: powershell
@@ -99,7 +99,7 @@ jobs:
9999
throw "nmake exit code: $lastexitcode"
100100
}
101101
gcc:
102-
runs-on: windows-2019
102+
runs-on: windows-2025
103103
defaults:
104104
run:
105105
shell: msys2 {0}

unix/configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dnl generate the file "configure", which is run during Tk installation
44
dnl to configure the system for the local environment.
55

66
AC_INIT([tk],[9.1])
7-
AC_PREREQ([2.69])
7+
AC_PREREQ([2.72])
88

99
dnl This is only used when included from macosx/configure.ac
1010
m4_ifdef([SC_USE_CONFIG_HEADERS], [

win/configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
AC_INIT([tk],[9.1])
77
AC_CONFIG_SRCDIR([../generic/tk.h])
8-
AC_PREREQ([2.69])
8+
AC_PREREQ([2.72])
99

1010
# The following define is needed when building with Cygwin since newer
1111
# versions of autoconf incorrectly set SHELL to /bin/bash instead of

0 commit comments

Comments
 (0)