view src/netcdf-1-fixes.patch @ 6257:a09bdc36cc34 release octave-rc-7.1.90

Update version numbers and build rules for Octave 7.1.90 release candidate. * src/stable-octave.mk: Update version to 7.1.91. * src/release-octave.mk: Update version to 7.1.90. Update checksum and URL for release candidate.
author John W. Eaton <jwe@octave.org>
date Mon, 13 Jun 2022 14:33:47 -0400
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;