summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVedang Manerikar <ved.manerikar@gmail.com>2022-01-07 10:10:15 +0530
committerVedang Manerikar <ved.manerikar@gmail.com>2022-01-07 18:11:29 +0530
commit27da212d04dac062d59af09b49da6e9237c3a1b0 (patch)
treec4d32d7b05b29b7798591e5e08635296fe7eead5
parent4794b7c087b70421530658cd35c8705e319b76b8 (diff)
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
-rw-r--r--ci/appveyor/install.bat2
-rwxr-xr-xserver/autobuild6
2 files changed, 7 insertions, 1 deletions
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