diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2015-11-12 21:50:31 -0800 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-11-12 21:50:31 -0800 |
commit | 57de8dcf22d5ddddee6a44f87f45f2c279fdb1ac (patch) | |
tree | 9477fd0a23bbe297fd11178b7ed6cd8c3c8a268a /patches/glibc | |
parent | 4c9218d51dc3c6c84a8d5c488f234ed7575107c6 (diff) | |
parent | 5f3774cd656ba54200cb192fc1454c5232347b70 (diff) | |
download | crosstool-ng-57de8dcf22d5ddddee6a44f87f45f2c279fdb1ac.tar.gz crosstool-ng-57de8dcf22d5ddddee6a44f87f45f2c279fdb1ac.tar.bz2 crosstool-ng-57de8dcf22d5ddddee6a44f87f45f2c279fdb1ac.zip |
Merge pull request #239 from diorcety-ctng/cc-cygwin-mingw-linux
Canadian cross build = x86_64 Cygwin host = x86_64 MinGW_W64 target = x86_64 GNU/Linux
Diffstat (limited to 'patches/glibc')
-rw-r--r-- | patches/glibc/2.22/110-Cygwin-doesnt-have-stat64.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/patches/glibc/2.22/110-Cygwin-doesnt-have-stat64.patch b/patches/glibc/2.22/110-Cygwin-doesnt-have-stat64.patch new file mode 100644 index 00000000..9097628c --- /dev/null +++ b/patches/glibc/2.22/110-Cygwin-doesnt-have-stat64.patch @@ -0,0 +1,13 @@ +--- glibc-2.22/sunrpc/rpc_main.c.orig 2015-08-05 07:42:21.000000000 +0100 ++++ glibc-2.22/sunrpc/rpc_main.c 2015-10-21 23:37:31.071268800 +0100 +@@ -51,6 +51,10 @@ + #include "rpc_scan.h" + #include "proto.h" + ++#if defined(__CYGWIN__) ++#define stat64 stat ++#endif ++ + #include "../version.h" + #define PACKAGE _libc_intl_domainname + |