diff options
author | Christophe Vu-Brugier <cvubrugier@lacie.com> | 2013-03-07 00:21:05 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-03-10 23:02:32 +0100 |
commit | 4f249a8b349206fb82ed1cbd65bab2253451d844 (patch) | |
tree | 784855b4cbcd4c6e65a9818327d735069182577b /package/mdadm/mdadm-2.6.9-001.uclibc-dont-force-largefile.patch | |
parent | c64cfee04325dbcc57028885cbaf278dddca451d (diff) | |
download | buildroot-novena-4f249a8b349206fb82ed1cbd65bab2253451d844.tar.gz buildroot-novena-4f249a8b349206fb82ed1cbd65bab2253451d844.zip |
package/mdadm: update to v3.2.6
Signed-off-by: Christophe Vu-Brugier <cvubrugier@lacie.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/mdadm/mdadm-2.6.9-001.uclibc-dont-force-largefile.patch')
-rw-r--r-- | package/mdadm/mdadm-2.6.9-001.uclibc-dont-force-largefile.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/package/mdadm/mdadm-2.6.9-001.uclibc-dont-force-largefile.patch b/package/mdadm/mdadm-2.6.9-001.uclibc-dont-force-largefile.patch deleted file mode 100644 index c671437d2..000000000 --- a/package/mdadm/mdadm-2.6.9-001.uclibc-dont-force-largefile.patch +++ /dev/null @@ -1,27 +0,0 @@ -[PATCH] mdadm: don't enable largefile support unconditionally on uClibc - -uClibc can be compiled without largefile support (and errors out if -_FILE_OFFSET_BITS is set to 64), so don't define it if that combination -is detected. - -Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> ---- - mdadm.h | 4 ++++ - 1 file changed, 4 insertions(+) - -Index: mdadm-2.6.7.1/mdadm.h -=================================================================== ---- mdadm-2.6.7.1.orig/mdadm.h -+++ mdadm-2.6.7.1/mdadm.h -@@ -28,7 +28,11 @@ - */ - - #define _GNU_SOURCE -+#include <features.h> -+/* uclibc without largefile support #errors on _FILE_OFFSET_BITS=64 */ -+#if !(defined(__UCLIBC__) && !defined(__UCLIBC_HAS_LFS__)) - #define _FILE_OFFSET_BITS 64 -+#endif - #include <unistd.h> - #if !defined(__dietlibc__) && !defined(__KLIBC__) - extern __off64_t lseek64 __P ((int __fd, __off64_t __offset, int __whence)); |