From 511fd0e301670123e397fc99c1811eecdf7ee3d1 Mon Sep 17 00:00:00 2001 From: Marc Henderkes Date: Mon, 10 Mar 2025 09:01:54 +0100 Subject: [PATCH] add required packages for autopoint to spc doctor --- .github/workflows/build-unix.yml | 2 +- src/SPC/doctor/item/LinuxToolCheckList.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-unix.yml b/.github/workflows/build-unix.yml index bfcf098e..0ec63e24 100644 --- a/.github/workflows/build-unix.yml +++ b/.github/workflows/build-unix.yml @@ -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' diff --git a/src/SPC/doctor/item/LinuxToolCheckList.php b/src/SPC/doctor/item/LinuxToolCheckList.php index 0e4b236a..810614be 100644 --- a/src/SPC/doctor/item/LinuxToolCheckList.php +++ b/src/SPC/doctor/item/LinuxToolCheckList.php @@ -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',