view src/netcdf-1-fixes.patch @ 6215:d18a5545df0d release

build-gettext: Don't build emacs bindings. * src/build-gettext.mk: The `emacs` installed on the build system might be incompatible with the STL built by build-gcc. We probably don't need the emacs bindings for the `gettext` build tool anyway. So skip building those bindings.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 07 May 2022 12:01:10 +0200
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;