]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Remove IA-64 support from kernel-features.h
authorUlrich Drepper <drepper@gmail.com>
Sat, 7 Jan 2012 17:23:45 +0000 (12:23 -0500)
committerUlrich Drepper <drepper@gmail.com>
Sat, 7 Jan 2012 17:23:45 +0000 (12:23 -0500)
ChangeLog
sysdeps/unix/sysv/linux/kernel-features.h

index 5f89bc9fb57c750d046a683be4cc1a6488e11a3e..6f4f8c7b04b63da6154eec7d8f298dfb0f8b42f1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,7 @@
        In case anyone cares, the IA-64 architecture could move to ports.
        * sysdeps/ia64/*: Removed.
        * sysdeps/unix/sysv/linux/ia64/*: Removed.
+       * sysdeps/unix/sysv/linux/kernel-features.h: Remove IA-64 support.
 
        [BZ #13555]
        * configure.in: Remove entries for unsupported architectures.
index 58f833e96a104f7dc1d7a365039f54cd3d6cdcee..ecc1d2cb8a1a0cdf315386925b212755b51859a5 100644 (file)
@@ -1,6 +1,6 @@
 /* Set flags signalling availability of kernel features based on given
    kernel version number.
-   Copyright (C) 1999-2009, 2010, 2011 Free Software Foundation, Inc.
+   Copyright (C) 1999-2009, 2010, 2011, 2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
    version with support.  */
 #if ((__LINUX_KERNEL_VERSION >= 132402 && defined __i386__)            \
      || (__LINUX_KERNEL_VERSION >= 132416                              \
-        && (defined __ia64__ || defined __s390__                       \
+        && (defined __s390__                   \
             || defined __powerpc__ || defined __x86_64__ || defined __sh__)))
 # define __ASSUME_CLONE_THREAD_FLAGS   1
 #endif
 /* The utimes syscall has been available for some architectures
    forever.  For x86 it was introduced after 2.5.75, for x86-64,
    ppc, and ppc64 it was introduced in 2.6.0-test3.  */
-#if defined __ia64__ || defined __sparc__ \
+#if defined __sparc__ \
     || (__LINUX_KERNEL_VERSION > 132427 && defined __i386__) \
     || (__LINUX_KERNEL_VERSION > 132609 && defined __x86_64__) \
     || (__LINUX_KERNEL_VERSION >= 132609 && defined __powerpc__) \
    the code.  On x86_64 and SH this appeared first in 2.6.19-rc1,
    on ia64 in 2.6.22-rc1.  */
 #if __LINUX_KERNEL_VERSION >= 0x020611 \
-    && ((!defined __x86_64__ && !defined __sh__ && !defined __ia64__) \
+    && ((!defined __x86_64__ && !defined __sh__) \
        || (__LINUX_KERNEL_VERSION >= 0x020613 \
-           && (defined __x86_64__ || defined __sh__)) \
-       || (__LINUX_KERNEL_VERSION >= 0x020616 && defined __ia64__))
+           && (defined __x86_64__ || defined __sh__)))
 # define __ASSUME_PSELECT      1
 # define __ASSUME_PPOLL                1
 #endif
    x86-64, PPC, IA-64, SPARC< and S390 in 2.6.23.  */
 #if __LINUX_KERNEL_VERSION >= 0x020617 \
     && (defined __i386__ || defined __x86_64__ || defined __powerpc__ \
-       || defined __ia64__ || defined __sparc__ || defined __s390__)
+       || defined __sparc__ || defined __s390__)
 # define __ASSUME_O_CLOEXEC    1
 #endif
 
    x86-64, PPC, IA-64, and SPARC in 2.6.27.  */
 #if __LINUX_KERNEL_VERSION >= 0x02061b \
     && (defined __i386__ || defined __x86_64__ || defined __powerpc__ \
-       || defined __ia64__ || defined __sparc__ || defined __s390__)
+       || defined __sparc__ || defined __s390__)
 # define __ASSUME_SOCK_CLOEXEC 1
 # define __ASSUME_IN_NONBLOCK  1
 # define __ASSUME_PIPE2                1