From 1bd9a87e2f9d6f46d2de58f8f24208ea44fd81d8 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Wed, 9 Mar 2022 15:48:04 +0000 Subject: [PATCH] Don't '#include ' on Cygwin On Cygwin, don't '#include ', so WIN32 isn't defined, so we don't end up trying to use various MSVC functions, which don't exist in our C runtime library. The whole point of the Cygwin C runtime library is to try to look like POSIX, so we always want the POSIX code in those pre-processor conditionals. --- configure.ac | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/configure.ac b/configure.ac index 7a1bbd0..3afd4db 100644 --- a/configure.ac +++ b/configure.ac @@ -3,6 +3,7 @@ AC_PREREQ(2.60) AC_INIT([osslsigncode], [2.4.0-dev], [Michal.Trojnara@stunnel.org]) AC_CONFIG_AUX_DIR([.]) AC_CONFIG_HEADERS([config.h]) +AC_CANONICAL_HOST AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([osslsigncode.c]) @@ -69,11 +70,18 @@ AC_CHECK_HEADERS( )], [have_mmap=no] ) + +case "${host_os}" in + cygwin*) + ;; + *) AC_CHECK_HEADERS( [windows.h], [], [have_MapViewOfFile=no] ) +esac + AS_IF([test "x$have_mmap$have_MapViewOfFile" = "xnono"], [AC_MSG_ERROR([Need file mapping function to buid.])])