From 693dacbb1c0bc805e3e6aedaca5a57f04eb6ec9c Mon Sep 17 00:00:00 2001 From: Carlo Bramini <30959007+carlo-bramini@users.noreply.github.com> Date: Mon, 1 Jul 2019 13:31:26 +0200 Subject: [PATCH] Use lower case file name with #include I tried to cross compile harfbuzz for Windows and an error was generated because `DWrite_1.h` was not found. This happened because the filesystem is case sensitive and for this reason that include file was not found. The right name of the file to be used is `dwrite_1.h`, with all letters not capitalized: https://docs.microsoft.com/en-us/windows/desktop/api/dwrite_1/ I also verified in the installation of VS2017 with Windows Kit v10 and in that place it was also lower case. So, in my opinion it should be better to change this. --- src/hb-directwrite.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-directwrite.cc b/src/hb-directwrite.cc index 1f00aa47..1b2bd196 100644 --- a/src/hb-directwrite.cc +++ b/src/hb-directwrite.cc @@ -28,7 +28,7 @@ #include "hb-shaper-impl.hh" -#include +#include #include "hb-directwrite.h" -- GitLab