From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Sun, 16 Oct 2022 13:53:34 +0000 (+0100) Subject: patch 9.0.0773: huge build on macos uses dynamic Perl X-Git-Tag: v9.0.0773 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d094e580b0873d67c2d30f60c9fd43c9a0044149;p=thirdparty%2Fvim.git 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 #11382) --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e47142ab8..9ee8438a9e 100644 --- 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 index a035b035a6..79e1b8f17f 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 773, /**/ 772, /**/