From de290e91e3dbadfc6797ae5435e71046c2361077 Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 8 Jul 2024 15:40:01 +0100 Subject: [PATCH] Problem: macos-latest CIs both failing Solution: Install `libtool`. This seems to be the issue, given the CI output of a recent run, i.e: ```bash configure.ac:1023: the top level configure.ac:80: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.ac:81: error: possibly undefined macro: AC_PROG_LIBTOOL configure:7350: error: possibly undefined macro: AC_DISABLE_STATIC configure:7354: error: possibly undefined macro: AC_ENABLE_STATIC autoreconf: error: /opt/homebrew/Cellar/autoconf/2.72/bin/autoconf failed with exit status: 1 autogen.sh: error: autoreconf exited with status 1 + exit 1 ``` https://github.com/zeromq/libzmq/actions/runs/9841129190/job/27167025854?pr=4699#step:12:200 --- .github/workflows/CI.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index e4ffffb2..f0cb245b 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -112,11 +112,11 @@ jobs: CXX: clang++ - os: macos-latest BUILD_TYPE: default - PACKAGES: automake autoconf + PACKAGES: automake autoconf libtool DRAFT: enabled - os: macos-latest BUILD_TYPE: default - PACKAGES: automake autoconf libsodium + PACKAGES: automake autoconf libtool libsodium CURVE: libsodium DRAFT: disabled env: