# HG changeset patch # User Bram Moolenaar # Date 1665840603 -7200 # Node ID fe54ba93f830c6f15f501f75f6441e323d30d4f6 # Parent 43c9aef1234c185a40dbfb27f27f83a0e24ca874 patch 9.0.0759: huge build on macos does not use Perl Commit: https://github.com/vim/vim/commit/fa7bb1d937308a60280e070b01baba5342148ff7 Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Sat Oct 15 14:17:37 2022 +0100 patch 9.0.0759: huge build on macos does not use Perl Problem: Huge build on macos does not use Perl. Solution: Re-enable the Perl interface using "dynamic". (closes https://github.com/vim/vim/issues/11375) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -317,8 +317,8 @@ jobs: normal) ;; huge) - # FIXME: --enable-perlinterp temporarily removed, it always fails - echo "CONFOPT=--enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp" + # Use "dynamic" for Perl otherwise it fails. + echo "CONFOPT=--enable-perlinterp=dynamic --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 */ /**/ + 759, +/**/ 758, /**/ 757,