summaryrefslogtreecommitdiffstats
path: root/package/busybox/patches
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-01-07 15:18:15 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-01-07 15:18:15 +0000
commit66b58ae2293c58273a1dc88a798a25758b26e477 (patch)
treee63b1defb84a540a688329c7dcfcc4d5bf465959 /package/busybox/patches
parentdd03b56357dec67c4e38952f3438f29776d8faa9 (diff)
downloadmaster-31e0f0ae-66b58ae2293c58273a1dc88a798a25758b26e477.tar.gz
master-31e0f0ae-66b58ae2293c58273a1dc88a798a25758b26e477.tar.bz2
master-31e0f0ae-66b58ae2293c58273a1dc88a798a25758b26e477.zip
busybox: remove the bogus SIZEOF_LONG check (#1127)
SVN-Revision: 6012
Diffstat (limited to 'package/busybox/patches')
-rw-r--r--package/busybox/patches/210-sizeof_long_check.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/package/busybox/patches/210-sizeof_long_check.patch b/package/busybox/patches/210-sizeof_long_check.patch
new file mode 100644
index 0000000000..5009b49526
--- /dev/null
+++ b/package/busybox/patches/210-sizeof_long_check.patch
@@ -0,0 +1,12 @@
+diff -ur busybox.old/e2fsprogs/ext2fs/unix_io.c busybox.dev/e2fsprogs/ext2fs/unix_io.c
+--- busybox.old/e2fsprogs/ext2fs/unix_io.c 2006-12-27 05:55:58.000000000 +0100
++++ busybox.dev/e2fsprogs/ext2fs/unix_io.c 2007-01-07 16:16:52.000000000 +0100
+@@ -419,7 +419,7 @@
+
+ #ifdef __linux__
+ #undef RLIM_INFINITY
+-#if (defined(__alpha__) || ((defined(__sparc__) || defined(__mips__)) && (SIZEOF_LONG == 4)))
++#if (defined(__alpha__) || defined(__sparc__) || defined(__mips__))
+ #define RLIM_INFINITY ((unsigned long)(~0UL>>1))
+ #else
+ #define RLIM_INFINITY (~0UL)