From: Ileana Dumitrescu Date: Thu, 29 Feb 2024 13:58:26 +0000 (+0200) Subject: ltmain.in: Expand process.h inclusion on Windows X-Git-Tag: v2.5.0~23 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=f54924fa5d8d5959038e58adab7c552c3ca495ae;p=thirdparty%2Flibtool.git 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 --- 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