From 27da212d04dac062d59af09b49da6e9237c3a1b0 Mon Sep 17 00:00:00 2001 From: Vedang Manerikar Date: Fri, 7 Jan 2022 10:10:15 +0530 Subject: Install base-devel, autoconf on Appveyor Since 6th Jan, 2022, builds on Appveyor are failing because they cannot find `autoreconf`[1][2]. This should be implemented from `base-devel`, but even with `base-devel` available the builds are failing. Adding an explicit require on `autoconf` in the hope that this is fixed. 1: https://ci.appveyor.com/project/vedang/pdf-tools/builds/42114287 2: https://ci.appveyor.com/project/vedang/pdf-tools/builds/42101965 Relates to: #68 --- ci/appveyor/install.bat | 2 +- server/autobuild | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ci/appveyor/install.bat b/ci/appveyor/install.bat index 007d489..a306c6b 100644 --- a/ci/appveyor/install.bat +++ b/ci/appveyor/install.bat @@ -14,7 +14,7 @@ IF %COMPILER%==msys2 ( SET "PATH=C:\%MSYS2_DIR%\%MSYSTEM%\bin;C:\%MSYS2_DIR%\usr\bin;C:\%MSYS2_DIR%\home\appveyor\.cask\bin;%PATH%" REM dependencies - bash -lc "pacman -S --needed --noconfirm git mingw-w64-x86_64-zlib mingw-w64-x86_64-libpng mingw-w64-x86_64-poppler mingw-w64-x86_64-imagemagick openssl mingw-w64-x86_64-openssl mingw-w64-x86_64-python2 mingw-w64-x86_64-emacs" + bash -lc "pacman -S --needed --noconfirm git base-devel autoconf mingw-w64-x86_64-zlib mingw-w64-x86_64-libpng mingw-w64-x86_64-poppler mingw-w64-x86_64-imagemagick openssl mingw-w64-x86_64-openssl mingw-w64-x86_64-python2 mingw-w64-x86_64-emacs" REM Set up Cask bash -lc "git clone https://github.com/cask/cask ~/.cask" diff --git a/server/autobuild b/server/autobuild index 4248979..b128e9d 100755 --- a/server/autobuild +++ b/server/autobuild @@ -318,15 +318,21 @@ os_msys2() { case $MSYSTEM in MINGW64) PACKAGES="base-devel + autoconf mingw-w64-x86_64-libpng mingw-w64-x86_64-poppler + mingw-w64-x86_64-imagemagick mingw-w64-x86_64-toolchain + mingw-w64-x86_64-openssl mingw-w64-x86_64-zlib" ;; MINGW32) PACKAGES="base-devel + autoconf mingw-w64-i686-libpng mingw-w64-i686-poppler + mingw-w64-i686-imagemagick mingw-w64-i686-toolchain + mingw-w64-i686-openssl mingw-w64-i686-zlib" ;; MSYS) case $(uname -m) in -- cgit v1.0