From 9bbe236f6adead060d83c87a581674f4917db3de Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Tue, 4 Aug 2020 10:05:23 +0200 Subject: Manually build re2c on macos Avoid issues with the licensing mafia, see: https://github.com/Homebrew/homebrew-core/pull/59094 Closes GH-5932. --- azure/macos/brew.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'azure/macos') diff --git a/azure/macos/brew.yml b/azure/macos/brew.yml index 02cb736d02..fb8b9ace2d 100644 --- a/azure/macos/brew.yml +++ b/azure/macos/brew.yml @@ -7,8 +7,7 @@ steps: - script: | brew install pkg-config \ autoconf \ - bison \ - re2c + bison displayName: 'Install Build Tools' - script: | brew install openssl@1.1 \ @@ -34,3 +33,11 @@ steps: brew upgrade libzip brew link icu4c gettext --force displayName: 'Install Build Dependencies' + - script: | + wget https://github.com/skvadrik/re2c/releases/download/2.0.1/re2c-2.0.1.tar.xz + tar -xf re2c-2.0.1.tar.xz + cd re2c-2.0.1 + ./configure + make -j$(sysctl -n hw.ncpu) + make install + displayName: 'Build re2c' -- cgit v1.2.1