add required packages for autopoint to spc doctor

This commit is contained in:
Marc Henderkes 2025-03-10 09:01:54 +01:00
parent 77bbc7fcaa
commit 511fd0e301
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ on:
php-version:
required: true
description: PHP version to compile
default: '8.3'
default: '8.4'
type: choice
options:
- '8.4'

View File

@ -17,7 +17,7 @@ class LinuxToolCheckList
public const TOOLS_ALPINE = [
'make', 'bison', 'flex',
'git', 'autoconf', 'automake',
'git', 'autoconf', 'automake', 'gettext-dev',
'tar', 'unzip', 'gzip',
'bzip2', 'cmake', 'gcc',
'g++', 'patch', 'binutils-gold',
@ -26,7 +26,7 @@ class LinuxToolCheckList
public const TOOLS_DEBIAN = [
'make', 'bison', 'flex',
'git', 'autoconf', 'automake',
'git', 'autoconf', 'automake', 'autopoint',
'tar', 'unzip', 'gzip',
'bzip2', 'cmake', 'patch',
'xz', 'libtoolize',