# HG changeset patch # User Bram Moolenaar # Date 1681835404 -7200 # Node ID e26c71f837f54511ed96732200095546eafb0530 # Parent e52c696a56f3819524aa33490504f822c4f40134 patch 9.0.1465: Haiku build fails Commit: https://github.com/vim/vim/commit/89f9ffbe810c4705439096d646681e734e353e3e Author: ichizok Date: Tue Apr 18 17:20:08 2023 +0100 patch 9.0.1465: Haiku build fails Problem: Haiku build fails. Solution: Do not include globals.h and proto.h twice. (Ozaki Kiichi, closes #12273) diff --git a/src/gui_haiku.cc b/src/gui_haiku.cc --- a/src/gui_haiku.cc +++ b/src/gui_haiku.cc @@ -75,8 +75,6 @@ extern "C" { #include #include "vim.h" -#include "globals.h" -#include "proto.h" #include "version.h" } // extern "C" 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 */ /**/ + 1465, +/**/ 1464, /**/ 1463,