# HG changeset patch # User Bram Moolenaar # Date 1681403404 -7200 # Node ID e87f890610766a3d61e65e26c46fe32756c92d65 # Parent 310757299e72d34baf05074c41729ac55c9cdb85 patch 9.0.1448: diff test fails on MacOS 13 Commit: https://github.com/vim/vim/commit/d76670fc0d9bd9e09d8a3aa68ef58f796136d964 Author: ichizok Date: Thu Apr 13 17:23:45 2023 +0100 patch 9.0.1448: diff test fails on MacOS 13 Problem: Diff test fails on MacOS 13. Solution: Install GNU diffutils. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/12258) diff --git a/.cirrus.yml b/.cirrus.yml --- a/.cirrus.yml +++ b/.cirrus.yml @@ -36,7 +36,7 @@ macos_task: timeout_in: 20m install_script: - brew update - - brew install gettext libtool + - brew install gettext libtool diffutils build_script: - NPROC=$(getconf _NPROCESSORS_ONLN) - ./configure --with-features=${FEATURES} 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 */ /**/ + 1448, +/**/ 1447, /**/ 1446,