view src/netcdf-1-fixes.patch @ 5960:49b3f6c6d255

octave-launch: Don't use short path names when building default-octave. * installer-files/octave-launch.c: Conditionally don't transform to short path names. * binary-dist-rules.mk (octave-launch): De-activate transformation to short path names when building "default-octave".
author Markus Mützel <markus.muetzel@gmx.de>
date Sun, 21 Nov 2021 12:29:36 +0100
parents 1b10dc73d928
children
line wrap: on
line source

From 9a8a2eb2694581f6caf103aee593ca9607be17bd Mon Sep 17 00:00:00 2001
From: Milton Woods <miltonjwoods@gmail.com>
Date: Mon, 23 Aug 2021 14:22:57 +1000
Subject: [PATCH] Fix path conversions for mingw-w64

---
 libdispatch/dpathmgr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libdispatch/dpathmgr.c b/libdispatch/dpathmgr.c
index eb450534e..6a5890423 100644
--- a/libdispatch/dpathmgr.c
+++ b/libdispatch/dpathmgr.c
@@ -861,7 +861,7 @@ getlocalpathkind(void)
 	kind = NCPD_CYGWIN;
 #elif __MSYS__
 	kind = NCPD_MSYS;
-#elif _MSC_VER /* not _WIN32 */
+#elif defined(_MSC_VER) || defined(__MINGW32__) /* not _WIN32 */
 	kind = NCPD_WIN;
 #else
 	kind = NCPD_NIX;