# HG changeset patch # User Bram Moolenaar # Date 1665928803 -7200 # Node ID 05b68da4d64d1b773ec41ef87510bdc70b3adaa7 # Parent 096d7e00a7ea509b180c41d42ae280485843c8d0 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) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- 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 diff --git a/src/version.c b/src/version.c --- 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,