From 6d9147263b88781d615689f0c9d4078de956f849 Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Sat, 13 Jan 2024 22:28:54 -0500 Subject: [PATCH] * CMakeLists.txt: Accommodate MingGW. See https://github.com/StephanTLavavej/mingw-distro/issues/97. --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8dbca01e6..cbee5b388 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -297,7 +297,7 @@ if (NOT FT_DISABLE_BROTLI) endif () # Create the configuration file -if (UNIX) +if (UNIX AND NOT WIN32) check_include_file("unistd.h" HAVE_UNISTD_H) check_include_file("fcntl.h" HAVE_FCNTL_H) @@ -423,10 +423,10 @@ set(BASE_SRCS src/winfonts/winfnt.c ) -if (UNIX) - list(APPEND BASE_SRCS "builds/unix/ftsystem.c") -elseif (WIN32) +if (WIN32) list(APPEND BASE_SRCS "builds/windows/ftsystem.c") +elseif (UNIX) + list(APPEND BASE_SRCS "builds/unix/ftsystem.c") else () list(APPEND BASE_SRCS "src/base/ftsystem.c") endif ()