libtool-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: ltmain.in: correct windows compiler preprocessor


From: Ileana Dumitrescu
Subject: branch master updated: ltmain.in: correct windows compiler preprocessor checks
Date: Fri, 01 Mar 2024 13:08:52 -0500

This is an automated email from the git hooks/post-receive script.

ildumi pushed a commit to branch master
in repository libtool.

The following commit(s) were added to refs/heads/master by this push:
     new 3afd415a ltmain.in: correct windows compiler preprocessor checks
3afd415a is described below

commit 3afd415a9045fd7707879dc6fa1dc84916e00396
Author: Ozkan Sezer <sezeroz@gmail.com>
AuthorDate: Fri Mar 1 11:37:28 2024 +0300

    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 1b8d5031..af4970be 100644
--- a/build-aux/ltmain.in
+++ b/build-aux/ltmain.in
@@ -3638,7 +3638,7 @@ EOF
 #endif
 #include <stdio.h>
 #include <stdlib.h>
-#if defined (WIN32) && !defined (__GNUC_)
+#if defined (_WIN32) && !defined (__GNUC__)
 # include <direct.h>
 # include <process.h>
 # include <io.h>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]