From 3afd415a9045fd7707879dc6fa1dc84916e00396 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Fri, 1 Mar 2024 11:37:28 +0300 Subject: [PATCH] ltmain.in: correct windows compiler preprocessor checks Commit f54924fa5d8d5959038e58adab7c552c3ca495ae seems to have been wrongly applied. --- 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 1b8d50316..af4970bed 100644 --- a/build-aux/ltmain.in +++ b/build-aux/ltmain.in @@ -3638,7 +3638,7 @@ EOF #endif #include #include -#if defined (WIN32) && !defined (__GNUC_) +#if defined (_WIN32) && !defined (__GNUC__) # include # include # include -- 2.47.2