From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7701 invoked by alias); 15 Jun 2012 19:20:59 -0000 Received: (qmail 7676 invoked by uid 22791); 15 Jun 2012 19:20:56 -0000 X-SWARE-Spam-Status: No, hits=-4.2 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,KHOP_RCVD_TRUST,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-pz0-f41.google.com (HELO mail-pz0-f41.google.com) (209.85.210.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 15 Jun 2012 19:20:43 +0000 Received: by dakp5 with SMTP id p5so4723287dak.0 for ; Fri, 15 Jun 2012 12:20:42 -0700 (PDT) Received: by 10.68.240.105 with SMTP id vz9mr23100921pbc.119.1339788042711; Fri, 15 Jun 2012 12:20:42 -0700 (PDT) Received: from anchor.twiddle.home ([173.160.232.49]) by mx.google.com with ESMTPS id tm2sm14126864pbc.69.2012.06.15.12.20.41 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 15 Jun 2012 12:20:42 -0700 (PDT) From: Richard Henderson To: libc-ports@sourceware.org Subject: [PATCH 0/7] Fixes for alpha problems Joseph noticed Date: Fri, 15 Jun 2012 19:20:00 -0000 Message-Id: <1339788037-29519-1-git-send-email-rth@twiddle.net> X-IsSubscribed: yes Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2012-06/txt/msg00057.txt.bz2 * alpha: out of date in the following ways: (a) There are __GNUC_PREREQ conditionals in various non-installed files that should be removed because the versions in question are older than the minimum 4.3 version accepted for configuring GCC: sysdeps/alpha/fpu/cfloat-compat.h sysdeps/alpha/fpu/s_fabs.c sysdeps/alpha/fpu/s_fabsf.c sysdeps/unix/sysv/linux/alpha/sysconf.c. (b) bits/mathdef.h should be updated in line with my 2012-01-31 libc change so that float_t is always float rather than depending on __GNUC__. (c) sysdeps/alpha/soft-fp/sfp-machine.h is missing a definition of FP_TRAPPING_EXCEPTIONS. (d) sysdeps/unix/sysv/linux/alpha/bits/resource.h is missing RLIMIT_RTTIME. (e) sysdeps/unix/sysv/linux/alpha/bits/resource.h has a possible trailing comma in an enum outside __USE_GNU where the generic code has it inside __USE_GNU. (f) sysdeps/unix/sysv/linux/alpha/bits/resource.h is missing the prlimit and prlimit64 declarations. (g) sysdeps/unix/sysv/linux/alpha/bits/shm.h is missing SHM_EXEC. (h) sysdeps/unix/sysv/linux/alpha/bits/stat.h has a conditional "#if defined __USE_ATFILE || defined __USE_GNU" where other versions use "#ifdef __USE_ATFILE". All fixed except (c), as I don't quite know what that means. r~ Richard Henderson (7): alpha: Fix float_t in bits/mathdef.h alpha: Remove some __GNUC_PREREQs that are too old alpha: Add missing definitions in resource.h, shm.h alpha: Fix protection on UTIME_NOW alpha: Use builtins for copysign [BZ #13848] alpha: Fix s_nearbyint implementation. alpha: Always handle inexact in rint implementations ChangeLog.alpha | 30 +++++++++++++++++ sysdeps/alpha/bits/mathdef.h | 16 ++-------- sysdeps/alpha/fpu/cfloat-compat.h | 21 ++---------- sysdeps/alpha/fpu/s_copysign.c | 5 +-- sysdeps/alpha/fpu/s_copysignf.c | 5 +-- sysdeps/alpha/fpu/s_fabs.c | 7 +--- sysdeps/alpha/fpu/s_fabsf.c | 7 +--- sysdeps/alpha/fpu/s_nearbyint.c | 31 +++++++++--------- sysdeps/alpha/fpu/s_nearbyintf.c | 35 ++++++++++++-------- sysdeps/alpha/fpu/s_rint.c | 9 +---- sysdeps/alpha/fpu/s_rintf.c | 6 +--- sysdeps/unix/sysv/linux/alpha/bits/resource.h | 42 ++++++++++++++++++++++-- sysdeps/unix/sysv/linux/alpha/bits/shm.h | 4 +- sysdeps/unix/sysv/linux/alpha/bits/stat.h | 6 +-- sysdeps/unix/sysv/linux/alpha/sysconf.c | 28 +--------------- 15 files changed, 126 insertions(+), 126 deletions(-) -- 1.7.7.6