diff options
author | Alexey Neyman <stilor@att.net> | 2017-02-15 22:49:21 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-02-15 22:49:21 -0800 |
commit | 1aa427719c500c20b9355fab8328353a3f54b346 (patch) | |
tree | 67b17be9018fa64b8f98efb454d8c8c700942ca7 | |
parent | 2d1b469f888858180ee95d43a0b89981b38cf93e (diff) | |
download | crosstool-ng-1aa427719c500c20b9355fab8328353a3f54b346.tar.gz crosstool-ng-1aa427719c500c20b9355fab8328353a3f54b346.tar.bz2 crosstool-ng-1aa427719c500c20b9355fab8328353a3f54b346.zip |
Fix undefined reference to _wopen on Cygwin
Signed-off-by: Alexey Neyman <stilor@att.net>
-rw-r--r-- | patches/zlib/1.2.11/110-no-_wopen-cygwin.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/patches/zlib/1.2.11/110-no-_wopen-cygwin.patch b/patches/zlib/1.2.11/110-no-_wopen-cygwin.patch new file mode 100644 index 00000000..6704e3e1 --- /dev/null +++ b/patches/zlib/1.2.11/110-no-_wopen-cygwin.patch @@ -0,0 +1,30 @@ +From a5e814c69315f3b7528418f6a5185c4f8a9dc250 Mon Sep 17 00:00:00 2001 +From: Alexey Neyman <stilor@att.net> +Date: Wed, 15 Feb 2017 22:36:35 -0800 +Subject: [PATCH] Fix unresolved reference to _wopen on Cygwin + +The default Cygwin GCC/glibc do not provide _wopen. This seems to be +part of Win32API, which is provided by x86-w64-mingw32-gcc - but that +compiler does not define __CYGWIN__, it defines _WIN32. + +Signed-off-by: Alexey Neyman <stilor@att.net> +--- + gzguts.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gzguts.h b/gzguts.h +index 990a4d2..6378d46 100644 +--- a/gzguts.h ++++ b/gzguts.h +@@ -39,7 +39,7 @@ + # include <io.h> + #endif + +-#if defined(_WIN32) || defined(__CYGWIN__) ++#if defined(_WIN32) + # define WIDECHAR + #endif + +-- +2.9.3 + |