From f54924fa5d8d5959038e58adab7c552c3ca495ae Mon Sep 17 00:00:00 2001 From: Ileana Dumitrescu Date: Thu, 29 Feb 2024 15:58:26 +0200 Subject: [PATCH] ltmain.in: Expand process.h inclusion on Windows Multiple compilers on Windows besides the proprietary MSVC compiler require process.h, and not unistd.h. The inclusion check is expanded to include these alternative compilers which also require process.h. * ltmain.in: Replace _MSV_VER with WIN32 and !__GNU_C check --- build-aux/ltmain.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in index d94bce551..1b8d50316 100644 --- a/build-aux/ltmain.in +++ b/build-aux/ltmain.in @@ -3638,7 +3638,7 @@ EOF #endif #include #include -#ifdef _MSC_VER +#if defined (WIN32) && !defined (__GNUC_) # include # include # include -- 2.47.2