diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2016-02-23 10:38:00 -0800 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2016-02-23 10:38:00 -0800 |
commit | cb601145999fd269f2acf751360cb6ee74d952b3 (patch) | |
tree | 6d91a8c0673c1f59a2de78518aa821c394b32204 /patches/glibc | |
parent | 17952f2fa4b37faa27c024f91208751f27395e4c (diff) | |
download | crosstool-ng-cb601145999fd269f2acf751360cb6ee74d952b3.tar.gz crosstool-ng-cb601145999fd269f2acf751360cb6ee74d952b3.tar.bz2 crosstool-ng-cb601145999fd269f2acf751360cb6ee74d952b3.zip |
glibc: port glibc patch from 2.22 to 2.23
Only one patch ported forward from 2.22:
* 100-Cygwin-doesnt-have-stat64.patch
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'patches/glibc')
-rw-r--r-- | patches/glibc/2.23/100-Cygwin-doesnt-have-stat64.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/patches/glibc/2.23/100-Cygwin-doesnt-have-stat64.patch b/patches/glibc/2.23/100-Cygwin-doesnt-have-stat64.patch new file mode 100644 index 00000000..9097628c --- /dev/null +++ b/patches/glibc/2.23/100-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 + |