patches/glibc/2.9/540-alpha-atfcts.patch
author Esben Haabendal <eha@dev.doredevelopment.dk>
Wed Apr 06 20:15:23 2011 +0200 (2011-04-06)
changeset 2379 372245834071
permissions -rw-r--r--
libc/glibc: workaround for autoconf'ed define of caddr_t

When building canadian cross compiler, I have some trouble with
configure defining caddr_t as a macro, like:
#define caddr_t char *

When combined with the types.h where caddr_t is protected together
with daddr_t, the typedef of caddr_t breaks.

This patch works around it by protecting the caddr_t typedef
specifically.

I am uncertain as to the real cause and solution to this :-(

Signed-off-by: Esben Haabendal <eha@dev.doredevelopment.dk>
yann@1321
     1
--- glibc-2.7/sysdeps/unix/sysv/linux/kernel-features.h	2007-08-14 06:21:09.000000000 +0300
yann@1321
     2
+++ glibc-2.7/sysdeps/unix/sysv/linux/kernel-features.h.new	2008-07-23 07:05:20.000000000 +0300
yann@1321
     3
@@ -454,8 +454,7 @@
yann@1321
     4
    and on Alpha just after 2.6.22-rc1.  */
yann@1321
     5
 #if __LINUX_KERNEL_VERSION >= 0x020611 \
yann@1321
     6
     && ((!defined __sh__ && !defined __alpha__) \
yann@1321
     7
-	|| (__LINUX_KERNEL_VERSION >= 0x020613 && defined __sh__) \
yann@1321
     8
-	|| (__LINUX_KERNEL_VERSION >= 0x020617 && defined __alpha__))
yann@1321
     9
+	|| (__LINUX_KERNEL_VERSION >= 0x020613 && defined __sh__))
yann@1321
    10
 # define __ASSUME_ATFCTS	1
yann@1321
    11
 #endif
yann@1321
    12