diff options
Diffstat (limited to 'package/exfat-utils/0001-fix-compiling-with-non-glibc-libcs.patch')
-rw-r--r-- | package/exfat-utils/0001-fix-compiling-with-non-glibc-libcs.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/package/exfat-utils/0001-fix-compiling-with-non-glibc-libcs.patch b/package/exfat-utils/0001-fix-compiling-with-non-glibc-libcs.patch deleted file mode 100644 index d280040206..0000000000 --- a/package/exfat-utils/0001-fix-compiling-with-non-glibc-libcs.patch +++ /dev/null @@ -1,26 +0,0 @@ -[PATCH] fix compilation when libc does not define __GLIBC__ - -libexfat would only compile on Linux with __GLIBC__ defined. Changed -to use __linux__ which likely better fits the original intent. - -Upstream status: applied. -See https://groups.google.com/forum/#!topic/exfat/8g3yumqrf1A. - -Signed-off-by: Brendan Heading <brendanheading@gmail.com> ---- - platform.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -Index: libexfat/libexfat/platform.h -=================================================================== ---- libexfat/libexfat/platform.h (revision 422) -+++ libexfat/libexfat/platform.h (working copy) -@@ -24,7 +24,7 @@ - #ifndef PLATFORM_H_INCLUDED - #define PLATFORM_H_INCLUDED - --#if defined(__GLIBC__) -+#if defined(__linux__) - - #include <endian.h> - #include <byteswap.h> |