changeset 30878:05b68da4d64d v9.0.0773

patch 9.0.0773: huge build on macos uses dynamic Perl Commit: https://github.com/vim/vim/commit/d094e580b0873d67c2d30f60c9fd43c9a0044149 Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Sun Oct 16 14:53:34 2022 +0100 patch 9.0.0773: huge build on macos uses dynamic Perl Problem: Huge build on macos uses dynamic Perl. Solution: Use built-in Perl, uninstall the brew one. (closes https://github.com/vim/vim/issues/11382)
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Oct 2022 16:00:03 +0200
parents 096d7e00a7ea
children 2db86b9d26df
files .github/workflows/ci.yml src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -304,6 +304,7 @@ jobs:
         run: |
           brew install lua
           echo "LUA_PREFIX=/usr/local" >> $GITHUB_ENV
+          brew uninstall perl
 
       - name: Set up environment
         run: |
@@ -317,8 +318,7 @@ jobs:
           normal)
             ;;
           huge)
-            # Use "dynamic" for Perl otherwise it fails.
-            echo "CONFOPT=--enable-perlinterp=dynamic --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
+            echo "CONFOPT=--enable-perlinterp --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
             ;;
           esac
           ) >> $GITHUB_ENV
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    773,
+/**/
     772,
 /**/
     771,