2014-08-13 18:37:02 +00:00
|
|
|
%define glibcsrcdir glibc-2.19-883-g7e54fd0
|
2014-02-18 17:18:17 +00:00
|
|
|
%define glibcversion 2.19.90
|
2014-08-13 18:37:02 +00:00
|
|
|
%define glibcrelease 32%{?dist}
|
2013-08-16 13:56:44 +00:00
|
|
|
# Pre-release tarballs are pulled in from git using a command that is
|
|
|
|
# effectively:
|
|
|
|
#
|
|
|
|
# git archive HEAD --format=tar --prefix=$(git describe --match 'glibc-*')/ \
|
|
|
|
# > $(git describe --match 'glibc-*').tar
|
|
|
|
# gzip -9 $(git describe --match 'glibc-*').tar
|
|
|
|
#
|
|
|
|
# glibc_release_url is only defined when we have a release tarball.
|
2013-09-05 12:07:40 +00:00
|
|
|
# % define glibc_release_url http://ftp.gnu.org/gnu/glibc/
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# If run_glibc_tests is zero then tests are not run for the build.
|
|
|
|
# You must always set run_glibc_tests to one for production builds.
|
2012-02-07 19:03:30 +00:00
|
|
|
%define run_glibc_tests 1
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Auxiliary arches are those arches that can be built in addition
|
|
|
|
# to the core supported arches. You either install an auxarch or
|
|
|
|
# you install the base arch, not both. You would do this in order
|
|
|
|
# to provide a more optimized version of the package for your arch.
|
2010-09-16 03:30:56 +00:00
|
|
|
%define auxarches athlon alphaev6
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# We build a special package for Xen that includes TLS support with
|
|
|
|
# no negative segment offsets for use with Xen guests. This is
|
|
|
|
# purely an optimization for increased performance on those arches.
|
2005-04-27 12:26:45 +00:00
|
|
|
%define xenarches i686 athlon
|
|
|
|
%ifarch %{xenarches}
|
|
|
|
%define buildxen 1
|
2005-04-27 20:09:52 +00:00
|
|
|
%define xenpackage 0
|
2005-04-27 12:26:45 +00:00
|
|
|
%else
|
|
|
|
%define buildxen 0
|
|
|
|
%define xenpackage 0
|
|
|
|
%endif
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# For Power we actually support alternate runtimes in the same base package.
|
|
|
|
# If we build for Power or Power64 we additionally build a power6 runtime that
|
|
|
|
# is enabled by AT_HWCAPS selection and an alternate runtime directory.
|
2006-09-15 20:28:56 +00:00
|
|
|
%ifarch ppc ppc64
|
|
|
|
%define buildpower6 1
|
|
|
|
%else
|
|
|
|
%define buildpower6 0
|
|
|
|
%endif
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# We build librtkaio for all rtkaioarches. The library is installed into
|
|
|
|
# a distinct subdirectory in the lib dir. This define enables the rtkaio
|
|
|
|
# add-on during the build. Upstream does not have rtkaio and it is provided
|
|
|
|
# strictly as part of our builds.
|
2012-09-04 17:33:31 +00:00
|
|
|
%define rtkaioarches %{ix86} x86_64 ppc %{power64} s390 s390x
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Any architecture/kernel combination that supports running 32-bit and 64-bit
|
|
|
|
# code in userspace is considered a biarch arch.
|
2012-09-04 17:33:31 +00:00
|
|
|
%define biarcharches %{ix86} x86_64 ppc %{power64} s390 s390x
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# If the debug information is split into two packages, the core debuginfo
|
|
|
|
# pacakge and the common debuginfo package then the arch should be listed
|
|
|
|
# here. If the arch is not listed here then a single core debuginfo package
|
|
|
|
# will be created for the architecture.
|
2011-02-15 13:29:18 +00:00
|
|
|
%define debuginfocommonarches %{biarcharches} alpha alphaev6
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# If the architecture has multiarch support in glibc then it should be listed
|
|
|
|
# here to enable support in the build. Multiarch support is a single library
|
|
|
|
# with implementations of certain functions for multiple architectures. The
|
|
|
|
# most optimal function is selected at runtime based on the hardware that is
|
|
|
|
# detected by glibc. The underlying support for function selection and
|
|
|
|
# execution is provided by STT_GNU_IFUNC.
|
2012-09-04 17:33:31 +00:00
|
|
|
%define multiarcharches ppc %{power64} %{ix86} x86_64 %{sparc}
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# If the architecture has SDT probe point support then we build glibc with
|
|
|
|
# --enable-systemtap and include all SDT probe points in the library. It is
|
|
|
|
# the eventual goal that all supported arches should be on this list.
|
2014-01-07 09:36:38 +00:00
|
|
|
%define systemtaparches %{ix86} x86_64 ppc ppc64 s390 s390x
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
2013-03-18 00:13:38 +00:00
|
|
|
# Add -s for a less verbose build output.
|
|
|
|
%define silentrules PARALLELMFLAGS=
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# %%package glibc - The GNU C Library (glibc) core package.
|
|
|
|
##############################################################################
|
2008-03-05 10:32:39 +00:00
|
|
|
Summary: The GNU libc libraries
|
2004-09-09 05:40:37 +00:00
|
|
|
Name: glibc
|
2009-06-26 15:46:27 +00:00
|
|
|
Version: %{glibcversion}
|
2014-06-16 19:30:34 +00:00
|
|
|
Release: %{glibcrelease}
|
2007-08-04 21:26:28 +00:00
|
|
|
# GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries.
|
|
|
|
# Things that are linked directly into dynamically linked programs
|
|
|
|
# and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional
|
|
|
|
# exception which allows linking it into any kind of programs or shared
|
|
|
|
# libraries without restrictions.
|
|
|
|
License: LGPLv2+ and LGPLv2+ with exceptions and GPLv2+
|
2004-09-09 05:40:37 +00:00
|
|
|
Group: System Environment/Libraries
|
2010-07-12 11:40:50 +00:00
|
|
|
URL: http://www.gnu.org/software/glibc/
|
2011-12-20 05:46:44 +00:00
|
|
|
Source0: %{?glibc_release_url}%{glibcsrcdir}.tar.gz
|
2013-08-19 11:35:59 +00:00
|
|
|
Source1: build-locale-archive.c
|
|
|
|
Source2: glibc_post_upgrade.c
|
|
|
|
Source3: libc-lock.h
|
|
|
|
Source4: nscd.conf
|
|
|
|
Source7: nsswitch.conf
|
|
|
|
Source8: power6emul.c
|
2012-04-05 21:59:29 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Start of glibc patches
|
|
|
|
##############################################################################
|
2012-04-05 21:59:29 +00:00
|
|
|
# 0000-0999 for patches which are unlikely to ever go upstream or which
|
|
|
|
# have not been analyzed to see if they ought to go upstream yet.
|
2013-07-24 05:22:37 +00:00
|
|
|
#
|
|
|
|
# 1000-2000 for patches that are already upstream.
|
2012-04-05 21:59:29 +00:00
|
|
|
#
|
|
|
|
# 2000-3000 for patches that are awaiting upstream approval
|
|
|
|
#
|
|
|
|
# Yes, I realize this means some gratutious changes as patches to from
|
|
|
|
# one bucket to another, but I find this scheme makes it easier to track
|
|
|
|
# the upstream divergence and patches needing approval.
|
|
|
|
#
|
|
|
|
# Note that we can still apply the patches in any order we see fit, so
|
|
|
|
# the changes from one bucket to another won't necessarily result in needing
|
|
|
|
# to twiddle the patch because of dependencies on prior patches and the like.
|
|
|
|
|
|
|
|
|
2014-03-05 21:13:37 +00:00
|
|
|
##############################################################################
|
2012-04-05 21:59:29 +00:00
|
|
|
#
|
2014-03-05 21:13:37 +00:00
|
|
|
# Patches that are unlikely to go upstream or not yet analyzed.
|
2012-04-05 21:59:29 +00:00
|
|
|
#
|
2014-03-05 21:13:37 +00:00
|
|
|
##############################################################################
|
2012-10-05 18:24:19 +00:00
|
|
|
|
|
|
|
# Configuration twiddle, not sure there's a good case to get upstream to
|
|
|
|
# change this.
|
|
|
|
Patch0001: %{name}-fedora-nscd.patch
|
2012-04-05 21:59:29 +00:00
|
|
|
|
2012-12-03 18:25:56 +00:00
|
|
|
Patch0003: %{name}-fedora-ldd.patch
|
2012-06-22 19:30:06 +00:00
|
|
|
|
2012-11-05 21:44:36 +00:00
|
|
|
Patch0004: %{name}-fedora-ppc-unwind.patch
|
2012-06-22 19:30:06 +00:00
|
|
|
|
|
|
|
# Build info files in the source tree, then move to the build
|
|
|
|
# tree so that they're identical for multilib builds
|
|
|
|
Patch0005: %{name}-rh825061.patch
|
|
|
|
|
|
|
|
# Horrible hack, never to be upstreamed. Can go away once the world
|
|
|
|
# has been rebuilt to use the new ld.so path.
|
|
|
|
Patch0006: %{name}-arm-hardfloat-3.patch
|
|
|
|
|
2012-04-05 21:59:29 +00:00
|
|
|
# Needs to be sent upstream
|
2012-12-03 20:37:41 +00:00
|
|
|
Patch0008: %{name}-fedora-getrlimit-PLT.patch
|
2012-12-03 18:25:56 +00:00
|
|
|
Patch0009: %{name}-fedora-include-bits-ldbl.patch
|
2012-04-05 21:59:29 +00:00
|
|
|
|
2012-12-06 17:45:03 +00:00
|
|
|
# Needs to be sent upstream
|
|
|
|
Patch0029: %{name}-rh841318.patch
|
|
|
|
|
|
|
|
# All these were from the glibc-fedora.patch mega-patch and need another
|
|
|
|
# round of reviewing. Ideally they'll either be submitted upstream or
|
|
|
|
# dropped.
|
2012-11-30 21:01:46 +00:00
|
|
|
Patch0012: %{name}-fedora-linux-tcsetattr.patch
|
2012-11-05 21:44:36 +00:00
|
|
|
Patch0014: %{name}-fedora-nptl-linklibc.patch
|
2012-12-03 20:37:41 +00:00
|
|
|
Patch0015: %{name}-fedora-localedef.patch
|
|
|
|
Patch0016: %{name}-fedora-i386-tls-direct-seg-refs.patch
|
2012-11-16 13:33:25 +00:00
|
|
|
Patch0019: %{name}-fedora-nis-rh188246.patch
|
|
|
|
Patch0020: %{name}-fedora-manual-dircategory.patch
|
|
|
|
Patch0024: %{name}-fedora-locarchive.patch
|
2012-11-29 17:56:43 +00:00
|
|
|
Patch0025: %{name}-fedora-streams-rh436349.patch
|
2012-11-28 21:30:40 +00:00
|
|
|
Patch0028: %{name}-fedora-localedata-rh61908.patch
|
2012-10-02 12:41:58 +00:00
|
|
|
Patch0030: %{name}-fedora-uname-getrlimit.patch
|
2012-08-20 19:25:02 +00:00
|
|
|
Patch0031: %{name}-fedora-__libc_multiple_libcs.patch
|
2012-12-07 22:01:57 +00:00
|
|
|
Patch0032: %{name}-fedora-elf-rh737223.patch
|
2012-08-20 19:25:02 +00:00
|
|
|
Patch0033: %{name}-fedora-elf-ORIGIN.patch
|
|
|
|
Patch0034: %{name}-fedora-elf-init-hidden_undef.patch
|
2012-09-21 19:08:53 +00:00
|
|
|
|
2014-03-12 22:13:23 +00:00
|
|
|
# Needs to be sent upstream.
|
|
|
|
# Support mangling and demangling null pointers.
|
2013-04-23 20:52:25 +00:00
|
|
|
Patch0037: %{name}-rh952799.patch
|
2013-02-28 00:48:51 +00:00
|
|
|
|
2013-08-19 11:35:59 +00:00
|
|
|
# rtkaio and c_stubs. Note that despite the numbering, these are always
|
|
|
|
# applied first.
|
|
|
|
Patch0038: %{name}-rtkaio.patch
|
|
|
|
Patch0039: %{name}-c_stubs.patch
|
|
|
|
|
2013-08-20 04:44:34 +00:00
|
|
|
# Remove non-ELF support in rtkaio
|
|
|
|
Patch0040: %{name}-rh731833-rtkaio.patch
|
2013-08-22 05:37:15 +00:00
|
|
|
Patch0041: %{name}-rh731833-rtkaio-2.patch
|
2013-08-22 09:38:00 +00:00
|
|
|
Patch0042: %{name}-rh970865.patch
|
2013-08-20 04:44:34 +00:00
|
|
|
|
2013-10-03 01:34:56 +00:00
|
|
|
# ARM: Accept that some objects marked hard ABI are now not because of a
|
|
|
|
# binutils bug.
|
|
|
|
Patch0044: %{name}-rh1009145.patch
|
|
|
|
|
2013-10-03 09:22:51 +00:00
|
|
|
# Allow applications to call pthread_atfork without libpthread.so.
|
|
|
|
Patch0046: %{name}-rh1013801.patch
|
|
|
|
|
2014-02-26 19:01:15 +00:00
|
|
|
Patch0047: %{name}-nscd-sysconfig.patch
|
|
|
|
|
2014-03-05 21:13:37 +00:00
|
|
|
##############################################################################
|
2012-04-05 21:59:29 +00:00
|
|
|
#
|
|
|
|
# Patches from upstream
|
|
|
|
#
|
2014-03-05 21:13:37 +00:00
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
##############################################################################
|
2012-04-05 21:59:29 +00:00
|
|
|
#
|
|
|
|
# Patches submitted, but not yet approved upstream.
|
2014-03-05 21:13:37 +00:00
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
#
|
2012-04-05 21:59:29 +00:00
|
|
|
# Each should be associated with a BZ.
|
|
|
|
# Obviously we're not there right now, but that's the goal
|
|
|
|
#
|
2014-03-05 21:13:37 +00:00
|
|
|
|
2012-12-06 17:45:03 +00:00
|
|
|
# http://sourceware.org/ml/libc-alpha/2012-12/msg00103.html
|
|
|
|
Patch2007: %{name}-rh697421.patch
|
2012-04-05 21:59:29 +00:00
|
|
|
|
2012-08-14 04:49:13 +00:00
|
|
|
Patch2011: %{name}-rh757881.patch
|
2012-04-05 21:59:29 +00:00
|
|
|
|
2012-08-14 04:49:13 +00:00
|
|
|
Patch2013: %{name}-rh741105.patch
|
2012-04-05 21:59:29 +00:00
|
|
|
|
2012-06-22 19:30:06 +00:00
|
|
|
# Upstream BZ 14247
|
2012-08-14 04:49:13 +00:00
|
|
|
Patch2023: %{name}-rh827510.patch
|
2012-06-22 19:30:06 +00:00
|
|
|
|
2012-07-25 20:33:39 +00:00
|
|
|
# Upstream BZ 13028
|
2012-08-14 04:49:13 +00:00
|
|
|
Patch2026: %{name}-rh841787.patch
|
2012-05-23 19:46:47 +00:00
|
|
|
|
2012-05-31 20:21:36 +00:00
|
|
|
# Upstream BZ 14185
|
2012-08-14 04:49:13 +00:00
|
|
|
Patch2027: %{name}-rh819430.patch
|
2013-07-29 14:34:15 +00:00
|
|
|
|
2014-02-26 19:01:15 +00:00
|
|
|
Patch2031: %{name}-rh1070416.patch
|
2014-02-25 09:52:53 +00:00
|
|
|
|
2014-06-20 15:49:56 +00:00
|
|
|
Patch2033: %{name}-aarch64-tls-fixes.patch
|
|
|
|
Patch2034: %{name}-aarch64-workaround-nzcv-clobber-in-tlsdesc.patch
|
2014-05-22 02:06:41 +00:00
|
|
|
|
2014-08-13 18:37:02 +00:00
|
|
|
Patch2035: %{name}-extern-always-inline.patch
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# End of glibc patches.
|
|
|
|
##############################################################################
|
2012-05-31 20:21:36 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Continued list of core "glibc" package information:
|
|
|
|
##############################################################################
|
2008-03-05 10:32:39 +00:00
|
|
|
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
Obsoletes: glibc-profile < 2.4
|
2011-07-01 09:03:06 +00:00
|
|
|
Obsoletes: nss_db
|
2004-09-09 05:40:37 +00:00
|
|
|
Provides: ldconfig
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2006-07-11 15:23:42 +00:00
|
|
|
# The dynamic linker supports DT_GNU_HASH
|
|
|
|
Provides: rtld(GNU_HASH)
|
2012-06-12 01:32:35 +00:00
|
|
|
|
|
|
|
# This is a short term need until everything is rebuilt in the ARM world
|
|
|
|
# to use the new dynamic linker path
|
|
|
|
%ifarch armv7hl armv7hnl
|
|
|
|
Provides: ld-linux.so.3
|
|
|
|
Provides: ld-linux.so.3(GLIBC_2.4)
|
|
|
|
%endif
|
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
Requires: glibc-common = %{version}-%{release}
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
# Require libgcc in case some program calls pthread_cancel in its %%post
|
2008-03-05 10:32:39 +00:00
|
|
|
Requires(pre): basesystem, libgcc
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2004-09-09 05:52:48 +00:00
|
|
|
# This is for building auxiliary programs like memusage, nscd
|
2004-09-09 05:40:37 +00:00
|
|
|
# For initial glibc bootstraps it can be commented out
|
2008-03-05 10:32:39 +00:00
|
|
|
BuildRequires: gd-devel libpng-devel zlib-devel texinfo, libselinux-devel >= 1.33.4-3
|
2009-04-07 07:39:09 +00:00
|
|
|
BuildRequires: audit-libs-devel >= 1.1.3, sed >= 3.95, libcap-devel, gettext, nss-devel
|
2008-03-05 10:32:39 +00:00
|
|
|
BuildRequires: /bin/ps, /bin/kill, /bin/awk
|
2011-04-07 11:22:58 +00:00
|
|
|
%ifarch %{systemtaparches}
|
|
|
|
BuildRequires: systemtap-sdt-devel
|
|
|
|
%endif
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2013-08-16 14:00:36 +00:00
|
|
|
# We use systemd rpm macros for nscd
|
|
|
|
BuildRequires: systemd
|
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
# This is to ensure that __frame_state_for is exported by glibc
|
|
|
|
# will be compatible with egcs 1.x.y
|
2008-03-05 10:32:39 +00:00
|
|
|
BuildRequires: gcc >= 3.2
|
2010-07-21 15:08:07 +00:00
|
|
|
%define enablekernel 2.6.32
|
2010-08-02 12:18:20 +00:00
|
|
|
Conflicts: kernel < %{enablekernel}
|
2011-07-20 11:54:13 +00:00
|
|
|
%define target %{_target_cpu}-redhat-linux
|
|
|
|
%ifarch %{arm}
|
|
|
|
%define target %{_target_cpu}-redhat-linuxeabi
|
2004-09-09 05:54:44 +00:00
|
|
|
%endif
|
2012-09-04 17:33:31 +00:00
|
|
|
%ifarch %{power64}
|
2014-05-14 07:21:29 +00:00
|
|
|
%ifarch ppc64le
|
|
|
|
%define target ppc64le-redhat-linux
|
|
|
|
%else
|
2012-09-04 17:33:31 +00:00
|
|
|
%define target ppc64-redhat-linux
|
|
|
|
%endif
|
2014-05-14 07:21:29 +00:00
|
|
|
%endif
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2009-06-26 15:46:27 +00:00
|
|
|
%ifarch %{multiarcharches}
|
|
|
|
# Need STT_IFUNC support
|
2012-09-04 17:33:31 +00:00
|
|
|
%ifarch ppc %{power64}
|
2009-11-24 15:50:44 +00:00
|
|
|
BuildRequires: binutils >= 2.20.51.0.2
|
|
|
|
Conflicts: binutils < 2.20.51.0.2
|
|
|
|
%else
|
2013-09-19 14:23:27 +00:00
|
|
|
%ifarch s390 s390x
|
|
|
|
# Needed for STT_GNU_IFUNC support for s390/390x
|
|
|
|
BuildRequires: binutils >= 2.23.52.0.1-8
|
|
|
|
Conflicts: binutils < 2.23.52.0.1-8
|
|
|
|
%else
|
|
|
|
# Default to this version
|
2009-06-26 15:46:27 +00:00
|
|
|
BuildRequires: binutils >= 2.19.51.0.10
|
2009-11-12 17:51:25 +00:00
|
|
|
Conflicts: binutils < 2.19.51.0.10
|
2009-11-24 15:50:44 +00:00
|
|
|
%endif
|
2013-09-19 14:23:27 +00:00
|
|
|
%endif
|
2009-08-24 09:22:26 +00:00
|
|
|
# Earlier releases have broken support for IRELATIVE relocations
|
|
|
|
Conflicts: prelink < 0.4.2
|
2009-06-26 15:46:27 +00:00
|
|
|
%else
|
2009-08-24 09:22:26 +00:00
|
|
|
# Need AS_NEEDED directive
|
|
|
|
# Need --hash-style=* support
|
2006-07-11 10:26:01 +00:00
|
|
|
BuildRequires: binutils >= 2.17.50.0.2-5
|
2009-06-26 15:46:27 +00:00
|
|
|
%endif
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
BuildRequires: gcc >= 3.2.1-5
|
2006-01-30 10:11:25 +00:00
|
|
|
%ifarch ppc s390 s390x
|
|
|
|
BuildRequires: gcc >= 4.1.0-0.17
|
|
|
|
%endif
|
2009-06-26 15:46:27 +00:00
|
|
|
%if 0%{?_enable_debug_packages}
|
2008-03-05 10:32:39 +00:00
|
|
|
BuildRequires: elfutils >= 0.72
|
|
|
|
BuildRequires: rpm >= 4.2-0.56
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2013-07-24 12:54:14 +00:00
|
|
|
# The testsuite builds static C++ binaries that require a static
|
|
|
|
# C++ runtime from libstdc++-static.
|
|
|
|
BuildRequires: libstdc++-static
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Filter out all GLIBC_PRIVATE symbols since they are internal to
|
2013-07-25 02:45:11 +00:00
|
|
|
# the package and should not be examined by any other tool.
|
2011-08-15 09:29:40 +00:00
|
|
|
%global __filter_GLIBC_PRIVATE 1
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
The glibc package contains standard libraries which are used by
|
|
|
|
multiple programs on the system. In order to save disk space and
|
|
|
|
memory, as well as to make upgrading easier, common system code is
|
|
|
|
kept in one place and shared between programs. This particular package
|
|
|
|
contains the most important sets of shared libraries: the standard C
|
|
|
|
library and the standard math library. Without these two libraries, a
|
|
|
|
Linux system will not function.
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "xen" sub-package
|
|
|
|
##############################################################################
|
2005-04-27 12:26:45 +00:00
|
|
|
%if %{xenpackage}
|
|
|
|
%package xen
|
|
|
|
Summary: The GNU libc libraries (optimized for running under Xen)
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
Requires: glibc = %{version}-%{release}, glibc-utils = %{version}-%{release}
|
|
|
|
|
|
|
|
%description xen
|
|
|
|
The standard glibc package is optimized for native kernels and does not
|
|
|
|
perform as well under the Xen hypervisor. This package provides alternative
|
|
|
|
library binaries that will be selected instead when running under Xen.
|
|
|
|
|
|
|
|
Install glibc-xen if you might run your system under the Xen hypervisor.
|
|
|
|
%endif
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "devel" sub-package
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Object files for development using standard C libraries.
|
|
|
|
Group: Development/Libraries
|
2008-03-05 10:32:39 +00:00
|
|
|
Requires(pre): /sbin/install-info
|
2009-06-26 15:46:27 +00:00
|
|
|
Requires(pre): %{name}-headers
|
|
|
|
Requires: %{name}-headers = %{version}-%{release}
|
2008-03-05 10:32:39 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The glibc-devel package contains the object files necessary
|
|
|
|
for developing programs which use the standard C libraries (which are
|
|
|
|
used by nearly all programs). If you are developing programs which
|
|
|
|
will use the standard C libraries, your system needs to have these
|
|
|
|
standard object files available in order to create the
|
|
|
|
executables.
|
|
|
|
|
|
|
|
Install glibc-devel if you are going to develop programs which will
|
|
|
|
use the standard C libraries.
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "static" sub-package
|
|
|
|
##############################################################################
|
2009-02-18 20:47:04 +00:00
|
|
|
%package static
|
|
|
|
Summary: C library static libraries for -static linking.
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
|
|
|
|
|
|
|
%description static
|
|
|
|
The glibc-static package contains the C library static libraries
|
|
|
|
for -static linking. You don't need these, unless you link statically,
|
|
|
|
which is highly discouraged.
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "headers" sub-package
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%package headers
|
|
|
|
Summary: Header files for development using standard C libraries.
|
|
|
|
Group: Development/Libraries
|
|
|
|
Provides: %{name}-headers(%{_target_cpu})
|
|
|
|
%ifarch x86_64
|
|
|
|
# If both -m32 and -m64 is to be supported on AMD64, x86_64 glibc-headers
|
2009-02-18 20:47:04 +00:00
|
|
|
# have to be installed, not i586 ones.
|
|
|
|
Obsoletes: %{name}-headers(i586)
|
2009-07-20 13:24:45 +00:00
|
|
|
Obsoletes: %{name}-headers(i686)
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
2008-03-05 10:32:39 +00:00
|
|
|
Requires(pre): kernel-headers
|
2005-04-01 16:55:01 +00:00
|
|
|
Requires: kernel-headers >= 2.2.1, %{name} = %{version}-%{release}
|
2007-08-01 17:49:56 +00:00
|
|
|
BuildRequires: kernel-headers >= 2.6.22
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%description headers
|
|
|
|
The glibc-headers package contains the header files necessary
|
|
|
|
for developing programs which use the standard C libraries (which are
|
|
|
|
used by nearly all programs). If you are developing programs which
|
|
|
|
will use the standard C libraries, your system needs to have these
|
|
|
|
standard header files available in order to create the
|
|
|
|
executables.
|
|
|
|
|
|
|
|
Install glibc-headers if you are going to develop programs which will
|
|
|
|
use the standard C libraries.
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "common" sub-package
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%package common
|
|
|
|
Summary: Common binaries and locale data for glibc
|
2008-03-26 12:29:52 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2004-09-09 05:40:37 +00:00
|
|
|
Requires: tzdata >= 2003a
|
|
|
|
Group: System Environment/Base
|
|
|
|
|
|
|
|
%description common
|
|
|
|
The glibc-common package includes common binaries for the GNU libc
|
|
|
|
libraries, as well as national language (locale) support.
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "nscd" sub-package
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%package -n nscd
|
|
|
|
Summary: A Name Service Caching Daemon (nscd).
|
|
|
|
Group: System Environment/Daemons
|
2010-10-14 10:30:32 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2006-01-09 22:19:27 +00:00
|
|
|
Requires: libselinux >= 1.17.10-1, audit-libs >= 1.1.3
|
2011-09-28 12:23:58 +00:00
|
|
|
Requires(pre): /usr/sbin/useradd, coreutils
|
2013-07-22 09:14:54 +00:00
|
|
|
Requires(post): systemd
|
|
|
|
Requires(preun): systemd
|
|
|
|
Requires(postun): systemd, /usr/sbin/userdel
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%description -n nscd
|
|
|
|
Nscd caches name service lookups and can dramatically improve
|
2006-03-28 10:15:50 +00:00
|
|
|
performance with NIS+, and may help with DNS as well.
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc "utils" sub-package
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%package utils
|
|
|
|
Summary: Development utilities from GNU C library
|
|
|
|
Group: Development/Tools
|
2008-03-05 10:32:39 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%description utils
|
|
|
|
The glibc-utils package contains memusage, a memory usage profiler,
|
|
|
|
mtrace, a memory leak tracer and xtrace, a function call tracer
|
|
|
|
which can be helpful during program debugging.
|
|
|
|
|
|
|
|
If unsure if you need this, don't install this package.
|
|
|
|
|
2013-07-25 02:45:11 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc core "debuginfo" sub-package
|
|
|
|
##############################################################################
|
2009-06-26 15:46:27 +00:00
|
|
|
%if 0%{?_enable_debug_packages}
|
2004-09-09 05:40:37 +00:00
|
|
|
%define debug_package %{nil}
|
2008-10-28 15:50:31 +00:00
|
|
|
%define __debug_install_post %{nil}
|
|
|
|
%global __debug_package 1
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%package debuginfo
|
|
|
|
Summary: Debug information for package %{name}
|
|
|
|
Group: Development/Debug
|
2007-08-10 01:55:13 +00:00
|
|
|
AutoReqProv: no
|
2004-09-09 05:40:37 +00:00
|
|
|
%ifarch %{debuginfocommonarches}
|
|
|
|
Requires: glibc-debuginfo-common = %{version}-%{release}
|
2009-07-20 13:24:45 +00:00
|
|
|
%else
|
2010-09-16 03:30:56 +00:00
|
|
|
%ifarch %{ix86} %{sparc}
|
2009-07-20 13:24:45 +00:00
|
|
|
Obsoletes: glibc-debuginfo-common
|
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%description debuginfo
|
|
|
|
This package provides debug information for package %{name}.
|
|
|
|
Debug information is useful when developing applications that use this
|
|
|
|
package or when debugging this package.
|
|
|
|
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
This package also contains static standard C libraries with
|
|
|
|
debugging information. You need this only if you want to step into
|
|
|
|
C library routines during debugging programs statically linked against
|
|
|
|
one or more of the standard C libraries.
|
|
|
|
To use this debugging information, you need to link binaries
|
2013-07-26 05:59:43 +00:00
|
|
|
with -static -L%{_prefix}/lib/debug%{_libdir} compiler options.
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# glibc common "debuginfo-common" sub-package
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%ifarch %{debuginfocommonarches}
|
|
|
|
|
|
|
|
%package debuginfo-common
|
|
|
|
Summary: Debug information for package %{name}
|
|
|
|
Group: Development/Debug
|
2007-08-10 01:55:13 +00:00
|
|
|
AutoReqProv: no
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%description debuginfo-common
|
|
|
|
This package provides debug information for package %{name}.
|
|
|
|
Debug information is useful when developing applications that use this
|
|
|
|
package or when debugging this package.
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
%endif # %{debuginfocommonarches}
|
|
|
|
%endif # 0%{?_enable_debug_packages}
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Prepare for the build.
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%prep
|
2013-08-19 11:35:59 +00:00
|
|
|
%setup -q -n %{glibcsrcdir}
|
2012-04-05 21:59:29 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Patch order is important as some patches depend on other patches and
|
2013-08-19 11:35:59 +00:00
|
|
|
# therefore the order must not be changed. First two are rtkaio and c_stubs;
|
|
|
|
# we maintain this only in Fedora.
|
|
|
|
%patch0038 -p1
|
|
|
|
%patch0039 -p1
|
2012-10-05 18:24:19 +00:00
|
|
|
%patch0001 -p1
|
2012-06-22 19:30:06 +00:00
|
|
|
%patch0003 -p1
|
|
|
|
%patch0004 -p1
|
2012-05-23 18:18:07 +00:00
|
|
|
%patch0005 -p1
|
2012-06-22 19:30:06 +00:00
|
|
|
%patch0006 -p1
|
2012-12-06 17:45:03 +00:00
|
|
|
%patch2007 -p1
|
2012-06-05 17:54:14 +00:00
|
|
|
%patch0008 -p1
|
2012-05-23 18:18:07 +00:00
|
|
|
%patch0009 -p1
|
2012-08-13 17:14:38 +00:00
|
|
|
%patch2011 -p1
|
2012-11-30 21:01:46 +00:00
|
|
|
%patch0012 -p1
|
2012-06-05 17:54:14 +00:00
|
|
|
%patch2013 -p1
|
2012-11-05 21:44:36 +00:00
|
|
|
%patch0014 -p1
|
2012-12-03 20:37:41 +00:00
|
|
|
%patch0015 -p1
|
|
|
|
%patch0016 -p1
|
2012-11-16 13:33:25 +00:00
|
|
|
%patch0019 -p1
|
|
|
|
%patch0020 -p1
|
2012-08-14 04:49:13 +00:00
|
|
|
%patch2023 -p1
|
2012-11-16 13:33:25 +00:00
|
|
|
%patch0024 -p1
|
2012-11-29 17:56:43 +00:00
|
|
|
%patch0025 -p1
|
2012-05-23 18:18:07 +00:00
|
|
|
%patch2026 -p1
|
2012-06-22 19:30:06 +00:00
|
|
|
%patch2027 -p1
|
2012-11-28 21:30:40 +00:00
|
|
|
%patch0028 -p1
|
2012-08-14 04:49:13 +00:00
|
|
|
%patch0029 -p1
|
2012-10-02 12:41:58 +00:00
|
|
|
%patch0030 -p1
|
2012-08-20 19:25:02 +00:00
|
|
|
%patch0031 -p1
|
2012-12-07 22:01:57 +00:00
|
|
|
%patch0032 -p1
|
2012-08-20 19:25:02 +00:00
|
|
|
%patch0033 -p1
|
|
|
|
%patch0034 -p1
|
2013-04-23 20:52:25 +00:00
|
|
|
%patch0037 -p1
|
2013-08-20 04:44:34 +00:00
|
|
|
%patch0040 -p1
|
2013-08-22 05:37:15 +00:00
|
|
|
%patch0041 -p1
|
2013-08-22 09:38:00 +00:00
|
|
|
%patch0042 -p1
|
2013-10-03 01:34:56 +00:00
|
|
|
%patch0044 -p1
|
2013-10-03 09:22:51 +00:00
|
|
|
%patch0046 -p1
|
2014-02-26 19:01:15 +00:00
|
|
|
%patch2031 -p1
|
|
|
|
%patch0047 -p1
|
2014-05-22 02:06:41 +00:00
|
|
|
%patch2033 -p1
|
2014-06-20 15:49:56 +00:00
|
|
|
%patch2034 -p1
|
2014-08-13 18:37:02 +00:00
|
|
|
%patch2035 -p1
|
2012-06-13 02:01:29 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# %%prep - Additional prep required...
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
# XXX: This sounds entirely out of date, particularly in light of the fact
|
|
|
|
# that we want to be building newer Power support. We should review this
|
|
|
|
# and potentially remove this workaround. However it will require
|
|
|
|
# determining which arches we support building for on our distributions.
|
|
|
|
# ~~~
|
2008-10-20 07:39:44 +00:00
|
|
|
# On powerpc32, hp timing is only available in power4/power6
|
|
|
|
# libs, not in base, so pre-power4 dynamic linker is incompatible
|
|
|
|
# with power6 libs.
|
2013-07-24 11:58:38 +00:00
|
|
|
# ~~~
|
2012-06-05 18:00:01 +00:00
|
|
|
%if %{buildpower6}
|
2008-10-20 07:39:44 +00:00
|
|
|
rm -f sysdeps/powerpc/powerpc32/power4/hp-timing.[ch]
|
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Remove all files generated from patching.
|
2004-09-09 05:40:37 +00:00
|
|
|
find . -type f -size 0 -o -name "*.orig" -exec rm -f {} \;
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
# Ensure timestamps on configure files are current to prevent
|
|
|
|
# regenerating them.
|
2004-09-09 05:40:37 +00:00
|
|
|
touch `find . -name configure`
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
# Ensure *-kw.h files are current to prevent regenerating them.
|
2005-12-19 18:04:52 +00:00
|
|
|
touch locale/programs/*-kw.h
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Build glibc...
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%build
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2013-07-25 02:45:11 +00:00
|
|
|
# We build using the native system compilers.
|
2004-09-09 05:40:37 +00:00
|
|
|
GCC=gcc
|
2006-01-04 08:23:00 +00:00
|
|
|
GXX=g++
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# %%build - x86 options.
|
|
|
|
##############################################################################
|
|
|
|
# On x86 we build for the specific target cpu rpm is using.
|
2004-09-09 05:40:37 +00:00
|
|
|
%ifarch %{ix86}
|
2011-07-20 11:54:13 +00:00
|
|
|
BuildFlags="-march=%{_target_cpu} -mtune=generic"
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
2013-03-18 00:13:38 +00:00
|
|
|
# We don't support building for i386. The generic i386 architecture lacks the
|
|
|
|
# atomic primitives required for NPTL support. However, when a user asks to
|
2013-07-24 05:22:37 +00:00
|
|
|
# build for i386 we interpret that as "for whatever works on x86" and we
|
2013-03-18 00:13:38 +00:00
|
|
|
# select i686. Thus we treat i386 as an alias for i686.
|
|
|
|
%ifarch i386 i686
|
2006-09-07 10:56:50 +00:00
|
|
|
BuildFlags="-march=i686 -mtune=generic"
|
2005-03-04 00:18:49 +00:00
|
|
|
%endif
|
2013-03-18 00:13:38 +00:00
|
|
|
%ifarch i486 i586
|
2006-08-02 18:29:53 +00:00
|
|
|
BuildFlags="$BuildFlags -mno-tls-direct-seg-refs"
|
|
|
|
%endif
|
2006-03-06 07:55:58 +00:00
|
|
|
%ifarch x86_64
|
2006-09-07 10:56:50 +00:00
|
|
|
BuildFlags="-mtune=generic"
|
2006-03-06 07:55:58 +00:00
|
|
|
%endif
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# %%build - SPARC options.
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%ifarch sparc
|
|
|
|
BuildFlags="-fcall-used-g6"
|
|
|
|
GCC="gcc -m32"
|
2006-01-04 08:23:00 +00:00
|
|
|
GXX="g++ -m32"
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
|
|
|
%ifarch sparcv9
|
|
|
|
BuildFlags="-mcpu=ultrasparc -fcall-used-g6"
|
|
|
|
GCC="gcc -m32"
|
2006-01-04 08:23:00 +00:00
|
|
|
GXX="g++ -m32"
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
2007-08-15 21:19:33 +00:00
|
|
|
%ifarch sparcv9v
|
|
|
|
BuildFlags="-mcpu=niagara -fcall-used-g6"
|
|
|
|
GCC="gcc -m32"
|
|
|
|
GXX="g++ -m32"
|
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
%ifarch sparc64
|
|
|
|
BuildFlags="-mcpu=ultrasparc -mvis -fcall-used-g6"
|
|
|
|
GCC="gcc -m64"
|
2006-01-04 08:23:00 +00:00
|
|
|
GXX="g++ -m64"
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
2007-08-15 21:19:33 +00:00
|
|
|
%ifarch sparc64v
|
|
|
|
BuildFlags="-mcpu=niagara -mvis -fcall-used-g6"
|
|
|
|
GCC="gcc -m64"
|
|
|
|
GXX="g++ -m64"
|
|
|
|
%endif
|
2012-09-04 17:33:31 +00:00
|
|
|
%ifarch %{power64}
|
2012-11-05 21:44:36 +00:00
|
|
|
BuildFlags=""
|
2004-09-09 05:40:37 +00:00
|
|
|
GCC="gcc -m64"
|
2006-01-04 08:23:00 +00:00
|
|
|
GXX="g++ -m64"
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# %%build - Generic options.
|
|
|
|
##############################################################################
|
2008-05-18 11:11:25 +00:00
|
|
|
BuildFlags="$BuildFlags -fasynchronous-unwind-tables"
|
2009-07-23 16:45:25 +00:00
|
|
|
# Add -DNDEBUG unless using a prerelease
|
|
|
|
case %{version} in
|
|
|
|
*.*.9[0-9]*) ;;
|
2009-07-27 13:22:45 +00:00
|
|
|
*)
|
2009-07-23 16:45:25 +00:00
|
|
|
BuildFlags="$BuildFlags -DNDEBUG"
|
|
|
|
;;
|
|
|
|
esac
|
2004-09-09 05:40:37 +00:00
|
|
|
EnableKernel="--enable-kernel=%{enablekernel}"
|
2013-07-24 11:58:38 +00:00
|
|
|
# Save the used compiler and options into the file "Gcc" for use later
|
|
|
|
# by %%install.
|
2005-07-08 10:21:35 +00:00
|
|
|
echo "$GCC" > Gcc
|
2006-09-15 20:28:56 +00:00
|
|
|
AddOns=`echo */configure | sed -e 's!/configure!!g;s!\(linuxthreads\|nptl\|rtkaio\|powerpc-cpu\)\( \|$\)!!g;s! \+$!!;s! !,!g;s!^!,!;/^,\*$/d'`
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
%ifarch %{rtkaioarches}
|
|
|
|
AddOns=,rtkaio$AddOns
|
|
|
|
%endif
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# build()
|
|
|
|
# Build glibc in `build-%{target}$1', passing the rest of the arguments
|
|
|
|
# as CFLAGS to the build (not the same as configure CFLAGS). Several
|
|
|
|
# global values are used to determine build flags, add-ons, kernel
|
|
|
|
# version, multiarch support, system tap support, etc.
|
|
|
|
##############################################################################
|
2011-07-20 11:54:13 +00:00
|
|
|
build()
|
2005-04-27 12:26:45 +00:00
|
|
|
{
|
2013-07-25 22:53:13 +00:00
|
|
|
builddir=build-%{target}${1:+-$1}
|
|
|
|
${1+shift}
|
|
|
|
rm -rf $builddir
|
|
|
|
mkdir $builddir
|
|
|
|
pushd $builddir
|
|
|
|
build_CFLAGS="$BuildFlags -g -O3 $*"
|
|
|
|
# Some configure checks can spuriously fail for some architectures if
|
|
|
|
# unwind info is present
|
|
|
|
configure_CFLAGS="$build_CFLAGS -fno-asynchronous-unwind-tables"
|
|
|
|
../configure CC="$GCC" CXX="$GXX" CFLAGS="$configure_CFLAGS" \
|
|
|
|
--prefix=%{_prefix} \
|
2014-07-03 05:43:32 +00:00
|
|
|
--enable-add-ons=$AddOns \
|
2013-07-25 22:53:13 +00:00
|
|
|
--with-headers=%{_prefix}/include $EnableKernel --enable-bind-now \
|
|
|
|
--build=%{target} \
|
2009-06-26 15:46:27 +00:00
|
|
|
%ifarch %{multiarcharches}
|
2013-07-25 22:53:13 +00:00
|
|
|
--enable-multi-arch \
|
2011-04-07 11:22:58 +00:00
|
|
|
%endif
|
2013-07-25 22:53:13 +00:00
|
|
|
--enable-obsolete-rpc \
|
2011-04-07 11:22:58 +00:00
|
|
|
%ifarch %{systemtaparches}
|
2013-07-25 22:53:13 +00:00
|
|
|
--enable-systemtap \
|
2012-09-04 17:33:31 +00:00
|
|
|
%endif
|
|
|
|
%ifarch ppc64p7
|
2013-07-25 22:53:13 +00:00
|
|
|
--with-cpu=power7 \
|
2009-06-26 15:46:27 +00:00
|
|
|
%endif
|
2013-07-25 22:53:13 +00:00
|
|
|
--enable-lock-elision \
|
|
|
|
--disable-profile --enable-nss-crypt ||
|
|
|
|
{ cat config.log; false; }
|
2009-09-01 11:03:11 +00:00
|
|
|
|
2013-07-25 22:53:13 +00:00
|
|
|
make %{?_smp_mflags} -r CFLAGS="$build_CFLAGS" %{silentrules}
|
|
|
|
popd
|
2005-04-27 12:26:45 +00:00
|
|
|
}
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Build glibc for the default set of options.
|
|
|
|
##############################################################################
|
2011-07-20 11:54:13 +00:00
|
|
|
build
|
2005-04-27 12:26:45 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Build glibc for xen:
|
|
|
|
# If we support xen build glibc again for xen support.
|
|
|
|
##############################################################################
|
2005-04-27 12:26:45 +00:00
|
|
|
%if %{buildxen}
|
2011-07-20 11:54:13 +00:00
|
|
|
build nosegneg -mno-tls-direct-seg-refs
|
2005-04-27 12:26:45 +00:00
|
|
|
%endif
|
2005-06-27 14:02:02 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Build glibc for power6:
|
|
|
|
# If we support building a power6 alternate runtime then built glibc again for
|
|
|
|
# power6.
|
|
|
|
# XXX: We build in a sub-shell for no apparent reason.
|
|
|
|
##############################################################################
|
2006-09-15 20:28:56 +00:00
|
|
|
%if %{buildpower6}
|
|
|
|
(
|
2013-07-25 22:53:13 +00:00
|
|
|
platform=`LD_SHOW_AUXV=1 /bin/true | sed -n 's/^AT_PLATFORM:[[:blank:]]*//p'`
|
|
|
|
if [ "$platform" != power6 ]; then
|
2013-07-25 23:10:00 +00:00
|
|
|
mkdir -p power6emul/{lib,lib64}
|
2013-08-19 11:35:59 +00:00
|
|
|
$GCC -shared -O2 -fpic -o power6emul/%{_lib}/power6emul.so %{SOURCE8} -Wl,-z,initfirst
|
2006-09-15 20:28:56 +00:00
|
|
|
%ifarch ppc
|
2013-07-25 23:10:00 +00:00
|
|
|
gcc -shared -nostdlib -O2 -fpic -m64 -o power6emul/lib64/power6emul.so -xc - </dev/null
|
2006-09-15 20:28:56 +00:00
|
|
|
%endif
|
|
|
|
%ifarch ppc64
|
2013-07-25 23:10:00 +00:00
|
|
|
gcc -shared -nostdlib -O2 -fpic -m32 -o power6emul/lib/power6emul.so -xc - < /dev/null
|
2006-09-15 20:28:56 +00:00
|
|
|
%endif
|
2013-07-25 23:10:00 +00:00
|
|
|
export LD_PRELOAD=`pwd`/power6emul/\$LIB/power6emul.so
|
2013-07-25 22:53:13 +00:00
|
|
|
fi
|
|
|
|
AddOns="$AddOns --with-cpu=power6"
|
|
|
|
GCC="$GCC -mcpu=power6"
|
|
|
|
GXX="$GXX -mcpu=power6"
|
|
|
|
build power6
|
2006-09-15 20:28:56 +00:00
|
|
|
)
|
2013-07-25 23:10:00 +00:00
|
|
|
%endif # %{buildpower6}
|
2006-09-15 20:28:56 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Build the glibc post-upgrade program:
|
|
|
|
# We only build one of these with the default set of options. This program
|
|
|
|
# must be able to run on all hardware for the lowest common denomintor since
|
|
|
|
# we only build it once.
|
|
|
|
##############################################################################
|
2013-07-24 05:27:35 +00:00
|
|
|
pushd build-%{target}
|
2013-08-19 11:35:59 +00:00
|
|
|
$GCC -static -L. -Os -g %{SOURCE2} \
|
2013-07-25 23:10:00 +00:00
|
|
|
-o glibc_post_upgrade.%{_target_cpu} \
|
2013-07-25 22:53:13 +00:00
|
|
|
'-DLIBTLS="/%{_lib}/tls/"' \
|
2013-07-26 05:59:43 +00:00
|
|
|
'-DGCONV_MODULES_DIR="%{_libdir}/gconv"' \
|
2013-07-25 22:53:13 +00:00
|
|
|
'-DLD_SO_CONF="/etc/ld.so.conf"' \
|
|
|
|
'-DICONVCONFIG="%{_sbindir}/iconvconfig.%{_target_cpu}"'
|
2013-07-24 05:27:35 +00:00
|
|
|
popd
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Install glibc...
|
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
%install
|
2013-07-24 11:58:38 +00:00
|
|
|
# Reload compiler and build options that were used during %%build.
|
2004-09-09 05:40:37 +00:00
|
|
|
GCC=`cat Gcc`
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Cleanup any previous installs...
|
2004-09-09 05:40:37 +00:00
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
mkdir -p $RPM_BUILD_ROOT
|
2013-07-25 22:53:13 +00:00
|
|
|
make -j1 install_root=$RPM_BUILD_ROOT \
|
|
|
|
install -C build-%{target} %{silentrules}
|
2013-07-24 11:58:38 +00:00
|
|
|
# If we are not building an auxiliary arch then install all of the supported
|
|
|
|
# locales.
|
2004-09-09 05:40:37 +00:00
|
|
|
%ifnarch %{auxarches}
|
2013-07-24 05:27:35 +00:00
|
|
|
pushd build-%{target}
|
2013-07-25 22:53:13 +00:00
|
|
|
make %{?_smp_mflags} install_root=$RPM_BUILD_ROOT \
|
|
|
|
install-locales -C ../localedata objdir=`pwd`
|
2013-07-24 05:27:35 +00:00
|
|
|
popd
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Install rtkaio libraries.
|
|
|
|
##############################################################################
|
2006-09-07 10:56:50 +00:00
|
|
|
%ifarch %{rtkaioarches}
|
2013-08-13 20:41:01 +00:00
|
|
|
librtso=`basename $RPM_BUILD_ROOT/%{_lib}/librt.so.*`
|
|
|
|
rm -f $RPM_BUILD_ROOT{,%{_prefix}}/%{_lib}/librtkaio.*
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/librt.so.*
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_lib}/rtkaio
|
|
|
|
mv $RPM_BUILD_ROOT/%{_lib}/librtkaio-*.so $RPM_BUILD_ROOT/%{_lib}/rtkaio/
|
|
|
|
rm -f $RPM_BUILD_ROOT/%{_lib}/$librtso
|
|
|
|
ln -sf `basename $RPM_BUILD_ROOT/%{_lib}/librt-*.so` $RPM_BUILD_ROOT/%{_lib}/$librtso
|
|
|
|
ln -sf `basename $RPM_BUILD_ROOT/%{_lib}/rtkaio/librtkaio-*.so` $RPM_BUILD_ROOT/%{_lib}/rtkaio/$librtso
|
2006-09-07 10:56:50 +00:00
|
|
|
%endif
|
|
|
|
|
2013-08-09 04:41:01 +00:00
|
|
|
# install_different:
|
|
|
|
# Install all core libraries into DESTDIR/SUBDIR. Either the file is
|
|
|
|
# installed as a copy or a symlink to the default install (if it is the
|
|
|
|
# same). The path SUBDIR_UP is the prefix used to go from
|
|
|
|
# DESTDIR/SUBDIR to the default installed libraries e.g.
|
|
|
|
# ln -s SUBDIR_UP/foo.so DESTDIR/SUBDIR/foo.so.
|
|
|
|
# When you call this function it is expected that you are in the root
|
|
|
|
# of the build directory, and that the default build directory is:
|
|
|
|
# "../build-%{target}" (relatively).
|
|
|
|
# The primary use of this function is to install alternate runtimes
|
|
|
|
# into the build directory and avoid duplicating this code for each
|
|
|
|
# runtime.
|
|
|
|
install_different()
|
|
|
|
{
|
2013-08-09 04:48:21 +00:00
|
|
|
local lib libbase libbaseso dlib
|
2013-08-09 04:41:01 +00:00
|
|
|
local destdir="$1"
|
|
|
|
local subdir="$2"
|
|
|
|
local subdir_up="$3"
|
|
|
|
local libdestdir="$destdir/$subdir"
|
|
|
|
# All three arguments must be non-zero paths.
|
|
|
|
if ! [ "$destdir" \
|
|
|
|
-a "$subdir" \
|
|
|
|
-a "$subdir_up" ]; then
|
|
|
|
echo "One of the arguments to install_different was emtpy."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
# Create the destination directory and the multilib directory.
|
|
|
|
mkdir -p "$destdir"
|
|
|
|
mkdir -p "$libdestdir"
|
|
|
|
# Walk all of the libraries we installed...
|
|
|
|
for lib in libc math/libm nptl/libpthread rt/librt nptl_db/libthread_db
|
|
|
|
do
|
|
|
|
libbase=${lib#*/}
|
|
|
|
# Take care that `libbaseso' has a * that needs expanding so
|
|
|
|
# take care with quoting.
|
2013-08-13 20:41:01 +00:00
|
|
|
libbaseso=$(basename $RPM_BUILD_ROOT/%{_lib}/${libbase}-*.so)
|
2013-08-09 04:41:01 +00:00
|
|
|
# Only install if different from default build library.
|
|
|
|
if cmp -s ${lib}.so ../build-%{target}/${lib}.so; then
|
|
|
|
ln -sf "$subdir_up"/$libbaseso $libdestdir/$libbaseso
|
|
|
|
else
|
|
|
|
cp -a ${lib}.so $libdestdir/$libbaseso
|
|
|
|
fi
|
2013-08-13 20:41:01 +00:00
|
|
|
dlib=$libdestdir/$(basename $RPM_BUILD_ROOT/%{_lib}/${libbase}.so.*)
|
2013-08-09 04:41:01 +00:00
|
|
|
ln -sf $libbaseso $dlib
|
|
|
|
done
|
|
|
|
%ifarch %{rtkaioarches}
|
2013-08-13 20:41:01 +00:00
|
|
|
local rtkdestdir="$RPM_BUILD_ROOT/%{_lib}/rtkaio/$subdir"
|
|
|
|
local librtso=`basename $RPM_BUILD_ROOT/%{_lib}/librt.so.*`
|
2013-08-14 19:51:47 +00:00
|
|
|
mkdir -p $rtkdestdir
|
2013-08-13 20:41:01 +00:00
|
|
|
librtkaioso=$(basename $RPM_BUILD_ROOT/%{_lib}/librt-*.so | sed s/librt-/librtkaio-/)
|
|
|
|
if cmp -s rtkaio/librtkaio.so ../build-%{target}/rtkaio/librtkaio.so; then
|
|
|
|
ln -s %{nosegneg_subdir_up}/$librtkaioso $rtkdestdir/$librtkaioso
|
2013-08-09 04:41:01 +00:00
|
|
|
else
|
2013-08-13 20:41:01 +00:00
|
|
|
cp -a rtkaio/librtkaio.so $rtkdestdir/$librtkaioso
|
2013-08-09 04:41:01 +00:00
|
|
|
fi
|
2013-08-13 20:41:01 +00:00
|
|
|
ln -sf $librtkaioso $rtkdestdir/$librtso
|
2013-08-09 04:41:01 +00:00
|
|
|
%endif
|
|
|
|
}
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Install the xen build files.
|
|
|
|
##############################################################################
|
2005-06-27 14:02:02 +00:00
|
|
|
%if %{buildxen}
|
2006-05-24 08:09:35 +00:00
|
|
|
%define nosegneg_subdir_base i686
|
2005-06-27 14:02:02 +00:00
|
|
|
%define nosegneg_subdir i686/nosegneg
|
2009-11-12 17:51:25 +00:00
|
|
|
%define nosegneg_subdir_up ../..
|
2013-07-24 05:27:35 +00:00
|
|
|
pushd build-%{target}-nosegneg
|
2013-08-13 20:41:01 +00:00
|
|
|
destdir=$RPM_BUILD_ROOT/%{_lib}
|
2013-08-09 04:41:01 +00:00
|
|
|
install_different "$destdir" "%{nosegneg_subdir}" "%{nosegneg_subdir_up}"
|
2013-07-24 05:27:35 +00:00
|
|
|
popd
|
2013-07-25 23:10:00 +00:00
|
|
|
%endif # %{buildxen}
|
2005-04-27 12:26:45 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Install the power6 build files.
|
|
|
|
##############################################################################
|
2006-09-15 20:28:56 +00:00
|
|
|
%if %{buildpower6}
|
2013-08-09 04:41:01 +00:00
|
|
|
%define power6_subdir power6
|
|
|
|
%define power6_subdir_up ..
|
|
|
|
%define power6_legacy power6x
|
|
|
|
%define power6_legacy_up ..
|
2013-07-24 05:27:35 +00:00
|
|
|
pushd build-%{target}-power6
|
2013-08-09 04:41:01 +00:00
|
|
|
destdir=$RPM_BUILD_ROOT/%{_lib}
|
2013-08-29 04:36:52 +00:00
|
|
|
install_different "$destdir" "%{power6_subdir}" "%{power6_subdir_up}"
|
2013-08-09 04:41:01 +00:00
|
|
|
# Make a legacy /usr/lib[64]/power6x directory that is a symlink to the
|
|
|
|
# power6 runtime.
|
|
|
|
# XXX: When can we remove this? What is the history behind this?
|
|
|
|
mkdir -p ${destdir}/%{power6_legacy}
|
|
|
|
pushd ${destdir}/%{power6_legacy}
|
|
|
|
ln -sf %{power6_legacy_up}/%{power6_subdir}/*.so .
|
|
|
|
cp -a %{power6_legacy_up}/%{power6_subdir}/*.so.* .
|
2006-11-30 17:32:26 +00:00
|
|
|
popd
|
2006-09-15 20:28:56 +00:00
|
|
|
%ifarch %{rtkaioarches}
|
2013-08-09 04:41:01 +00:00
|
|
|
destdir=${destdir}/rtkaio
|
|
|
|
mkdir -p ${destdir}/%{power6_legacy}
|
|
|
|
pushd ${destdir}/%{power6_legacy}
|
2006-11-30 17:32:26 +00:00
|
|
|
ln -sf ../power6/*.so .
|
|
|
|
cp -a ../power6/*.so.* .
|
|
|
|
popd
|
2006-09-15 20:28:56 +00:00
|
|
|
%endif
|
2013-07-24 05:27:35 +00:00
|
|
|
popd
|
2013-07-25 23:10:00 +00:00
|
|
|
%endif # %{buildpower6}
|
2006-09-15 20:28:56 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
2004-09-09 05:40:37 +00:00
|
|
|
# Remove the files we don't want to distribute
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
# Remove the libNoVersion files.
|
|
|
|
# XXX: This looks like a bug in glibc that accidentally installed these
|
|
|
|
# wrong files. We probably don't need this today.
|
2013-07-26 05:59:43 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/libNoVersion*
|
2004-09-09 05:40:37 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT/%{_lib}/libNoVersion*
|
|
|
|
|
2013-07-25 03:00:43 +00:00
|
|
|
# rquota.x and rquota.h are now provided by quota
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_prefix}/include/rpcsvc/rquota.[hx]
|
|
|
|
|
|
|
|
# In F7+ this is provided by rpcbind rpm
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_sbindir}/rpcinfo
|
|
|
|
|
|
|
|
# Remove the old nss modules.
|
|
|
|
rm -f ${RPM_BUILD_ROOT}/%{_lib}/libnss1-*
|
|
|
|
rm -f ${RPM_BUILD_ROOT}/%{_lib}/libnss-*.so.1
|
2005-07-08 10:17:59 +00:00
|
|
|
|
2013-07-25 02:45:11 +00:00
|
|
|
##############################################################################
|
2013-07-25 03:00:43 +00:00
|
|
|
# Install info files
|
2013-07-25 02:45:11 +00:00
|
|
|
##############################################################################
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Move the info files if glibc installed them into the wrong location.
|
2004-09-09 05:40:37 +00:00
|
|
|
if [ -d $RPM_BUILD_ROOT%{_prefix}/info -a "%{_infodir}" != "%{_prefix}/info" ]; then
|
2008-03-05 10:32:39 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_infodir}
|
|
|
|
mv -f $RPM_BUILD_ROOT%{_prefix}/info/* $RPM_BUILD_ROOT%{_infodir}
|
|
|
|
rm -rf $RPM_BUILD_ROOT%{_prefix}/info
|
2004-09-09 05:40:37 +00:00
|
|
|
fi
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Compress all of the info files.
|
2004-09-09 05:40:37 +00:00
|
|
|
gzip -9nvf $RPM_BUILD_ROOT%{_infodir}/libc*
|
|
|
|
|
2013-07-25 03:00:43 +00:00
|
|
|
##############################################################################
|
|
|
|
# Install locale files
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
# Create archive of locale files
|
|
|
|
%ifnarch %{auxarches}
|
|
|
|
olddir=`pwd`
|
|
|
|
pushd ${RPM_BUILD_ROOT}%{_prefix}/lib/locale
|
2013-08-08 15:23:18 +00:00
|
|
|
rm -f locale-archive
|
2013-07-25 03:00:43 +00:00
|
|
|
# Intentionally we do not pass --alias-file=, aliases will be added
|
|
|
|
# by build-locale-archive.
|
|
|
|
$olddir/build-%{target}/elf/ld.so \
|
2013-07-25 22:53:13 +00:00
|
|
|
--library-path $olddir/build-%{target}/ \
|
|
|
|
$olddir/build-%{target}/locale/localedef \
|
|
|
|
--prefix ${RPM_BUILD_ROOT} --add-to-archive \
|
|
|
|
*_*
|
2013-07-25 03:00:43 +00:00
|
|
|
rm -rf *_*
|
|
|
|
mv locale-archive{,.tmpl}
|
|
|
|
popd
|
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Install configuration files for services
|
|
|
|
##############################################################################
|
|
|
|
|
2013-08-19 11:35:59 +00:00
|
|
|
install -p -m 644 %{SOURCE7} $RPM_BUILD_ROOT/etc/nsswitch.conf
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2010-09-06 14:40:34 +00:00
|
|
|
%ifnarch %{auxarches}
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/etc/default
|
2004-09-30 09:26:07 +00:00
|
|
|
install -p -m 644 nis/nss $RPM_BUILD_ROOT/etc/default/nss
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
# This is for ncsd - in glibc 2.2
|
|
|
|
install -m 644 nscd/nscd.conf $RPM_BUILD_ROOT/etc
|
2013-08-16 14:00:36 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_tmpfilesdir}
|
2013-08-19 11:35:59 +00:00
|
|
|
install -m 644 %{SOURCE4} %{buildroot}%{_tmpfilesdir}
|
2013-08-13 20:41:01 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/lib/systemd/system
|
2014-02-26 19:01:15 +00:00
|
|
|
install -m 644 nscd/nscd.service nscd/nscd.socket $RPM_BUILD_ROOT/lib/systemd/system
|
2010-09-06 14:40:34 +00:00
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
# Include ld.so.conf
|
2004-09-09 05:46:40 +00:00
|
|
|
echo 'include ld.so.conf.d/*.conf' > $RPM_BUILD_ROOT/etc/ld.so.conf
|
2013-07-26 00:30:34 +00:00
|
|
|
truncate -s 0 $RPM_BUILD_ROOT/etc/ld.so.cache
|
2004-09-09 05:40:37 +00:00
|
|
|
chmod 644 $RPM_BUILD_ROOT/etc/ld.so.conf
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/etc/ld.so.conf.d
|
2010-09-06 14:40:34 +00:00
|
|
|
%ifnarch %{auxarches}
|
2005-09-12 13:33:00 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/etc/sysconfig
|
2013-07-26 00:30:34 +00:00
|
|
|
truncate -s 0 $RPM_BUILD_ROOT/etc/sysconfig/nscd
|
|
|
|
truncate -s 0 $RPM_BUILD_ROOT/etc/gai.conf
|
2010-09-06 14:40:34 +00:00
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-26 05:59:43 +00:00
|
|
|
# Include %{_libdir}/gconv/gconv-modules.cache
|
|
|
|
truncate -s 0 $RPM_BUILD_ROOT%{_libdir}/gconv/gconv-modules.cache
|
|
|
|
chmod 644 $RPM_BUILD_ROOT%{_libdir}/gconv/gconv-modules.cache
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
2013-07-25 03:00:43 +00:00
|
|
|
# Misc...
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
|
2013-07-25 03:00:43 +00:00
|
|
|
# NPTL <bits/stdio-lock.h> is not usable outside of glibc, so include
|
|
|
|
# the generic one (#162634)
|
|
|
|
cp -a bits/stdio-lock.h $RPM_BUILD_ROOT%{_prefix}/include/bits/stdio-lock.h
|
|
|
|
# And <bits/libc-lock.h> needs sanitizing as well.
|
2013-08-19 11:35:59 +00:00
|
|
|
cp -a %{SOURCE3} $RPM_BUILD_ROOT%{_prefix}/include/bits/libc-lock.h
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-25 03:00:43 +00:00
|
|
|
# XXX: What is this for?
|
2013-07-26 05:59:43 +00:00
|
|
|
ln -sf libbsd-compat.a $RPM_BUILD_ROOT%{_libdir}/libbsd.a
|
2004-09-14 13:41:56 +00:00
|
|
|
|
2013-07-25 03:00:43 +00:00
|
|
|
# Install the upgrade program
|
|
|
|
install -m 700 build-%{target}/glibc_post_upgrade.%{_target_cpu} \
|
2013-08-15 03:48:25 +00:00
|
|
|
$RPM_BUILD_ROOT%{_prefix}/sbin/glibc_post_upgrade.%{_target_cpu}
|
2004-12-21 09:22:01 +00:00
|
|
|
|
2013-07-25 03:00:43 +00:00
|
|
|
# Strip all of the installed object files.
|
2013-07-26 05:59:43 +00:00
|
|
|
strip -g $RPM_BUILD_ROOT%{_libdir}/*.o
|
2013-07-25 03:00:43 +00:00
|
|
|
|
|
|
|
# XXX: Ugly hack for buggy rpm. What bug? BZ? Is this fixed?
|
|
|
|
ln -f ${RPM_BUILD_ROOT}%{_sbindir}/iconvconfig{,.%{_target_cpu}}
|
2007-03-31 17:37:20 +00:00
|
|
|
|
2013-07-26 05:05:12 +00:00
|
|
|
##############################################################################
|
|
|
|
# Install debug copies of unstripped static libraries
|
|
|
|
# - This step must be last in order to capture any additional static
|
|
|
|
# archives we might have added.
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
# If we are building a debug package then copy all of the static archives
|
|
|
|
# into the debug directory to keep them as unstripped copies.
|
|
|
|
%if 0%{?_enable_debug_packages}
|
2013-07-26 05:59:43 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_libdir}
|
|
|
|
cp -a $RPM_BUILD_ROOT%{_libdir}/*.a \
|
|
|
|
$RPM_BUILD_ROOT%{_prefix}/lib/debug%{_libdir}/
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_libdir}/*_p.a
|
2013-07-26 05:05:12 +00:00
|
|
|
%endif
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Build the file lists used for describing the package and subpackages.
|
|
|
|
##############################################################################
|
|
|
|
# There are 11 file lists:
|
|
|
|
# * rpm.fileslist
|
|
|
|
# - Master file list. Eventually, after removing files from this list
|
|
|
|
# we are left with the list of files for the glibc package.
|
|
|
|
# * common.filelist
|
|
|
|
# - Contains the list of flies for the common subpackage.
|
|
|
|
# * utils.filelist
|
|
|
|
# - Contains the list of files for the utils subpackage.
|
|
|
|
# * nscd.filelist
|
|
|
|
# - Contains the list of files for the nscd subpackage.
|
|
|
|
# * devel.filelist
|
|
|
|
# - Contains the list of files for the devel subpackage.
|
|
|
|
# * headers.filelist
|
|
|
|
# - Contains the list of files for the headers subpackage.
|
|
|
|
# * static.filelist
|
|
|
|
# - Contains the list of files for the static subpackage.
|
|
|
|
# * nosegneg.filelist
|
|
|
|
# - Contains the list of files for the xen subpackage.
|
|
|
|
# * debuginfo.filelist
|
|
|
|
# - Contains the list of files for the glibc debuginfo package.
|
|
|
|
# * debuginfocommon.filelist
|
|
|
|
# - Contains the list of files for the glibc common debuginfo package.
|
|
|
|
#
|
|
|
|
|
2009-06-26 15:46:27 +00:00
|
|
|
{
|
2009-07-30 13:39:12 +00:00
|
|
|
find $RPM_BUILD_ROOT \( -type f -o -type l \) \
|
2009-06-26 15:46:27 +00:00
|
|
|
\( \
|
|
|
|
-name etc -printf "%%%%config " -o \
|
|
|
|
-name gconv-modules \
|
|
|
|
-printf "%%%%verify(not md5 size mtime) %%%%config(noreplace) " -o \
|
|
|
|
-name gconv-modules.cache \
|
|
|
|
-printf "%%%%verify(not md5 size mtime) " \
|
|
|
|
, \
|
2009-07-30 13:39:12 +00:00
|
|
|
! -path "*/lib/debug/*" -printf "/%%P\n" \)
|
2009-06-26 15:46:27 +00:00
|
|
|
find $RPM_BUILD_ROOT -type d \
|
|
|
|
\( -path '*%{_prefix}/share/*' ! -path '*%{_infodir}' -o \
|
2010-05-19 12:00:46 +00:00
|
|
|
-path "*%{_prefix}/include/*" \
|
2009-06-26 15:46:27 +00:00
|
|
|
\) -printf "%%%%dir /%%P\n"
|
|
|
|
} | {
|
|
|
|
|
|
|
|
# primary filelist
|
|
|
|
SHARE_LANG='s|.*/share/locale/\([^/_]\+\).*/LC_MESSAGES/.*\.mo|%lang(\1) &|'
|
|
|
|
LIB_LANG='s|.*/lib/locale/\([^/_]\+\)|%lang(\1) &|'
|
|
|
|
# rpm does not handle %lang() tagged files hardlinked together accross
|
|
|
|
# languages very well, temporarily disable
|
|
|
|
LIB_LANG=''
|
|
|
|
sed -e "$LIB_LANG" -e "$SHARE_LANG" \
|
2010-10-14 10:30:32 +00:00
|
|
|
-e '\,/etc/\(localtime\|nsswitch.conf\|ld\.so\.conf\|ld\.so\.cache\|default\|rpc\|gai\.conf\),d' \
|
2009-06-26 15:46:27 +00:00
|
|
|
-e '\,/%{_lib}/lib\(pcprofile\|memusage\)\.so,d' \
|
|
|
|
-e '\,bin/\(memusage\|mtrace\|xtrace\|pcprofiledump\),d'
|
|
|
|
} | sort > rpm.filelist
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-08-13 20:41:01 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}
|
|
|
|
mv -f $RPM_BUILD_ROOT/%{_lib}/lib{pcprofile,memusage}.so $RPM_BUILD_ROOT%{_libdir}
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# The xtrace and memusage scripts have hard-coded paths that need to be
|
|
|
|
# translated to a correct set of paths using the $LIB token which is
|
|
|
|
# dynamically translated by ld.so as the default lib directory.
|
2004-09-09 05:40:37 +00:00
|
|
|
for i in $RPM_BUILD_ROOT%{_prefix}/bin/{xtrace,memusage}; do
|
2013-07-26 05:59:43 +00:00
|
|
|
sed -e 's~=/%{_lib}/libpcprofile.so~=%{_libdir}/libpcprofile.so~' \
|
|
|
|
-e 's~=/%{_lib}/libmemusage.so~=%{_libdir}/libmemusage.so~' \
|
2006-08-07 19:49:00 +00:00
|
|
|
-e 's~='\''/\\\$LIB/libpcprofile.so~='\''%{_prefix}/\\$LIB/libpcprofile.so~' \
|
|
|
|
-e 's~='\''/\\\$LIB/libmemusage.so~='\''%{_prefix}/\\$LIB/libmemusage.so~' \
|
2009-06-26 15:46:27 +00:00
|
|
|
-i $i
|
2004-09-09 05:40:37 +00:00
|
|
|
done
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Put the info files into the devel file list.
|
2005-02-11 11:29:59 +00:00
|
|
|
grep '%{_infodir}' < rpm.filelist | grep -v '%{_infodir}/dir' > devel.filelist
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
# Put the stub headers into the devel file list.
|
2014-01-29 10:42:36 +00:00
|
|
|
grep '%{_prefix}/include/gnu/stubs-[^.]\+\.h' < rpm.filelist >> devel.filelist || :
|
2005-02-11 11:29:59 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Put the include files into headers file list.
|
2005-02-11 11:29:59 +00:00
|
|
|
grep '%{_prefix}/include' < rpm.filelist |
|
2014-01-29 10:42:36 +00:00
|
|
|
egrep -v '%{_prefix}/include/(linuxthreads|gnu/stubs-[^.]+\.h)' \
|
2008-03-05 10:32:39 +00:00
|
|
|
> headers.filelist
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Remove partial (lib*_p.a) static libraries, include files, and info files from
|
|
|
|
# the core glibc package.
|
2013-07-26 05:59:43 +00:00
|
|
|
sed -i -e '\|%{_libdir}/lib.*_p.a|d' \
|
2009-06-26 15:46:27 +00:00
|
|
|
-e '\|%{_prefix}/include|d' \
|
|
|
|
-e '\|%{_infodir}|d' rpm.filelist
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Put some static files into the devel package.
|
2013-07-26 05:59:43 +00:00
|
|
|
grep '%{_libdir}/lib.*\.a' < rpm.filelist \
|
2009-03-09 15:03:51 +00:00
|
|
|
| grep '/lib\(\(c\|pthread\|nldbl\)_nonshared\|bsd\(\|-compat\)\|g\|ieee\|mcheck\|rpcsvc\)\.a$' \
|
2009-02-18 20:47:04 +00:00
|
|
|
>> devel.filelist
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
# Put the rest of the static files into the static package.
|
2013-07-26 05:59:43 +00:00
|
|
|
grep '%{_libdir}/lib.*\.a' < rpm.filelist \
|
2009-03-09 15:03:51 +00:00
|
|
|
| grep -v '/lib\(\(c\|pthread\|nldbl\)_nonshared\|bsd\(\|-compat\)\|g\|ieee\|mcheck\|rpcsvc\)\.a$' \
|
2009-02-18 20:47:04 +00:00
|
|
|
> static.filelist
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
# Put all of the object files and *.so (not the versioned ones) into the
|
|
|
|
# devel package.
|
2013-07-26 05:59:43 +00:00
|
|
|
grep '%{_libdir}/.*\.o' < rpm.filelist >> devel.filelist
|
2013-08-13 20:41:01 +00:00
|
|
|
grep '%{_libdir}/lib.*\.so' < rpm.filelist >> devel.filelist
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Remove all of the static, object, unversioned DSOs, old linuxthreads stuff,
|
|
|
|
# and nscd from the core glibc package.
|
2013-07-26 05:59:43 +00:00
|
|
|
sed -i -e '\|%{_libdir}/lib.*\.a|d' \
|
|
|
|
-e '\|%{_libdir}/.*\.o|d' \
|
2013-08-13 20:41:01 +00:00
|
|
|
-e '\|%{_libdir}/lib.*\.so|d' \
|
2013-07-26 05:59:43 +00:00
|
|
|
-e '\|%{_libdir}/linuxthreads|d' \
|
2009-06-26 15:46:27 +00:00
|
|
|
-e '\|nscd|d' rpm.filelist
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# All of the bin and certain sbin files go into the common package.
|
|
|
|
# We explicitly exclude certain sbin files that need to go into
|
|
|
|
# the core glibc package for use during upgrades.
|
2013-08-13 20:41:01 +00:00
|
|
|
grep '%{_prefix}/bin' < rpm.filelist >> common.filelist
|
|
|
|
grep '%{_prefix}/sbin/[^gi]' < rpm.filelist >> common.filelist
|
2013-07-24 11:58:38 +00:00
|
|
|
# All of the files under share go into the common package since
|
2013-08-13 20:41:01 +00:00
|
|
|
# they should be multilib-independent.
|
2008-03-05 10:32:39 +00:00
|
|
|
grep '%{_prefix}/share' < rpm.filelist | \
|
2013-08-13 20:41:01 +00:00
|
|
|
grep -v -e '%{_prefix}/share/zoneinfo' -e '%%dir %{prefix}/share' \
|
|
|
|
>> common.filelist
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-29 12:05:53 +00:00
|
|
|
# Remove the bin, locale, some sbin, and share from the
|
2013-07-24 11:58:38 +00:00
|
|
|
# core glibc package. We cheat a bit and use the slightly dangerous
|
2013-08-13 20:41:01 +00:00
|
|
|
# /usr/sbin/[^gi] to match the inverse of the search that put the
|
2013-07-24 11:58:38 +00:00
|
|
|
# files into common.filelist. It's dangerous in that additional files
|
2013-08-13 20:41:01 +00:00
|
|
|
# that start with g, or i would get put into common.filelist and
|
2013-07-24 11:58:38 +00:00
|
|
|
# rpm.filelist.
|
2009-06-26 15:46:27 +00:00
|
|
|
sed -i -e '\|%{_prefix}/bin|d' \
|
2013-08-13 20:41:01 +00:00
|
|
|
-e '\|%{_prefix}/lib/locale|d' \
|
|
|
|
-e '\|%{_prefix}/sbin/[^gi]|d' \
|
|
|
|
-e '\|%{_prefix}/share|d' rpm.filelist
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Build the xen package file list (nosegneg.filelist)
|
|
|
|
##############################################################################
|
2013-07-26 00:30:34 +00:00
|
|
|
truncate -s 0 nosegneg.filelist
|
2005-04-27 12:26:45 +00:00
|
|
|
%if %{xenpackage}
|
2013-08-13 20:41:01 +00:00
|
|
|
grep '/%{_lib}/%{nosegneg_subdir}' < rpm.filelist >> nosegneg.filelist
|
|
|
|
sed -i -e '\|/%{_lib}/%{nosegneg_subdir}|d' rpm.filelist
|
2013-07-24 11:58:38 +00:00
|
|
|
# TODO: There are files in the nosegneg list which should be in the devel
|
|
|
|
# pacakge, but we leave them instead in the xen subpackage. We may
|
|
|
|
# wish to clean that up at some point.
|
2005-04-27 12:26:45 +00:00
|
|
|
%endif
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Add the binary to build localse to the common subpackage.
|
2004-09-09 05:40:37 +00:00
|
|
|
echo '%{_prefix}/sbin/build-locale-archive' >> common.filelist
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
# The nscd binary must go into the nscd subpackage.
|
2004-09-09 05:40:37 +00:00
|
|
|
echo '%{_prefix}/sbin/nscd' > nscd.filelist
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# The memusage and pcprofile libraries are put back into the core
|
|
|
|
# glibc package even though they are only used by utils package
|
|
|
|
# scripts..
|
2011-09-16 12:17:45 +00:00
|
|
|
cat >> rpm.filelist <<EOF
|
2013-07-26 05:59:43 +00:00
|
|
|
%{_libdir}/libmemusage.so
|
|
|
|
%{_libdir}/libpcprofile.so
|
2011-09-16 12:17:45 +00:00
|
|
|
EOF
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
# Add the utils scripts and programs to the utils subpackage.
|
2011-09-16 12:17:45 +00:00
|
|
|
cat > utils.filelist <<EOF
|
2004-09-09 05:40:37 +00:00
|
|
|
%{_prefix}/bin/memusage
|
|
|
|
%{_prefix}/bin/memusagestat
|
|
|
|
%{_prefix}/bin/mtrace
|
|
|
|
%{_prefix}/bin/pcprofiledump
|
|
|
|
%{_prefix}/bin/xtrace
|
|
|
|
EOF
|
|
|
|
|
2013-08-13 20:41:01 +00:00
|
|
|
# Remove the zoneinfo files
|
|
|
|
# XXX: Why isn't this don't earlier when we are removing files?
|
|
|
|
# Won't this impact what is shipped?
|
2004-09-09 05:42:25 +00:00
|
|
|
rm -rf $RPM_BUILD_ROOT%{_prefix}/share/zoneinfo
|
|
|
|
|
2013-08-19 11:35:59 +00:00
|
|
|
# Make sure %config files have the same timestamp across multilib packages.
|
|
|
|
#
|
|
|
|
# XXX: Ideally ld.so.conf should have the timestamp of the spec file, but there
|
|
|
|
# doesn't seem to be any macro to give us that. So we do the next best thing,
|
|
|
|
# which is to at least keep the timestamp consistent. The choice of using
|
|
|
|
# glibc_post_upgrade.c is arbitrary.
|
|
|
|
touch -r %{SOURCE2} $RPM_BUILD_ROOT/etc/ld.so.conf
|
2006-11-28 12:30:29 +00:00
|
|
|
touch -r sunrpc/etc.rpc $RPM_BUILD_ROOT/etc/rpc
|
|
|
|
|
2012-06-12 01:32:35 +00:00
|
|
|
# We allow undefined symbols in shared libraries because the libraries
|
|
|
|
# referenced at link time here, particularly ld.so, may be different than
|
2013-07-24 05:22:37 +00:00
|
|
|
# the one used at runtime. This is really only needed during the ARM
|
2012-06-12 01:32:35 +00:00
|
|
|
# transition from ld-linux.so.3 to ld-linux-armhf.so.3.
|
2013-08-19 11:35:59 +00:00
|
|
|
pushd build-%{target}
|
|
|
|
$GCC -Os -g -o build-locale-archive %{SOURCE1} \
|
2013-07-25 22:53:13 +00:00
|
|
|
../build-%{target}/locale/locarchive.o \
|
|
|
|
../build-%{target}/locale/md5.o \
|
2013-08-19 11:35:59 +00:00
|
|
|
-I. -DDATADIR=\"%{_datadir}\" -DPREFIX=\"%{_prefix}\" \
|
2013-07-25 22:53:13 +00:00
|
|
|
-L../build-%{target} \
|
|
|
|
-Wl,--allow-shlib-undefined \
|
|
|
|
-B../build-%{target}/csu/ -lc -lc_nonshared
|
2013-08-15 03:48:25 +00:00
|
|
|
install -m 700 build-locale-archive $RPM_BUILD_ROOT%{_prefix}/sbin/build-locale-archive
|
2013-07-24 05:27:35 +00:00
|
|
|
popd
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Lastly copy some additional documentation for the packages.
|
2004-09-09 05:40:37 +00:00
|
|
|
rm -rf documentation
|
|
|
|
mkdir documentation
|
|
|
|
cp crypt/README.ufc-crypt documentation/README.ufc-crypt
|
|
|
|
cp timezone/README documentation/README.timezone
|
2006-05-05 06:46:41 +00:00
|
|
|
cp ChangeLog{,.15,.16} documentation
|
2005-04-04 19:51:39 +00:00
|
|
|
bzip2 -9 documentation/ChangeLog*
|
2006-05-05 07:42:23 +00:00
|
|
|
cp posix/gai.conf documentation/
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-08-13 17:18:15 +00:00
|
|
|
%ifarch s390x
|
2013-08-13 20:41:01 +00:00
|
|
|
# Compatibility symlink
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/lib
|
|
|
|
ln -sf /%{_lib}/ld64.so.1 $RPM_BUILD_ROOT/lib/ld64.so.1
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
|
|
|
|
2012-06-12 01:32:35 +00:00
|
|
|
# Leave a compatibility symlink for the dynamic loader on armhfp targets,
|
|
|
|
# at least until the world gets rebuilt
|
|
|
|
%ifarch armv7hl armv7hnl
|
2013-08-13 20:41:01 +00:00
|
|
|
ln -sf /lib/ld-linux-armhf.so.3 $RPM_BUILD_ROOT/lib/ld-linux.so.3
|
2012-06-12 01:32:35 +00:00
|
|
|
%endif
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# Run the glibc testsuite
|
|
|
|
##############################################################################
|
2007-08-10 01:55:13 +00:00
|
|
|
%if %{run_glibc_tests}
|
2004-09-09 05:40:37 +00:00
|
|
|
# Increase timeouts
|
2004-10-06 09:51:52 +00:00
|
|
|
export TIMEOUTFACTOR=16
|
2006-08-15 21:03:14 +00:00
|
|
|
parent=$$
|
2004-09-09 05:40:37 +00:00
|
|
|
echo ====================TESTING=========================
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# - Test the default runtime.
|
|
|
|
##############################################################################
|
2013-07-24 05:27:35 +00:00
|
|
|
pushd build-%{target}
|
2011-05-13 14:56:46 +00:00
|
|
|
( make %{?_smp_mflags} -k check %{silentrules} 2>&1
|
2006-08-15 21:03:14 +00:00
|
|
|
sleep 10s
|
2006-09-05 07:07:39 +00:00
|
|
|
teepid="`ps -eo ppid,pid,command | awk '($1 == '${parent}' && $3 ~ /^tee/) { print $2 }'`"
|
2006-08-15 21:03:14 +00:00
|
|
|
[ -n "$teepid" ] && kill $teepid
|
|
|
|
) | tee check.log || :
|
2014-07-03 16:48:36 +00:00
|
|
|
echo ===================FAILED TESTS=====================
|
|
|
|
grep -e ^FAIL -e ^ERROR tests.sum | awk '{print $2}' | while read testcase; do
|
|
|
|
echo "$testcase"
|
|
|
|
cat $testcase.out
|
2014-07-04 16:56:53 +00:00
|
|
|
echo -------------------------
|
2014-07-03 16:48:36 +00:00
|
|
|
done
|
2013-07-24 05:27:35 +00:00
|
|
|
popd
|
2013-07-25 02:45:11 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# - Test the xen runtimes (nosegneg).
|
|
|
|
##############################################################################
|
2013-07-25 02:45:11 +00:00
|
|
|
%if %{buildxen}
|
|
|
|
echo ====================TESTING -mno-tls-direct-seg-refs=============
|
2013-07-24 05:27:35 +00:00
|
|
|
pushd build-%{target}-nosegneg
|
2011-05-13 14:56:46 +00:00
|
|
|
( make %{?_smp_mflags} -k check %{silentrules} 2>&1
|
2006-08-15 21:03:14 +00:00
|
|
|
sleep 10s
|
2006-09-05 07:07:39 +00:00
|
|
|
teepid="`ps -eo ppid,pid,command | awk '($1 == '${parent}' && $3 ~ /^tee/) { print $2 }'`"
|
2006-08-15 21:03:14 +00:00
|
|
|
[ -n "$teepid" ] && kill $teepid
|
|
|
|
) | tee check.log || :
|
2014-07-03 16:48:36 +00:00
|
|
|
echo ===================FAILED TESTS=====================
|
|
|
|
grep -e ^FAIL -e ^ERROR tests.sum | awk '{print $2}' | while read testcase; do
|
|
|
|
echo "$testcase"
|
|
|
|
cat $testcase.out
|
2014-07-04 16:56:53 +00:00
|
|
|
echo -------------------------
|
2014-07-03 16:48:36 +00:00
|
|
|
done
|
2013-07-24 05:27:35 +00:00
|
|
|
popd
|
2005-04-27 12:26:45 +00:00
|
|
|
%endif
|
2013-07-25 02:45:11 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
##############################################################################
|
|
|
|
# - Test the power6 runtimes.
|
|
|
|
##############################################################################
|
2013-07-25 02:45:11 +00:00
|
|
|
%if %{buildpower6}
|
|
|
|
echo ====================TESTING -mcpu=power6=============
|
2013-07-24 05:27:35 +00:00
|
|
|
pushd build-%{target}-power6
|
2006-09-15 20:28:56 +00:00
|
|
|
( if [ -d ../power6emul ]; then
|
|
|
|
export LD_PRELOAD=`cd ../power6emul; pwd`/\$LIB/power6emul.so
|
|
|
|
fi
|
2011-05-13 14:56:46 +00:00
|
|
|
make %{?_smp_mflags} -k check %{silentrules} 2>&1
|
2006-09-15 20:28:56 +00:00
|
|
|
sleep 10s
|
|
|
|
teepid="`ps -eo ppid,pid,command | awk '($1 == '${parent}' && $3 ~ /^tee/) { print $2 }'`"
|
|
|
|
[ -n "$teepid" ] && kill $teepid
|
|
|
|
) | tee check.log || :
|
2014-07-03 16:48:36 +00:00
|
|
|
echo ===================FAILED TESTS=====================
|
|
|
|
grep -e ^FAIL -e ^ERROR tests.sum | awk '{print $2}' | while read testcase; do
|
|
|
|
echo "$testcase"
|
|
|
|
cat $testcase.out
|
|
|
|
echo -------------------------
|
|
|
|
done
|
2013-07-24 05:27:35 +00:00
|
|
|
popd
|
2006-09-15 20:28:56 +00:00
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
echo ====================TESTING DETAILS=================
|
2004-09-09 05:54:44 +00:00
|
|
|
for i in `sed -n 's|^.*\*\*\* \[\([^]]*\.out\)\].*$|\1|p' build-*-linux*/check.log`; do
|
2004-09-09 05:40:37 +00:00
|
|
|
echo =====$i=====
|
|
|
|
cat $i || :
|
|
|
|
echo ============
|
|
|
|
done
|
|
|
|
echo ====================TESTING END=====================
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
PLTCMD='/^Relocation section .*\(\.rela\?\.plt\|\.rela\.IA_64\.pltoff\)/,/^$/p'
|
|
|
|
echo ====================PLT RELOCS LD.SO================
|
2013-08-13 20:41:01 +00:00
|
|
|
readelf -Wr $RPM_BUILD_ROOT/%{_lib}/ld-*.so | sed -n -e "$PLTCMD"
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
echo ====================PLT RELOCS LIBC.SO==============
|
2013-08-13 20:41:01 +00:00
|
|
|
readelf -Wr $RPM_BUILD_ROOT/%{_lib}/libc-*.so | sed -n -e "$PLTCMD"
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
echo ====================PLT RELOCS END==================
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
%endif # %{run_glibc_tests}
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Rebuild libpthread.a using --whole-archive to ensure all of libpthread
|
|
|
|
# is included in a static link. This prevents any problems when linking
|
|
|
|
# statically, using parts of libpthread, and other necessary parts not
|
|
|
|
# being included. Upstream has decided that this is the wrong approach to
|
|
|
|
# this problem and that the full set of dependencies should be resolved
|
|
|
|
# such that static linking works and produces the most minimally sized
|
|
|
|
# static application possible.
|
|
|
|
###############################################################################
|
2013-08-15 03:48:25 +00:00
|
|
|
pushd $RPM_BUILD_ROOT%{_prefix}/%{_lib}/
|
2009-03-09 15:03:51 +00:00
|
|
|
$GCC -r -nostdlib -o libpthread.o -Wl,--whole-archive ./libpthread.a
|
2009-02-18 20:47:04 +00:00
|
|
|
rm libpthread.a
|
|
|
|
ar rcs libpthread.a libpthread.o
|
|
|
|
rm libpthread.o
|
|
|
|
popd
|
2013-07-24 11:58:38 +00:00
|
|
|
###############################################################################
|
2009-02-18 20:47:04 +00:00
|
|
|
|
2009-06-26 15:46:27 +00:00
|
|
|
%if 0%{?_enable_debug_packages}
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2007-08-10 01:55:13 +00:00
|
|
|
# The #line directives gperf generates do not give the proper
|
|
|
|
# file name relative to the build directory.
|
2013-08-08 15:23:18 +00:00
|
|
|
pushd locale
|
|
|
|
ln -s programs/*.gperf .
|
|
|
|
popd
|
|
|
|
pushd iconv
|
|
|
|
ln -s ../locale/programs/charmap-kw.gperf .
|
|
|
|
popd
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Print some diagnostic information in the builds about the
|
|
|
|
# getconf binaries.
|
|
|
|
# XXX: Why do we do this?
|
2013-08-15 03:48:25 +00:00
|
|
|
ls -l $RPM_BUILD_ROOT%{_prefix}/bin/getconf
|
|
|
|
ls -l $RPM_BUILD_ROOT%{_prefix}/libexec/getconf
|
|
|
|
eu-readelf -hS $RPM_BUILD_ROOT%{_prefix}/bin/getconf \
|
|
|
|
$RPM_BUILD_ROOT%{_prefix}/libexec/getconf/*
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2007-08-10 01:55:13 +00:00
|
|
|
find_debuginfo_args='--strict-build-id -g'
|
|
|
|
%ifarch %{debuginfocommonarches}
|
|
|
|
find_debuginfo_args="$find_debuginfo_args \
|
2013-07-25 22:53:13 +00:00
|
|
|
-l common.filelist \
|
|
|
|
-l utils.filelist \
|
|
|
|
-l nscd.filelist \
|
2013-08-13 20:41:01 +00:00
|
|
|
-p '.*/(sbin|libexec)/.*' \
|
2013-07-25 22:53:13 +00:00
|
|
|
-o debuginfocommon.filelist \
|
|
|
|
-l rpm.filelist \
|
2013-07-25 23:10:00 +00:00
|
|
|
-l nosegneg.filelist"
|
2007-08-10 01:55:13 +00:00
|
|
|
%endif
|
2013-08-13 20:41:01 +00:00
|
|
|
eval /usr/lib/rpm/find-debuginfo.sh \
|
2013-07-25 22:53:13 +00:00
|
|
|
"$find_debuginfo_args" \
|
|
|
|
-o debuginfo.filelist
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# List all of the *.a archives in the debug directory.
|
2007-08-10 01:55:13 +00:00
|
|
|
list_debug_archives()
|
|
|
|
{
|
2013-07-26 05:59:43 +00:00
|
|
|
local dir=%{_prefix}/lib/debug%{_libdir}
|
2013-07-25 22:53:13 +00:00
|
|
|
find $RPM_BUILD_ROOT$dir -name "*.a" -printf "$dir/%%P\n"
|
2007-08-10 01:55:13 +00:00
|
|
|
}
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%ifarch %{debuginfocommonarches}
|
2007-08-10 01:55:13 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Remove the source files from the common package debuginfo.
|
2011-02-15 13:29:18 +00:00
|
|
|
sed -i '\#^%{_prefix}/src/debug/#d' debuginfocommon.filelist
|
2013-07-24 11:58:38 +00:00
|
|
|
|
|
|
|
# Create a list of all of the source files we copied to the debug directory.
|
2011-02-15 13:29:18 +00:00
|
|
|
find $RPM_BUILD_ROOT%{_prefix}/src/debug \
|
|
|
|
\( -type d -printf '%%%%dir ' \) , \
|
|
|
|
-printf '%{_prefix}/src/debug/%%P\n' > debuginfocommon.sources
|
|
|
|
|
|
|
|
%ifarch %{biarcharches}
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Add the source files to the core debuginfo package.
|
2011-02-15 13:29:18 +00:00
|
|
|
cat debuginfocommon.sources >> debuginfo.filelist
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
%ifarch %{ix86}
|
2009-07-20 13:24:45 +00:00
|
|
|
%define basearch i686
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
|
|
|
%ifarch sparc sparcv9
|
|
|
|
%define basearch sparc
|
|
|
|
%endif
|
2007-08-10 01:55:13 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# The auxarches get only these few source files.
|
2007-08-10 01:55:13 +00:00
|
|
|
auxarches_debugsources=\
|
|
|
|
'/(generic|linux|%{basearch}|nptl(_db)?)/|/%{glibcsrcdir}/build|/dl-osinfo\.h'
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Place the source files into the core debuginfo pakcage.
|
2007-08-10 01:55:13 +00:00
|
|
|
egrep "$auxarches_debugsources" debuginfocommon.sources >> debuginfo.filelist
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Remove the source files from the common debuginfo package.
|
2007-08-10 01:55:13 +00:00
|
|
|
egrep -v "$auxarches_debugsources" \
|
2008-03-05 10:32:39 +00:00
|
|
|
debuginfocommon.sources >> debuginfocommon.filelist
|
2007-08-10 01:55:13 +00:00
|
|
|
|
2013-07-25 02:45:11 +00:00
|
|
|
%endif # %{biarcharches}
|
2011-02-15 13:29:18 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Add the list of *.a archives in the debug directory to
|
|
|
|
# the common debuginfo package.
|
2007-08-10 01:55:13 +00:00
|
|
|
list_debug_archives >> debuginfocommon.filelist
|
|
|
|
|
2013-08-08 16:29:39 +00:00
|
|
|
# It happens that find-debuginfo.sh produces duplicate entries even
|
|
|
|
# though the inputs are unique. Therefore we sort and unique the
|
|
|
|
# entries in the debug file lists. This avoids the following warnings:
|
|
|
|
# ~~~
|
|
|
|
# Processing files: glibc-debuginfo-common-2.17.90-10.fc20.x86_64
|
|
|
|
# warning: File listed twice: /usr/lib/debug/usr/sbin/build-locale-archive.debug
|
|
|
|
# warning: File listed twice: /usr/lib/debug/usr/sbin/nscd.debug
|
|
|
|
# warning: File listed twice: /usr/lib/debug/usr/sbin/zdump.debug
|
|
|
|
# warning: File listed twice: /usr/lib/debug/usr/sbin/zic.debug
|
|
|
|
# ~~~
|
|
|
|
sort -u debuginfocommon.filelist > debuginfocommon2.filelist
|
|
|
|
mv debuginfocommon2.filelist debuginfocommon.filelist
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
%endif # %{debuginfocommonarches}
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-08-08 16:29:39 +00:00
|
|
|
# Remove any duplicates output by a buggy find-debuginfo.sh.
|
|
|
|
sort -u debuginfo.filelist > debuginfo2.filelist
|
|
|
|
mv debuginfo2.filelist debuginfo.filelist
|
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
%endif # 0%{?_enable_debug_packages}
|
2007-08-10 01:55:13 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Remove the `dir' info-heirarchy file which will be maintained
|
|
|
|
# by the system as it adds info files to the install.
|
2007-08-10 01:55:13 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
%ifarch %{auxarches}
|
2007-08-10 01:55:13 +00:00
|
|
|
|
2013-07-24 11:58:38 +00:00
|
|
|
# Delete files that we do not intended to ship with the auxarch.
|
2004-09-09 05:40:37 +00:00
|
|
|
echo Cutting down the list of unpackaged files
|
2007-08-10 01:55:13 +00:00
|
|
|
sed -e '/%%dir/d;/%%config/d;/%%verify/d;s/%%lang([^)]*) //;s#^/*##' \
|
2013-07-26 00:17:30 +00:00
|
|
|
common.filelist devel.filelist static.filelist headers.filelist \
|
|
|
|
utils.filelist nscd.filelist \
|
|
|
|
%ifarch %{debuginfocommonarches}
|
|
|
|
debuginfocommon.filelist \
|
|
|
|
%endif
|
|
|
|
| (cd $RPM_BUILD_ROOT; xargs --no-run-if-empty rm -f 2> /dev/null || :)
|
2013-07-24 11:58:38 +00:00
|
|
|
|
2004-10-18 23:44:24 +00:00
|
|
|
%else
|
|
|
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/var/{db,run}/nscd
|
2007-01-17 11:26:50 +00:00
|
|
|
touch $RPM_BUILD_ROOT/var/{db,run}/nscd/{passwd,group,hosts,services}
|
2004-10-18 23:44:24 +00:00
|
|
|
touch $RPM_BUILD_ROOT/var/run/nscd/{socket,nscd.pid}
|
2013-07-25 23:10:00 +00:00
|
|
|
|
2013-07-25 02:45:11 +00:00
|
|
|
%endif # %{auxarches}
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2007-04-17 02:25:38 +00:00
|
|
|
%ifnarch %{auxarches}
|
2013-07-26 00:30:34 +00:00
|
|
|
truncate -s 0 $RPM_BUILD_ROOT/%{_prefix}/lib/locale/locale-archive
|
2007-04-17 02:25:38 +00:00
|
|
|
%endif
|
2004-09-09 05:46:40 +00:00
|
|
|
|
2007-07-31 18:18:37 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/var/cache/ldconfig
|
2013-07-26 00:30:34 +00:00
|
|
|
truncate -s 0 $RPM_BUILD_ROOT/var/cache/ldconfig/aux-cache
|
2007-07-31 18:18:37 +00:00
|
|
|
|
2010-11-12 12:29:24 +00:00
|
|
|
%pre -p <lua>
|
|
|
|
-- Check that the running kernel is new enough
|
|
|
|
required = '%{enablekernel}'
|
2010-12-13 16:58:18 +00:00
|
|
|
rel = posix.uname("%r")
|
|
|
|
if rpm.vercmp(rel, required) < 0 then
|
|
|
|
error("FATAL: kernel too old", 0)
|
2010-11-12 12:29:24 +00:00
|
|
|
end
|
|
|
|
|
2013-08-15 03:48:25 +00:00
|
|
|
%post -p %{_prefix}/sbin/glibc_post_upgrade.%{_target_cpu}
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-08-13 20:41:01 +00:00
|
|
|
%postun -p /sbin/ldconfig
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2011-07-14 13:53:14 +00:00
|
|
|
%triggerin common -p <lua> -- glibc
|
|
|
|
if posix.stat("%{_prefix}/lib/locale/locale-archive.tmpl", "size") > 0 then
|
|
|
|
pid = posix.fork()
|
|
|
|
if pid == 0 then
|
|
|
|
posix.exec("%{_prefix}/sbin/build-locale-archive")
|
|
|
|
elseif pid > 0 then
|
|
|
|
posix.wait(pid)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
%post common -p <lua>
|
|
|
|
if posix.access("/etc/ld.so.cache") then
|
|
|
|
if posix.stat("%{_prefix}/lib/locale/locale-archive.tmpl", "size") > 0 then
|
|
|
|
pid = posix.fork()
|
|
|
|
if pid == 0 then
|
|
|
|
posix.exec("%{_prefix}/sbin/build-locale-archive")
|
|
|
|
elseif pid > 0 then
|
|
|
|
posix.wait(pid)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%post devel
|
2009-08-10 09:56:04 +00:00
|
|
|
/sbin/install-info %{_infodir}/libc.info.gz %{_infodir}/dir > /dev/null 2>&1 || :
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%pre headers
|
|
|
|
# this used to be a link and it is causing nightmares now
|
|
|
|
if [ -L %{_prefix}/include/scsi ] ; then
|
2008-03-05 10:32:39 +00:00
|
|
|
rm -f %{_prefix}/include/scsi
|
2004-09-09 05:40:37 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
%preun devel
|
|
|
|
if [ "$1" = 0 ]; then
|
2009-08-10 09:56:04 +00:00
|
|
|
/sbin/install-info --delete %{_infodir}/libc.info.gz %{_infodir}/dir > /dev/null 2>&1 || :
|
2004-09-09 05:40:37 +00:00
|
|
|
fi
|
|
|
|
|
2013-08-13 20:41:01 +00:00
|
|
|
%post utils -p /sbin/ldconfig
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2013-08-13 20:41:01 +00:00
|
|
|
%postun utils -p /sbin/ldconfig
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%pre -n nscd
|
2010-05-31 15:10:22 +00:00
|
|
|
getent group nscd >/dev/null || /usr/sbin/groupadd -g 28 -r nscd
|
|
|
|
getent passwd nscd >/dev/null ||
|
|
|
|
/usr/sbin/useradd -M -o -r -d / -s /sbin/nologin \
|
|
|
|
-c "NSCD Daemon" -u 28 -g nscd nscd
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%post -n nscd
|
2012-08-21 15:47:24 +00:00
|
|
|
%systemd_post nscd.service
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%preun -n nscd
|
2012-08-21 15:47:24 +00:00
|
|
|
%systemd_preun nscd.service
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
%postun -n nscd
|
2011-09-28 12:23:58 +00:00
|
|
|
if test $1 = 0; then
|
2008-03-05 10:32:39 +00:00
|
|
|
/usr/sbin/userdel nscd > /dev/null 2>&1 || :
|
2004-09-09 05:40:37 +00:00
|
|
|
fi
|
2012-08-21 15:47:24 +00:00
|
|
|
%systemd_postun_with_restart nscd.service
|
2004-09-09 05:40:37 +00:00
|
|
|
|
2005-04-27 12:26:45 +00:00
|
|
|
%if %{xenpackage}
|
2013-08-13 20:41:01 +00:00
|
|
|
%post xen -p /sbin/ldconfig
|
|
|
|
%postun xen -p /sbin/ldconfig
|
2005-04-27 12:26:45 +00:00
|
|
|
%endif
|
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
%clean
|
|
|
|
rm -rf "$RPM_BUILD_ROOT"
|
|
|
|
rm -f *.filelist*
|
|
|
|
|
|
|
|
%files -f rpm.filelist
|
|
|
|
%defattr(-,root,root)
|
2013-08-15 03:48:25 +00:00
|
|
|
%dir %{_prefix}/%{_lib}/audit
|
2006-09-07 10:56:50 +00:00
|
|
|
%ifarch %{rtkaioarches}
|
2013-08-13 20:41:01 +00:00
|
|
|
%dir /%{_lib}/rtkaio
|
2006-09-07 10:56:50 +00:00
|
|
|
%endif
|
2005-04-27 12:26:45 +00:00
|
|
|
%if %{buildxen} && !%{xenpackage}
|
2013-08-13 20:41:01 +00:00
|
|
|
%dir /%{_lib}/%{nosegneg_subdir_base}
|
|
|
|
%dir /%{_lib}/%{nosegneg_subdir}
|
2006-09-07 10:56:50 +00:00
|
|
|
%ifarch %{rtkaioarches}
|
2013-08-13 20:41:01 +00:00
|
|
|
%dir /%{_lib}/rtkaio/%{nosegneg_subdir_base}
|
|
|
|
%dir /%{_lib}/rtkaio/%{nosegneg_subdir}
|
2006-09-07 10:56:50 +00:00
|
|
|
%endif
|
2005-04-27 12:26:45 +00:00
|
|
|
%endif
|
2006-09-15 20:28:56 +00:00
|
|
|
%if %{buildpower6}
|
2013-08-13 20:41:01 +00:00
|
|
|
%dir /%{_lib}/power6
|
|
|
|
%dir /%{_lib}/power6x
|
2006-09-15 20:28:56 +00:00
|
|
|
%ifarch %{rtkaioarches}
|
2013-08-13 20:41:01 +00:00
|
|
|
%dir /%{_lib}/rtkaio/power6
|
|
|
|
%dir /%{_lib}/rtkaio/power6x
|
2006-09-15 20:28:56 +00:00
|
|
|
%endif
|
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
%ifarch s390x
|
2013-08-13 20:41:01 +00:00
|
|
|
/lib/ld64.so.1
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
2013-07-24 05:22:37 +00:00
|
|
|
%ifarch armv7hl armv7hnl
|
2013-08-13 20:41:01 +00:00
|
|
|
/lib/ld-linux.so.3
|
2012-06-12 01:32:35 +00:00
|
|
|
%endif
|
2004-09-09 05:40:37 +00:00
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/nsswitch.conf
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/ld.so.conf
|
2010-06-15 08:43:24 +00:00
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/rpc
|
2004-09-09 05:46:40 +00:00
|
|
|
%dir /etc/ld.so.conf.d
|
2004-12-07 15:19:04 +00:00
|
|
|
%dir %{_prefix}/libexec/getconf
|
2013-07-26 05:59:43 +00:00
|
|
|
%dir %{_libdir}/gconv
|
2007-07-31 18:18:37 +00:00
|
|
|
%dir %attr(0700,root,root) /var/cache/ldconfig
|
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/cache/ldconfig/aux-cache
|
2004-09-09 05:53:08 +00:00
|
|
|
%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /etc/ld.so.cache
|
2010-10-14 10:30:32 +00:00
|
|
|
%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /etc/gai.conf
|
2012-12-19 18:14:19 +00:00
|
|
|
%doc README NEWS INSTALL BUGS PROJECTS CONFORMANCE elf/rtld-debugger-interface.txt
|
2014-07-12 15:16:06 +00:00
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
|
%license COPYING COPYING.LIB LICENSES
|
2004-09-09 05:40:37 +00:00
|
|
|
%doc hesiod/README.hesiod
|
|
|
|
|
2005-04-27 12:26:45 +00:00
|
|
|
%if %{xenpackage}
|
|
|
|
%files -f nosegneg.filelist xen
|
|
|
|
%defattr(-,root,root)
|
2013-08-13 20:41:01 +00:00
|
|
|
%dir /%{_lib}/%{nosegneg_subdir_base}
|
|
|
|
%dir /%{_lib}/%{nosegneg_subdir}
|
2005-04-27 12:26:45 +00:00
|
|
|
%endif
|
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
%ifnarch %{auxarches}
|
|
|
|
%files -f common.filelist common
|
|
|
|
%defattr(-,root,root)
|
2014-01-25 18:52:16 +00:00
|
|
|
%dir %{_prefix}/lib/locale
|
2007-07-31 18:18:37 +00:00
|
|
|
%attr(0644,root,root) %verify(not md5 size mtime) %{_prefix}/lib/locale/locale-archive.tmpl
|
2004-09-09 05:46:40 +00:00
|
|
|
%attr(0644,root,root) %verify(not md5 size mtime mode) %ghost %config(missingok,noreplace) %{_prefix}/lib/locale/locale-archive
|
2004-11-16 10:39:21 +00:00
|
|
|
%dir %attr(755,root,root) /etc/default
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/default/nss
|
2004-09-09 05:40:37 +00:00
|
|
|
%doc documentation/*
|
|
|
|
|
|
|
|
%files -f devel.filelist devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
2009-02-18 20:47:04 +00:00
|
|
|
%files -f static.filelist static
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
%files -f headers.filelist headers
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
|
|
|
%files -f utils.filelist utils
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
|
|
|
%files -f nscd.filelist -n nscd
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%config(noreplace) /etc/nscd.conf
|
2004-10-18 23:44:24 +00:00
|
|
|
%dir %attr(0755,root,root) /var/run/nscd
|
|
|
|
%dir %attr(0755,root,root) /var/db/nscd
|
2013-08-13 20:41:01 +00:00
|
|
|
/lib/systemd/system/nscd.service
|
|
|
|
/lib/systemd/system/nscd.socket
|
2013-08-16 14:00:36 +00:00
|
|
|
%{_tmpfilesdir}/nscd.conf
|
2004-10-18 23:44:24 +00:00
|
|
|
%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/nscd.pid
|
|
|
|
%attr(0666,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/socket
|
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/passwd
|
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/group
|
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/hosts
|
2007-01-17 11:26:50 +00:00
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/services
|
2004-10-18 23:44:24 +00:00
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/passwd
|
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/group
|
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/hosts
|
2007-01-17 11:26:50 +00:00
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/services
|
2005-09-12 13:33:00 +00:00
|
|
|
%ghost %config(missingok,noreplace) /etc/sysconfig/nscd
|
2004-09-09 05:40:37 +00:00
|
|
|
%endif
|
|
|
|
|
2009-06-26 15:46:27 +00:00
|
|
|
%if 0%{?_enable_debug_packages}
|
2004-09-09 05:40:37 +00:00
|
|
|
%files debuginfo -f debuginfo.filelist
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%ifarch %{debuginfocommonarches}
|
|
|
|
%ifnarch %{auxarches}
|
|
|
|
%files debuginfo-common -f debuginfocommon.filelist
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%changelog
|
2014-08-13 18:37:02 +00:00
|
|
|
* Wed Aug 13 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-32
|
|
|
|
- Auto-sync with upstream master.
|
|
|
|
- Revert to only defining __extern_always_inline for g++-4.3+.
|
|
|
|
- Fix build failure in compat-gcc-32 (#186410).
|
|
|
|
|
2014-07-28 18:55:03 +00:00
|
|
|
* Mon Jul 28 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-31
|
|
|
|
- Auto-sync with upstream master.
|
|
|
|
|
2014-07-23 08:34:08 +00:00
|
|
|
* Wed Jul 23 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-30
|
2014-07-23 08:32:10 +00:00
|
|
|
- Undo last master sync to fix up rawhide.
|
|
|
|
|
2014-07-15 16:43:48 +00:00
|
|
|
* Tue Jul 15 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-29
|
|
|
|
- Auto-sync with upstream master.
|
|
|
|
|
2014-07-12 15:16:06 +00:00
|
|
|
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 2.19.90-28
|
|
|
|
- fix license handling
|
|
|
|
|
2014-07-07 17:05:01 +00:00
|
|
|
* Mon Jul 07 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-27
|
|
|
|
- Auto-sync with upstream master.
|
|
|
|
|
2014-07-04 18:30:22 +00:00
|
|
|
* Fri Jul 04 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-26
|
|
|
|
- Sync with upstream roland/nptl branch.
|
|
|
|
- Improve testsuite failure outputs in build.log
|
|
|
|
|
2014-07-03 05:34:10 +00:00
|
|
|
* Thu Jul 03 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-25
|
|
|
|
- Sync with upstream roland/nptl branch.
|
|
|
|
|
2014-07-02 10:45:02 +00:00
|
|
|
* Wed Jul 02 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-24
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2014-06-24 12:11:51 +00:00
|
|
|
* Tue Jun 24 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-23
|
|
|
|
- Sync with upstream master.
|
|
|
|
- Add fix to unbreak i386 ABI breakage due to a change in scalbn.
|
|
|
|
|
2014-06-20 15:49:56 +00:00
|
|
|
* Fri Jun 20 2014 Kyle McMartin <kmcmarti@redhat.com> - 2.19.90-22
|
|
|
|
- AArch64: Save & restore NZCV (flags) upon entry to _dl_tlsdesc_dynamic
|
|
|
|
in order to work around GCC reordering compares across the TLS
|
|
|
|
descriptor sequence (GCC PR61545.) Committing a (temporary) fix here
|
|
|
|
allows us to avoid rebuilding the world with gcc 4.9.0-11.fc21.
|
|
|
|
|
2014-06-16 17:45:03 +00:00
|
|
|
* Mon Jun 16 2014 Kyle McMartin <kmcmarti@redhat.com> - 2.19.90-21
|
|
|
|
- Auto-sync with upstream master.
|
|
|
|
|
2014-06-12 06:49:12 +00:00
|
|
|
* Thu Jun 12 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-20
|
|
|
|
- Auto-sync with upstream master.
|
|
|
|
|
2014-06-07 16:13:53 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.19.90-19.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-06-03 09:38:22 +00:00
|
|
|
* Tue Jun 03 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-19
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2014-05-26 07:55:00 +00:00
|
|
|
* Mon May 26 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-18
|
|
|
|
- Sync with upstream master.
|
2014-05-26 10:20:48 +00:00
|
|
|
- Adjust rtkaio patches to build with upstream master.
|
2014-05-26 07:55:00 +00:00
|
|
|
|
2014-05-22 02:06:41 +00:00
|
|
|
* Wed May 21 2014 Kyle McMartin <kyle@fedoraproject.org> - 2.19.90-17
|
|
|
|
- Backport some upstream-wards patches to fix TLS issues on AArch64.
|
|
|
|
|
2014-05-21 19:34:20 +00:00
|
|
|
* Wed May 21 2014 Kyle McMartin <kyle@fedoraproject.org> - 2.19.90-16
|
|
|
|
- AArch64: Fix handling of nocancel syscall failures (#1098327)
|
|
|
|
|
2014-05-15 06:56:54 +00:00
|
|
|
* Thu May 15 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-15
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2014-05-14 16:52:50 +00:00
|
|
|
* Wed May 14 2014 Carlos O'Donell <carlos@redhat.com> - 2.19.90-14
|
|
|
|
- Add support for displaying all test results in build logs.
|
|
|
|
|
2014-05-14 07:21:29 +00:00
|
|
|
* Wed May 14 2014 Carlos O'Donell <carlos@redhat.com> - 2.19.90-13
|
|
|
|
- Add initial support for ppc64le.
|
|
|
|
|
2014-04-29 09:28:45 +00:00
|
|
|
* Tue Apr 29 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-12
|
|
|
|
- Auto-sync with upstream master.
|
2014-04-29 09:45:58 +00:00
|
|
|
- Remove ports addon.
|
2014-04-29 09:28:45 +00:00
|
|
|
|
2014-04-18 06:44:38 +00:00
|
|
|
* Fri Apr 18 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-11
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2014-04-10 16:10:30 +00:00
|
|
|
* Thu Apr 10 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-10
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2014-04-03 11:38:52 +00:00
|
|
|
* Thu Apr 03 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-9
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2014-03-26 08:50:45 +00:00
|
|
|
* Wed Mar 26 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-8
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2014-03-19 16:47:32 +00:00
|
|
|
* Wed Mar 19 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-7
|
|
|
|
- Sync with upstream master.
|
|
|
|
- Fix offset computation for append+ mode on switching from read (#1078355).
|
|
|
|
|
2014-03-12 22:13:23 +00:00
|
|
|
* Wed Mar 12 2014 Carlos O'Donell <carlos@redhat.com> - 2.19.90-6
|
|
|
|
- Sync with upstream master.
|
|
|
|
- Use cleaner upstream solution for -ftree-loop-distribute-patterns (#911307).
|
|
|
|
|
2014-03-04 17:50:27 +00:00
|
|
|
* Tue Mar 04 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-5
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2014-02-26 19:01:15 +00:00
|
|
|
* Thu Feb 27 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-4
|
|
|
|
- Use nscd service files from glibc sources.
|
|
|
|
- Make nscd service forking in systemd service file.
|
|
|
|
|
2014-02-25 09:52:53 +00:00
|
|
|
* Tue Feb 25 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-3
|
|
|
|
- Sync with upstream master.
|
|
|
|
- Separate ftell from fseek logic and avoid modifying FILE data (#1069559).
|
|
|
|
|
2014-02-25 03:33:35 +00:00
|
|
|
* Mon Feb 24 2014 Carlos O'Donell <carlos@redhat.com> - 2.19.90-2
|
|
|
|
- Fix build-locale-archive failure to open default template.
|
|
|
|
|
2014-02-18 17:18:17 +00:00
|
|
|
* Tue Feb 18 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.19.90-1
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2014-02-04 07:47:38 +00:00
|
|
|
* Tue Feb 04 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-27
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2014-01-29 10:42:36 +00:00
|
|
|
* Wed Jan 29 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-26
|
|
|
|
- Modify regular expressions to include powerpcle stubs-*.h (#1058258).
|
|
|
|
|
2014-01-29 05:17:29 +00:00
|
|
|
* Wed Jan 29 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-25
|
2014-01-29 09:16:39 +00:00
|
|
|
- Sync with upstream master.
|
2014-01-29 05:17:29 +00:00
|
|
|
|
2014-01-29 04:51:23 +00:00
|
|
|
* Sat Jan 25 2014 Ville Skyttä <ville.skytta@iki.fi> - 2.18.90-24
|
2014-01-25 18:52:16 +00:00
|
|
|
- Own the %%{_prefix}/lib/locale dir.
|
|
|
|
|
2014-01-23 09:45:41 +00:00
|
|
|
* Thu Jan 23 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-23
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2014-01-16 06:33:18 +00:00
|
|
|
* Thu Jan 16 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-22
|
|
|
|
- Back out ftell test case (#1052846).
|
|
|
|
|
2014-01-14 08:46:38 +00:00
|
|
|
* Tue Jan 14 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-21
|
|
|
|
- Sync with upstream master.
|
|
|
|
- Fix infinite loop in ftell when writing wide char data (#1052846).
|
|
|
|
|
2014-01-07 09:36:38 +00:00
|
|
|
* Tue Jan 7 2014 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-20
|
|
|
|
- Sync with upstream master.
|
|
|
|
- Enable systemtap probes on Power and S/390.
|
|
|
|
|
2013-12-27 05:36:36 +00:00
|
|
|
* Fri Dec 27 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-19
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2013-12-20 09:50:21 +00:00
|
|
|
* Fri Dec 20 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-18
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2013-12-04 05:47:23 +00:00
|
|
|
* Wed Dec 4 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-17
|
|
|
|
- Sync with upstream master.
|
|
|
|
- Fix shm_open validation (#1037787);
|
|
|
|
|
2013-11-28 12:47:19 +00:00
|
|
|
* Thu Nov 28 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-16
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2013-11-20 10:16:46 +00:00
|
|
|
* Wed Nov 20 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-15
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2013-11-09 07:15:56 +00:00
|
|
|
* Fri Nov 8 2013 Carlos O'Donell <carlos@redhat.com> - 2.18.90-14
|
|
|
|
- Enhance NSCD's SELinux support to use dynamic permission names (#1025126).
|
|
|
|
|
2013-10-28 06:14:33 +00:00
|
|
|
* Mon Oct 28 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-13
|
|
|
|
- Sync with upstream master.
|
2013-10-28 06:21:00 +00:00
|
|
|
- Skip over unimplemented timezone format specifier in strptime (#947722).
|
2013-10-28 06:14:33 +00:00
|
|
|
|
2013-10-21 09:36:43 +00:00
|
|
|
* Mon Oct 21 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-12
|
|
|
|
- Allow fill_archive to be called with NULL fname.
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
2013-10-15 05:39:58 +00:00
|
|
|
* Tue Oct 15 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-11
|
|
|
|
- Sync with upstream master.
|
|
|
|
|
|
|
|
* Thu Oct 3 2013 Carlos O'Donell <carlos@redhat.com> - 2.18.90-10
|
2013-10-03 09:22:51 +00:00
|
|
|
- Allow applications to use pthread_atfork without explicitly
|
|
|
|
requiring libpthread.so. (#1013801)
|
|
|
|
- Support `--list-archive FILE' in localedef utility.
|
|
|
|
|
2013-10-03 05:12:38 +00:00
|
|
|
* Thu Oct 3 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-9
|
|
|
|
- Define swap_endianness_p in build-locale-archive.
|
|
|
|
|
|
|
|
* Wed Oct 2 2013 Carlos O'Donell <carlos@redhat.com> - 2.18.90-8
|
2013-10-03 01:34:56 +00:00
|
|
|
- Allow ldconfig cached objects previously marked as hard or soft
|
|
|
|
ABI to now become unmarked without raising an error. This works
|
|
|
|
around a binutils bug that caused objects to become unmarked.
|
|
|
|
(#1009145)
|
|
|
|
|
2013-10-01 14:53:50 +00:00
|
|
|
* Tue Oct 1 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-7
|
|
|
|
- Fix check for PI mutex on non-x86 systems (#1007590).
|
|
|
|
- Resync with upstream master.
|
|
|
|
|
2013-09-24 06:01:06 +00:00
|
|
|
* Tue Sep 24 2013 Carlos O'Donell <carlos@redhat.com> - 2.18.90-6
|
|
|
|
- Avoid the use of __block which is a reserved keyword for clang++
|
|
|
|
(#1009623).
|
|
|
|
|
2013-09-23 07:52:23 +00:00
|
|
|
* Mon Sep 23 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-5
|
|
|
|
- Resync with upstream master.
|
|
|
|
|
2013-09-23 04:30:55 +00:00
|
|
|
* Sun Sep 22 2013 Carlos O'Donell <carlos@redhat.com> - 2.18.90-4
|
|
|
|
- Fix CVE-2013-4788: Static applications now support pointer mangling.
|
|
|
|
Existing static applications must be recompiled (#985625).
|
|
|
|
|
2013-09-19 14:23:27 +00:00
|
|
|
* Wed Sep 18 2013 Patsy Franklin <pfrankli@redhat.com> - 2.18.90-3
|
|
|
|
- Fix conditional requiring specific binutils for s390/s390x.
|
|
|
|
|
2013-09-16 09:46:18 +00:00
|
|
|
* Mon Sep 16 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-2
|
|
|
|
- Resync with upstream master.
|
|
|
|
- Fix CVE-2013-4332 (#1008299).
|
|
|
|
|
2013-09-05 12:07:40 +00:00
|
|
|
* Thu Sep 5 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18.90-1
|
|
|
|
- Resync with upstream master.
|
|
|
|
- Drop patch for #800224.
|
|
|
|
|
2013-08-29 04:36:52 +00:00
|
|
|
* Thu Aug 29 2013 Carlos O'Donell <carlos@redhat.com> - 2.18-6
|
|
|
|
- Fix Power build (#997531).
|
|
|
|
|
2013-08-28 04:34:43 +00:00
|
|
|
* Wed Aug 28 2013 Carlos O'Donell <carlos@redhat.com> - 2.18-5
|
|
|
|
- Fix indirect function support to avoid calling optimized routines
|
|
|
|
for the wrong hardware (#985342).
|
|
|
|
|
2013-08-26 06:53:11 +00:00
|
|
|
* Mon Aug 26 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18-4
|
|
|
|
- Initialize res_hconf in nscd. (#1000924).
|
|
|
|
|
2013-08-20 04:44:34 +00:00
|
|
|
* Tue Aug 20 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18-3
|
|
|
|
- Remove non-ELF support in rtkaio.
|
2013-08-22 05:37:15 +00:00
|
|
|
- Avoid inlining of cleanup function for kaio_suspend.
|
2013-08-22 05:40:25 +00:00
|
|
|
- Expand sizes of some types in strcoll (#855399, CVE-2012-4424).
|
2013-08-22 09:38:00 +00:00
|
|
|
- Fix tst-aiod2 and tst-aiod3 test failures (#970865).
|
2013-08-20 04:44:34 +00:00
|
|
|
|
2013-08-19 08:03:34 +00:00
|
|
|
* Mon Aug 19 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18-2
|
|
|
|
- Fix buffer overflow in readdir_r (#995841, CVE-2013-4237).
|
2013-08-19 11:38:37 +00:00
|
|
|
- Remove releng tarball.
|
2013-08-19 08:03:34 +00:00
|
|
|
|
2013-08-16 13:56:44 +00:00
|
|
|
* Fri Aug 16 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.18-1
|
|
|
|
- Upstream release 2.18.
|
2013-08-16 14:00:36 +00:00
|
|
|
- Pull in systemd during build and use the tmpfilesdir macro.
|
2013-08-16 13:56:44 +00:00
|
|
|
|
2013-08-15 03:48:25 +00:00
|
|
|
* Wed Aug 14 2013 Carlos O'Donell <codonell@redhat.com> - 2.17.90-14
|
|
|
|
- Update spec file to use rpm prefix everywhere.
|
|
|
|
|
2013-08-13 20:41:01 +00:00
|
|
|
* Tue Aug 13 2013 Carlos O'Donell <codonell@redhat.com> - 2.17.90-13
|
|
|
|
- Revert `Move to /usr' transition.
|
|
|
|
|
2013-08-13 17:18:15 +00:00
|
|
|
* Tue Aug 13 2013 Carlos O'Donell <codonell@redhat.com> - 2.17.90-12
|
|
|
|
- Complete `Move to /usr' transition. All relevant files are now
|
|
|
|
installed into `/usr'.
|
|
|
|
|
2013-08-07 13:18:48 +00:00
|
|
|
* Wed Aug 07 2013 Karsten Hopp <karsten@redhat.com> 2.17.90-11
|
|
|
|
- rebuild with the latest rpm to fix missing ld64.so provides on PPC
|
|
|
|
|
2013-07-29 18:36:48 +00:00
|
|
|
* Mon Jul 29 2013 Carlos O'Donell <codonell@redhat.com> - 2.17.90-10
|
|
|
|
- Fix missing libbsd.a in debuginfo packages.
|
|
|
|
|
2013-07-29 14:34:15 +00:00
|
|
|
* Mon Jul 29 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.17.90-9
|
|
|
|
- Fix strcoll flaws (#855399, CVE-2012-4412, CVE-2012-4424).
|
|
|
|
|
2013-07-29 12:05:53 +00:00
|
|
|
* Mon Jul 29 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.17.90-8
|
|
|
|
- Resync with upstream master.
|
|
|
|
- Disable pt_chown (CVE-2013-2207).
|
|
|
|
|
2013-07-25 19:46:20 +00:00
|
|
|
* Thu Jul 25 2013 Carlos O'Donell <carlos@redhat.com> - 2.17.90-7
|
|
|
|
- Correctly name the 240-bit slow path sytemtap probe slowpow_p10 for slowpow.
|
|
|
|
|
2013-07-24 12:54:14 +00:00
|
|
|
* Wed Jul 24 2013 Carlos O'Donell <carlos@redhat.com> - 2.17.90-6
|
|
|
|
- Add build requirement on static libstdc++ library to fix testsuite failures
|
|
|
|
for static C++ tests.
|
|
|
|
|
2013-07-22 09:14:54 +00:00
|
|
|
* Fri Jul 12 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.17.90-5
|
|
|
|
- Enable lock elision support (#982363).
|
|
|
|
- Depend on systemd instead of systemd-units (#983760).
|
|
|
|
|
2013-07-09 17:45:48 +00:00
|
|
|
* Tue Jul 9 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.17.90-4
|
|
|
|
- Resync with upstream master.
|
|
|
|
|
2013-06-20 07:53:26 +00:00
|
|
|
* Thu Jun 20 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.17.90-3
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream master.
|
2013-06-20 07:53:26 +00:00
|
|
|
|
2013-06-11 08:04:52 +00:00
|
|
|
* Tue Jun 11 2013 Remi Collet <rcollet@redhat.com> - 2.17.90-2
|
|
|
|
- rebuild for new GD 2.1.0
|
|
|
|
|
2013-06-04 16:53:45 +00:00
|
|
|
* Tue Jun 4 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.17.90-1
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream master.
|
2013-06-04 16:53:45 +00:00
|
|
|
|
2013-05-14 14:48:28 +00:00
|
|
|
* Tue May 14 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.17-9
|
2013-07-08 21:17:33 +00:00
|
|
|
- Avoid crashing in LD_DEBUG when program name is unavailable (#961238).
|
2013-05-14 14:48:28 +00:00
|
|
|
|
2013-05-06 00:19:47 +00:00
|
|
|
* Sun May 5 2013 Patsy Franklin <pfrankli@redhat.com> - 2.17-8
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix _nl_find_msg malloc failure case, and callers. (#959034).
|
2013-05-06 00:19:47 +00:00
|
|
|
|
2013-04-30 14:51:37 +00:00
|
|
|
* Tue Apr 23 2013 Patsy Franklin <pfrankli@redhat.com> - 2.17-7
|
2013-07-08 21:17:33 +00:00
|
|
|
- Test init_fct for NULL, not result->__init_fct, after demangling (#952799).
|
2013-04-30 14:51:37 +00:00
|
|
|
|
2013-04-23 20:52:25 +00:00
|
|
|
* Tue Apr 23 2013 Patsy Franklin <pfrankli@redhat.com> - 2.17-6
|
2013-07-08 21:17:33 +00:00
|
|
|
- Increase limits on xdr name and record requests (#892777).
|
|
|
|
- Consistently MANGLE/DEMANGLE init_fct, end_fct and btow_fct (#952799).
|
2013-04-23 20:52:25 +00:00
|
|
|
|
2013-03-28 08:41:28 +00:00
|
|
|
* Thu Mar 28 2013 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.17-5
|
2013-07-08 21:17:33 +00:00
|
|
|
- Don't add input group during initgroups_dyn in hesiod (#921760).
|
2013-03-28 08:41:28 +00:00
|
|
|
|
2013-03-18 00:13:38 +00:00
|
|
|
* Sun Mar 17 2013 Carlos O'Donell <carlos@redhat.com> - 2.17-4
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fixed i386 glibc builds (#917161).
|
|
|
|
- Fixed multibyte character processing crash in regexp (#905877, CVE-2013-0242)
|
2013-03-18 00:13:38 +00:00
|
|
|
|
2013-02-28 00:48:51 +00:00
|
|
|
* Wed Feb 27 2013 Carlos O'Donell <carlos@redhat.com> - 2.17-3
|
2013-07-08 21:17:33 +00:00
|
|
|
- Renamed release engineering directory to `releng' (#903754).
|
|
|
|
- Fix building with gcc 4.8.0 (#911307).
|
2013-02-28 00:48:51 +00:00
|
|
|
|
2013-02-08 14:40:54 +00:00
|
|
|
* Thu Feb 7 2013 Carlos O'Donell <carlos@redhat.com> - 2.17-2
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix ownership of /usr/lib[64]/audit (#894307).
|
|
|
|
- Support unmarked ARM objects in ld.so.cache and aux cache (#905184).
|
2013-02-08 14:40:54 +00:00
|
|
|
|
2013-01-01 15:00:53 +00:00
|
|
|
* Tue Jan 1 2013 Jeff Law <law@redhat.com> - 2.17-1
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with official glibc-2.17 release
|
2013-01-01 15:00:53 +00:00
|
|
|
|
2012-12-21 20:50:00 +00:00
|
|
|
* Fri Dec 21 2012 Jeff Law <law@redhat.com> - 2.16.90-40
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with master
|
2012-12-21 20:50:00 +00:00
|
|
|
|
2012-12-19 18:14:19 +00:00
|
|
|
* Wed Dec 19 2012 Jeff Law <law@redhat.com> - 2.16.90-39
|
2013-07-08 21:17:33 +00:00
|
|
|
- Add rtld-debugger-interface.txt as documentation. (#872242)
|
2012-12-19 18:14:19 +00:00
|
|
|
|
2012-12-07 22:01:57 +00:00
|
|
|
* Fri Dec 7 2012 Jeff Law <law@redhat.com> - 2.16.90-38
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with master
|
|
|
|
- Drop patch for 731228 that is no longer needed.
|
2012-12-07 22:01:57 +00:00
|
|
|
|
2012-12-06 17:45:03 +00:00
|
|
|
* Thu Dec 6 2012 Jeff Law <law@redhat.com> - 2.16.90-37
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with master
|
|
|
|
- Patch for 697421 has been submitted upstream.
|
|
|
|
- Drop local patch for 691912 that is no longer needed.
|
2012-12-06 17:45:03 +00:00
|
|
|
|
2012-12-03 18:25:56 +00:00
|
|
|
* Mon Dec 3 2012 Jeff Law <law@redhat.com> - 2.16.90-36
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with master
|
|
|
|
- Drop local patch for 657588 that is no longer needed.
|
|
|
|
- Drop local patch for 740682 that is no longer needed.
|
|
|
|
- Drop local patch for 770439 that is no longer needed.
|
|
|
|
- Drop local patch for 789209 that is no longer needed.
|
|
|
|
- Drop local patch for nss-files-overflow that seems
|
|
|
|
useless.
|
|
|
|
- Drop localedata-locales-fixes as they were rejected
|
|
|
|
upstream.
|
|
|
|
- Drop test-debug-gnuc-hack.patch that seems useless now.
|
|
|
|
- Repack patchlist.
|
2012-12-03 18:25:56 +00:00
|
|
|
|
2012-11-30 21:01:46 +00:00
|
|
|
* Fri Nov 30 2012 Jeff Law <law@redhat.com> - 2.16.90-35
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with master (#882137).
|
|
|
|
- Remove local patch for strict-aliasing warnings that
|
|
|
|
is no longer needed.
|
|
|
|
- Remove local patch for 730856 that is no longer needed.
|
|
|
|
- Repack patchlist.
|
2012-11-30 21:01:46 +00:00
|
|
|
|
2012-11-29 21:20:27 +00:00
|
|
|
* Thu Nov 29 2012 Jeff Law <law@redhat.com> - 2.16.90-34
|
2013-07-08 21:17:33 +00:00
|
|
|
- Remove local patch which "temporarily" re-added currences
|
|
|
|
obsoleted by the Euro.
|
|
|
|
- Remove hunks from strict-aliasing patch that are no longer
|
|
|
|
needed.
|
2012-11-29 21:20:27 +00:00
|
|
|
|
2012-11-29 17:56:43 +00:00
|
|
|
* Thu Nov 29 2012 Jeff Law <law@redhat.com> - 2.16.90-33
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with master.
|
|
|
|
- Drop local patch for 788989.
|
|
|
|
- Repack patchlist.
|
2012-11-29 17:56:43 +00:00
|
|
|
|
|
|
|
* Wed Nov 28 2012 Jeff Law <law@redhat.com> - 2.16.90-32
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with master.
|
|
|
|
- Drop local patch for 878913.
|
|
|
|
- Drop local patch for 880666.
|
|
|
|
- Drop local patch for 767693.
|
|
|
|
- Repack patchlist.
|
2012-11-28 21:30:40 +00:00
|
|
|
|
2012-11-27 16:01:22 +00:00
|
|
|
* Tue Nov 27 2012 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.16.90-31
|
2013-07-08 21:17:33 +00:00
|
|
|
- Ensure that hashtable size is greater than 3 (#878913).
|
|
|
|
- fwrite returns 0 on EOF (#880666).
|
2012-11-27 16:01:22 +00:00
|
|
|
|
2012-11-26 21:19:38 +00:00
|
|
|
* Mon Nov 26 2012 Jeff Law <law@redhat.com> - 2.16.90-30
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources
|
|
|
|
- Drop local patch for getconf.
|
|
|
|
- Repack patchlist.
|
2012-11-26 21:19:38 +00:00
|
|
|
|
2012-11-16 13:33:25 +00:00
|
|
|
* Fri Nov 16 2012 Jeff Law <law@redhat.com> - 2.16.90-29
|
2013-07-08 21:17:33 +00:00
|
|
|
- Rsync with upstream sources
|
|
|
|
- Drop local patches for 803286, 791161, 790292, 790298
|
2012-11-16 13:33:25 +00:00
|
|
|
|
2012-11-07 19:05:53 +00:00
|
|
|
* Wed Nov 7 2012 Jeff Law <law@redhat.com> - 2.16.90-28
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources (#873397)
|
2012-11-07 19:05:53 +00:00
|
|
|
|
2012-11-05 21:44:36 +00:00
|
|
|
* Mon Nov 5 2012 Jeff Law <law@redhat.com> - 2.16.90-27
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources.
|
|
|
|
- Don't use distinct patches for 770869, 787201 and 688948
|
|
|
|
as they all modify stuff under fedora/
|
|
|
|
- Repack patchlist
|
2012-11-05 21:44:36 +00:00
|
|
|
|
2012-11-02 18:08:02 +00:00
|
|
|
* Thu Nov 1 2012 Jeff Law <law@redhat.com> - 2.16.90-26
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources (#872336)
|
2012-11-02 18:08:02 +00:00
|
|
|
|
2012-10-22 16:00:55 +00:00
|
|
|
* Mon Oct 22 2012 Jeff Law <law@redhat.com> - 2.16.90-25
|
2013-07-08 21:17:33 +00:00
|
|
|
- Rsync with upstream sources
|
|
|
|
- Drop 864820 patch as now that it's upstream.
|
|
|
|
- Add sss to /etc/nsswitch.conf (#867473)
|
2012-10-22 16:00:55 +00:00
|
|
|
|
2012-10-11 15:54:09 +00:00
|
|
|
* Thu Oct 11 2012 Jeff Law <law@redhat.com> - 2.16.90-24
|
2013-07-08 21:17:33 +00:00
|
|
|
- Rsync with upstream sources
|
|
|
|
- Drop local 552960-2 patch now that it's upstream.
|
|
|
|
- Drop local 858274 patch now that the root problem is fixed upstream.
|
|
|
|
- Repack patchlist.
|
2012-10-11 15:54:09 +00:00
|
|
|
|
2012-10-10 11:50:38 +00:00
|
|
|
* Wed Oct 10 2012 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.16.90-23
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix Marathi names for Wednesday, September and October (#rh864820).
|
2012-10-10 09:11:48 +00:00
|
|
|
|
|
|
|
* Fri Oct 5 2012 Jeff Law <law@redhat.com> - 2.16.90-22
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources
|
|
|
|
- Drop local 552960 patch now that it's upstream
|
|
|
|
- Drop local stap patch now obsolete
|
|
|
|
- Drop local s390 patch which avoided problems with old assemblers
|
|
|
|
- Drop old fortify source patch to deal with old compilers
|
2012-10-05 18:24:19 +00:00
|
|
|
|
2012-10-04 06:27:51 +00:00
|
|
|
* Thu Oct 4 2012 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.16.90-21
|
2013-07-08 21:17:33 +00:00
|
|
|
- Take mutex in cleanup only if it is not already taken.
|
2012-10-04 06:27:51 +00:00
|
|
|
|
|
|
|
* Tue Oct 2 2012 Jeff Law <law@redhat.com> - 2.16.90-20
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources.
|
|
|
|
- Repack patchlist.
|
2012-10-02 12:41:58 +00:00
|
|
|
|
2012-10-01 12:37:36 +00:00
|
|
|
* Mon Oct 1 2012 Jeff Law <law@redhat.com> - 2.16.90-19
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources to pick up fma fixes
|
2012-10-01 12:37:36 +00:00
|
|
|
|
2012-09-28 19:55:42 +00:00
|
|
|
* Fri Sep 28 2012 Jeff Law <law@redhat.com> - 2.16.90-18
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources.
|
|
|
|
- Drop fedora-cdefs-gnuc.patch, it's not needed anymore.
|
|
|
|
- Drop fedora-gai-rfc1918.patch, it's upstream now.
|
|
|
|
- Drop fedora-localedata-no_NO.patch, it was supposed to be
|
|
|
|
temporary -- that was back in 2003. This should have been
|
|
|
|
sorted out long ago. We'll just have to deal with the
|
|
|
|
fallout.
|
|
|
|
- Drop fedora-vfprintf-sw6530.patch, it's upstream now.
|
|
|
|
- Drop rh769421.patch; Siddhesh has fixed this properly with 552960.
|
2012-09-28 19:55:42 +00:00
|
|
|
|
2012-09-28 04:31:16 +00:00
|
|
|
* Fri Sep 28 2012 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.16.90-17
|
2013-07-08 21:17:33 +00:00
|
|
|
- Release mutex before going back to wait for PI mutexes (#552960).
|
2012-09-28 04:31:16 +00:00
|
|
|
|
2012-09-26 02:25:26 +00:00
|
|
|
* Tue Sep 25 2012 Jeff Law <law@redhat.com> - 2.16.90-16
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources.
|
2012-09-26 02:25:26 +00:00
|
|
|
|
2012-09-24 15:25:31 +00:00
|
|
|
* Fri Sep 21 2012 Jeff Law <law@redhat.com> - 2.16.90-15
|
2013-07-08 21:17:33 +00:00
|
|
|
- Remove most of fedora-nscd patch as we no longer use the
|
|
|
|
old init files, but systemd instead.
|
|
|
|
- Remove path-to-vi patch. With the usr-move changes that
|
|
|
|
patch is totally unnecessary.
|
|
|
|
- Remove i686-nopl patch. Gas was changed back in 2011 to
|
|
|
|
avoid nopl.
|
|
|
|
- Move gai-rfc1918 patch to submitted upstream status
|
2013-07-24 05:22:37 +00:00
|
|
|
|
2012-09-21 18:50:11 +00:00
|
|
|
* Fri Sep 21 2012 Jeff Law <law@redhat.com> - 2.16.90-14
|
2013-07-08 21:17:33 +00:00
|
|
|
- Revert patch for 816647, it's blatently broken.
|
2012-09-21 18:50:11 +00:00
|
|
|
|
2012-09-21 04:28:52 +00:00
|
|
|
* Fri Sep 21 2012 Siddhesh Poyarekar <siddhesh@redhat.com> - 2.16.90-13
|
2013-07-08 21:17:33 +00:00
|
|
|
- Bring back byteswap-16.h (#859268).
|
2012-09-21 04:28:52 +00:00
|
|
|
|
2012-09-20 21:03:18 +00:00
|
|
|
* Thu Sep 20 2012 Jeff Law <law@redhat.com> - 2.16.90-12
|
2013-07-08 21:17:33 +00:00
|
|
|
- Revert recent upstream strstr changes (#858274)
|
|
|
|
- Demangle function pointers before testing them (#816647)
|
|
|
|
- Remove handling of /etc/localtime and /var/spool/postfix/etc/localtime
|
|
|
|
as systemd will be handling them from now on (#858735).
|
2012-09-20 21:03:18 +00:00
|
|
|
|
2012-09-14 20:42:59 +00:00
|
|
|
* Fri Sep 14 2012 Jeff Law <law@redhat.com> - 2.16.90-11
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources (#857236).
|
2012-09-14 20:42:59 +00:00
|
|
|
|
2012-09-08 15:39:53 +00:00
|
|
|
* Sat Sep 8 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 2.16.90-10
|
|
|
|
- Enable ports to fix FTBFS on ARM
|
|
|
|
|
2012-09-06 04:23:20 +00:00
|
|
|
* Wed Sep 5 2012 Jeff Law <law@redhat.com> - 2.16.90-9
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources.
|
2012-09-06 04:23:20 +00:00
|
|
|
|
|
|
|
* Tue Sep 4 2012 Jeff Law <law@redhat.com> - 2.16.90-8
|
2013-07-08 21:17:33 +00:00
|
|
|
- Incorporate ppc64p7 arch changes (#854250)
|
2012-09-04 17:33:31 +00:00
|
|
|
|
2012-08-30 15:47:02 +00:00
|
|
|
* Thu Aug 30 2012 Jeff Law <law@redhat.com> - 2.16.90-7
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources.
|
2013-07-24 05:22:37 +00:00
|
|
|
|
2012-08-23 04:11:53 +00:00
|
|
|
* Wed Aug 22 2012 Jeff Law <law@redhat.com> - 2.16.90-6
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources.
|
2012-08-23 04:11:53 +00:00
|
|
|
|
2012-08-21 15:47:24 +00:00
|
|
|
* Tue Aug 21 2012 Jeff Law <law@redhat.com> - 2.16.90-5
|
2013-07-08 21:17:33 +00:00
|
|
|
- Replace manual systemd scriptlets with macroized scriptlets (#850129)
|
2012-08-21 15:47:24 +00:00
|
|
|
|
2012-08-21 02:30:59 +00:00
|
|
|
* Mon Aug 20 2012 Jeff Law <law@redhat.com> - 2.16.90-4
|
2013-07-08 21:17:33 +00:00
|
|
|
- Move /etc/localtime into glibc-common package since glibc-common
|
|
|
|
owns the scriptlets which update it.
|
2012-08-21 02:30:59 +00:00
|
|
|
|
2012-08-20 18:08:39 +00:00
|
|
|
* Mon Aug 20 2012 Jeff Law <law@redhat.com> - 2.16.90-3
|
2013-07-08 21:17:33 +00:00
|
|
|
- Remove obsolete patches from glibc-fedora.patch. Explode
|
|
|
|
remaining patches into distinct patchfiles. Thanks to
|
|
|
|
Dmitry V. Levin for identifying them!
|
|
|
|
Drop ia64 specific patches and specfile fragments
|
2012-08-20 18:08:39 +00:00
|
|
|
|
2012-08-15 15:51:53 +00:00
|
|
|
* Wed Aug 15 2012 Jeff Law <law@redhat.com> - 2.16.90-2
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix integer overflow leading to buffer overflow in strto* (#847718)
|
2012-08-15 15:51:53 +00:00
|
|
|
|
2012-08-14 04:49:13 +00:00
|
|
|
* Mon Aug 13 2012 Jeff Law <law@redhat.com> - 2.16.90-1
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources, drop obsolete patches.
|
|
|
|
- Drop glibc-ports bits as they're part of the master
|
|
|
|
sources now.
|
2012-08-14 04:49:13 +00:00
|
|
|
|
2012-08-13 17:14:38 +00:00
|
|
|
* Mon Aug 13 2012 Jeff Law <law@redhat.com> - 2.16-9
|
2013-07-08 21:17:33 +00:00
|
|
|
- Replace patch for 179072 with official version from upstream.
|
2012-08-13 17:14:38 +00:00
|
|
|
|
2012-08-10 15:44:26 +00:00
|
|
|
* Fri Aug 10 2012 Jeff Law <law@redhat.com> - 2.16-8
|
2013-07-08 21:17:33 +00:00
|
|
|
- Replace patch for 789238 with official version from upstream.
|
2012-08-10 15:44:26 +00:00
|
|
|
|
2012-08-06 17:46:20 +00:00
|
|
|
* Wed Jul 25 2012 Jeff Law <law@redhat.com> - 2.16-7
|
2013-07-08 21:17:33 +00:00
|
|
|
- Pack IPv4 servers at the start of nsaddr_list and
|
|
|
|
only track the number of IPV4 servers in EXT(statp->nscounti (#808147)
|
|
|
|
- Mark set*uid, set*gid as __wur (warn unused result) (#845960)
|
2012-08-06 17:46:20 +00:00
|
|
|
|
2012-07-26 06:00:05 +00:00
|
|
|
* Wed Jul 25 2012 Jeff Law <law@redhat.com> - 2.16-6
|
2013-07-08 21:17:33 +00:00
|
|
|
- Revert patch for BZ696143, it made it impossible to use IPV6
|
|
|
|
addresses explicitly in getaddrinfo, which in turn broke
|
|
|
|
ssh, apache and other code. (#808147)
|
|
|
|
- Avoid another unbound alloca in vfprintf (#841318)
|
|
|
|
- Remove /etc/localtime.tzupdate in lua scriptlets
|
|
|
|
- Revert back to using posix.symlink as posix.link with a 3rd
|
|
|
|
argument isn't supported in the lua version embedded in rpm.
|
|
|
|
- Revert recent changes to res_send (804630, 835090).
|
|
|
|
- Fix memcpy args in res_send (#841787).
|
2012-07-25 20:33:39 +00:00
|
|
|
|
2012-07-19 06:56:05 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.16-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-06 05:36:28 +00:00
|
|
|
* Thu Jul 5 2012 Jeff Law <law@redhat.com> - 2.16-2
|
2013-07-08 21:17:33 +00:00
|
|
|
- Use posix.link rather than posix.symlink in scriptlet to
|
|
|
|
update /etc/localtime (#837344).
|
2012-07-06 05:36:28 +00:00
|
|
|
|
2012-07-02 13:22:19 +00:00
|
|
|
* Mon Jul 2 2012 Jeff Law <law@redhat.com> - 2.16-1
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream glibc-2.16 release.
|
2012-07-02 13:22:19 +00:00
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Fri Jun 22 2012 Jeff Law <law@redhat.com> - 2.15.90-16
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources, drop obsolete patch.
|
2012-06-22 19:30:06 +00:00
|
|
|
|
2012-06-21 18:04:39 +00:00
|
|
|
* Thu Jun 21 2012 Jeff Law <law@redhat.com> - 2.15.90-15
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources (#834447).
|
|
|
|
- Fix use-after-free in dcigettext.c (#816647).
|
2012-06-21 18:04:39 +00:00
|
|
|
|
2012-06-15 15:23:17 +00:00
|
|
|
* Fri Jun 15 2012 Jeff Law <law@redhat.com> - 2.15.90-14
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with master.
|
2012-06-15 15:23:17 +00:00
|
|
|
|
|
|
|
* Thu Jun 14 2012 Jeff Law <law@redhat.com> - 2.15.90-13
|
2013-07-08 21:17:33 +00:00
|
|
|
- Delay setting DECIDED field in locale file structure until
|
|
|
|
we have read the file's data (#827510).
|
2012-06-15 03:52:07 +00:00
|
|
|
|
2012-06-13 02:01:29 +00:00
|
|
|
* Mon Jun 11 2012 Dennis Gilmore <dennis@ausil.us> - 2.15.90-12
|
2013-07-08 21:17:33 +00:00
|
|
|
- actually apply the arm linker hack
|
2012-06-13 02:01:29 +00:00
|
|
|
|
2012-06-12 01:32:35 +00:00
|
|
|
* Mon Jun 11 2012 Dennis Gilmore <dennis@ausil.us> - 2.15.90-11
|
2013-07-24 05:22:37 +00:00
|
|
|
- only deal with the arm linker compat hack on armhfp arches
|
2013-07-08 21:17:33 +00:00
|
|
|
- armsfp arches do not have a linker change
|
|
|
|
- Backward compat hack for armhf binaries.
|
2012-06-12 01:32:35 +00:00
|
|
|
|
2012-06-07 17:54:50 +00:00
|
|
|
* Thu Jun 7 2012 Jeff Law <law@redhat.com> - 2.15.90-10
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix parsing of /etc/sysconfig/clock when ZONE has spaces. (#828291)
|
2012-06-07 17:54:50 +00:00
|
|
|
|
2012-06-05 17:35:03 +00:00
|
|
|
* Tue Jun 5 2012 Jeff Law <law@redhat.com> - 2.15.90-9
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources, drop unnecessary patches.
|
|
|
|
- Fix DoS in RPC implementation (#767693)
|
|
|
|
- Remove deprecated alpha support.
|
|
|
|
- Remove redundant hunk from patch. (#823905)
|
2012-06-05 17:35:03 +00:00
|
|
|
|
2012-06-01 20:06:21 +00:00
|
|
|
* Fri Jun 1 2012 Patsy Franklin <patsy@redhat.com> - 2.15.90-8
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix iconv() segfault when the invalid multibyte character 0xffff is input
|
|
|
|
when converting from IBM930 (#823905)
|
2012-06-01 19:08:41 +00:00
|
|
|
|
2012-06-01 03:44:50 +00:00
|
|
|
* Fri Jun 1 2012 Jeff Law <law@redhat.com> - 2.15.90-7
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources. (#827040)
|
2012-06-01 03:43:32 +00:00
|
|
|
|
2012-05-31 20:21:36 +00:00
|
|
|
* Thu May 31 2012 Patsy Franklin <patsy@redhat.com> - 2.15.90-6
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix fnmatch() when '*' wildcard is applied on a file name containing
|
2012-06-01 03:43:32 +00:00
|
|
|
multibyte chars. (#819430)
|
2012-05-31 20:21:36 +00:00
|
|
|
|
2012-05-30 06:22:40 +00:00
|
|
|
* Wed May 30 2012 Jeff Law <law@redhat.com> - 2.15.90-5
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources, drop unnecessary patches.
|
2012-05-30 06:22:40 +00:00
|
|
|
|
2012-05-30 05:19:23 +00:00
|
|
|
* Tue May 29 2012 Jeff Law <law@redhat.com> - 2.15.90-4
|
2013-07-08 21:17:33 +00:00
|
|
|
- Build info files in the source dir, then move to objdir
|
|
|
|
to avoid multilib conflicts (#825061)
|
2012-05-30 05:19:23 +00:00
|
|
|
|
2012-05-25 21:16:21 +00:00
|
|
|
* Fri May 25 2012 Jeff Law <law@redhat.com> - 2.15.90-3
|
2013-07-08 21:17:33 +00:00
|
|
|
- Work around RPM dropping the contents of /etc/localtime
|
|
|
|
when it turns into a symlink with %post common script (#825159).
|
2012-05-25 21:16:21 +00:00
|
|
|
|
2012-05-23 19:46:47 +00:00
|
|
|
* Wed May 23 2012 Jeff Law <law@redhat.com> - 2.15.90-2
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix option rotate when one IPV6 server is enabled (#804630)
|
|
|
|
- Reenable slow/uberslow path taps slowpow/slowexp.
|
2012-05-23 19:46:47 +00:00
|
|
|
|
2012-05-23 18:18:07 +00:00
|
|
|
* Wed May 23 2012 Jeff Law <law@redhat.com> - 2.15.90-1
|
2013-07-08 21:17:33 +00:00
|
|
|
- Resync with upstream sources, drop unnecessary patches.
|
2012-05-23 18:18:07 +00:00
|
|
|
|
2012-05-22 18:58:09 +00:00
|
|
|
* Tue May 22 2012 Patsy Franklin <pfrankli@redhat.com> - 2.15-41
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix tzdata trigger (#822200)
|
|
|
|
- Make the symlink relative rather than linking into the buildroot (#822200).
|
|
|
|
- Changed /etc/localtime to a symlink. 8222000 (#822200)
|
2012-05-22 18:58:09 +00:00
|
|
|
|
2012-05-16 04:21:22 +00:00
|
|
|
* Tue May 15 2012 Jeff Law <law@redhat.com> - 2.15-40
|
2013-07-08 21:17:33 +00:00
|
|
|
- Update to upstream patch for 806070 (#806070)
|
2012-05-16 04:21:22 +00:00
|
|
|
|
2012-05-14 17:53:42 +00:00
|
|
|
* Mon May 14 2012 Jeff Law <law@redhat.com> - 2.15-39
|
2013-07-08 21:17:33 +00:00
|
|
|
- Update upstream patch for AVX testing (#801650)
|
2012-05-14 17:53:42 +00:00
|
|
|
|
2012-05-11 21:49:43 +00:00
|
|
|
* Fri May 11 2012 Jeff Law <law@redhat.com> - 2.15-38
|
2013-07-08 21:17:33 +00:00
|
|
|
- Upstream patch to fix AVX testing (#801650)
|
2012-05-11 21:49:43 +00:00
|
|
|
|
2012-05-11 02:57:08 +00:00
|
|
|
* Thu May 10 2012 Jeff Law <law@redhat.com> - 2.15-37
|
2013-07-08 21:17:33 +00:00
|
|
|
- Try again to fix AVX testing (#801650)
|
2012-05-11 02:57:08 +00:00
|
|
|
|
2012-05-07 18:06:40 +00:00
|
|
|
* Mon May 7 2012 Jeff Law <law@redhat.com> - 2.15-36
|
2013-07-08 21:17:33 +00:00
|
|
|
- Improve fortification disabled warning.
|
|
|
|
- Change location of dynamic linker for armhf.
|
2012-05-07 18:06:40 +00:00
|
|
|
|
2012-04-30 20:04:07 +00:00
|
|
|
* Mon Apr 30 2012 Jeff Law <law@redhat.com> - 2.15-35
|
2013-07-08 21:17:33 +00:00
|
|
|
- Implement context routines for ARM (#817276)
|
2012-04-30 20:04:07 +00:00
|
|
|
|
2012-04-13 17:24:58 +00:00
|
|
|
* Fri Apr 13 2012 Jeff Law <law@redhat.com> - 2.15-34
|
2013-07-08 21:17:33 +00:00
|
|
|
- Issue a warning if FORTIFY_CHECKING is requested, but disabled.
|
2012-04-13 17:24:58 +00:00
|
|
|
|
2012-04-12 15:52:32 +00:00
|
|
|
* Thu Apr 12 2012 Jeff Law <law@redhat.com> - 2.15-33
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix another unbound alloca in nscd groups (#788989)
|
2012-04-12 15:52:32 +00:00
|
|
|
|
2012-04-03 17:19:38 +00:00
|
|
|
* Tue Apr 3 2012 Jeff Law <law@redhat.com> - 2.15-32
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix first day of week for lv_LV (#682500)
|
2012-04-03 17:19:38 +00:00
|
|
|
|
2012-04-03 03:24:18 +00:00
|
|
|
* Mon Apr 2 2012 Jeff Law <law@redhat.com> - 2.15-31
|
2013-07-24 05:22:37 +00:00
|
|
|
- When retrying after main arena failure, always retry in a
|
|
|
|
different arena. (#789238)
|
2012-04-03 03:24:18 +00:00
|
|
|
|
2012-03-29 16:25:56 +00:00
|
|
|
* Tue Mar 27 2012 Jeff Law <law@redhat.com> - 2.15-30
|
2013-07-08 21:17:33 +00:00
|
|
|
- Avoid unbound alloca usage in *-crypt routines (#804792)
|
|
|
|
- Fix data race in nscd (#806070)
|
2012-03-29 16:25:56 +00:00
|
|
|
|
2012-03-23 20:03:01 +00:00
|
|
|
* Fri Mar 23 2012 Jeff Law <law@redhat.com> - 2.15-29
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix typo in __nss_getent (#806403).
|
2012-03-23 20:03:01 +00:00
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Wed Mar 14 2012 Jeff Law <law@redhat.com> - 2.15-28
|
2013-07-08 21:17:33 +00:00
|
|
|
- Add doi_IN, sat_IN and mni_IN to SUPPORTED locals (#803286)
|
|
|
|
- Add stap probes in slowpow and slowexp.
|
2012-03-15 03:21:22 +00:00
|
|
|
|
2012-03-09 22:20:06 +00:00
|
|
|
* Fri Mar 09 2012 Jeff Law <law@redhat.com> - 2.15-27
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix AVX checks (#801650)
|
2012-03-09 22:20:06 +00:00
|
|
|
|
2012-03-07 19:20:16 +00:00
|
|
|
* Wed Feb 29 2012 Jeff Law <law@redhat.com> - 2.15-26
|
2013-07-08 21:17:33 +00:00
|
|
|
- Set errno properly in vfprintf (#794797)
|
|
|
|
- Don't kill application when LD_PROFILE is set. (#800224)
|
2012-03-07 19:20:16 +00:00
|
|
|
|
2012-02-29 16:46:36 +00:00
|
|
|
* Wed Feb 29 2012 Jeff Law <law@redhat.com> - 2.15-25
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix out of bounds memory access in resolver (#798471)
|
|
|
|
- Always mark vDSO as used (#758888)
|
2012-02-29 16:46:36 +00:00
|
|
|
|
2012-02-24 17:41:06 +00:00
|
|
|
* Fri Feb 24 2012 Jeff Law <law@redhat.com> - 2.15-24
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix bogus underflow (#760935)
|
|
|
|
- Correctly handle dns request where large numbers of A and AAA records
|
|
|
|
are returned (#795498)
|
|
|
|
- Fix nscd crash when group has many members (#788989)
|
2013-07-24 05:22:37 +00:00
|
|
|
|
2012-02-21 04:21:30 +00:00
|
|
|
* Mon Feb 20 2012 Jeff Law <law@redhat.com> - 2.15-23
|
2013-07-08 21:17:33 +00:00
|
|
|
- Avoid "nargs" integer overflow which could be used to bypass FORTIFY_SOURCE (#794797)
|
2012-02-21 04:21:30 +00:00
|
|
|
|
2012-02-20 21:23:27 +00:00
|
|
|
* Mon Feb 20 2012 Jeff Law <law@redhat.com> - 2.15-22
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix main arena locking in malloc/calloc retry path (#789238)
|
2012-02-20 21:23:27 +00:00
|
|
|
|
2012-02-17 19:36:00 +00:00
|
|
|
* Fri Feb 17 2012 Jeff Law <law@redhat.com> - 2.15-21
|
2013-07-08 21:17:33 +00:00
|
|
|
- Correctly identify all 127.x.y.z addresses (#739743)
|
|
|
|
- Don't assign native result if result has no associated interface (#739743)
|
2012-02-17 19:36:00 +00:00
|
|
|
|
2012-02-17 18:05:38 +00:00
|
|
|
* Fri Feb 17 2012 Jeff Law <law@redhat.com> - 2.15-20
|
2013-07-08 21:17:33 +00:00
|
|
|
- Ignore link-local IPV6 addresses for AI_ADDRCONFIG (#697149)
|
2012-02-17 18:05:38 +00:00
|
|
|
|
2012-02-17 06:01:37 +00:00
|
|
|
* Fri Feb 17 2012 Jeff Law <law@redhat.com> - 2.15-19
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix reply buffer mismanagement in resolver (#730856)
|
2012-02-17 06:01:37 +00:00
|
|
|
|
2012-02-16 16:25:08 +00:00
|
|
|
* Thu Feb 16 2012 Jeff Law <law@redhat.com> - 2.15-18
|
2013-07-08 21:17:33 +00:00
|
|
|
- Revert 552960/769421 changes again, still causing problems.
|
|
|
|
- Add doi_IN (#791161)
|
|
|
|
- Add sat_IN (#790292)
|
|
|
|
- Add mni_IN (#790298)
|
2012-02-14 16:54:55 +00:00
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Thu Feb 9 2012 Jeff Law <law@redhat.com> - 2.15-17
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix lost wakeups in pthread_cond_*. (#552960, #769421)
|
|
|
|
- Clarify info page for snprintf (#564528)
|
|
|
|
- Fix first_weekday and first_workday for ru_UA (#624296)
|
2012-02-10 06:01:54 +00:00
|
|
|
|
2012-02-09 17:47:47 +00:00
|
|
|
* Tue Feb 7 2012 Jeff Law <law@redhat.com> - 2.15-16
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix currency_symbol for uk_UA (#789209)
|
|
|
|
- Fix weekday names in Kashmiri locale (#770439)
|
2012-02-09 17:47:47 +00:00
|
|
|
|
2012-02-08 05:12:19 +00:00
|
|
|
* Tue Feb 7 2012 Jeff Law <law@redhat.com> - 2.15-15
|
2013-07-08 21:17:33 +00:00
|
|
|
- Remove change for 787662, correct fix is in gcc.
|
2012-02-07 19:03:30 +00:00
|
|
|
|
2012-02-06 19:19:06 +00:00
|
|
|
* Mon Feb 6 2012 Jeff Law <law@redhat.com> - 2.15-13
|
2013-07-08 21:17:33 +00:00
|
|
|
- More accurately detect if we're in a chroot (#688948)
|
2012-02-06 19:19:06 +00:00
|
|
|
|
2012-02-03 21:32:45 +00:00
|
|
|
* Fri Feb 3 2012 Jeff Law <law@redhat.com> - 2.15-12
|
2013-07-08 21:17:33 +00:00
|
|
|
- Add fedfs to /etc/rpc (#691912)
|
|
|
|
- Run nscd in the foreground w/ syslogging, fix systemd config (#770869)
|
|
|
|
- Avoid mapping past end of shared object (#741105)
|
|
|
|
- Turn off -mno-minimal-toc on PPC (#787201)
|
|
|
|
- Remove hunk from glibc-rh657588.patch that didn't belong
|
2012-02-03 16:30:02 +00:00
|
|
|
|
2012-02-01 16:32:10 +00:00
|
|
|
* Wed Feb 1 2012 Jeff Law <law@redhat.com> - 2.15-8
|
2013-07-08 21:17:33 +00:00
|
|
|
- Prevent erroneous inline optimization of initfini.s on PowerPC64 (#783979)
|
|
|
|
- Use upstream variant of fix for 740506.
|
|
|
|
- Fix month abbreviations for zh_CN (#657588)
|
2012-02-01 16:32:10 +00:00
|
|
|
|
2012-01-30 05:24:24 +00:00
|
|
|
* Sun Jan 29 2012 Jeff Law <law@redhat.com> - 2.15-7
|
2013-07-08 21:17:33 +00:00
|
|
|
- Sort objects before relocations (sw#13618)
|
|
|
|
- Fix bogus sort code that was copied from dl-deps.c.
|
2012-01-30 05:24:24 +00:00
|
|
|
|
2012-01-26 18:03:17 +00:00
|
|
|
* Thu Jan 26 2012 Jeff Law <law@redhat.com> - 2.15-6
|
2013-07-08 21:17:33 +00:00
|
|
|
- First argument to settimeofday can be null (#740682)
|
|
|
|
- Add aliases for ISO-10646-UCS-2 (#697421)
|
2012-01-26 18:03:17 +00:00
|
|
|
|
2012-01-24 21:43:00 +00:00
|
|
|
* Tue Jan 24 2012 Jeff Law <law@redhat.com> - 2.15-4
|
2013-07-08 21:17:33 +00:00
|
|
|
- Update ports from master.
|
|
|
|
- Fix first workday/weekday for it_IT (#622499)
|
|
|
|
- Fix type to uint16_t based on upstream comments (729661)
|
|
|
|
- Do not cache negative results in nscd if these are transient (#784402)
|
2012-01-24 21:43:00 +00:00
|
|
|
|
2012-01-23 21:41:49 +00:00
|
|
|
* Mon Jan 23 2012 Jeff Law <law@redhat.com> - 2.15-3
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix cycle detection (#729661)
|
|
|
|
- Fix first workday/weekday for it_IT (#446078)
|
|
|
|
- Fix first workday/weekday for ca_ES (#454629)
|
2012-01-23 21:41:49 +00:00
|
|
|
|
2012-01-13 03:37:06 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.15-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2012-01-02 01:33:52 +00:00
|
|
|
* Sun Jan 1 2012 Jeff Law <law@redhat.com> - 2.15-1.fc17
|
2013-07-08 21:17:33 +00:00
|
|
|
- Update from master (a316c1f)
|
2012-01-02 01:33:52 +00:00
|
|
|
|
2011-12-22 19:25:40 +00:00
|
|
|
* Thu Dec 22 2011 Jeff Law <law@redhat.com> - 2.14.90-26.fc17
|
2013-07-08 21:17:33 +00:00
|
|
|
- Update from master (16c6f99)
|
|
|
|
- Fix typo in recent tzfile change (#769476)
|
|
|
|
- Make MALLOC_ARENA_MAX and MALLOC_ARENA_TEST match documentation (#740506)
|
|
|
|
- Revert "fix" to pthread_cond_wait (#769421)
|
|
|
|
- Extract patch for 730856 from fedora-patch into a distinct patchfile
|
2011-12-22 19:25:40 +00:00
|
|
|
|
2011-12-20 05:46:44 +00:00
|
|
|
* Mon Dec 19 2011 Jeff Law <law@redhat.com> - 2.14.90-25.fc17
|
2013-07-08 21:17:33 +00:00
|
|
|
- Update from master (a4647e7).
|
2011-12-20 05:46:44 +00:00
|
|
|
|
2011-12-19 06:13:12 +00:00
|
|
|
* Sun Dec 18 2011 Jeff Law <law@redhat.com> - 2.14.90-24.fc16.3
|
2013-07-08 21:17:33 +00:00
|
|
|
- Check values from TZ file header (#767696)
|
|
|
|
- Handle EAGAIN from FUTEX_WAIT_REQUEUE_PI (#552960)
|
|
|
|
- Add {dist}.#
|
|
|
|
- Correct return value from pthread_create when stack alloction fails.
|
|
|
|
(#767746)
|
2011-12-16 04:56:41 +00:00
|
|
|
|
2011-12-12 17:09:45 +00:00
|
|
|
* Wed Dec 7 2011 Jeff Law <law@redhat.com> - 2.14.90-23
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix a wrong constant in powerpc hypot implementation (#750811)
|
|
|
|
#13534 in python bug database
|
|
|
|
#13472 in glibc bug database
|
|
|
|
- Truncate time values in Linux futimes when falling back to utime
|
2011-12-12 17:09:45 +00:00
|
|
|
|
2011-12-06 17:57:29 +00:00
|
|
|
* Mon Dec 5 2011 Jeff Law <law@redhat.com> - 2.14.90-22
|
2013-07-08 21:17:33 +00:00
|
|
|
- Mark fortified __FD_ELT as extension (#761021)
|
|
|
|
- Fix typo in manual (#708455)
|
2011-12-06 17:57:29 +00:00
|
|
|
|
2011-12-01 18:50:43 +00:00
|
|
|
* Wed Nov 30 2011 Jeff Law <law@redhat.com> - 2.14.90-21
|
2013-07-08 21:17:33 +00:00
|
|
|
- Don't fail in makedb if SELinux is disabled (#750858)
|
|
|
|
- Fix access after end of search string in regex matcher (#757887)
|
2011-12-01 18:50:43 +00:00
|
|
|
|
2011-11-29 18:23:08 +00:00
|
|
|
* Mon Nov 28 2011 Jeff Law <law@redhat.com> - 2.14.90-20
|
2013-07-08 21:17:33 +00:00
|
|
|
- Drop lock before calling malloc_printerr (#757881)
|
2011-11-29 18:23:08 +00:00
|
|
|
|
2011-11-21 04:32:39 +00:00
|
|
|
* Fri Nov 18 2011 Jeff Law <law@redhat.com> - 2.14.90-19
|
2013-07-08 21:17:33 +00:00
|
|
|
- Check malloc arena atomically (BZ#13071)
|
|
|
|
- Don't call reused_arena when _int_new_arena failed (#753601)
|
2013-07-24 05:22:37 +00:00
|
|
|
|
2011-11-17 06:38:42 +00:00
|
|
|
* Wed Nov 16 2011 Jeff Law <law@redhat.com> - 2.14.90-18
|
2013-07-08 21:17:33 +00:00
|
|
|
- Fix grouping and reuse other locales in various locales (BZ#13147)
|
2013-07-24 05:22:37 +00:00
|
|
|
|
2011-11-16 05:11:36 +00:00
|
|
|
* Tue Nov 15 2011 Jeff Law <law@redhat.com> - 2.14.90-17
|
2013-07-08 21:17:33 +00:00
|
|
|
- Revert bogus commits/rebasing of Nov 14, Nov 11 and Nov 8. Sources
|
2011-11-16 05:11:36 +00:00
|
|
|
should be equivalent to Fedora 16's initial release.
|
|
|
|
|
2011-11-16 05:03:21 +00:00
|
|
|
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.14.90-15
|
|
|
|
- Rebuilt for glibc bug#747377
|
|
|
|
|
|
|
|
* Wed Oct 19 2011 Jim Meyering <meyering@redhat.com> - 2.14.90-14
|
|
|
|
- Revert the upstream patch that added the leaf attribute, since it
|
|
|
|
caused gcc -O2 to move code past thread primitives and sometimes
|
|
|
|
even out of critical sections. See http://bugzilla.redhat.com/747377
|
2011-11-08 12:42:22 +00:00
|
|
|
|
2011-10-19 11:15:08 +00:00
|
|
|
* Wed Oct 19 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-13
|
|
|
|
- Update from master
|
|
|
|
- Fix linkage conflict with feraiseexcept (#746753)
|
|
|
|
- More libm optimisations
|
|
|
|
|
2011-10-17 12:20:08 +00:00
|
|
|
* Mon Oct 17 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-12
|
|
|
|
- Update from master
|
|
|
|
- Correctly handle missing initgroups database (#745675)
|
|
|
|
- Optimize many libm functions
|
|
|
|
- Optimize access to isXYZ and toXYZ tables
|
|
|
|
- Optimized memcmp and wmemcmp for x86-64 and x86-32
|
|
|
|
- Add parameter annotation to modf (BZ#13268)
|
|
|
|
- Support optimized isXXX functions in C++ code
|
|
|
|
- Check for zero size in memrchr for x86_64 (#745739)
|
|
|
|
- Optimized memchr, memrchr, rawmemchr for x86-32
|
|
|
|
|
2011-10-11 12:02:50 +00:00
|
|
|
* Tue Oct 11 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-11
|
|
|
|
- Update from master
|
|
|
|
- Clean up locarchive mmap reservation code
|
|
|
|
- Fix netname2host (BZ#13179)
|
|
|
|
- Fix remainder (NaN, 0) (BZ#6779, BZ#6783)
|
|
|
|
- S/390: Fix longlong.h inline asms for zarch
|
|
|
|
- Improve 64 bit memchr, memrchr, rawmemchr with SSE2
|
|
|
|
- Update translations
|
|
|
|
- Implement caching of netgroups in nscd
|
|
|
|
- Handle OOM in NSS
|
|
|
|
- Don't call ifunc functions in trace mode
|
|
|
|
- Convert tzdata-update to lua (#729796)
|
|
|
|
- Horrible workaround for horribly broken software (#737223)
|
|
|
|
|
2011-09-28 12:23:58 +00:00
|
|
|
* Wed Sep 28 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-10
|
|
|
|
- Update from master
|
2011-10-11 12:02:50 +00:00
|
|
|
- Correctly reparse group line after enlarging the buffer (#739360)
|
2011-09-28 12:23:58 +00:00
|
|
|
- Fix parse error in bits/mathinline.h with --std=c99 (#740235)
|
|
|
|
- Update nscd service file (#740284)
|
|
|
|
- Drop nscd init file (#740196)
|
|
|
|
|
2011-09-16 12:17:45 +00:00
|
|
|
* Fri Sep 16 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-9
|
|
|
|
- Update from master
|
2011-10-11 12:02:50 +00:00
|
|
|
- Define IP_MULTICAST_ALL (BZ#13192)
|
2011-09-16 12:17:45 +00:00
|
|
|
- Add fmax and fmin inlines for x86-64
|
|
|
|
- Avoid race between {,__de}allocate_stack and __reclaim_stacks
|
|
|
|
during fork (#737387)
|
|
|
|
- Optimized lrint and llrint for x86-64
|
|
|
|
- Also relocate in dependency order when doing symbol dependency
|
|
|
|
testing (#737459)
|
|
|
|
- Optimize logb code for 64-bit machines
|
|
|
|
- Fix jn precision (BZ#11589)
|
|
|
|
- Fix boundary conditions in scanf (BZ#13138)
|
|
|
|
- Don't lock string streams in stream cleanup code (BZ#12847)
|
|
|
|
- Define ELFOSABI_GNU
|
|
|
|
- Fix lround loss of precision
|
|
|
|
- Add range checking for FD_SET, FD_CLR, and FD_ISSET
|
|
|
|
- Make sure AVC thread has capabilities
|
|
|
|
|
2011-09-08 11:44:47 +00:00
|
|
|
* Thu Sep 8 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-8
|
|
|
|
- Update from master
|
|
|
|
- Use O_CLOEXEC when loading objects and cache in ld.so (BZ#13068)
|
|
|
|
- Fix memory leak in case of failed dlopen (BZ#13123)
|
|
|
|
- Optimizations for POWER
|
|
|
|
- Prefer real syscalls instead of vsyscalls on x86-64 outside libc.so
|
|
|
|
- Add Atom-optimized strchr and strrchr for x86-64
|
|
|
|
- Try shell in posix_spawn* only in compat mode (BZ#13134)
|
|
|
|
- Fix glob.h header by removing gcc 1.x support (BZ#13150)
|
|
|
|
- Optimized strchr and strrchr with SSE2 on x86-32
|
|
|
|
- Add optimized x86 wcscmp
|
|
|
|
- Fixes and optimizations for 32-bit sparc fabs
|
|
|
|
- Fix nptl semaphore cleanup invocation
|
|
|
|
- Sanitize HWCAP_SPARC_* defines/usage, and add new entries
|
|
|
|
|
2011-09-01 12:44:40 +00:00
|
|
|
* Thu Sep 1 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-7
|
|
|
|
- Update from master
|
|
|
|
- Relocate objects in dependency order (#733462)
|
|
|
|
- Avoid assertion failure when first DNS answer was empty (#730856)
|
|
|
|
- Don't treat tls_offset == 1 as forced dynamic (#731228)
|
|
|
|
|
2011-08-24 14:31:06 +00:00
|
|
|
* Wed Aug 24 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-6
|
|
|
|
- Update from master
|
|
|
|
- Correct cycle detection during dependency sorting
|
|
|
|
- Use ifuncs for time and gettimeofday on x86-64
|
|
|
|
- Fix fopen (non-existing-file, "re") errno
|
|
|
|
- Fix CFI info in x86-64 trampolines for non-AVX code
|
|
|
|
- Build libresolv with SSP flags
|
|
|
|
- Avoid executable stack in makedb (#731063)
|
|
|
|
- Align x86 TCB to 64 bytes (cache line size), important for Atom
|
|
|
|
|
2011-08-15 09:29:40 +00:00
|
|
|
* Mon Aug 15 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-5
|
|
|
|
- Update from master
|
|
|
|
- Implement LD_DEBUG=scopes
|
|
|
|
- Locale-independent parsing in libintl (#726536)
|
|
|
|
- Fix stack alignment on x86_64 (#728762)
|
|
|
|
- Implement scandirat function
|
|
|
|
|
2011-08-09 11:47:20 +00:00
|
|
|
* Tue Aug 9 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-4
|
|
|
|
- Update from master
|
|
|
|
- Properly tokenize nameserver line for servers with IPv6 address
|
|
|
|
- Fix encoding name for IDN in getaddrinfo (#725755)
|
|
|
|
- Fix inline strncat/strncmp on x86
|
|
|
|
- Define SEEK_DATA and SEEK_HOLE
|
|
|
|
- Define AF_NFC and PF_NFC
|
|
|
|
- Update ptrace constants
|
|
|
|
- Add read barriers in cancellation initialization
|
|
|
|
- Add read barrier protecting DES initialization
|
|
|
|
- Fix overflow bug in optimized strncat for x86-64
|
|
|
|
- Check for overflows in expressions (BZ#12852)
|
2011-08-15 09:29:40 +00:00
|
|
|
- Fix check for AVX enablement (#720176, BZ#13007)
|
2011-08-09 11:47:20 +00:00
|
|
|
- Force La_x86_64_ymm to be 16-byte aligned
|
|
|
|
- Add const attr to gnu_dev_{major,minor,makedev}
|
|
|
|
- Filter out GLIBC_PRIVATE symbols again
|
2011-07-21 20:36:45 +00:00
|
|
|
|
2011-07-20 11:54:13 +00:00
|
|
|
* Wed Jul 20 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-3
|
|
|
|
- Update from master
|
|
|
|
- S/390: Don't use r11 in INTERNAL_VSYSCALL_NCS macro
|
|
|
|
- Avoid warning in nscd config file parsing code
|
|
|
|
- Improve 64 bit strcat functions with SSE2/SSSE3
|
|
|
|
- Fix alloca accounting in strxfrm
|
|
|
|
- Avoid possible crashes in anormal nscd exits
|
|
|
|
- Updated Swedish and Dutch translations
|
|
|
|
|
2011-07-14 13:53:14 +00:00
|
|
|
* Thu Jul 14 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-2
|
|
|
|
- Update from master
|
|
|
|
- Generalize framework to register monitoring of files in nscd
|
|
|
|
- Handle ext4 in {,f}pathconf
|
|
|
|
- Handle Lustre filesystem (BZ#12868)
|
|
|
|
- Handle W; without long options in getopt (BZ#12922)
|
|
|
|
- Change error code for underflows in strtod (BZ#9696)
|
|
|
|
- Fix handling of chained netgroups
|
|
|
|
- Optimize long-word additions in SHA implementation
|
|
|
|
- Handle nscd negtimeout==0
|
|
|
|
- nss_compat: query NIS domain only when needed
|
|
|
|
- Fix robust mutex handling after fork
|
|
|
|
- Make sure RES_USE_INET6 is always restored
|
|
|
|
- Add systemd configuration for nscd
|
|
|
|
- Be more careful running build-locale-archive
|
|
|
|
|
2011-07-01 09:03:06 +00:00
|
|
|
* Thu Jun 30 2011 Andreas Schwab <schwab@redhat.com> - 2.14.90-1
|
|
|
|
- Update from master
|
|
|
|
- Fix quoting in some installed shell scripts (BZ#12935)
|
|
|
|
- Fix missing .ctors/.dtors lead word in soinit
|
|
|
|
- Improved st{r,p}{,n}cpy for SSE2 and SSSE3 on x86
|
|
|
|
- Avoid __check_pf calls in getaddrinfo unless really needed
|
|
|
|
(BZ#12907)
|
|
|
|
- Rate limit expensive _SC_NPROCESSORS_ONLN computation
|
|
|
|
- Add initgroups lookup support to getent
|
|
|
|
- Reenable nss_db with a completely new implementation
|
|
|
|
- Rewrite makedb to avoid using db library
|
|
|
|
- Add pldd program
|
|
|
|
- Obsolete nss_db
|
2011-07-14 13:53:14 +00:00
|
|
|
- Don't build tzdata-update and build-locale-archive statically
|
2011-07-01 09:03:06 +00:00
|
|
|
|
2011-06-28 15:01:03 +00:00
|
|
|
* Tue Jun 28 2011 Andreas Schwab <schwab@redhat.com> - 2.14-4
|
|
|
|
- Update from 2.14 branch
|
|
|
|
- Fix crash in GB18030 encoder (#712901)
|
|
|
|
- Fix more bugs in GB18030 charmap
|
|
|
|
- Don't use gethostbyaddr to determine canonical name
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Tue Jun 21 2011 Andreas Schwab <schwab@redhat.com> - 2.14-3
|
2011-06-21 12:59:31 +00:00
|
|
|
- Update from 2.14 branch
|
|
|
|
- Fix typo in recent resolver change which causes segvs (#710279)
|
|
|
|
- Fix memory leak in getaddrinfo (#712178)
|
|
|
|
- Fix <bits/mqueue2.h> for C++ (BZ#12841)
|
|
|
|
- Assume Intel Core i3/i5/i7 processor if AVX is available
|
|
|
|
- Filter results from gethostbyname4_r according to request flags
|
|
|
|
(#711827)
|
|
|
|
- Repair GB18030 charmap (#712901)
|
|
|
|
- Revert "Use .machine to prevent AS from complaining about z9-109
|
|
|
|
instructions in iconv modules" (#711330)
|
2011-06-09 12:56:46 +00:00
|
|
|
|
2011-06-03 12:29:51 +00:00
|
|
|
* Fri Jun 3 2011 Andreas Schwab <schwab@redhat.com> - 2.14-2
|
|
|
|
- Revert "Handle DNS server failures in case of AF_UNSPEC lookups
|
|
|
|
correctly" (#710279)
|
|
|
|
|
2011-05-31 12:54:27 +00:00
|
|
|
* Tue May 31 2011 Andreas Schwab <schwab@redhat.com> - 2.14-1
|
|
|
|
- Update to 2.14 release
|
|
|
|
- Handle DNS server failures in case of AF_UNSPEC lookups correctly
|
|
|
|
(BZ#12684)
|
|
|
|
- Prevent loader from loading itself
|
|
|
|
- Restore _res correctly (BZ#12350)
|
|
|
|
- Interpret numeric values in shadow file as signed (BZ#11099)
|
|
|
|
- Recognize use-vc option in resolv.conf (BZ#11558)
|
|
|
|
- Mark malloc hook variables as deprecated
|
|
|
|
- Declare malloc hook variables as volatile (BZ#11781)
|
|
|
|
- Don't document si_code used for raise (BZ#11799)
|
|
|
|
- Fix unnecessary overallocation due to incomplete character (BZ#12811)
|
|
|
|
- Handle failure of _nl_explode_name in all cases
|
|
|
|
- Add support for time syscall in vDSO (BZ#12813)
|
|
|
|
- Add sendmmsg and setns syscalls
|
|
|
|
- Use getcpu definition from vDSO on x86-64 (BZ#12813)
|
|
|
|
- Don't free non-malloced memory and fix memory leak (#709267)
|
|
|
|
|
2011-05-27 14:19:02 +00:00
|
|
|
* Fri May 27 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-14
|
|
|
|
- Update from master
|
|
|
|
- Fix conversion to ISO-2022-JP-2 with ISO-8859-7 designation
|
|
|
|
(BZ#12814)
|
|
|
|
- Undo accidental change in x86-64 user.h
|
|
|
|
- Update Japanese translation
|
|
|
|
- Define RLIMIT_RTTIME (BZ#12795)
|
|
|
|
- Update longlong.h from GCC
|
|
|
|
- Add a few more alloca size checks (BZ#12671)
|
|
|
|
- Fix flags parameter value passed to pltenter and pltexit
|
|
|
|
- Define CLOCK_REALTIME_ALARM and CLOCK_BOOTTIME_ALARM
|
|
|
|
- Always fill output buffer in XPG strerror function (BZ#12782)
|
|
|
|
- Nicer output for negative error numbers in strerror_r
|
|
|
|
- Fix CP1258 conversion (BZ#12777)
|
|
|
|
- Fix handling of LC_CTYPE in locale name handling (BZ#12788)
|
|
|
|
- Set stream errors in more cases (BZ#12792)
|
|
|
|
- Don't unconditionally use alloca in gaih_inet (BZ#11869)
|
|
|
|
- Update documentation in regex.h (BZ#11857)
|
|
|
|
- Prevent Altivec and VSX insns on PowerPC64 when no FPRs or VRs are
|
|
|
|
available
|
|
|
|
- Fix typo in x86-64 powl (BZ#12775)
|
|
|
|
- Avoid overriding CFLAGS (#703880)
|
|
|
|
|
2011-05-18 14:18:54 +00:00
|
|
|
* Wed May 18 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-13
|
|
|
|
- Update from master
|
|
|
|
- Update GB18030 to 2005 version (BZ#11837)
|
|
|
|
- Update RE_SYNTAX*_AWK constants in regex.h
|
|
|
|
- Handle long variable names in putenv (BZ#11892)
|
|
|
|
- Fix test for error_one_per_line mode in error (BZ#12766)
|
|
|
|
- Cleanup x86-64 sys/user.h (BZ#11820)
|
|
|
|
- Several locale data updates (BZ#11987, BZ#9732, BZ#9730, BZ#4357,
|
|
|
|
BZ#12582)
|
|
|
|
- Avoid potential deadlock in mtrace (BZ#6420)
|
|
|
|
- Fix a few problems in fopen and freopen
|
|
|
|
- Provide more helpful error message in getopt (BZ#7101)
|
|
|
|
- Make stack canary value harder to read through read overflow (BZ#10149)
|
|
|
|
- Use mmap for allocation of buffers used for __abort_msg (BZ#11901)
|
|
|
|
- Fix handling of static TLS in dlopen'ed objects (BZ#12453)
|
|
|
|
- Fix initialization of optimization values for AIO (BZ#12083)
|
|
|
|
- Fix handling of conversion problem in CP932 module (BZ#12601)
|
|
|
|
- Fix potential problem with out-of-scope buffer (BZ#12626)
|
|
|
|
- Handle recursive calls in backtrace better (BZ#12432)
|
|
|
|
- Fix handling of incomplete character storage in state
|
|
|
|
- Fix file descriptor position after fclose (BZ#12724)
|
|
|
|
- Reinstall NIS RPC headers
|
|
|
|
|
2011-05-13 14:56:46 +00:00
|
|
|
* Fri May 13 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-12
|
|
|
|
- Update from master
|
|
|
|
- Fix resizing table for unique symbols when adding symbol for copy
|
|
|
|
relocation (BZ#12511)
|
|
|
|
- Fix sched_setscheduler call in spawn implementation (BZ#12052)
|
|
|
|
- Report write error in addmnt even for cached streams (BZ#12625)
|
|
|
|
- Translate kernel error into what pthread_create should return
|
|
|
|
(BZ#386)
|
|
|
|
- More configurability for secondary group lookup (BZ#11257)
|
|
|
|
- Several locale data updates (BZ#11258, BZ#11487, BZ#11532,
|
|
|
|
BZ#11578, BZ#11653, BZ#11668, BZ#11945, BZ#11947, BZ#12158,
|
|
|
|
BZ#12200, BZ#12178, BZ#12178, BZ#12346, BZ#12449, BZ#12545,
|
|
|
|
BZ#12551, BZ#12611, BZ#12660, BZ#12681, BZ#12541, BZ#12711,
|
|
|
|
BZ#12738)
|
|
|
|
- Fix Linux getcwd for long paths (BZ#12713)
|
|
|
|
- static tls memory leak on TLS_DTV_AT_TP archs
|
|
|
|
- Actually undefine ARG_MAX from <linux/limits.h>
|
|
|
|
- Backport BIND code to query name as TLD (BZ#12734)
|
|
|
|
- Allow $ORIGIN to reference trusted directoreis in SUID binaries
|
|
|
|
(BZ #12393)
|
|
|
|
- Add missing {__BEGIN,__END}_DECLS to sys/sysmacros.h
|
|
|
|
- Report if no record is found by initgroups in nss_files
|
|
|
|
- Never leave $ORIGIN unexpanded
|
|
|
|
- Revert "Ignore origin of privileged program"
|
|
|
|
- Reexport RPC interface
|
|
|
|
|
2011-05-06 10:41:38 +00:00
|
|
|
* Thu May 5 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-11
|
|
|
|
- Update from master
|
|
|
|
- Don't use removed rpc headers
|
|
|
|
- Install rpc/netdb.h again
|
|
|
|
|
2011-05-04 11:11:17 +00:00
|
|
|
* Wed May 4 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-10
|
|
|
|
- Update from master
|
|
|
|
- ldconfig: don't crash on empty path in config file (#699784)
|
|
|
|
- getaddrinfo(AF_INET6) does not return scope_id info provided by
|
|
|
|
NSS modules (BZ#12714)
|
|
|
|
- Fix pathconf(_PC_BUF_SIZE) (BZ#12723)
|
|
|
|
- Fix getnameinfo flags parameter type (BZ#12717)
|
|
|
|
- Add finer grained control for initgroups lookups to NSS
|
|
|
|
- Use all possible bytes from fopen mode string (BZ#12685, #698025)
|
|
|
|
- Define initgroups callback for nss_files
|
|
|
|
- elf.h: Define R_ARM_IRELATIVE reloc type
|
|
|
|
- Fix static linking with checking x86/x86-64 memcpy (BZ#12653)
|
|
|
|
- Fix POWER4/POWER7 optimized strncmp to not read past differing bytes
|
|
|
|
- Fix FPU context handling in getcontext on x86-64 (BZ#12420)
|
|
|
|
- Skip extra zeroes when searching auxv on s390
|
|
|
|
- Obsolete RPC implementation in libc
|
|
|
|
- Fix memory leak in TLS of loaded objects (BZ#12650)
|
|
|
|
- Don't leave empty element in rpath when skipping an element
|
|
|
|
- Make ppc sync_file_range cancelable
|
|
|
|
- Maintain stack alignment in ____longjmp_chk on x86_64
|
|
|
|
|
2011-04-07 11:22:58 +00:00
|
|
|
* Thu Apr 7 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-9
|
|
|
|
- Update from master
|
|
|
|
- Fix typo in cache information table for x86-{32,64}
|
|
|
|
- Define CLOCK_BOOTTIME, O_PATH, AT_EMPTY_PATH
|
|
|
|
- Work around old buggy program which cannot cope with memcpy
|
|
|
|
semantics (BZ#12518)
|
|
|
|
- Fix visibility of declarations of wcpcpy and wcpncpy (BZ#12631)
|
|
|
|
- Add clock_adjtime, name_to_handle_at, open_by_handle_at, syncfs
|
|
|
|
syscalls
|
|
|
|
- Really implement fallocate{,64} and sync_file_range as
|
|
|
|
cancellation points
|
|
|
|
- Enable systemtap support (#690281)
|
|
|
|
|
2011-03-24 13:43:08 +00:00
|
|
|
* Thu Mar 24 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-8
|
|
|
|
- Update from master
|
|
|
|
- Fix infinite loop (#690323)
|
|
|
|
|
2011-03-21 15:34:52 +00:00
|
|
|
* Mon Mar 21 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-7
|
|
|
|
- Update from master
|
|
|
|
- Handle page boundaries in x86 SSE4.2 strncmp (BZ#12597)
|
|
|
|
- Implement x86 cpuid handling of leaf4 for cache information (BZ#12587)
|
|
|
|
- Check size of pattern in wide character representation in fnmatch
|
|
|
|
(BZ #12583)
|
|
|
|
- Remove __restrict quals from wmemcmp prototype
|
|
|
|
- Fix copy relocations handling of unique objects (BZ#12510)
|
|
|
|
- ldd: never run file directly
|
|
|
|
- Ignore rpath elements containing non-isolated use of $ORIGIN when
|
|
|
|
privileged
|
|
|
|
- Don't leave empty element in rpath when skipping the first element
|
|
|
|
- Revert "Don't crash when dependencies are missing" (#688990)
|
|
|
|
|
2011-03-07 16:50:04 +00:00
|
|
|
* Mon Mar 7 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-6
|
|
|
|
- Update from master
|
|
|
|
- Fix loading first object along a path when tracing
|
|
|
|
- Enable SSE2 memset for AMD'supcoming Orochi processor
|
|
|
|
- Don't read past end of buffer in fmemopen
|
|
|
|
- Revert broken changes (#682307)
|
|
|
|
|
2011-03-02 16:28:13 +00:00
|
|
|
* Wed Mar 2 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-5
|
|
|
|
- Update from master
|
|
|
|
- Fix memory leak in dlopen with RTLD_NOLOAD (BZ#12509)
|
|
|
|
- Don't crash when dependencies are missing (BZ#12454)
|
|
|
|
- Fix allocation when handling positional parameters in printf
|
|
|
|
(BZ#12445)
|
|
|
|
- Fix two printf handler issues
|
|
|
|
- Fix false assertion (BZ#12454, #673014)
|
|
|
|
|
2011-02-15 13:29:18 +00:00
|
|
|
* Mon Feb 14 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-4
|
|
|
|
- Update from master
|
|
|
|
- Update sysdeps/unix/sysv/linux/sparc/bits/socket.h
|
|
|
|
- Synchronize generic bits/sched.h cpu_set_t with Linux implementation
|
|
|
|
- Schedule nscd cache pruning more accurately from re-added values
|
|
|
|
- Fix passing symbol value to pltexit callbacks when ld.so auditing
|
|
|
|
- Fix range error handling in sgetspent
|
|
|
|
- Revert "Fix ordering of DSO constructors and destructors" (#673014)
|
|
|
|
- Create debuginfo-common on biarch archs
|
|
|
|
- Reinstall assembler workaround.
|
|
|
|
- Replace setuid by file capabilities (#646469)
|
2011-02-07 18:03:19 +00:00
|
|
|
|
2011-01-25 11:34:04 +00:00
|
|
|
* Tue Jan 25 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-1
|
|
|
|
- Update from master
|
|
|
|
- Fix ordering of DSO constructors and destructors (BZ#11724)
|
|
|
|
- Remove no longer needed assembler workaround
|
|
|
|
|
2011-01-18 15:41:09 +00:00
|
|
|
* Tue Jan 18 2011 Andreas Schwab <schwab@redhat.com> - 2.13-1
|
|
|
|
- Update to 2.13 release
|
|
|
|
- Define AT_NO_AUTOMOUNT
|
|
|
|
- Define MADV_HUGEPAGE and MADV_NOHUGEPAGE
|
|
|
|
- Add definitions for new socket protocols
|
|
|
|
- Signal temporary host lookup errors in nscd as such to the
|
|
|
|
requester (BZ#6812)
|
|
|
|
- Change setgroups to affect all the threads in the process
|
|
|
|
(BZ#10563)
|
|
|
|
- FIx handling of unterminated [ expression in fnmatch (BZ#12378)
|
|
|
|
- Relax requirement on close in child created by posix_spawn
|
|
|
|
- Fix handling of missing syscall in Linux mkdirat (BZ#12397)
|
|
|
|
- Handle long lines in host lookups in the right place (BZ#10484)
|
|
|
|
- Fix assertion when handling DSTs during auditing
|
|
|
|
- Fix alignment in x86 destructor calls
|
|
|
|
- Fix grouping when rounding increases number of integer digits
|
|
|
|
(BZ#12394)
|
|
|
|
- Update Japanese translations
|
|
|
|
- Fix infloop on persistent failing calloc in regex (BZ#12348)
|
|
|
|
- Use prlimit64 for 32-bit [gs]etrlimit64 implementation (BZ#12201)
|
|
|
|
- Change XPG-compliant strerror_r function to return error code
|
|
|
|
(BZ#12204)
|
|
|
|
- Always allow overwriting printf modifiers etc.
|
|
|
|
- Make PowerPC64 default to nonexecutable stack
|
|
|
|
|
2010-12-14 16:22:16 +00:00
|
|
|
* Tue Dec 14 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-21
|
|
|
|
- Revert bogus change
|
|
|
|
|
2010-12-13 16:58:18 +00:00
|
|
|
* Mon Dec 13 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-20
|
|
|
|
- Update from master
|
|
|
|
- Declare wcpcpy and wcpncpy only under _GNU_SOURCE
|
|
|
|
- Fix use of restrict in wchar.h and string.h
|
|
|
|
- Fix race in qsort_r initialization (BZ#11655)
|
|
|
|
- Don't ignore zero TTL in DNS answers
|
|
|
|
- Allow aux_cache_file open()ing to fail silently even in the chroot
|
|
|
|
mode (BZ#11149)
|
|
|
|
- Fix multiple nss_compat initgroups() bugs (BZ#10085)
|
|
|
|
- Define MAP_HUGETLB and SWAP_FLAG_DISCARD
|
|
|
|
- Remove .UTF-8 suffix from locale names when it is the only supported
|
|
|
|
codeset (#657556)
|
|
|
|
- Don't ignore $ORIGIN in libraries
|
2010-11-15 13:48:05 +00:00
|
|
|
|
2010-11-12 12:29:24 +00:00
|
|
|
* Fri Nov 12 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-19
|
|
|
|
- Update from master
|
|
|
|
- Fix memory leak in fnmatch
|
2010-12-13 16:58:18 +00:00
|
|
|
- Support Intel processor model 6 and model 0x2c
|
2010-11-12 12:29:24 +00:00
|
|
|
- Fix comparison in sqrtl for IBM long double
|
|
|
|
- Fix one exit path in x86-64 SSE4.2 str{,n}casecmp (BZ#12205, #651638)
|
|
|
|
- Fix warnings in __bswap_16 (BZ#12194)
|
|
|
|
- Use IFUNC on x86-64 memset
|
|
|
|
- Power7-optimized mempcpy
|
|
|
|
- Handle uneven cache size in 32bit SSE2 memset (BZ#12191)
|
|
|
|
- Verify in ttyname that the symlink is valid (BZ#12167)
|
|
|
|
- Update Danish translations
|
|
|
|
- Fix concurrency problem between dl_open and dl_iterate_phdr
|
|
|
|
- Fix x86-64 strchr propagation of search byte into all bytes of SSE
|
|
|
|
register (BZ#12159)
|
|
|
|
- Fix perturbing in malloc on free (BZ#12140)
|
|
|
|
- PPC/A2 optimized memcpy function
|
|
|
|
- Add C99 FP_FAST_FMA{,F,L} macros to <math.h>
|
|
|
|
- Check that the running kernel is new enough (#649589)
|
|
|
|
|
2010-10-22 17:10:34 +00:00
|
|
|
* Fri Oct 22 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-18
|
|
|
|
- Require suid bit on audit objects in privileged programs (CVE-2010-3856)
|
|
|
|
|
2010-10-19 09:49:21 +00:00
|
|
|
* Tue Oct 19 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-17
|
|
|
|
- Update from master
|
|
|
|
- Fix some fma issues, implement fmal (BZ#3268, #43358)
|
|
|
|
- Expect PLT call to _Unwind_Find_FDE on s390*-linux
|
|
|
|
- Never expand $ORIGIN in privileged programs (#643306, CVE-2010-3847)
|
|
|
|
|
2010-10-14 10:30:32 +00:00
|
|
|
* Thu Oct 14 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-16
|
|
|
|
- Update from master
|
|
|
|
- Implement accurate fma (BZ#3268, #43358)
|
|
|
|
- Fix alignment of AVX save area on x86-64 (BZ#12113)
|
|
|
|
- Fix regex memory leaks (BZ#12078)
|
|
|
|
- Improve output of psiginfo (BZ#12107, BZ#12108)
|
|
|
|
- Don't return NULL address in getifaddrs (BZ#12093)
|
|
|
|
- Fix strstr and memmem algorithm (BZ#12092, #641124)
|
|
|
|
- Don't discard result of decoding ACE if AI_CANONIDN (#636642)
|
|
|
|
- Remove /etc/gai.conf from glibc-common and mark it %%ghost in glibc
|
|
|
|
- Require exact glibc version in nscd
|
|
|
|
|
2010-10-04 11:27:15 +00:00
|
|
|
* Mon Oct 4 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-15
|
|
|
|
- Update from master
|
|
|
|
- Handle large requests in debugging hooks for malloc (BZ#12005)
|
|
|
|
- Fix handling of remaining bytes in buffer for strncmp and
|
|
|
|
strncasecmp (BZ#12077)
|
|
|
|
- Handle cgroup and btrfs filesystems in statvfs
|
|
|
|
- S/390: Fix highgprs check in startup code (BZ#12067)
|
|
|
|
- Properly convert f_fsid in statvfs (BZ#11611)
|
|
|
|
|
2010-09-28 13:19:46 +00:00
|
|
|
* Tue Sep 28 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-14
|
|
|
|
- Don't try to write to _rtld_global_ro after performing relro
|
|
|
|
protection (#638091)
|
|
|
|
|
2010-09-27 14:48:52 +00:00
|
|
|
* Mon Sep 27 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-13
|
|
|
|
- Update from master
|
|
|
|
- Add two forgotten licence exceptions
|
|
|
|
- getdents64 fallback d_type support
|
|
|
|
- Move freeres function from ld.so to libc.so
|
|
|
|
- Undo feature selection for ftruncate (BZ#12037)
|
|
|
|
- Fix namespace pollution in pthread_cleanup_push
|
|
|
|
- Fix limit detection in x86-64 SSE2 strncasecmp (#632560)
|
|
|
|
- Add support for fanotify_mark on sparc32 and s390
|
|
|
|
- Fix register conflict in s390 ____longjmp_chk (#629970)
|
|
|
|
- Don't try to free rpath strings allocated during startup (#629976)
|
|
|
|
- Actually make it possible to user the default name server
|
|
|
|
- Fix memory leak on init/fini dependency list (#632936)
|
|
|
|
- Fix handling of collating symbols in regexps (BZ#11561)
|
2010-09-28 13:19:46 +00:00
|
|
|
- Don't parse %%s format argument as multibyte string (BZ#6530)
|
2010-09-27 14:48:52 +00:00
|
|
|
- Fix overflow in nss files parser
|
|
|
|
- Fix spurious nop at start of __strspn_ia32
|
|
|
|
|
2010-09-16 03:30:56 +00:00
|
|
|
* Wed Sep 15 2010 Dennis Gilmore <dennis@ausil.us> - 2.12.90-12
|
|
|
|
- dont build sparcv9v and sparc64v anymore
|
|
|
|
|
2010-09-13 10:08:00 +00:00
|
|
|
* Mon Sep 13 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-11
|
|
|
|
- Update from master
|
|
|
|
- Fix _FORITY_SOURCE version of longjmp for Linux/x86-64 (BZ#11968)
|
|
|
|
- Work around shortest-stem feature in make 3.82+
|
|
|
|
|
2010-09-06 14:40:34 +00:00
|
|
|
* Mon Sep 6 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-10
|
|
|
|
- Update from master
|
|
|
|
- Remove invalid iconv aliases (BZ#11979)
|
|
|
|
- Update x86-64 mpn routines from GMP 5.0.1
|
|
|
|
- Fix array overflow in floating point parser (BZ#7066)
|
|
|
|
- Support fanotify_mark syscall on powerpc32
|
|
|
|
- Unroll x86-64 strlen
|
|
|
|
- Unroll 32bit SSE strlen and handle slow bsf
|
|
|
|
- Missing server address again leads to localhost being used (BZ#10851)
|
|
|
|
- Revert last change
|
|
|
|
- Remove or don't install unpackaged files for auxarches
|
|
|
|
|
2010-09-04 14:14:33 +00:00
|
|
|
* Sat Sep 04 2010 Dennis Gilmore <dennis@ausil.us> - 2.12.90-9
|
|
|
|
- disable unpackaged file check on auxarches
|
|
|
|
|
2010-08-23 12:09:35 +00:00
|
|
|
* Mon Aug 23 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-8
|
|
|
|
- Update from master
|
|
|
|
- Fix static strspn on x86 (#624852)
|
|
|
|
- Various POWER7 optimized string functions
|
|
|
|
- Fix x86 pthread_cond_signal() FUTEX_WAKE_OP fallback
|
|
|
|
- Add optimized strncasecmp versions for x86-64
|
|
|
|
- PowerPC64 ABI fixes
|
|
|
|
- Properly quote output of locale (BZ#11904)
|
|
|
|
- f_flags in statfs implementation
|
|
|
|
- Add support for fanotify_init and fanotify_mask syscalls
|
|
|
|
- Add support for prlimit and prlimit64
|
|
|
|
- Fix IPTOS_CLASS definition (BZ#11903)
|
|
|
|
- Avoid too much stack use in fnmatch (BZ#11883)
|
|
|
|
- x86: Add support for frame pointer less mcount
|
|
|
|
- Disable asynchronous-unwind-tables during configure run
|
|
|
|
|
2010-08-02 12:18:20 +00:00
|
|
|
* Mon Aug 2 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-7
|
|
|
|
- Update from master
|
|
|
|
- Add optimized x86-64 implementation of strnlen and strcaecmp
|
|
|
|
- Document M_PERTURB
|
|
|
|
- Fix vDSO synthetic hwcap handling so they are not masked out from
|
|
|
|
ld.so.cache matching
|
|
|
|
- POWER6/7 optimizations for copysign
|
|
|
|
- Build with ports addon on alpha and armv5tel
|
|
|
|
- Add conflict with kernel < 2.6.32 (#619538)
|
|
|
|
- Switch to xz compressed tar files
|
|
|
|
- build-locale-archive: process only directories matching *_*
|
|
|
|
|
2010-07-21 15:08:07 +00:00
|
|
|
* Wed Jul 21 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-6
|
|
|
|
- Bump minimum kernel version to 2.6.32
|
|
|
|
|
2010-07-12 11:40:50 +00:00
|
|
|
* Mon Jul 12 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-5
|
|
|
|
- Update from master
|
|
|
|
- Don't pass NULL occation to dl_signal_cerror
|
|
|
|
- Implement _PC_PIPE_BUF.
|
|
|
|
- Add glibc-ports tarball
|
|
|
|
|
2010-07-02 12:42:07 +00:00
|
|
|
* Fri Jul 2 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-4
|
|
|
|
- Update from master
|
|
|
|
- Work around kernel rejecting valid absolute timestamps
|
|
|
|
- Improve 64bit memcpy/memmove for Atom, Core 2 and Core i7
|
|
|
|
- Fix error handling in Linux getlogin*
|
|
|
|
- Workaround assembler bug sneaking in nopl (#579838)
|
|
|
|
- Fix scope handling during dl_close
|
|
|
|
- Fix setxid race handling exiting threads
|
|
|
|
|
2010-06-15 08:43:24 +00:00
|
|
|
* Tue Jun 15 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-3
|
|
|
|
- Update from master
|
|
|
|
- Power7 string compare optimizations
|
|
|
|
- Properly resize buffer in NIS initgroups
|
|
|
|
- Define F_SETPIPE_SZ and F_GETPIPE_SZ
|
|
|
|
- Fix more C++ incompatibility problems in headers
|
|
|
|
- Properly set __libc_multiple_libcs
|
|
|
|
- Don't assume AT_PAGESIZE is always available (#597578)
|
|
|
|
- Don't call uname or getrlimit in libpthread init function (#579086)
|
2010-07-02 12:42:07 +00:00
|
|
|
- Mark /etc/rpc as %%config (#587050)
|
2010-06-15 08:43:24 +00:00
|
|
|
|
2010-05-31 15:10:22 +00:00
|
|
|
* Mon May 31 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-2
|
|
|
|
- Update from master
|
|
|
|
- Small fix to POWER7 32-bit memcpy
|
|
|
|
- Correct x86 CPU family and model check (BZ#11640, #596554)
|
|
|
|
- Fix iov size in SH register_dump
|
|
|
|
- Don't crash on unresolved weak symbol reference
|
|
|
|
- Implement recvmmsg also as socketcall
|
|
|
|
- sunrpc: Fix spurious fall-through
|
|
|
|
- Make <sys/timex.h> compatible with C++ (#593762)
|
|
|
|
- Fix users and groups creation in nscd %%post script
|
|
|
|
|
2010-05-19 12:00:46 +00:00
|
|
|
* Wed May 19 2010 Andreas Schwab <schwab@redhat.com> - 2.12.90-1
|
|
|
|
- Update from master
|
|
|
|
- POWER7 optimized memset
|
|
|
|
- Fix typo in es_CR locale
|
|
|
|
- Enable IDN support in getent
|
|
|
|
- Fix race in free sanity check
|
|
|
|
- Fix lookup of collation sequence value during regexp matching
|
|
|
|
- Fix name of tt_RU.UTF-8@iqtelif locale (#589138)
|
|
|
|
- Handle too-small buffers in Linux getlogin_r (BZ#11571, #589946)
|
|
|
|
|
|
|
|
* Tue May 4 2010 Roland McGrath <roland@redhat.com> - 2.12-1
|
|
|
|
- Update to 2.12 release.
|
|
|
|
- Fix ldconfig chroot handling.
|
|
|
|
- Don't deadlock in __dl_iterate_phdr while (un)loading objects.
|
|
|
|
- Fix handling of newline in addmntent.
|
|
|
|
- Fix AIO when thread creation failed.
|
|
|
|
|
|
|
|
* Fri Apr 16 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-20
|
|
|
|
- Update from master
|
|
|
|
- Fix bugs in x86-32 strcmp-sse4.S and strcmp-ssse3.S
|
|
|
|
- Add x86-32 FMA support
|
|
|
|
- Don't crash in trace mode when dependencies are missing
|
|
|
|
- x86-64 SSE4 optimized memcmp
|
|
|
|
- Fix makecontext on s390/s390x
|
|
|
|
|
|
|
|
* Tue Apr 13 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-19
|
|
|
|
- Avoid multiarch memcmp in tzdata-update (#581677)
|
|
|
|
|
|
|
|
* Mon Apr 12 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-18
|
|
|
|
- Update from master
|
|
|
|
- Implement interfaces to set and get names of threads (BZ#11390)
|
|
|
|
- Locale data updates (BZ#10824, BZ#10936, BZ#11470, BZ#11471)
|
|
|
|
- Print reload count in nscd statistics (BZ#10915)
|
|
|
|
- Fix reading loginuid file in getlogin{,_r}
|
|
|
|
- Fix fallocate error return on i386
|
|
|
|
- Fix cproj implmentation (BZ#10401)
|
|
|
|
- Fix getopt handing (BZ#11039, BZ#11040, BZ#11041)
|
|
|
|
- Implement new mode for NIS passwd.adjunct.byname table (BZ#11134)
|
|
|
|
- Obey LD_HWCAP_MASK in ld.so.cache lookups
|
|
|
|
|
|
|
|
* Tue Apr 6 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-17
|
|
|
|
- Update from master
|
|
|
|
- Locale data updates (BZ#11007, BZ#11258, BZ#11272, BZ#10554)
|
|
|
|
- Handle DNS timeouts in old-style lookup code (BZ#11010)
|
|
|
|
- Fix aux cache handling in ldconfig with chroot (BZ#11149)
|
|
|
|
- Fix printing error messages in getopt (BZ#11043)
|
|
|
|
- Declare iruserok and iruserok_af (BZ#11070)
|
|
|
|
- Fix option aliasing in argp (BZ#11254)
|
|
|
|
- Handle POSIX-compliant errno value of unlink in remove (BZ#11276)
|
|
|
|
- Fix definition and testing of S_ISSOCK (BZ#11279)
|
|
|
|
- Fix retrieving of kernel header version (BZ#11287)
|
|
|
|
- Fix concurrent handling of __cpu_features (BZ#11292)
|
|
|
|
- Handle unnecessary padding in getdents64 (BZ#11333)
|
|
|
|
- Fix changes to interface list during getifaddrs calls (BZ#11387)
|
|
|
|
- Missing memory barrier in DES initialization (BZ#11449)
|
|
|
|
- Fix spurious UNAVAIL status is getaddrinfo
|
|
|
|
- Add support for new clocks (BZ#11389)
|
|
|
|
- Fix Linux getlogin{_r,} implementation
|
|
|
|
- Fix missing zero-termination in cuserid (BZ#11397)
|
|
|
|
- Fix glob with empty pattern
|
|
|
|
- Fix handling of STB_GNU_UNIQUE in LD_TRACE_PRELINKING
|
|
|
|
- Unify wint_t handling in wchar.h and wctype.h (BZ#11410)
|
|
|
|
- Implement handling of libc ABI in ELF header
|
|
|
|
- Don't underestimate length of DST substitution in rpath
|
|
|
|
- Power7-optimized 64-bit and 32-bit memcpy
|
|
|
|
- Assign global scope to RFC 1918 addresses (#577626)
|
|
|
|
|
|
|
|
* Thu Mar 18 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-16
|
|
|
|
- Fix SSSE3 memcmp (#574210)
|
|
|
|
|
|
|
|
* Tue Mar 9 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-15
|
|
|
|
- Update from master
|
|
|
|
- sparc64: Fix handling of R_SPARC_TLS_LE_* relocations (#571551)
|
|
|
|
- Handle ext4 and logfs in statvfs functions
|
|
|
|
- Fix setxid race with thread creation
|
|
|
|
- Pass -mtune=i686 to assembler when compiling for i686
|
|
|
|
- Fix R_X86_64_PC32 overflow detection
|
|
|
|
- Fix msgrcv on sparc64
|
|
|
|
- Fix unwind info in x86 strcmp-sse4.S (BZ#11332)
|
|
|
|
- sparc: Add multiarch support for memset/bzero/memcpy
|
|
|
|
- Remove directories owned by filesystem (#569414)
|
|
|
|
- Add %%ghost /etc/gai.conf to glibc-common (#567748)
|
|
|
|
|
|
|
|
* Tue Feb 23 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-14
|
|
|
|
- Update from master
|
|
|
|
- Sparc updates
|
|
|
|
- Fix SSSE3 memcpy (#556584)
|
|
|
|
|
|
|
|
* Mon Feb 22 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-13
|
|
|
|
- Update from master
|
|
|
|
- Use CPUID_OFFSET instead of FEATURE_OFFSET
|
|
|
|
- Add 32bit memcmp/strcmp/strncmp optimized for SSSE3/SSS4.2
|
|
|
|
- Fix file descriotor leak in nftw with FTW_CHDIR (BZ#11271)
|
|
|
|
- Add Sparc STT_GNU_IFUNC support
|
|
|
|
- Add power7-optimized classification functions
|
|
|
|
- Reapply "Optimize 32bit memset/memcpy with SSE2/SSSE3."
|
|
|
|
- Use unsigned comparison in sse memcpy/memset
|
|
|
|
|
2010-02-08 15:32:13 +00:00
|
|
|
* Mon Feb 8 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-12
|
|
|
|
- Update from master
|
|
|
|
- Update constants in <sys/mount.h> for current kernels (#11235)
|
|
|
|
- Fix endless loop with invalid /etc/shells file (#11242)
|
|
|
|
- Fix sorting of malayalam letter 'na' (#10414)
|
|
|
|
- Add kok_IN locale
|
|
|
|
- Use common collation data in as_IN locale
|
|
|
|
- Avoid alloca in setenv for long strings
|
|
|
|
- Use shared mapping to reserve memory when creating locale archive (#10855)
|
|
|
|
- Fix fstat on Linux/sparc64 (#11155)
|
|
|
|
|
2010-02-01 14:02:57 +00:00
|
|
|
* Mon Feb 1 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-11
|
|
|
|
- Update from master
|
|
|
|
- Fix error checking in iconv (#558053)
|
|
|
|
- Don't map U00DF to U1E9E in toupper table
|
|
|
|
- _nl_load_locale() incorrectly handles mmap() failures (BZ#11200)
|
|
|
|
- Fix various issues in regex matcher (BZ#11183, BZ#11184, BZ#11185,
|
|
|
|
BZ#11186, BZ#11187, BZ#11188, BZ#11189, BZ#11190, BZ#11191,
|
|
|
|
BZ#11192, BZ#11193)
|
|
|
|
|
2010-01-20 16:50:57 +00:00
|
|
|
* Tue Jan 19 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-10
|
|
|
|
- Update from master
|
|
|
|
- Fix ____longjmp_chk for s390/s390x
|
|
|
|
- Remove duplicate definitions of O_DSYNC and O_RSYNC for Linux/sparc
|
|
|
|
- Ignore negative dynamic entry types (#546890)
|
|
|
|
- Fix pthread_cond_*wait with requeue-PI on i386 (#548989)
|
|
|
|
- Fix _XOPEN_SOURCE_EXTENDED handling
|
|
|
|
- Revert "Optimize 32bit memset/memcpy with SSE2/SSSE3."
|
|
|
|
|
2010-01-15 11:59:53 +00:00
|
|
|
* Fri Jan 15 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-9
|
|
|
|
- Update from master.
|
|
|
|
- Define IPTOS_CLASS_* macros according to RFC 2474 (BZ#11027)
|
|
|
|
- Always use IPv4 sockets for IPv4 addresses (BZ#11141)
|
|
|
|
- regcomp.c: do not ignore memory allocation failure (BZ#11127)
|
|
|
|
- Fix malloc_info without prior allocations (BZ#11126)
|
|
|
|
- Optimize 32bit memset/memcpy with SSE2/SSSE3
|
|
|
|
- Relax feature tests in headers
|
|
|
|
|
2010-01-12 16:32:14 +00:00
|
|
|
* Tue Jan 12 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-8
|
|
|
|
- Update from master.
|
|
|
|
- More POSIX conformance fixes.
|
|
|
|
|
2010-01-11 15:35:32 +00:00
|
|
|
* Mon Jan 11 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-7
|
|
|
|
- Fix build failure.
|
|
|
|
|
2010-01-11 09:49:54 +00:00
|
|
|
* Mon Jan 11 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-6
|
|
|
|
- Update from master.
|
|
|
|
- POSIX conformance fixes (BZ#11125).
|
|
|
|
|
2010-01-04 14:04:06 +00:00
|
|
|
* Mon Jan 4 2010 Andreas Schwab <schwab@redhat.com> - 2.11.90-5
|
|
|
|
- Update from master.
|
|
|
|
- Additional setcontext(), etc. conformance tests (BZ#11115).
|
|
|
|
- Handle AT_FDCWD in futimens (BZ#10992).
|
|
|
|
- Update poll.h header for POSIX 2008 (BZ#11093).
|
|
|
|
- Avoid ELF lookup race.
|
|
|
|
|
2009-12-14 16:39:29 +00:00
|
|
|
* Mon Dec 14 2009 Andreas Schwab <schwab@redhat.com> - 2.11.90-4
|
|
|
|
- Update from master.
|
|
|
|
- Add Requeue-PI support for x86 arch.
|
|
|
|
- Redefine O_SYNC and O_DSYNC to match 2.6.33+ kernels.
|
|
|
|
- Fix a few error cases in *name4_r lookup handling (BZ#11000).
|
|
|
|
- Fix kernel version check in recent ptsname change (BZ#11046).
|
|
|
|
- Add more warnings to exec functions (BZ#11056).
|
|
|
|
- Add recvmmsg interface.
|
|
|
|
- Define SCHED_IDLE and SCHED_RESET_ON_FORK for Linux.
|
|
|
|
|
2009-11-30 14:16:32 +00:00
|
|
|
* Mon Nov 30 2009 Andreas Schwab <schwab@redhat.com> - 2.11.90-3
|
|
|
|
- Update from master.
|
|
|
|
- Fix infloop in __pthread_disable_asynccancel on x86_64 (#537690).
|
|
|
|
- Prevent unintended file desriptor leak in grantpt (#530558).
|
|
|
|
- Fix startup to security-relevant statically linked binaries (#528631).
|
|
|
|
- Re-install CFI in x86/x86_64 clone (#491542).
|
|
|
|
|
2009-11-24 15:50:44 +00:00
|
|
|
* Tue Nov 24 2009 Andreas Schwab <schwab@redhat.com> - 2.11.90-2
|
|
|
|
- Update from master.
|
|
|
|
- Define week, first_weekday, and first_workday for en_DK locale (#525126).
|
|
|
|
- Use struct timespec for timestamps in struct stat also if
|
|
|
|
__USE_XOPEN2K8 (#539870).
|
|
|
|
- Fix week information for nl_NL locale (#499748).
|
|
|
|
- Update ntp_gettime for Linux (#479558).
|
|
|
|
- Fix getwc* and putwc* on non-wide streams (BZ#10958).
|
|
|
|
- Avoid warnings in CPU_* macros when using const bitsets (BZ#10918).
|
|
|
|
- Handle LC_GLOBAL_LOCALE in duplocale (BZ#10969).
|
|
|
|
- Fix _NC_LOCALE_NAME definition (BZ#10968).
|
|
|
|
- Add missing Linux MADV_* definitions (BZ#10972).
|
|
|
|
- Add support for new Linux error ERFKILL (BZ#10939).
|
|
|
|
- Enable multi-arch support on ppc and ppc64.
|
|
|
|
|
2009-11-12 17:51:25 +00:00
|
|
|
* Thu Nov 12 2009 Andreas Schwab <schwab@redhat.com> - 2.11.90-1
|
|
|
|
- Update from master.
|
|
|
|
|
|
|
|
* Thu Nov 5 2009 Andreas Schwab <schwab@redhat.com> - 2.11-2
|
|
|
|
- Fix readahead on powerpc32.
|
|
|
|
- Fix R_PPC64_{JMP_IREL,IRELATIVE} handling.
|
|
|
|
- Fix preadv, pwritev and fallocate for -D_FILE_OFFSET_BITS=64 (#533063).
|
|
|
|
|
|
|
|
* Mon Nov 2 2009 Andreas Schwab <schwab@redhat.com> - 2.11-1
|
|
|
|
- Update to 2.11 release.
|
|
|
|
- Disable multi-arch support on PowerPC again since binutils is too old.
|
|
|
|
- Fix crash in tzdata-update due to use of multi-arch symbol (#532128).
|
|
|
|
|
|
|
|
* Fri Oct 30 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-27
|
|
|
|
- Update from master.
|
|
|
|
- Fix races in setXid implementation (BZ#3270).
|
|
|
|
- Implement IFUNC for PPC and enable multi-arch support.
|
|
|
|
- Implement mkstemps/mkstemps64 and mkostemps/mkostemps64 (BZ#10349).
|
|
|
|
- Fix IA-64 and S390 sigevent definitions (BZ#10446).
|
|
|
|
- Fix memory leak in NIS grp database handling (BZ#10713).
|
|
|
|
- Print timestamp in nscd debug messages (BZ#10742).
|
|
|
|
- Fix mixing IPv4 and IPv6 name server in resolv.conf.
|
|
|
|
- Fix range checks in coshl.
|
|
|
|
- Implement SSE4.2 optimized strchr and strrchr.
|
|
|
|
- Handle IFUNC symbols in dlsym (#529965).
|
|
|
|
- Misc fixes (BZ#10312, BZ#10315, BZ#10319, BZ#10391, BZ#10425,
|
|
|
|
BZ#10540, BZ#10553, BZ#10564, BZ#10609, BZ#10692, BZ#10780,
|
|
|
|
BZ#10717, BZ#10784, BZ#10789, BZ#10847
|
|
|
|
- No longer build with -fno-var-tracking-assignments.
|
|
|
|
|
|
|
|
* Mon Oct 19 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-26
|
|
|
|
- Update from master.
|
|
|
|
- Add ____longjmp_chk for sparc.
|
|
|
|
- Avoid installing the same libraries twice.
|
|
|
|
|
|
|
|
* Mon Oct 12 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-25
|
|
|
|
- Update from master
|
|
|
|
- Fix descriptor leak when calling dlopen with RTLD_NOLOAD (#527409).
|
|
|
|
- Fix week-1stday in C locale.
|
|
|
|
- Check for integer overflows in formatting functions.
|
|
|
|
- Fix locale program error handling (#525363).
|
|
|
|
|
2009-09-28 12:31:33 +00:00
|
|
|
* Mon Sep 28 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-24
|
|
|
|
- Update from master.
|
|
|
|
- Fix missing reloc dependency (#517001).
|
|
|
|
|
2009-09-21 10:39:33 +00:00
|
|
|
* Mon Sep 21 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-23
|
|
|
|
- Update from master.
|
|
|
|
|
2009-09-14 12:23:30 +00:00
|
|
|
* Mon Sep 14 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-22
|
|
|
|
- Update from master.
|
|
|
|
- Fix endless loop in localedef.
|
|
|
|
- Fix __longjmp_chk on s390/s390x.
|
|
|
|
- Fix exit codes in nscd start script (#521848).
|
|
|
|
- Build with -fno-var-tracking-assignments for now (#523172).
|
|
|
|
|
2009-09-07 09:07:10 +00:00
|
|
|
* Mon Sep 7 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-21
|
|
|
|
- Update from master.
|
|
|
|
- Fix strstr/strcasestr on i386 (#519226).
|
|
|
|
|
2009-09-03 09:16:25 +00:00
|
|
|
* Thu Sep 3 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-20
|
|
|
|
- Update from master.
|
|
|
|
- Fix strstr/strcasestr/fma/fmaf on x86_64 (#519226).
|
|
|
|
- Fix lookup of group names in hesiod initgroups (#520472).
|
|
|
|
|
2009-09-02 11:28:29 +00:00
|
|
|
* Wed Sep 2 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-19
|
|
|
|
- Update from master.
|
|
|
|
- Fix x86_64 bits/mathinline.h for -m32 compilation.
|
|
|
|
|
2009-09-01 11:03:11 +00:00
|
|
|
* Tue Sep 1 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-18
|
|
|
|
- Update from master.
|
|
|
|
- fix parse error in <bits/mathinline.h> (#520209).
|
|
|
|
|
2009-08-27 21:02:58 +00:00
|
|
|
* Thu Aug 27 2009 Roland McGrath <roland@redhat.com> - 2.10.90-17
|
2009-08-26 12:12:07 +00:00
|
|
|
- Update from master.
|
2009-08-27 21:02:58 +00:00
|
|
|
|
|
|
|
* Wed Aug 26 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-16
|
2009-09-01 11:03:11 +00:00
|
|
|
- Update from master.
|
2009-08-26 12:12:07 +00:00
|
|
|
- handle AVX saving on x86-64 in interrupted symbol lookups (#519081).
|
|
|
|
|
2009-08-24 09:22:26 +00:00
|
|
|
* Mon Aug 24 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-15
|
|
|
|
- Update from master.
|
|
|
|
- fix fortify failure with longjmp from alternate stack (#512103).
|
|
|
|
- Add conflict with prelink (#509655).
|
|
|
|
|
2009-08-17 13:52:40 +00:00
|
|
|
* Mon Aug 17 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-14
|
|
|
|
- Update from master.
|
|
|
|
- fix pthread_cond_signal (#516469)
|
|
|
|
|
2009-08-10 09:56:04 +00:00
|
|
|
* Mon Aug 10 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-13
|
|
|
|
- Update from master.
|
|
|
|
- fix rehashing of unique symbols (#515677)
|
|
|
|
- Fix spurious messages with --excludedocs (#515948)
|
|
|
|
|
2009-08-03 12:10:21 +00:00
|
|
|
* Mon Aug 3 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-12
|
|
|
|
- Update from master.
|
|
|
|
- fix fortify failure with longjmp from alternate stack (#512103)
|
|
|
|
|
2009-07-30 13:39:12 +00:00
|
|
|
* Thu Jul 30 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-11
|
|
|
|
- Update from master.
|
|
|
|
- Don't package debuginfo files in glibc-devel.
|
|
|
|
|
2009-07-28 09:34:51 +00:00
|
|
|
* Tue Jul 28 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-10
|
|
|
|
- Update from master.
|
|
|
|
* fix memory ordering in pthread_mutex_unlock (BZ#10418)
|
|
|
|
* implement RES_USE_DNSSEC option in resolver (#205842)
|
|
|
|
* fix hang in ldd -r (#513945)
|
|
|
|
|
2009-07-27 13:22:45 +00:00
|
|
|
* Mon Jul 27 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-9
|
|
|
|
- Update from master.
|
|
|
|
|
2009-07-25 00:20:16 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.90-8.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-23 23:57:27 +00:00
|
|
|
* Fri Jul 24 2009 Jakub Jelinek <jakub@redhat.com> - 2.10.90-7.1
|
|
|
|
- Fix up pthread_cond_timedwait on x86_64 with old kernels.
|
|
|
|
|
2009-07-23 16:45:25 +00:00
|
|
|
* Thu Jul 23 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-7
|
|
|
|
- Update from master.
|
|
|
|
- Build with -DNDEBUG unless using a prerelease.
|
|
|
|
|
2009-07-23 14:07:14 +00:00
|
|
|
* Thu Jul 23 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-6
|
|
|
|
- Rebuilt with binutils-2.19.51.0.14-29.fc12 to fix static binaries
|
|
|
|
|
2009-07-22 13:05:11 +00:00
|
|
|
* Wed Jul 22 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-5
|
|
|
|
- Update from master.
|
|
|
|
- Undefine __i686 on x86 to fix build.
|
|
|
|
|
2009-07-20 13:24:45 +00:00
|
|
|
* Mon Jul 20 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-4
|
|
|
|
- Update from master.
|
|
|
|
- Don't build separate i686 package.
|
|
|
|
|
2009-07-08 17:15:21 +00:00
|
|
|
* Wed Jul 8 2009 Andreas Schwab <schwab@redhat.com> 2.10.90-3
|
|
|
|
- Reenable setuid on pt_chown.
|
|
|
|
|
2009-07-02 10:22:47 +00:00
|
|
|
* Thu Jul 2 2009 Andreas Schwab <aschwab@redhat.com> 2.10.90-2
|
|
|
|
- Update from master.
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Fri Jun 26 2009 Andreas Schwab <aschwab@redhat.com> 2.10.90-1
|
2009-06-26 15:46:27 +00:00
|
|
|
- Update from master.
|
|
|
|
- Enable multi-arch support on x86/x86-64.
|
|
|
|
- Add requires glibc-headers to glibc-devel (#476295).
|
|
|
|
- Implement second fallback mode for DNS requests (#505105).
|
|
|
|
- Don't generate invalid POSIX TZ string for Asia/Dhaka timezone (#506941).
|
|
|
|
- Allow backtrace through __longjmp_chk on powerpc.
|
|
|
|
|
|
|
|
* Fri May 22 2009 Jakub Jelinek <jakub@redhat.com> 2.10.1-2
|
|
|
|
- fix accept4 on architectures other than i?86/x86_64
|
|
|
|
- robustify nscd client code during server GC
|
|
|
|
- fix up nscd segfaults during daemon shutdown
|
|
|
|
- fix memchr on ia64 (BZ#10162)
|
|
|
|
- replace the Sun RPC license with the BSD license, with the explicit
|
|
|
|
permission of Sun Microsystems
|
|
|
|
- fix up powerpc long double errno reporting
|
|
|
|
|
|
|
|
* Sun May 10 2009 Jakub Jelinek <jakub@redhat.com> 2.10.1-1
|
|
|
|
- fix up getsgent_r and getsgnam_r exports on i?86 and ppc
|
|
|
|
|
|
|
|
* Sat May 9 2009 Jakub Jelinek <jakub@redhat.com> 2.10-2
|
|
|
|
- update from trunk
|
|
|
|
- glibc 2.10 release
|
|
|
|
- fix memchr on x86_64 (#499689)
|
|
|
|
|
|
|
|
* Mon Apr 27 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-22
|
|
|
|
- update from trunk
|
|
|
|
- further localedef fixes
|
|
|
|
- fix build-locale-archive
|
|
|
|
|
|
|
|
* Fri Apr 24 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-21
|
|
|
|
- update from trunk
|
|
|
|
- fix localedef
|
|
|
|
- fix SHIFT_JIS iconv EILSEQ handling (#497267)
|
|
|
|
- misc fixes (BZ#10093, BZ#10100)
|
|
|
|
|
|
|
|
* Fri Apr 24 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-20
|
|
|
|
- update from trunk
|
|
|
|
- fix p{read,write}v{,64} (#497429, #497434)
|
|
|
|
- fix strfmon (#496386)
|
|
|
|
|
|
|
|
* Thu Apr 16 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-19
|
|
|
|
- update from trunk
|
|
|
|
- fix dlopen from statically linked binaries (#495830)
|
|
|
|
|
|
|
|
* Thu Apr 16 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-18
|
|
|
|
- update from trunk
|
|
|
|
- fix fallocate
|
|
|
|
|
|
|
|
* Wed Apr 15 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-17
|
|
|
|
- update from trunk
|
|
|
|
- if threads have very small stack sizes, use much smaller buffer
|
|
|
|
in __get_nprocs when called from within malloc (#494631)
|
|
|
|
|
2009-04-14 21:28:25 +00:00
|
|
|
* Tue Apr 14 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-16
|
|
|
|
- update from trunk
|
|
|
|
|
2009-04-09 21:23:43 +00:00
|
|
|
* Thu Apr 9 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-15
|
|
|
|
- rebuilt with fixed gcc to avoid miscompilation of i586 memmove
|
|
|
|
- reenable experimental malloc again
|
|
|
|
|
2009-04-08 16:46:29 +00:00
|
|
|
* Wed Apr 8 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-14
|
|
|
|
- update from trunk
|
|
|
|
- temporarily disable experimental malloc
|
|
|
|
|
2009-04-07 07:39:09 +00:00
|
|
|
* Tue Apr 7 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-13
|
|
|
|
- update from trunk
|
|
|
|
- fix strverscmp (#494457)
|
|
|
|
- configure with --enable-nss-crypt
|
|
|
|
|
2009-04-01 10:41:21 +00:00
|
|
|
* Wed Apr 1 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-12
|
|
|
|
- update from trunk
|
|
|
|
- configure with --enable-experimental-malloc
|
|
|
|
|
2009-03-20 20:26:14 +00:00
|
|
|
* Fri Mar 20 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-11
|
|
|
|
- update from trunk
|
|
|
|
- POSIX 2008 prototype adjustments for scandir{,64}, alphasort{,64} and
|
|
|
|
versionsort{,64}
|
|
|
|
- fix libthread_db (#491197)
|
|
|
|
|
2009-03-10 20:01:33 +00:00
|
|
|
* Tue Mar 10 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-10
|
|
|
|
- update from trunk
|
|
|
|
- fix atexit/__cxa_atexit
|
|
|
|
|
2009-03-09 15:03:51 +00:00
|
|
|
* Mon Mar 9 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-9
|
|
|
|
- update from trunk
|
|
|
|
- POSIX 2008 support: -D_XOPEN_SOURCE=700 and -D_POSIX_C_SOURCE=200809L
|
|
|
|
- move libnldbl_nonshared.a on ppc*/s390*/sparc* back to glibc-devel
|
|
|
|
|
2009-02-28 02:29:56 +00:00
|
|
|
* Fri Feb 27 2009 Roland McGrath <roland@redhat.com> - 2.9.90-8.1
|
|
|
|
- fix libthread_db (#487212)
|
|
|
|
|
2009-02-24 22:05:41 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.90-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-18 23:55:24 +00:00
|
|
|
* Wed Feb 18 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-7
|
2009-02-18 20:47:04 +00:00
|
|
|
- update from trunk
|
|
|
|
- adjust for i586 + i686 from i386 + i686 build
|
|
|
|
- split static libraries into glibc-static subpackage
|
|
|
|
- ld -r the whole libpthread.a together to avoid endless issues with
|
|
|
|
-static ... -lpthread
|
|
|
|
- require 2.6.18 and later kernel
|
|
|
|
|
2009-02-04 22:51:53 +00:00
|
|
|
* Wed Feb 4 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-3
|
|
|
|
- update from trunk
|
|
|
|
- ISO C++ compliant strchr etc. with GCC 4.4+
|
|
|
|
- AT_RANDOM support
|
|
|
|
|
2009-01-08 10:44:08 +00:00
|
|
|
* Thu Jan 8 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-2
|
|
|
|
- update from trunk
|
|
|
|
|
2009-01-02 22:17:46 +00:00
|
|
|
* Fri Jan 2 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-1
|
|
|
|
- update from trunk (#478314)
|
|
|
|
|
|
|
|
* Mon Dec 8 2008 Jakub Jelinek <jakub@redhat.com> 2.9-3
|
|
|
|
- temporarily disable _nss_dns_gethostbyname4_r (#459756)
|
|
|
|
- NIS hostname lookup fixes (#473073, #474800, BZ#7058)
|
|
|
|
- fix unsetenv (#472941)
|
|
|
|
|
|
|
|
* Thu Nov 13 2008 Jakub Jelinek <jakub@redhat.com> 2.9-2
|
2008-11-13 22:46:07 +00:00
|
|
|
- glibc 2.9 release
|
|
|
|
- fix CPU_ALLOC_SIZE on 32-bit arches (BZ#7029)
|
|
|
|
|
2008-11-12 20:47:24 +00:00
|
|
|
* Wed Nov 12 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-17
|
|
|
|
- update from trunk
|
|
|
|
- don't abort on broken DNS replies (#469299, BZ#7009)
|
|
|
|
- misc fixes (BZ#6966, BZ#7008, BZ#6955, BZ#6843)
|
|
|
|
|
2008-10-31 21:53:57 +00:00
|
|
|
* Fri Oct 31 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-16
|
|
|
|
- update from trunk
|
|
|
|
- further resolver fixes
|
|
|
|
- another dynamic TLS handling fix (#469263)
|
|
|
|
- misc fixes (BZ#6867, BZ#6875, BZ#6919, BZ#6920, BZ#6942, BZ#6947,
|
|
|
|
BZ#6968, BZ#6974, BZ#6980, BZ#6995)
|
|
|
|
- rebuild with newer rpm to avoid stripping
|
|
|
|
shared libraries when they shouldn't be (#468129)
|
|
|
|
|
2008-10-28 15:50:31 +00:00
|
|
|
* Tue Oct 28 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-15
|
|
|
|
- update from trunk
|
|
|
|
- __libc_res_nquery fixes (#466786)
|
|
|
|
|
2008-10-20 07:39:44 +00:00
|
|
|
* Sun Oct 19 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-14
|
|
|
|
- update from trunk
|
|
|
|
- fix dynamic TLS handling (#467309)
|
|
|
|
- fix sys/signalfd.h for C++ (#467172)
|
|
|
|
- fix sprof (#458861)
|
|
|
|
- fix _mcount and socket syscalls on s390x (#464146)
|
|
|
|
- try harder to allocate memory in valloc and pvalloc (#461481)
|
|
|
|
- fix power6 32-bit libs (#467311)
|
|
|
|
|
2008-10-11 00:58:22 +00:00
|
|
|
* Fri Oct 10 2008 Dennis Gilmore <dennis@ausil.us> 2.8.90-13
|
|
|
|
- apply sparcv9v memset patch from jakub and davem
|
|
|
|
|
2008-08-29 07:56:43 +00:00
|
|
|
* Fri Aug 29 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-12
|
|
|
|
- update from trunk
|
|
|
|
- revert origin changes (#457849)
|
|
|
|
- use MAP_STACK for thread stacks
|
|
|
|
- misc fixes (BZ#6845, BZ#6544, BZ#6634, BZ#6589, BZ#6790, BZ#6791,
|
|
|
|
BZ#6824)
|
|
|
|
- power7 bits (BZ#6817)
|
|
|
|
- fix expm1 on i?86/x86_64 (#43354, BZ#5794)
|
|
|
|
|
|
|
|
* Sat Aug 2 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-11
|
|
|
|
- update from trunk
|
|
|
|
- fix non-absolute $ORIGIN handling (#457560)
|
|
|
|
- exported some further libresolv APIs (#453325)
|
|
|
|
- misc fixes
|
|
|
|
|
|
|
|
* Tue Jul 29 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-10
|
|
|
|
- update from trunk
|
|
|
|
- resolver fixes
|
|
|
|
- misc fixes (BZ#6771, BZ#6763, BZ#6698, BZ#6712)
|
|
|
|
- s390{,x} utmp/utmpx bi-arch support (BZ#6724)
|
|
|
|
- popen "e" flag
|
|
|
|
- fr_FR locale changes reenabled
|
|
|
|
|
|
|
|
* Wed Jul 16 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-9
|
|
|
|
- update from trunk
|
|
|
|
- fix unbuffered vfprintf if writing to the stream fails (#455360)
|
|
|
|
- remove useless "malloc: using debugging hooks" message (#455355)
|
|
|
|
- nscd fixes
|
|
|
|
- fix resolver alignment issues (#454500)
|
|
|
|
- fix setvbuf (BZ#6719)
|
|
|
|
|
|
|
|
* Thu Jul 3 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-8
|
|
|
|
- update from trunk
|
|
|
|
- watch even resolv.conf in nscd using inotify
|
|
|
|
- some nscd fixes
|
|
|
|
|
|
|
|
* Fri Jun 13 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-7
|
|
|
|
- update from trunk
|
|
|
|
- avoid *lround* on ppc* clobbering cr3/cr4 registers (#450790)
|
|
|
|
- further nscd fixes (#450704)
|
|
|
|
- use inotify in nscd to watch files
|
|
|
|
|
|
|
|
* Thu Jun 12 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-6
|
|
|
|
- update from trunk
|
|
|
|
- nscd fixes (#450704)
|
|
|
|
- fix getservbyport (#449358)
|
|
|
|
- fix regexp.h (#446406)
|
|
|
|
- avoid crashing on T_DNAME in DNS responses (#450766)
|
|
|
|
|
|
|
|
* Sun May 25 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-5
|
|
|
|
- update from trunk
|
|
|
|
|
|
|
|
* Tue May 20 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-4
|
|
|
|
- further getaddrinfo and nscd fixes
|
|
|
|
|
|
|
|
* Sun May 18 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-3
|
|
|
|
- getaddrinfo and nscd fixes
|
|
|
|
- reenable assertion checking in rawhide
|
|
|
|
|
|
|
|
* Fri May 16 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-2
|
|
|
|
- fix getaddrinfo (#446801, #446808)
|
|
|
|
|
|
|
|
* Thu May 15 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-1
|
|
|
|
- update to trunk
|
|
|
|
- O(n) memmem/strstr/strcasestr
|
|
|
|
- i386/x86_64 TLS descriptors support
|
|
|
|
- concurrent IPv4 and IPv6 DNS lookups by getaddrinfo
|
|
|
|
|
|
|
|
* Mon May 5 2008 Jakub Jelinek <jakub@redhat.com> 2.8-3
|
2010-07-02 12:42:07 +00:00
|
|
|
- don't run telinit u in %%post if both /dev/initctl and
|
2008-08-29 07:56:43 +00:00
|
|
|
/sbin/initctl exist (#444978)
|
|
|
|
- workaround GCC ppc64 miscompilation of c{log{,10},acosh,atan}l
|
|
|
|
(#444996)
|
|
|
|
|
|
|
|
* Wed Apr 30 2008 Jakub Jelinek <jakub@redhat.com> 2.8-2
|
|
|
|
- fix nscd races during GC (BZ#5381)
|
|
|
|
- rebuilt with fixed GCC to fix regex miscompilation on power6
|
|
|
|
- SPARC fixes
|
|
|
|
|
|
|
|
* Sat Apr 12 2008 Jakub Jelinek <jakub@redhat.com> 2.8-1
|
|
|
|
- 2.8 release
|
|
|
|
|
|
|
|
* Fri Apr 11 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-16
|
|
|
|
- update to trunk
|
|
|
|
- misc fixes (BZ#4997, BZ#5741)
|
|
|
|
- make sure all users of __libc_setlocale_lock know it is
|
|
|
|
now a rwlock
|
|
|
|
- fix ppc/ppc64 compatibility _sys_errlist and _sys_siglist
|
|
|
|
symbols
|
|
|
|
|
|
|
|
* Thu Apr 10 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-15
|
|
|
|
- update to trunk
|
|
|
|
- misc fixes (BZ#4314, BZ#4407, BZ#5209, BZ#5436, BZ#5768, BZ#5998,
|
|
|
|
BZ#6024)
|
2010-07-02 12:42:07 +00:00
|
|
|
- restart sshd in %%post when upstart is used - it doesn't have
|
2008-08-29 07:56:43 +00:00
|
|
|
/dev/initctl (#441763)
|
|
|
|
- disable assert checking again
|
|
|
|
|
|
|
|
* Tue Apr 8 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-14
|
|
|
|
- update to trunk
|
|
|
|
- misc fixes (BZ#5443, BZ#5475, BZ#5478, BZ#5939, BZ#5979, BZ#5995,
|
|
|
|
BZ#6004, BZ#6007, BZ#6020, BZ#6021, BZ#6042)
|
|
|
|
- change mtrace to keep perl 5.10 quiet (#441082)
|
|
|
|
- don't share conversion state between mbtowc and wctomb (#438687)
|
|
|
|
- if st_blksize is too large and malloc fails, retry with smaller
|
|
|
|
buffer in opendir (#430768)
|
|
|
|
- correct *printf overflow test (#358111)
|
|
|
|
|
|
|
|
* Fri Mar 28 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-13
|
|
|
|
- update to trunk
|
|
|
|
- don't define ARG_MAX in <limits.h>, as it is no longer
|
|
|
|
constant - use sysconf (_SC_ARG_MAX) to get the current
|
|
|
|
argument size limit
|
|
|
|
- fix build on sparc64
|
|
|
|
- only service sshd condrestart if /etc/rc.d/init.d/sshd exists
|
|
|
|
(#428859)
|
|
|
|
|
2008-03-26 12:29:52 +00:00
|
|
|
* Wed Mar 26 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-12
|
|
|
|
- update to trunk
|
|
|
|
- new CLONE_* flags in <sched.h> (#438542)
|
|
|
|
- nis+ errno clobbering fix (#437945)
|
|
|
|
- fix adjtime (#437974)
|
|
|
|
|
|
|
|
* Fri Mar 14 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-11
|
2008-03-14 18:04:53 +00:00
|
|
|
- update to trunk
|
2008-03-14 23:00:20 +00:00
|
|
|
- remove <stropts.h>, define _XOPEN_STREAMS -1 (#436349)
|
2008-03-05 15:08:48 +00:00
|
|
|
|
2008-03-05 10:32:39 +00:00
|
|
|
* Wed Mar 5 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-8
|
|
|
|
- update to trunk
|
|
|
|
- {,v}{as,d}printf and obstack_{,v}printf fortification (#435905)
|
|
|
|
- fix getnameinfo/gethostbyaddr (#428067, BZ#5790)
|
|
|
|
- fix yp_order (#435519, BZ#5854)
|
|
|
|
- misc fixes (BZ#5779, BZ#5736, BZ#5627, BZ#5818, BZ#5012)
|
|
|
|
- merge review cleanup (Tom Callaway, #225806)
|
|
|
|
|
2008-02-16 17:47:51 +00:00
|
|
|
* Sat Feb 16 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-7
|
|
|
|
- update to trunk
|
|
|
|
- make NI_MAXHOST and NI_MAXSERV available even in BSDish
|
|
|
|
namespaces (BZ#5737)
|
|
|
|
- timerfd_* syscalls
|
|
|
|
|
2008-02-01 11:02:06 +00:00
|
|
|
* Fri Feb 1 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-6
|
|
|
|
- fix build
|
|
|
|
|
2008-01-31 08:59:10 +00:00
|
|
|
* Thu Jan 31 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-5
|
|
|
|
- update to trunk
|
|
|
|
- rebuild with gcc 4.3
|
|
|
|
|
2008-01-11 08:15:01 +00:00
|
|
|
* Fri Jan 11 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-4
|
|
|
|
- update to trunk
|
|
|
|
- misc fixes (BZ#5541, BZ#5545, BZ#5553, BZ#5112, BZ#5520)
|
|
|
|
- getaddrinfo fixes
|
|
|
|
- signalize EOVERFLOW from sem_post instead of overflowing
|
|
|
|
the counter
|
|
|
|
- fix i?86 makecontext
|
|
|
|
- fix iconv for iso-2022-jp//translit (#397021)
|
|
|
|
|
2008-01-03 20:54:55 +00:00
|
|
|
* Thu Jan 3 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-3
|
|
|
|
- update to trunk
|
|
|
|
- fix recognition of interface family (#425768)
|
|
|
|
- add __THROW to __ctype_{b,tolower,toupper}_loc prototypes
|
|
|
|
|
2007-12-27 12:46:54 +00:00
|
|
|
* Thu Dec 27 2007 Jakub Jelinek <jakub@redhat.com> 2.7.90-2
|
|
|
|
- update to trunk
|
|
|
|
- nsswitch fix (#425768)
|
|
|
|
- temporarily enable assert checking
|
|
|
|
|
2007-12-12 21:15:38 +00:00
|
|
|
* Wed Dec 12 2007 Jakub Jelinek <jakub@redhat.com> 2.7.90-1
|
|
|
|
- update to trunk
|
|
|
|
- fix __USE_STRING_INLINES on i?86 (#408731, #371711)
|
|
|
|
- fix *scanf (#388751)
|
|
|
|
|
|
|
|
* Wed Oct 17 2007 Jakub Jelinek <jakub@redhat.com> 2.7-1
|
2007-10-17 20:54:45 +00:00
|
|
|
- glibc 2.7 release
|
|
|
|
- fix tzfile.c for times after last transition (#333561)
|
|
|
|
- fix sem_post@GLIBC_2.0 on i?86
|
|
|
|
- appease valgrind in libpthread.so initialization
|
|
|
|
- misc fixes (BZ#3425, BZ#5184, BZ#5186)
|
|
|
|
|
2007-10-15 07:49:13 +00:00
|
|
|
* Mon Oct 15 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-21
|
|
|
|
- fix getgr{name,gid}{,_r} with nscd
|
|
|
|
|
2007-10-14 21:33:51 +00:00
|
|
|
* Sun Oct 14 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-20
|
|
|
|
- install <bits/error.h> (#330031)
|
|
|
|
- disable -D_FORTIFY_SOURCE{,=2} support (with a warning) for
|
|
|
|
GCC 3.4.x and earlier(#327641)
|
|
|
|
- pl_PL locale changes (BZ#4098, #242296)
|
|
|
|
- misc fixes (BZ#1140, BZ#3195, BZ#3242, BZ#4359)
|
|
|
|
|
2007-10-11 16:49:59 +00:00
|
|
|
* Thu Oct 11 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-19
|
|
|
|
- fix <netinet/tcp.h>
|
|
|
|
- simple preprocessor in localedef, fix de_DE collation with it
|
|
|
|
|
2007-10-10 21:17:35 +00:00
|
|
|
* Wed Oct 10 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-18
|
|
|
|
- add signalfd, eventfd, eventfd_read, eventfd_write
|
|
|
|
- qsort speedups
|
|
|
|
- workaround for cpuid bugs (#324081)
|
|
|
|
- make sure gettext's conversion_lock is initialized even if
|
|
|
|
program isn't linked against libpthread.so.0, only dlopens it (#321761)
|
|
|
|
- misc fixes (BZ#5112, BZ#5113, BZ#5104, BZ#5063, BZ#5010, BZ#4407,
|
|
|
|
BZ#3924, BZ#5103, BZ#2633, BZ#181, BZ#73, #321901)
|
|
|
|
|
2007-10-03 19:54:48 +00:00
|
|
|
* Wed Oct 3 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-17
|
|
|
|
- fix {,v}swprintf with -D_FORTIFY_SOURCE=1 -mlong-double-64 on ppc*/s390*/sparc*
|
|
|
|
- strcoll fixes
|
|
|
|
- misc fixes (BZ#645, BZ#5071)
|
|
|
|
- locale fixes (BZ#4941, #299321, #203364, #196711, #236212)
|
|
|
|
|
2007-09-29 19:47:29 +00:00
|
|
|
* Sat Sep 29 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-16
|
|
|
|
- misc fixes (BZ#4963, BZ#4972, BZ#5028, BZ#5043, BZ#5058)
|
|
|
|
- improve -D_FORTIFY_SOURCE{,=2} diagnostic through warning/error
|
|
|
|
attributes
|
|
|
|
- fix wcscpy, wcpcpy, fgetws, fgetws_unlocked, swprintf and vswprintf
|
|
|
|
fortification inlines
|
|
|
|
- fix a scalability issue with lazy binding in heavily multithreaded
|
|
|
|
programs
|
|
|
|
|
2007-09-20 00:29:56 +00:00
|
|
|
* Thu Sep 20 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-15
|
|
|
|
- $5$ (SHA-256) and $6$ (SHA-512) support in crypt
|
|
|
|
(#228697, #249477, #173834)
|
|
|
|
|
2007-09-18 20:35:52 +00:00
|
|
|
* Tue Sep 18 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-14
|
|
|
|
- -D_FORTIFY_SOURCE{,=2} support for C++
|
|
|
|
- fortification of fread{,_unlocked}
|
2010-07-02 12:42:07 +00:00
|
|
|
- support *scanf m allocation modifier (%%ms, %%mls, %%mc, ...)
|
2007-09-18 20:35:52 +00:00
|
|
|
- in -std=c99 or -D_XOPEN_SOURCE=600 mode don't recognize
|
2010-07-02 12:42:07 +00:00
|
|
|
%%as, %%aS and %%a[ as a GNU extension for *scanf
|
2007-09-18 20:35:52 +00:00
|
|
|
- fix splice, vmsplice, tee return value, make them cancellation
|
|
|
|
points
|
|
|
|
- mq_open checking
|
|
|
|
- use inline function rather than function-like macro
|
|
|
|
for open{,at}{,64} checking
|
|
|
|
- IFA_F_OPTIMISTIC handling in getaddrinfo (#259681)
|
|
|
|
- fix an ABBA deadlock in ld.so (#284171)
|
|
|
|
- remove sparc{32,64} unwind info from _start and clone
|
|
|
|
|
2007-08-27 21:13:25 +00:00
|
|
|
* Mon Aug 27 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-13
|
|
|
|
- fix personality on x86_64/ppc/ppc64 (#256281)
|
|
|
|
|
2007-08-25 19:31:13 +00:00
|
|
|
* Sat Aug 25 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-12
|
|
|
|
- readd x86_64 gettimeofday stuff, initialize it earlier
|
|
|
|
- nis_list fix (#254115)
|
|
|
|
- workaround for bugs in ia64 silly /emul/ia32-linux hack (#253961)
|
|
|
|
- misc fixes (BZ#3924, BZ#4566, BZ#4582, BZ#4588, BZ#4726, BZ#4946,
|
|
|
|
BZ#4905, BZ#4814, BZ#4925, BZ#4936, BZ#4896, BZ#4937, BZ#3842,
|
|
|
|
BZ#4554, BZ#4557, BZ#4938)
|
|
|
|
|
2007-08-16 22:21:10 +00:00
|
|
|
* Fri Aug 17 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-11
|
|
|
|
- remove __strtold_internal and __wcstold_internal from ppc*/s390*/sparc*
|
|
|
|
*-ldbl.h headers
|
|
|
|
- temporarily backout x86_64 gettimeofday.S changes (#252453)
|
|
|
|
- some further sparc, sparc64 and alpha fixes
|
|
|
|
|
2007-08-15 21:19:33 +00:00
|
|
|
* Wed Aug 15 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-10
|
|
|
|
- don't open /etc/ld.so.{cache,preload} with O_NOATIME (#252146)
|
|
|
|
- s390{,x}, alpha and sparc fixes
|
|
|
|
- sparcv9 is no longer an aux arch, as we expect
|
|
|
|
to not build sparc.rpm glibc any longer, only sparcv9.rpm,
|
|
|
|
sparc64.rpm and new two aux arches sparcv9v.rpm and sparc64v.rpm
|
|
|
|
|
2007-08-14 07:57:53 +00:00
|
|
|
* Tue Aug 14 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-9
|
|
|
|
- private futex even for mutexes and condvars
|
|
|
|
- some further O_CLOEXEC changes
|
|
|
|
- use vDSO on x86_64 if available
|
|
|
|
- ia64 build fixes (#251983)
|
|
|
|
|
2007-08-10 22:37:27 +00:00
|
|
|
* Fri Aug 10 2007 Roland McGrath <roland@redhat.com> 2.6.90-8
|
2007-08-10 22:27:46 +00:00
|
|
|
- update to trunk
|
|
|
|
- fix missing strtold_l export on ppc64
|
|
|
|
|
2007-08-10 22:37:27 +00:00
|
|
|
* Thu Aug 9 2007 Roland McGrath <roland@redhat.com> 2.6.90-6
|
2007-08-10 01:55:13 +00:00
|
|
|
- update to trunk
|
|
|
|
- fix local PLT regressions
|
|
|
|
- spec file revamp for new find-debuginfo.sh
|
|
|
|
|
2007-08-05 11:41:46 +00:00
|
|
|
* Sun Aug 5 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-4
|
|
|
|
- fix librt.so and librtkaio.so on ppc32, so that it is not using
|
|
|
|
bss PLT
|
|
|
|
|
2007-08-04 21:26:28 +00:00
|
|
|
* Sat Aug 4 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-3
|
|
|
|
- fix open{,at}{,64} macro for -pedantic (#250897)
|
|
|
|
- add transliteration for l with stroke (#250492)
|
|
|
|
- fix strtod ("-0", NULL)
|
|
|
|
- update License tag
|
|
|
|
|
2007-08-01 17:49:56 +00:00
|
|
|
* Wed Aug 1 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-2
|
|
|
|
- make aux-cache purely optional performance optimization in ldconfig,
|
|
|
|
don't issue any errors if it can't be created (#250430)
|
|
|
|
- remove override_headers hack, BuildRequire >= 2.6.22 kernel-headers
|
|
|
|
and rely on its content
|
|
|
|
|
2007-07-31 18:18:37 +00:00
|
|
|
* Tue Jul 31 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-1
|
|
|
|
- update to trunk
|
|
|
|
- private futex optimizations
|
|
|
|
- open{,at}{,64} argument checking
|
|
|
|
- ldconfig speedups
|
|
|
|
|
|
|
|
* Sun Jul 8 2007 Jakub Jelinek <jakub@redhat.com> 2.6-4
|
|
|
|
- filter <built-in> pseudo-files from debuginfo source lists (#245714)
|
|
|
|
- fix sscanf when errno is EINTR before the call (BZ#4745)
|
|
|
|
- save/restore errno around reading /etc/default/nss (BZ#4702)
|
|
|
|
- fix LD_HWCAP_MASK handling
|
|
|
|
- disable workaround for #210748, instead backport
|
|
|
|
ld.so locking fixes from the trunk (#235026)
|
|
|
|
- new x86_64 memcpy
|
|
|
|
- don't write uninitialized padding bytes to nscd socket
|
|
|
|
- fix dl{,v}sym, dl_iterate_phdr and dlopen if some library is
|
|
|
|
mapped into ld.so's inter-segment hole on x86_64 (#245035, #244545)
|
|
|
|
- fix LD_AUDIT=a:b program (#180432)
|
|
|
|
- don't crash on pseudo-zero long double values passed to
|
|
|
|
*printf on i?86/x86_64/ia64 (BZ#4586)
|
2010-07-02 12:42:07 +00:00
|
|
|
- fix *printf %%La and strtold with some hexadecimal floating point
|
2007-07-31 18:18:37 +00:00
|
|
|
constants on ppc/ppc64
|
|
|
|
- fix nextafterl on ppc/ppc64
|
|
|
|
- fix sem_timedwait on i?86 and x86_64
|
|
|
|
|
|
|
|
* Thu May 24 2007 Jakub Jelinek <jakub@redhat.com> 2.6-3
|
|
|
|
- don't use %%config(missingok) for locale-archive.tmpl,
|
|
|
|
instead of removing it altogether truncate it to zero
|
|
|
|
size (#240697)
|
|
|
|
- add a workaround for #210748
|
|
|
|
|
|
|
|
* Mon May 21 2007 Jakub Jelinek <jakub@redhat.com> 2.6-2
|
|
|
|
- restore malloc_set_state backwards compatibility (#239344)
|
|
|
|
- fix epoll_pwait (BZ#4525)
|
|
|
|
- fix printf with unknown format spec or positional arguments
|
|
|
|
and large width and/or precision (BZ#4514)
|
|
|
|
- robust mutexes fix (BZ#4512)
|
|
|
|
|
|
|
|
* Tue May 15 2007 Roland McGrath <roland@redhat.com> 2.6-1
|
2007-05-15 20:59:30 +00:00
|
|
|
- glibc 2.6 release
|
|
|
|
|
2007-05-10 23:27:38 +00:00
|
|
|
* Fri May 11 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-24
|
|
|
|
- utimensat, futimens and lutimes support
|
|
|
|
|
|
|
|
* Thu May 10 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-23
|
|
|
|
- use madvise MADV_DONTNEED in malloc
|
|
|
|
- fix ia64 feraiseexcept
|
|
|
|
- fix s390{,x} feholdexcept (BZ#3427)
|
|
|
|
- ppc fenv fixes
|
|
|
|
- make fdatasync a cancellation point (BZ#4465)
|
|
|
|
- fix *printf for huge precisions with wide char code and multi-byte
|
|
|
|
strings
|
|
|
|
- fix dladdr (#232224, BZ#4131)
|
|
|
|
|
2007-05-04 11:13:51 +00:00
|
|
|
* Fri May 4 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-22
|
2007-05-04 11:16:58 +00:00
|
|
|
- add transliteration for <U2044> (BZ#3213)
|
2010-07-02 12:42:07 +00:00
|
|
|
- fix *scanf with %%f on hexadecimal floats without exponent (BZ#4342)
|
|
|
|
- fix *printf with very large precisions for %%s (#238406, BZ#4438)
|
2007-05-04 11:16:58 +00:00
|
|
|
- fix inet_ntop size checking for AF_INET (BZ#4439)
|
2010-07-02 12:42:07 +00:00
|
|
|
- for *printf %%e avoid 1.000e-00, for exponent 0 always use + sign (#238431)
|
2007-05-04 11:13:51 +00:00
|
|
|
- fix a regression introduced in #223467 changes
|
|
|
|
- gethostby*_r alignment fixes (BZ#4381)
|
|
|
|
- fix ifaddrs error handling
|
|
|
|
|
2007-04-17 00:12:45 +00:00
|
|
|
* Mon Apr 16 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-21
|
|
|
|
- don't include individual locale files in glibc-common,
|
|
|
|
rather include prepared locale-archive template and let
|
|
|
|
build-locale-archive create locale-archive from the template
|
|
|
|
and any user supplied /usr/lib/locale/*_* directories,
|
|
|
|
then unlink the locale-archive template - this should save
|
|
|
|
> 80MB of glibc-common occupied disk space
|
|
|
|
- fix _XOPEN_VERSION (BZ#4364)
|
2010-07-02 12:42:07 +00:00
|
|
|
- fix printf with %%g and values tiny bit smaller than 1.e-4 (#235864,
|
2007-04-17 00:12:45 +00:00
|
|
|
BZ#4362)
|
|
|
|
- fix NIS+ __nisfind_server (#235229)
|
|
|
|
|
2007-03-31 17:37:20 +00:00
|
|
|
* Sat Mar 31 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-20
|
|
|
|
- assorted NIS+ speedups (#223467)
|
|
|
|
- fix HAVE_LIBCAP configure detection (#178934)
|
2010-07-02 12:42:07 +00:00
|
|
|
- remove %%{_prefix}/sbin/rpcinfo from glibc-common (#228894)
|
2007-03-31 18:38:35 +00:00
|
|
|
- nexttoward*/nextafter* fixes (BZ#3306)
|
|
|
|
- feholdexcept/feupdateenv fixes (BZ#3427)
|
|
|
|
- speed up fnmatch with two or more * in the pattern
|
2007-03-31 17:37:20 +00:00
|
|
|
|
2007-03-17 22:05:58 +00:00
|
|
|
* Sat Mar 17 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-19
|
|
|
|
- fix power6 libm compat symbols on ppc32 (#232633)
|
|
|
|
- fix child refcntr in NPTL fork (#230198)
|
|
|
|
- fix ifaddrs with many net devices on > 4KB page size arches (#230151)
|
|
|
|
- fix pthread_mutex_timedlock on x86_64 (#228103)
|
|
|
|
- various fixes (BZ#3919, BZ#4101, BZ#4130, BZ#4181, BZ#4069, BZ#3458)
|
|
|
|
|
2007-02-21 11:58:31 +00:00
|
|
|
* Wed Feb 21 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-18
|
|
|
|
- fix nftw with FTW_CHDIR on / (BZ#4076)
|
|
|
|
- nscd fixes (BZ#4074)
|
|
|
|
- fix fmod{,f,l} on i?86 (BZ#3325)
|
|
|
|
- support localized digits for fp values in *scanf (BZ#2211)
|
|
|
|
- namespaces fixes (BZ#2633)
|
|
|
|
- fix euidaccess (BZ#3842)
|
|
|
|
- glob fixes (BZ#3996)
|
|
|
|
- assorted locale data fixes (BZ#1430, BZ#672, BZ#58, BZ#3156,
|
|
|
|
BZ#2692, BZ#2648, BZ#3363, BZ#3334, BZ#3326, BZ#3322, BZ#3995,
|
|
|
|
BZ#3885, BZ#3884, BZ#3851)
|
|
|
|
|
2007-02-11 17:39:19 +00:00
|
|
|
* Sun Feb 11 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-17
|
|
|
|
- RFC2671 support in resolver (#205842)
|
|
|
|
- fix strptime (BZ#3944)
|
|
|
|
- fix regcomp with REG_NEWLINE (BZ#3957)
|
|
|
|
- fix pthread_mutex_timedlock on x86_64 (#228103)
|
|
|
|
|
2007-02-02 10:06:34 +00:00
|
|
|
* Fri Feb 2 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-16
|
|
|
|
- add strerror_l
|
|
|
|
- fix application crashes when doing NSS lookups through nscd
|
|
|
|
mmapped databases and nscd decides to start garbage collection
|
|
|
|
during the lookups (#219145, #225315)
|
2010-07-02 12:42:07 +00:00
|
|
|
- fix %%0lld printing of 0LL on 32-bit architectures (BZ#3902)
|
2007-02-02 10:06:34 +00:00
|
|
|
- ignore errors from install-info in glibc-devel scriptlets
|
|
|
|
(#223691)
|
|
|
|
|
2007-01-17 11:26:50 +00:00
|
|
|
* Wed Jan 17 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-15
|
|
|
|
- fix NIS getservbyname when proto is NULL
|
|
|
|
- fix nss_compat +group handling (#220658)
|
|
|
|
- cache services in nscd
|
|
|
|
- fix double free in fts_close (#222089)
|
|
|
|
- fix vfork+execvp memory leak (#221187)
|
|
|
|
- soft-fp fixes (BZ#2749)
|
|
|
|
- further strtod fixes (BZ#3855)
|
|
|
|
- make sure pthread_kill doesn't return EINVAL even if
|
|
|
|
the target thread exits in between pthread_kill ESRCH check
|
|
|
|
and the actual tgkill syscall (#220420)
|
|
|
|
- fix ABBA deadlock possibility in ld.so scope locking code
|
|
|
|
|
2006-12-19 20:08:04 +00:00
|
|
|
* Tue Dec 19 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-14
|
|
|
|
- fix {j,m}rand48{,_r} on 64-bit arches (BZ#3747)
|
|
|
|
- handle power6x AT_PLATFORM (#216970)
|
|
|
|
- fix a race condition in getXXbyYY_r (#219145)
|
|
|
|
- fix tst-pselect testcase
|
|
|
|
|
2006-12-14 09:29:53 +00:00
|
|
|
* Thu Dec 14 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-13
|
|
|
|
- fix setcontext on ppc32 (#219107)
|
|
|
|
- fix wide stdio after setvbuf (#217064, BZ#2337)
|
2006-12-19 20:08:04 +00:00
|
|
|
- handle relatime mount option in statvfs
|
2006-12-14 09:29:53 +00:00
|
|
|
- revert i?86/x86_64 clone CFI temporarily
|
|
|
|
|
2006-12-10 11:04:25 +00:00
|
|
|
* Sun Dec 10 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-12
|
|
|
|
- fix hasmntopt (#218802)
|
|
|
|
- fix setusershell and getusershell (#218782)
|
|
|
|
- strtod fixes (BZ#3664, BZ#3673, BZ#3674)
|
|
|
|
- fix memusage with realloc (x, 0)
|
|
|
|
|
2006-12-05 22:05:54 +00:00
|
|
|
* Tue Dec 5 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-11
|
2006-12-10 11:04:25 +00:00
|
|
|
- allow suid apps to setenv NIS_PATH and influence through that
|
2006-12-05 22:05:54 +00:00
|
|
|
nis_list and nis_lookup (#209155)
|
|
|
|
- fix ttyname and ttyname_r with invalid file descriptor (#218276)
|
|
|
|
- cs_CZ LC_TIME fixes (#218438)
|
2006-12-06 13:06:52 +00:00
|
|
|
- fix build with 2.6.19+ headers (#217723)
|
2006-12-05 22:05:54 +00:00
|
|
|
|
2006-12-01 09:04:10 +00:00
|
|
|
* Fri Dec 1 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-10
|
|
|
|
- fix x86-64 restore_rt unwind info
|
|
|
|
|
2006-11-30 17:28:42 +00:00
|
|
|
* Thu Nov 30 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-9
|
|
|
|
- fix last svc_run change (#217850)
|
|
|
|
- on ppc64 build __libc_start_main without unwind info,
|
|
|
|
as it breaks MD_FROB_UPDATE_CONTEXT (#217729, #217775; in the
|
|
|
|
future that could be fixable just by providing .cfi_undefined r2
|
|
|
|
in __libc_start_main instead)
|
|
|
|
- add unwind info for x86-64 restore_rt signal return landing pad
|
|
|
|
(#217087)
|
2010-07-02 12:42:07 +00:00
|
|
|
- add power6x subdir to /%%{_lib}/ and /%%{_lib}/rtkaio/,
|
2006-11-30 17:32:26 +00:00
|
|
|
link all libs from ../power6/* into them
|
2006-11-30 17:28:42 +00:00
|
|
|
|
2006-11-28 12:30:29 +00:00
|
|
|
* Tue Nov 28 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-8
|
|
|
|
- fix svc_run (#216834, BZ#3559)
|
|
|
|
- add -fasynchronous-unwind-tables to CFLAGS (#216518)
|
|
|
|
- make sure there is consistent timestamp for /etc/ld.so.conf,
|
|
|
|
/etc/localtime and /etc/rpc between multilib glibc rpms
|
|
|
|
|
2006-11-20 12:10:50 +00:00
|
|
|
* Mon Nov 20 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-7
|
|
|
|
- handle IPv6 addresses in /etc/hosts that are mappable to
|
|
|
|
IPv4 addresses in IPv4 host lookups (#215283)
|
|
|
|
- fix :include: /etc/alias handling (#215572)
|
|
|
|
- handle new tzdata format to cope with year > 2037 transitions
|
|
|
|
on 64-bit architectures
|
|
|
|
|
2006-11-10 21:10:11 +00:00
|
|
|
* Fri Nov 10 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-6
|
|
|
|
- fix strxfrm fix
|
|
|
|
- fix i?86 floor and ceil inlines (BZ#3451)
|
|
|
|
|
2006-11-09 21:11:26 +00:00
|
|
|
* Thu Nov 9 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-5
|
|
|
|
- fix sysconf (_SC_LEVEL{2,3}_CACHE_SIZE) on Intel Core Duo
|
|
|
|
CPUs
|
|
|
|
- fix libthread_db.so on TLS_DTV_AT_TP architectures
|
|
|
|
- fix --inhibit-rpath (#214569)
|
|
|
|
- fix _r_debug content when prelinked ld.so executes
|
|
|
|
a program as its argument
|
|
|
|
- fix strxfrm
|
|
|
|
- powerpc-cpu add-on updates
|
|
|
|
|
2006-11-03 17:08:57 +00:00
|
|
|
* Fri Nov 3 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-4
|
|
|
|
- fix atexit backwards compatibility (#213388)
|
|
|
|
- add mai_IN locale (#213415)
|
2010-07-02 12:42:07 +00:00
|
|
|
- remove bogus %%{_libdir}/librt.so.1 symlink (#213555)
|
2006-11-03 17:08:57 +00:00
|
|
|
- fix memusage (#213656)
|
|
|
|
- change libc.info category (#209493)
|
|
|
|
|
2006-10-29 22:16:58 +00:00
|
|
|
* Sun Oct 29 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-3
|
|
|
|
- fix suid/sgid binaries on i?86/x86_64 (#212723)
|
|
|
|
|
2006-10-27 19:39:25 +00:00
|
|
|
* Fri Oct 27 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-2
|
|
|
|
- fix ia64 build
|
|
|
|
- don't call _dl_close outside of dl_load_lock critical section
|
|
|
|
if dlopen failed (BZ#3426)
|
|
|
|
- add rtld scope locking (#211133)
|
|
|
|
|
2006-10-25 19:33:01 +00:00
|
|
|
* Wed Oct 25 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-1
|
|
|
|
- fix i?86 6 argument syscalls (e.g. splice)
|
|
|
|
- fix rtld minimal realloc (BZ#3352)
|
|
|
|
- fix RFC3484 getaddrinfo sorting according to rules 4 and 7 (BZ#3369)
|
|
|
|
- fix xdrmem_setpos (#211452)
|
2006-10-08 14:29:54 +00:00
|
|
|
- bump __GLIBC_MINOR__
|
|
|
|
- increase PTHREAD_STACK_MIN on ppc{,64} to 128K to allow
|
|
|
|
64K pagesize kernels (#209877)
|
|
|
|
- speed up initgroups on NIS+ (#208203)
|
|
|
|
|
2006-10-02 19:16:08 +00:00
|
|
|
* Mon Oct 2 2006 Jakub Jelinek <jakub@redhat.com> 2.5-2
|
|
|
|
- fix nscd database growing (#207928)
|
|
|
|
- bypass prelinking when LD_DYNAMIC_WEAK=1 is in the environment
|
|
|
|
|
2006-09-29 21:34:27 +00:00
|
|
|
* Fri Sep 29 2006 Jakub Jelinek <jakub@redhat.com> 2.5-1
|
|
|
|
- glibc 2.5 release
|
|
|
|
|
2006-09-26 22:21:00 +00:00
|
|
|
* Wed Sep 27 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-36
|
|
|
|
- rebuilt with gcc-4.1.1-26 to fix unwind info
|
|
|
|
|
2006-09-25 17:36:39 +00:00
|
|
|
* Mon Sep 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-35
|
|
|
|
- fix glob with large number of matches (BZ#3253)
|
|
|
|
- fix fchownat on kernels that don't support that syscall (BZ#3252)
|
|
|
|
- fix lrintl on s390{,64}
|
|
|
|
|
2006-09-23 10:43:23 +00:00
|
|
|
* Sat Sep 23 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-34
|
|
|
|
- fix ppc{32,64} longjmp (BZ#3225)
|
|
|
|
- fix user visible spelling errors (BZ#3137)
|
|
|
|
- fix l{,l}rint{,f,l} around zero (BZ#2592)
|
|
|
|
- avoid stack trampoline in s390{,x} makecontext
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Tue Sep 19 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-33
|
2006-09-19 19:15:48 +00:00
|
|
|
- fix dlclose (#206639)
|
|
|
|
- don't load platform optimized libraries if kernel doesn't set
|
|
|
|
AT_PLATFORM
|
|
|
|
- fix ppc{32,64} libSegFault.so
|
|
|
|
- use -mtune=generic even for glibc-devel.i386 (#206437)
|
2010-07-02 12:42:07 +00:00
|
|
|
- fix /%%{_lib}/librt.so.1 symlink
|
2006-09-19 19:15:48 +00:00
|
|
|
|
2006-09-15 20:28:56 +00:00
|
|
|
* Fri Sep 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-32
|
|
|
|
- on ppc* use just AT_PLATFORM and altivec AT_HWCAP bit for library selection
|
|
|
|
- fix lrintl and lroundl on ppc{,64}
|
|
|
|
- use hidden visibility on fstatat{,64} and mknodat in libc_nonshared.a
|
|
|
|
|
2006-09-10 19:27:02 +00:00
|
|
|
* Sun Sep 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-31
|
|
|
|
- fix pthread_cond_{,timed}wait cancellation (BZ#3123)
|
|
|
|
- fix lrint on ppc32 (BZ#3155)
|
|
|
|
- fix malloc allocating more than half of address space (BZ#2775)
|
|
|
|
- fix mktime on 32-bit arches a few years after 2038 (BZ#2821)
|
|
|
|
|
2006-09-07 10:56:50 +00:00
|
|
|
* Thu Sep 7 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-30
|
2010-07-02 12:42:07 +00:00
|
|
|
- add librtkaio, to use it add /%%{lib}/rtkaio to your
|
2006-09-07 10:56:50 +00:00
|
|
|
LD_LIBRARY_PATH or /etc/ld.so.conf
|
|
|
|
- fix or_IN February name (#204730)
|
|
|
|
- fix pthread_create called from cancellation handlers (BZ#3124)
|
|
|
|
- fix regex case insensitive searches with characters where upper
|
|
|
|
and lower case multibyte representations have different length
|
|
|
|
(e.g. I and dotless i, #202991)
|
|
|
|
|
2006-09-05 07:07:39 +00:00
|
|
|
* Tue Sep 5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-29
|
|
|
|
- randomize resolver query ids before use instead after use (#205113)
|
|
|
|
- fix resolver symver checking with DT_GNU_HASH (#204909)
|
|
|
|
- put .hash section in glibc libraries at the end of RO segment
|
|
|
|
when .gnu.hash is present
|
|
|
|
|
2006-08-31 19:18:22 +00:00
|
|
|
* Thu Aug 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-28
|
|
|
|
- another malloc doubly linked list corruption problem fix (#204653)
|
|
|
|
|
2006-08-31 07:08:06 +00:00
|
|
|
* Thu Aug 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-27
|
|
|
|
- allow $LIB and $PLATFORM in dlopen parameters even in suid/sgid (#204399)
|
2006-09-05 07:07:39 +00:00
|
|
|
- handle $LIB/$PLATFORM in LD_LIBRARY_PATH
|
2006-08-31 07:08:06 +00:00
|
|
|
- fix splice prototype (#204530)
|
|
|
|
|
2006-08-28 19:38:25 +00:00
|
|
|
* Mon Aug 28 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-26
|
|
|
|
- real fix for the doubly linked list corruption problem
|
|
|
|
- try harder in realloc to allocate memory (BZ#2684)
|
|
|
|
- fix getnameinfo error reporting (#204122)
|
|
|
|
- make localedef more robust on invalid input (#203728)
|
|
|
|
|
2006-08-25 09:56:17 +00:00
|
|
|
* Fri Aug 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-25
|
2006-08-25 07:14:59 +00:00
|
|
|
- temporarily back out code to limit number of unsorted block
|
|
|
|
sort iterations (#203735, #204027)
|
|
|
|
- handle PLT symbols in dladdr properly (BZ#2683)
|
|
|
|
- avoid malloc infinite looping for allocations larger than
|
|
|
|
the system can allocate (#203915)
|
|
|
|
|
2006-08-22 09:27:29 +00:00
|
|
|
* Tue Aug 22 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-23
|
|
|
|
- malloc fixes, especially for 32-bit arches (#202309)
|
|
|
|
- further *_IN locale fixes (#200230)
|
|
|
|
- fix get{serv,rpc}ent{,_r} if NIS map is empty (#203237)
|
|
|
|
- fix /usr/bin/iconv (#203400)
|
|
|
|
|
2006-08-18 09:50:20 +00:00
|
|
|
* Fri Aug 18 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-22
|
|
|
|
- rebuilt with latest binutils to pick up 64K -z commonpagesize
|
|
|
|
on ppc/ppc64 (#203001)
|
|
|
|
|
2006-08-15 21:03:14 +00:00
|
|
|
* Tue Aug 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-21
|
|
|
|
- if some test gets stuck, kill the tee process after make check
|
|
|
|
finishes
|
|
|
|
- build with -mtune=generic on i686 and x86_64
|
|
|
|
|
2006-08-15 06:07:33 +00:00
|
|
|
* Tue Aug 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-20
|
|
|
|
- PTHREAD_PRIO_PROTECT support
|
|
|
|
- fix errno if nice() fails (#201826)
|
|
|
|
|
2006-08-10 07:07:14 +00:00
|
|
|
* Thu Aug 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-19
|
|
|
|
- adaptive malloc brk/mmap threshold
|
|
|
|
- fix fchownat to use kernel syscall (if available) on many arches (#201870)
|
|
|
|
- only define O_DIRECT with -D_GNU_SOURCE on ia64 to match all
|
|
|
|
other arches (#201748)
|
|
|
|
|
2006-08-07 19:49:00 +00:00
|
|
|
* Mon Aug 7 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-18
|
|
|
|
- NIS+ fixes
|
|
|
|
- fix memusage and xtrace scripts (#200736)
|
|
|
|
- redirect /sbin/service sshd condrestart std{out,err} to /dev/null
|
|
|
|
when executed from glibc_post_upgrade
|
|
|
|
|
2006-08-02 18:29:53 +00:00
|
|
|
* Wed Aug 2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-17
|
|
|
|
- typo fix for the dladdr patch
|
|
|
|
- build i?86 glibc with -mno-tls-direct-seg-refs (#200469)
|
|
|
|
|
2006-08-02 17:11:18 +00:00
|
|
|
* Wed Aug 2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-16
|
|
|
|
- fix dladdr on binaries/libraries with only DT_GNU_HASH and no
|
|
|
|
DT_HASH (#200635)
|
|
|
|
- fix early timeout of initgroups data in nscd (#173019)
|
|
|
|
- add am/pm display to es_PE and es_NI locales (#167101)
|
|
|
|
- fix nss_compat failures when nis/nis+ unavailable (#192072)
|
|
|
|
|
2006-07-31 08:33:04 +00:00
|
|
|
* Mon Jul 31 2006 Roland McGrath <roland@redhat.com> 2.4.90-15
|
2006-07-30 01:43:49 +00:00
|
|
|
- fix missing destructor calls in dlclose (#197932)
|
2006-08-02 17:11:18 +00:00
|
|
|
- enable transliteration support in all locales (#196713)
|
|
|
|
- disallow RTLD_GLOBAL flag for dlmopen in secondary namespaces (#197462)
|
2006-07-30 01:43:49 +00:00
|
|
|
- PI mutex support
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Mon Jul 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-13
|
2006-07-11 10:26:01 +00:00
|
|
|
- DT_GNU_HASH support
|
|
|
|
|
2006-06-30 09:31:42 +00:00
|
|
|
* Fri Jun 30 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-12
|
|
|
|
- buildrequire gettext
|
|
|
|
- enable fstatat64/newfstatat syscalls even on ppc*/s390*/ia64 (#196494)
|
|
|
|
- fix out of memory behavior in gettext (#194321)
|
|
|
|
- fix regex on multi-byte non-UTF-8 charsets (#193873)
|
|
|
|
- minor NIS+ fixes (#190803)
|
|
|
|
- don't use cancellable calls in posix_spawn* and only set{u,g}id
|
|
|
|
current thread if requested (#193631)
|
|
|
|
|
2006-05-31 15:41:01 +00:00
|
|
|
* Wed May 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-11
|
|
|
|
- don't exit from nscd -i <database> before the database is
|
|
|
|
actually invalidated, add locking to prune_cache (#191464)
|
|
|
|
- build glibc-devel.i386 static libraries with
|
|
|
|
-mno-tls-direct-seg-refs -DNO_TLS_DIRECT_SEG_REFS
|
|
|
|
- RFC3542 support (advanced API for IPv6; #191001, BZ##2693)
|
|
|
|
|
2006-05-24 08:09:35 +00:00
|
|
|
* Wed May 24 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-10
|
|
|
|
- on i686 make glibc owner of /lib/i686 directory (#192597)
|
|
|
|
- search parent NIS+ domains (#190803)
|
|
|
|
|
2006-05-21 22:19:31 +00:00
|
|
|
* Sun May 21 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-9
|
|
|
|
- update from CVS
|
|
|
|
- big NIS+ changes
|
|
|
|
|
2006-05-19 17:14:15 +00:00
|
|
|
* Fri May 19 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-8
|
|
|
|
- update from CVS
|
|
|
|
- fix nss_compat when SETENT_BATCH_READ=TRUE is in /etc/default/nss
|
|
|
|
- fix RFC3484 precedence table for site-local and ULA addresses (#188364)
|
|
|
|
- fix a sunrpc memory leak
|
|
|
|
|
2006-05-11 15:53:04 +00:00
|
|
|
* Thu May 11 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-7
|
|
|
|
- update from CVS
|
|
|
|
- fix tcgetattr (#177965)
|
|
|
|
- fix <sys/queue.h> (#191264)
|
|
|
|
|
2006-05-05 15:11:56 +00:00
|
|
|
* Fri May 5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-6
|
|
|
|
- update from CVS
|
|
|
|
- rebuilt using fixed rpm
|
|
|
|
|
2006-05-05 06:46:41 +00:00
|
|
|
* Fri May 5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-5
|
|
|
|
- update from CVS
|
|
|
|
- some NIS+ fixes
|
|
|
|
- allow overriding rfc3484 address sorting tables for getaddrinfo
|
|
|
|
through /etc/gai.conf (sample config file included in %%doc directory)
|
|
|
|
|
2006-05-01 08:15:37 +00:00
|
|
|
* Mon May 1 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-4
|
|
|
|
- update from CVS
|
|
|
|
- SETENT_BATCH_READ /etc/default/nss option for speeding up
|
|
|
|
some usages of NIS+ (#188246)
|
|
|
|
- move debug state change notification (#179208)
|
|
|
|
- fix ldd script if one of the dynamic linkers is not installed (#190259)
|
|
|
|
|
2006-04-27 21:48:35 +00:00
|
|
|
* Thu Apr 27 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-3
|
|
|
|
- update from CVS
|
|
|
|
- fix a typo in nscd.conf (#190085)
|
|
|
|
- fix handling of SIGHUP in nscd when some caches are disabled (#189978)
|
|
|
|
- make nscd paranoia mode working with non-root server-user (#189779)
|
|
|
|
|
2006-04-26 20:37:20 +00:00
|
|
|
* Wed Apr 26 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-2
|
|
|
|
- update from CVS
|
|
|
|
- fix getaddrinfo (#190002)
|
|
|
|
- add auto-propagate nscd.conf options (#177154)
|
|
|
|
- fix nscd auditing (#169148)
|
|
|
|
|
2006-04-25 09:47:01 +00:00
|
|
|
* Tue Apr 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-1
|
|
|
|
- update from CVS
|
|
|
|
|
2006-04-24 11:22:15 +00:00
|
|
|
* Mon Apr 24 2006 Jakub Jelinek <jakub@redhat.com> 2.4-6
|
|
|
|
- update from CVS
|
|
|
|
- NIS+ fixes
|
|
|
|
- don't segfault on too large argp key values (#189545)
|
|
|
|
- getaddrinfo fixes for RFC3484 (#188364)
|
|
|
|
|
2006-03-28 10:15:50 +00:00
|
|
|
* Tue Mar 28 2006 Jakub Jelinek <jakub@redhat.com> 2.4-5
|
|
|
|
- update from CVS
|
|
|
|
- pshared robust mutex support
|
|
|
|
- fix btowc and bwtoc in C++ (#186410)
|
|
|
|
- fix NIS+ (#186592)
|
|
|
|
- don't declare __wcsto*l_internal for non-GCC or if not -O1+ (#185667)
|
|
|
|
- don't mention nscd failures on 2.0 kernels (#185335)
|
|
|
|
|
|
|
|
* Tue Mar 7 2006 Roland McGrath <roland@redhat.com> 2.4-4
|
2006-03-07 21:18:23 +00:00
|
|
|
- back up %%{ix86} gdb conflicts to < 6.3.0.0-1.111
|
|
|
|
|
2006-03-07 13:39:01 +00:00
|
|
|
* Tue Mar 7 2006 Jakub Jelinek <jakub@redhat.com> 2.4-3
|
|
|
|
- really fix rintl on ppc64
|
|
|
|
|
2006-03-07 08:44:55 +00:00
|
|
|
* Tue Mar 7 2006 Jakub Jelinek <jakub@redhat.com> 2.4-2
|
|
|
|
- accurate unwind info for lowlevellock.h stubs on %%{ix86}
|
|
|
|
- fix ppc/ppc64 ceill, floorl, rintl, roundl and truncl (BZ#2423)
|
|
|
|
|
2006-03-06 13:33:54 +00:00
|
|
|
* Mon Mar 6 2006 Jakub Jelinek <jakub@redhat.com> 2.4-1
|
|
|
|
- update from CVS
|
|
|
|
- glibc 2.4 release
|
|
|
|
|
2006-03-06 07:55:58 +00:00
|
|
|
* Mon Mar 6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.91-2
|
|
|
|
- update from CVS
|
|
|
|
- fix sYSMALLOc for MALLOC_ALIGNMENT > 2 * SIZE_SZ (#183895)
|
|
|
|
- revert ppc32 malloc alignment patch, it breaks malloc_set_state
|
|
|
|
and needs some further thoughts and time (#183894)
|
|
|
|
- provide accurate unwind info for lowlevellock.h stubs on x86_64
|
|
|
|
|
2006-03-02 11:47:25 +00:00
|
|
|
* Thu Mar 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.91-1
|
|
|
|
- update from CVS
|
|
|
|
- fixes for various arches
|
|
|
|
- ensure malloc returns pointers aligned to at least
|
|
|
|
MIN (2 * sizeof (size_t), __alignof__ (long double))
|
|
|
|
(only on ppc32 this has not been the case lately with addition
|
|
|
|
of 128-bit long double, #182742)
|
|
|
|
|
2006-03-01 09:47:51 +00:00
|
|
|
* Wed Mar 1 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-39
|
|
|
|
- update from CVS
|
|
|
|
|
2006-02-17 16:35:21 +00:00
|
|
|
* Fri Feb 17 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-38
|
|
|
|
- update from CVS
|
|
|
|
- robust mutexes rewrite
|
|
|
|
|
2006-02-13 07:56:52 +00:00
|
|
|
* Mon Feb 13 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-37
|
|
|
|
- update from CVS
|
|
|
|
- *at fixes
|
|
|
|
- unshare syscall wrapper
|
2006-02-11 03:11:03 +00:00
|
|
|
|
2006-02-04 08:44:52 +00:00
|
|
|
* Sat Feb 4 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-36
|
|
|
|
- update from CVS
|
|
|
|
- fix frequency setting for ITIMER_PROF (#179938, BZ#2268)
|
|
|
|
- fix powerpc inline fegetround ()
|
|
|
|
- fix nptl_db (#179946)
|
|
|
|
|
2006-02-03 09:58:00 +00:00
|
|
|
* Fri Feb 3 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-35
|
|
|
|
- update from CVS
|
|
|
|
- handle futimesat (fd, NULL, tvp) as futimes (fd, tvp)
|
|
|
|
- fix <stdlib.h> q{e,f,g}cvt{,_r} for -mlong-double-64
|
|
|
|
|
2006-02-02 19:06:19 +00:00
|
|
|
* Thu Feb 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-34
|
|
|
|
- fix <math.h> with C++ and -mlong-double-64 (#179742)
|
|
|
|
- add nexttowardl redirect for -mlong-double-64
|
|
|
|
|
2006-02-02 09:35:12 +00:00
|
|
|
* Thu Feb 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-33
|
|
|
|
- update from CVS
|
|
|
|
- long double support fixes
|
|
|
|
|
2006-02-01 10:20:18 +00:00
|
|
|
* Wed Feb 1 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-32
|
|
|
|
- update from CVS
|
|
|
|
- 128-bit long double fixes for ppc{,64}, s390{,x} and sparc{,v9},
|
|
|
|
alpha 128-bit long double support
|
|
|
|
- add inotify syscall numbers to the override <asm/unistd.h> headers
|
|
|
|
(#179366)
|
|
|
|
|
2006-01-30 10:11:25 +00:00
|
|
|
* Mon Jan 30 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-31
|
|
|
|
- update from CVS
|
|
|
|
- 128-bit long double on ppc, ppc64, s390, s390x and sparc{,v9}
|
|
|
|
- add some new syscall numbers to the override <asm/unistd.h>
|
|
|
|
headers
|
|
|
|
|
2006-01-09 22:19:27 +00:00
|
|
|
* Mon Jan 9 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-30
|
|
|
|
- update from CVS
|
|
|
|
- <pthread.h> initializer fixes for -std=c{8,9}9 on 32-bit
|
|
|
|
arches
|
2006-01-09 23:28:07 +00:00
|
|
|
- avoid writable .rodata (#177121)
|
2006-01-09 22:19:27 +00:00
|
|
|
|
2006-01-06 22:17:50 +00:00
|
|
|
* Fri Jan 6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-29
|
|
|
|
- update from CVS
|
|
|
|
- make pthread_mutex_t an unnamed union again, as it affects
|
|
|
|
libstdc++ ABI mangling
|
|
|
|
|
2006-01-06 09:59:51 +00:00
|
|
|
* Fri Jan 6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-28
|
|
|
|
- update from CVS
|
|
|
|
- make aio_suspend interruptible by signals (#171968)
|
|
|
|
|
2006-01-06 05:06:44 +00:00
|
|
|
* Fri Jan 6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-27
|
|
|
|
- only rely on d_type in 32-bit getdents on s390 for 2.6.11+
|
|
|
|
|
2006-01-04 08:23:00 +00:00
|
|
|
* Wed Jan 4 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-26
|
|
|
|
- update from CVS
|
|
|
|
- for newly linked lio_listio* callers, send per request
|
|
|
|
notifications (#170116)
|
|
|
|
- fixup nscd -S option removal changes (#176860)
|
|
|
|
- remove nonnull attribute from ctermid (#176753)
|
|
|
|
- fix PTHREAD_*_INITIALIZER{,_NP} on 64-bit arches
|
|
|
|
- SPARC NPTL support for pre-v9 CPUs
|
|
|
|
- drop support for 2.4.xx and < 2.6.9 kernels
|
|
|
|
|
2006-01-02 21:54:32 +00:00
|
|
|
* Mon Jan 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-25
|
|
|
|
- update from CVS
|
|
|
|
- s390{,x} and sparc{,64} pointer mangling fixes
|
2006-01-02 22:12:57 +00:00
|
|
|
- install a sanitized LinuxThreads <bits/libc-lock.h>
|
2006-01-02 21:54:32 +00:00
|
|
|
|
2006-01-02 11:34:49 +00:00
|
|
|
* Mon Jan 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-24
|
|
|
|
- update from CVS
|
|
|
|
- nscd audit changes (#174422)
|
|
|
|
- ppc{32,64} vDSO support and ppc32 hp-timing
|
|
|
|
|
2005-12-27 16:48:46 +00:00
|
|
|
* Tue Dec 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-23
|
|
|
|
- update from CVS
|
|
|
|
- robust mutexes
|
|
|
|
- fix transliteration segfaults (#176573, #176583)
|
|
|
|
- ignore prelink temporaries in ldconfig (#176570)
|
|
|
|
|
2005-12-21 11:47:59 +00:00
|
|
|
* Wed Dec 21 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-22
|
|
|
|
- update from CVS
|
|
|
|
- minor fts fixes
|
|
|
|
- revert broken _Pragma () workaround
|
2005-12-27 16:50:40 +00:00
|
|
|
- fix ldconfig on bi-arch architectures (#176316)
|
2005-12-21 11:47:59 +00:00
|
|
|
|
2005-12-20 18:34:30 +00:00
|
|
|
* Tue Dec 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-21
|
|
|
|
- update from CVS
|
|
|
|
- fix pointer (de)mangling in gconv_cache.c
|
|
|
|
|
2005-12-20 11:34:34 +00:00
|
|
|
* Tue Dec 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-20
|
|
|
|
- update from CVS
|
|
|
|
- time ((void *) 1) should segfault, not return -EFAULT (#174856, BZ#1952)
|
|
|
|
- fix errlist generation
|
2005-12-20 11:37:17 +00:00
|
|
|
- update ulps for GCC 4.1 on IA-64
|
2005-12-20 11:34:34 +00:00
|
|
|
|
2005-12-19 13:06:57 +00:00
|
|
|
* Mon Dec 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-19
|
|
|
|
- update from CVS
|
|
|
|
- sysdeps/generic reorg
|
|
|
|
- setjmp/longjmp jump pointer mangling
|
|
|
|
- rebuilt with GCC 4.1-RH prerelease, worked around broken _Pragma ()
|
|
|
|
handling in it
|
|
|
|
- remove glibc-profile subpackage
|
2005-12-19 13:36:53 +00:00
|
|
|
- use non-PLT calls for malloc/free/realloc/memalign invocations in
|
|
|
|
mtrace and mcheck hooks (#175261)
|
|
|
|
- setjmp/longjmp jump pointer mangling on ppc{,64}/ia64/s390{,x}
|
2005-12-19 10:08:45 +00:00
|
|
|
|
2005-11-19 20:44:50 +00:00
|
|
|
* Sat Nov 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-18
|
|
|
|
- update from CVS
|
|
|
|
- change <sys/stat.h> for broken apps that #define const /**/,
|
|
|
|
handle non-GCC compilers
|
|
|
|
- fix ppc{32,64} strncmp (BZ#1877, #173643, IT#83510)
|
|
|
|
- provide shmatt_t typedef in ia64 <sys/shm.h (#173680)
|
|
|
|
- support 2nd arg to futimesat being NULL (#173581)
|
|
|
|
|
2005-11-16 08:56:27 +00:00
|
|
|
* Wed Nov 16 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-17
|
|
|
|
- update from CVS
|
|
|
|
- fix <sys/stat.h> in C++
|
|
|
|
- {fstat,fchown,rename,unlink}at fixes
|
|
|
|
- epoll_wait is now a cancellation point
|
|
|
|
|
2005-11-15 09:36:31 +00:00
|
|
|
* Tue Nov 15 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-16
|
|
|
|
- update from CVS
|
|
|
|
- make sure waitid syscall is used on ppc*/s390*
|
|
|
|
|
2005-10-20 07:46:13 +00:00
|
|
|
* Thu Oct 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-15
|
|
|
|
- update from CVS
|
2010-07-02 12:42:07 +00:00
|
|
|
- be permissive in %%n check because of kernel bug #165351 (#171240)
|
2005-10-20 07:46:13 +00:00
|
|
|
- don't misalign stack in pthread_once on x86_64 (#170786, IT#81521)
|
|
|
|
- many locale fixes
|
|
|
|
|
2005-10-10 15:26:58 +00:00
|
|
|
* Mon Oct 10 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-14
|
|
|
|
- update from CVS
|
|
|
|
- fix malloc bug after fork introduced in the last update
|
|
|
|
- fix getent hosts IP for IPv4 IPs (#169831)
|
|
|
|
|
2005-10-03 21:25:44 +00:00
|
|
|
* Mon Oct 3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-13
|
|
|
|
- update from CVS
|
|
|
|
- fix setuid etc. hangs if some thread exits during the call (#167766)
|
|
|
|
- fix innetgr memory leak (#169051)
|
|
|
|
- support > 2GB nscd log files (#168851)
|
|
|
|
- too many other changes to list here
|
|
|
|
- include errno in nscd message if audit_open failed (#169148)
|
|
|
|
|
2005-09-12 13:33:00 +00:00
|
|
|
* Mon Sep 12 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-12
|
|
|
|
- update from CVS
|
|
|
|
- netgrp handling fixes (#167728)
|
|
|
|
- fix memory leak in setlocale (BZ#1318)
|
|
|
|
- fix hwcaps computation
|
|
|
|
- several regex portability improvements (#167019)
|
|
|
|
- hypotf fix
|
|
|
|
- fix *printf return code if underlying write fails (BZ#1146)
|
|
|
|
- PPC64 dl{,v}sym fixes for new ABI .opd symbols
|
|
|
|
- fix calloc with MALLOC_PERTURB_ in environment on 64-bit architectures
|
|
|
|
(#166719)
|
|
|
|
- source /etc/sysconfig/nscd (if it exists) in /etc/rc.d/init.d/nscd
|
|
|
|
(#167083)
|
|
|
|
- add %%triggerin for tzdata to glibc-common, so that tzdata updates
|
|
|
|
update /etc/localtime and /var/spool/postfix/etc/localtime if they
|
|
|
|
exist (#167787)
|
|
|
|
|
2005-08-29 19:59:27 +00:00
|
|
|
* Mon Aug 29 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-11
|
|
|
|
- FUTEX_WAKE_OP support to speed up pthread_cond_signal
|
|
|
|
|
2005-08-24 08:04:30 +00:00
|
|
|
* Wed Aug 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-10
|
|
|
|
- update from CVS
|
|
|
|
- fix growing of nscd persistent database (BZ#1204)
|
|
|
|
- fix _FORTIFY_SOURCE mbstowcs and wcstombs if destination size
|
|
|
|
is known at compile time, but length argument is not
|
|
|
|
|
2005-08-22 08:38:00 +00:00
|
|
|
* Mon Aug 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-9
|
|
|
|
- update from CVS
|
|
|
|
- fix resolving over TCP (#161181, #165802)
|
|
|
|
- on ia64 don't abort on unhandled math function exception codes
|
|
|
|
(#165693)
|
|
|
|
|
2005-08-08 22:05:34 +00:00
|
|
|
* Mon Aug 8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-8
|
|
|
|
- update from CVS
|
|
|
|
- nscd persistent database verifier (#164001)
|
|
|
|
- cleanup _FORTIFY_SOURCE bits/*.h headers (#165000)
|
|
|
|
- handle EINTR in sigwait properly
|
|
|
|
- make sure poor man's stack guard randomization keeps first
|
|
|
|
byte 0 even on big-endian 32-bit arches
|
|
|
|
- fix {elf,nptl}/tst-stackguard1
|
|
|
|
- obsolete linuxthreads-devel in glibc-devel
|
|
|
|
|
2005-07-29 17:44:03 +00:00
|
|
|
* Fri Jul 29 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-7
|
|
|
|
- update from CVS
|
|
|
|
- do some poor man's stack guard randomization even without
|
|
|
|
the costly --enable-stackguard-randomization
|
|
|
|
- rebuilt with new GCC to make it use -msecure-plt on PPC32
|
|
|
|
|
2005-07-25 07:05:29 +00:00
|
|
|
* Mon Jul 25 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-6
|
|
|
|
- update from CVS
|
|
|
|
- fix execvp if PATH is not in environment and the call is going
|
|
|
|
to fail (BZ#1125)
|
|
|
|
- another bits/wchar2.h fix (#163990)
|
|
|
|
|
2005-07-22 09:26:40 +00:00
|
|
|
* Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-5
|
|
|
|
- update from CVS
|
|
|
|
- fix stubs.h generation
|
|
|
|
- don't use _G_va_list in bits/wchar2.h
|
|
|
|
|
2005-07-22 06:22:21 +00:00
|
|
|
* Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-4
|
|
|
|
- update from CVS
|
|
|
|
- make sure bits/wchar2.h header is installed
|
|
|
|
- fix __getgroups_chk return type
|
|
|
|
|
2005-07-21 10:04:55 +00:00
|
|
|
* Thu Jul 21 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-3
|
|
|
|
- update from CVS
|
|
|
|
- make sure nscd cmsg buffers aren't misaligned, handle EINTR from
|
|
|
|
poll when contacting nscd more gracefully
|
|
|
|
- remove malloc attribute from posix_memalign
|
|
|
|
- correctly size nscd buffer for grpcache key (#163538)
|
|
|
|
- fix atan2f
|
|
|
|
- fix error memory leaks
|
|
|
|
- some more _FORTIFY_SOURCE protection
|
|
|
|
|
2005-07-08 10:17:59 +00:00
|
|
|
* Fri Jul 8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-2
|
|
|
|
- update from CVS
|
|
|
|
- ia64 stack protector support
|
|
|
|
- handle DNS referral results as server errors (#162625)
|
|
|
|
- ctan{,h}{,f,l} fixes (#160759)
|
|
|
|
- pass argc, argv and envp also to executable's *ni_array
|
|
|
|
functions (BZ#974)
|
|
|
|
- add ellipsis to clone prototype (#161593)
|
|
|
|
- fix glibc-profile (#162601)
|
|
|
|
- nss_compat fixes
|
|
|
|
- use sysdeps/generic version of <bits/stdio-lock.h> in installed
|
|
|
|
headers instead of NPTL version (#162634)
|
|
|
|
|
2005-06-27 14:02:02 +00:00
|
|
|
* Mon Jun 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-1
|
|
|
|
- update from CVS
|
|
|
|
- stack protector support
|
|
|
|
- fix xdr_{,u_}{longlong_t,hyper} on 64-bit arches (#161583)
|
|
|
|
- enable @GLIBC_2.4 symbols
|
|
|
|
- remove linuxthreads
|
|
|
|
|
2005-06-20 17:17:29 +00:00
|
|
|
* Mon Jun 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-11
|
|
|
|
- update from CVS
|
|
|
|
- PPC32 -msecure-plt support
|
|
|
|
- support classes keyword in /etc/hesiod.conf (#150350)
|
|
|
|
- add RLIMIT_NICE and RLIMIT_RTPRIO to <sys/resources.h> (#157049)
|
|
|
|
- decrease number of .plt relocations in libc.so
|
|
|
|
- use -laudit in nscd (#159217)
|
|
|
|
- handle big amounts of networking interfaces in getifaddrs/if_nameindex
|
|
|
|
(#159399)
|
|
|
|
- fix pa_IN locale's am_pm (#158715, BZ#622)
|
|
|
|
- fix debugging of PIEs
|
|
|
|
|
2005-05-30 10:02:23 +00:00
|
|
|
* Mon May 30 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-10
|
|
|
|
- fix LD_ASSUME_KERNEL (since 2.3.5-8 GLRO(dl_osversion)
|
|
|
|
has been always overwritten with the version of currently
|
|
|
|
running kernel)
|
|
|
|
- remove linuxthreads man pages other than those covered in
|
|
|
|
3p section, as 3p man pages are far better quality and describe
|
|
|
|
POSIX behaviour that NPTL implements (#159084)
|
|
|
|
|
2005-05-24 16:58:02 +00:00
|
|
|
* Tue May 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-9
|
|
|
|
- update from CVS
|
|
|
|
- increase bindresvport's LOWPORT to 512, apparently some
|
|
|
|
broken daemons don't think 0 .. 511 ports are reserved
|
|
|
|
|
2005-05-23 15:24:21 +00:00
|
|
|
* Mon May 23 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-8
|
|
|
|
- update from CVS
|
|
|
|
- fix kernel version check in ld.so
|
|
|
|
- fix sendfile{,64} prototypes (BZ#961)
|
2005-05-23 18:09:03 +00:00
|
|
|
- try more ports in bindresvport if all 600..1023 are
|
|
|
|
used, don't use priviledged ports when talking to portmap
|
|
|
|
(#141773)
|
2005-05-23 15:24:21 +00:00
|
|
|
|
2005-05-20 10:32:46 +00:00
|
|
|
* Fri May 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-7
|
|
|
|
- update from CVS
|
|
|
|
- make regexec thread safe (BZ#934)
|
|
|
|
- fix statically linked programs on i?86, x86_64, s390* and
|
|
|
|
sparc* (#158027)
|
|
|
|
- fix IBM939 iconv module (BZ#955)
|
|
|
|
|
2005-05-04 18:53:32 +00:00
|
|
|
* Wed May 4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-6
|
|
|
|
- update from CVS
|
|
|
|
- fix cancellation on i?86
|
|
|
|
- add call frame information to i?86 assembly
|
|
|
|
|
2005-05-03 10:14:26 +00:00
|
|
|
* Tue May 3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-5
|
|
|
|
- update from CVS
|
|
|
|
- add some more UTF-8 locales (#156115)
|
|
|
|
- clean up /lib64/tls instead of /lib/tls on x86-64, s390x and
|
|
|
|
ppc64 in glibc_post_upgrade (#156656)
|
|
|
|
- fix posix_fallocate{,64} (#156289)
|
|
|
|
|
2005-04-28 09:50:59 +00:00
|
|
|
* Thu Apr 28 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-4
|
|
|
|
- update from CVS
|
|
|
|
- fix nscd cache pruning (#150748)
|
|
|
|
|
2005-04-27 20:09:52 +00:00
|
|
|
* Wed Apr 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-3
|
|
|
|
- update from CVS
|
|
|
|
- fix linuxthreads clocks
|
|
|
|
- put xen libs into the glibc-2*.i686 package instead of a separate one
|
|
|
|
- fix librt.so symlink in linuxthreads-devel
|
2010-07-02 12:42:07 +00:00
|
|
|
- do not include linuxthreads-devel on %%{auxarches},
|
2005-04-27 20:09:52 +00:00
|
|
|
just on the base architectures
|
|
|
|
|
2005-04-27 12:26:45 +00:00
|
|
|
* Wed Apr 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-2
|
|
|
|
- update from CVS
|
|
|
|
- with MALLOC_CHECK_=N N>0 (#153003)
|
|
|
|
- fix recursive dlclose (#154641)
|
2010-07-02 12:42:07 +00:00
|
|
|
- handle %%z in strptime (#154804)
|
|
|
|
- automatically append /%%{_lib}/obsolete/linuxthreads/
|
2005-04-27 12:26:45 +00:00
|
|
|
to standard library search path if LD_ASSUME_KERNEL=N N <= 2.4.19
|
|
|
|
or for glibc 2.0 binaries (or broken ones that don't use errno/h_errno
|
|
|
|
properly). Warning: all those will stop working when LinuxThreads
|
|
|
|
is finally nuked, which is not very far away
|
|
|
|
- remove nonnull attribute from acct prototype (BZ#877)
|
|
|
|
- kernel CPU clocks support
|
|
|
|
- fix *scanf in locales with multi-byte decimal point
|
|
|
|
|
|
|
|
* Wed Apr 27 2005 Roland McGrath <roland@redhat.com>
|
|
|
|
- glibc-xen subpackage for i686
|
|
|
|
|
2005-04-15 09:58:24 +00:00
|
|
|
* Fri Apr 15 2005 Roland McGrath <roland@redhat.com> 2.3.5-1
|
|
|
|
- update from CVS
|
|
|
|
- fix execvp regression (BZ#851)
|
|
|
|
- ia64 libm updates
|
|
|
|
- sparc updates
|
2005-04-27 12:26:45 +00:00
|
|
|
- fix initstate{,_r}/strfry (#154504)
|
2005-04-15 09:58:24 +00:00
|
|
|
- grok PT_NOTE in vDSO for kernel version and extra hwcap dirs,
|
|
|
|
support "hwcap" keyword in ld.so.conf files
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Tue Apr 5 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-21
|
2005-04-05 22:14:00 +00:00
|
|
|
- update from CVS
|
|
|
|
- fix xdr_rmtcall_args on 64-bit arches (#151686)
|
|
|
|
- fix <pthread.h> and <bits/libc-lock.h> with -std=c89 -fexceptions (#153774)
|
|
|
|
|
2005-04-04 19:51:39 +00:00
|
|
|
* Mon Apr 4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-20
|
2010-07-02 12:42:07 +00:00
|
|
|
- move LinuxThreads libraries to /%%{_lib}/obsolete/linuxthreads/
|
|
|
|
and NPTL libraries to /%%{_lib}. To run a program against LinuxThreads,
|
|
|
|
LD_ASSUME_KERNEL=2.4.xx LD_LIBRARY_PATH=/%%{_lib}/obsolete/linuxthreads/
|
2005-04-04 19:51:39 +00:00
|
|
|
is now needed
|
|
|
|
- bzip2 ChangeLog* files instead of gzipping them
|
|
|
|
|
2005-04-02 11:13:35 +00:00
|
|
|
* Sat Apr 2 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-19
|
2005-04-01 16:55:01 +00:00
|
|
|
- update from CVS
|
|
|
|
- fix nextafterl and several other libm routines on ia64
|
|
|
|
- fix initgroups (BZ#661)
|
|
|
|
- kill nptl-devel subpackage, add linuxthreads-devel,
|
|
|
|
compile and link by default against NPTL and only with
|
2010-07-02 12:42:07 +00:00
|
|
|
-I/usr/include/linuxthreads -L/usr/%%{_lib}/linuxthreads
|
2005-04-01 16:55:01 +00:00
|
|
|
against LinuxThreads
|
2010-07-02 12:42:07 +00:00
|
|
|
- package /usr/lib/debug/%%{_lib}/tls/i{5,6}86 symlinks in
|
2005-04-01 16:55:01 +00:00
|
|
|
i386 glibc-debuginfo
|
2005-04-02 11:17:47 +00:00
|
|
|
- limit number of ChangeLog* files in glibc-common %%doc
|
|
|
|
to last 2.5 years of changes only to save space
|
2005-04-01 16:55:01 +00:00
|
|
|
|
2005-03-25 12:20:11 +00:00
|
|
|
* Fri Mar 25 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-18
|
|
|
|
- fix build on 64-bit arches with new GCC
|
|
|
|
|
2005-03-24 09:08:31 +00:00
|
|
|
* Thu Mar 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-17
|
|
|
|
- update from CVS
|
|
|
|
- fix LD_AUDIT in LinuxThreads ld.so
|
|
|
|
- fix calloc with M_PERTURB
|
|
|
|
- fix error handling in pthread_create with PTHREAD_EXPLICIT_SCHED
|
|
|
|
on ppc*/ia64/alpha/mips (BZ#801)
|
|
|
|
- fix a typo in WINDOWS-31J charmap (#151739)
|
|
|
|
- fix NIS ypprot_err (#151469)
|
|
|
|
|
2005-03-20 07:06:13 +00:00
|
|
|
* Sun Mar 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-16
|
|
|
|
- fix pread with -D_FILE_OFFSET_BITS=64 (#151573)
|
|
|
|
|
2005-03-19 22:00:27 +00:00
|
|
|
* Sat Mar 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-15
|
|
|
|
- update from CVS
|
|
|
|
- better fix for the dlclose bug (#145810, #150414)
|
|
|
|
- fix regex crash on case insensitive search in zh_CN locale
|
|
|
|
(#151215)
|
|
|
|
- fix malloc_trim (BZ#779)
|
|
|
|
- with -D_FORTIFY_SOURCE=*, avoid defining read and a bunch of others
|
|
|
|
as function-like macros, there are too many broken programs
|
|
|
|
out there
|
2010-07-02 12:42:07 +00:00
|
|
|
- add %%dir %%{_prefix}/%%{_lib}/gconv to glibc's file list (#151372)
|
2005-03-19 22:00:27 +00:00
|
|
|
|
2005-03-06 23:47:00 +00:00
|
|
|
* Sun Mar 6 2005 Roland McGrath <roland@redhat.com> 2.3.4-14
|
2005-03-06 21:04:43 +00:00
|
|
|
- fix bits/socket2.h macro typos
|
|
|
|
|
2005-03-05 14:14:54 +00:00
|
|
|
* Sat Mar 5 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-12
|
|
|
|
- fix tst-chk{2,3}
|
2010-07-02 12:42:07 +00:00
|
|
|
- fix up AS_NEEDED directive in /usr/%%{_lib}/libc.so
|
2005-03-05 14:14:54 +00:00
|
|
|
- BuildReq binutils >= 2.15.94.0.2-1 for AS_NEEDED, in
|
|
|
|
glibc-devel Conflict with binutils < 2.15.94.0.2-1
|
|
|
|
|
2005-03-04 00:18:49 +00:00
|
|
|
* Thu Mar 3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-11
|
|
|
|
- update from CVS
|
|
|
|
- fix execvp (#149290)
|
|
|
|
- fix dlclose (#145810)
|
|
|
|
- clear padding in gconv-modules.cache (#146614, BZ#776)
|
|
|
|
- rebuilt with GCC4
|
|
|
|
- changed __GLIBC_MINOR__ for now back to 3
|
|
|
|
- back out the newly added GLIBC_2.4 *_chk routines, instead
|
|
|
|
do the checking in macros
|
|
|
|
|
2005-02-12 11:01:55 +00:00
|
|
|
* Sat Feb 12 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-10
|
|
|
|
- hopefully fix interaction with prelink (#147655)
|
|
|
|
|
2005-02-11 11:29:59 +00:00
|
|
|
* Fri Feb 11 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-9
|
|
|
|
- update from CVS
|
|
|
|
- bi-arch <gnu/stubs.h> (BZ#715)
|
|
|
|
|
2005-02-11 10:07:12 +00:00
|
|
|
* Fri Feb 11 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-8
|
|
|
|
- update from CVS
|
|
|
|
- bi-arch <gnu/lib-names.h> (BZ#632)
|
|
|
|
- fix libdl on s390 and maybe other platforms
|
|
|
|
- fix initstate{,_r} (BZ#710)
|
|
|
|
- fix <gnu/stubs.h> generation (BZ#157)
|
|
|
|
- define CMSPAR in bits/termios.h (#147533)
|
|
|
|
|
2005-02-08 23:09:41 +00:00
|
|
|
* Tue Feb 8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-7
|
|
|
|
- update from CVS
|
|
|
|
- fix TLS handling in linuxthreads
|
|
|
|
|
2005-02-08 10:49:20 +00:00
|
|
|
* Tue Feb 8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-6
|
|
|
|
- update from CVS
|
|
|
|
- ld.so auditing
|
|
|
|
- fix segfault if chrooted app attempts to dlopen a library
|
|
|
|
and no standard library directory exists at all (#147067, #144303)
|
|
|
|
- fix initgroups when nscd is running, but has group caching disabled
|
|
|
|
(#146588)
|
|
|
|
- fix pthread_key_{create,destroy} in LinuxThreads when pthread_create
|
|
|
|
has not been called yet (#146710)
|
|
|
|
- fix ppc64 swapcontext and setcontext (#146736, BZ#700)
|
|
|
|
- service nscd cosmetic fixes (#146776)
|
|
|
|
- fix IA-32 and x86-64 stack alignment in DSO constructors (#145689)
|
|
|
|
- fix zdump -v segfaults on x86-64 (#146210)
|
|
|
|
- avoid calling sigaction (SIGPIPE, ...) inside syslog (#146021, IT#56686)
|
|
|
|
- fix errno values for futimes (BZ#633)
|
|
|
|
- unconditionally include <features.h> in malloc.h (BZ#650)
|
|
|
|
- change regex \B handling to match old GNU regex as well as perl/grep's dfa
|
|
|
|
(from empty string inside of word to empty string not at a word boundary,
|
|
|
|
BZ#693)
|
2010-07-02 12:42:07 +00:00
|
|
|
- slightly optimize i686 TLS accesses, use direct TLS %%gs access in sem_*
|
2005-02-08 10:49:20 +00:00
|
|
|
and allow building -mno-tls-direct-seg-refs glibc that is free of direct TLS
|
2010-07-02 12:42:07 +00:00
|
|
|
%%gs access with negative offsets
|
2005-02-08 10:49:20 +00:00
|
|
|
- fix addseverity
|
|
|
|
- fix fmemopen
|
|
|
|
- fix rewinddir
|
|
|
|
- increase svc{tcp,unix}_create listen backlog
|
|
|
|
|
2005-01-06 22:47:44 +00:00
|
|
|
* Thu Jan 6 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-5
|
|
|
|
- update from CVS
|
|
|
|
- add some warn_unused_result marking
|
|
|
|
- make ftruncate available even for just -D_POSIX_C_SOURCE=200112L
|
|
|
|
(BZ#640)
|
|
|
|
|
2005-01-06 15:47:36 +00:00
|
|
|
* Thu Jan 6 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-4
|
|
|
|
- update from CVS
|
|
|
|
- fix IA-32 stack alignment for LinuxThreads thread functions
|
2005-02-08 10:49:20 +00:00
|
|
|
and functions passed to clone(2) directly
|
2005-01-06 15:47:36 +00:00
|
|
|
- fix ecvt{,_r} on denormals (#143279)
|
|
|
|
- fix __tls_get_addr typo
|
|
|
|
- fix rounding in IA-64 alarm (#143710)
|
|
|
|
- don't reinitialize __environ in __libc_start_main, so that
|
|
|
|
effects of setenv/putenv done in DSO initializers are preserved
|
|
|
|
(#144037, IT#57403)
|
|
|
|
- fix fmemopen
|
|
|
|
- fix vDSO l_map_end and l_text_end values
|
|
|
|
- IA64 libm update (#142494)
|
|
|
|
- fix ppc rint/ceil etc. (BZ#602)
|
|
|
|
|
2004-12-21 09:22:01 +00:00
|
|
|
* Tue Dec 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-3
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Mon Dec 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-2
|
|
|
|
- work around rpm bug some more, this time by copying
|
|
|
|
iconvconfig to iconvconfig.%%{_target_cpu}.
|
|
|
|
|
|
|
|
* Mon Dec 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-1
|
|
|
|
- update from CVS
|
|
|
|
- glibc 2.3.4 release
|
|
|
|
- add -o and --nostdlib options to iconvconfig
|
|
|
|
- if /sbin/ldconfig doesn't exist when running
|
|
|
|
glibc_post_upgrade.%%{_target_cpu}, just don't attempt to run it.
|
|
|
|
This can happen during first install of bi-arch glibc and the
|
2010-07-02 12:42:07 +00:00
|
|
|
other arch glibc's %%post wil run /sbin/ldconfig (#143326)
|
2004-12-21 09:22:01 +00:00
|
|
|
- use -o and --nostdlib options to create all needed
|
|
|
|
gconv-modules.cache files on bi-arch setups
|
|
|
|
|
2004-12-18 23:34:50 +00:00
|
|
|
* Sun Dec 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-99
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Sat Dec 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-98
|
|
|
|
- add .%%{_target_cpu} to glibc_post_upgrade, only run telinit u
|
|
|
|
if /sbin/init is the same ELF class and machine as
|
|
|
|
glibc_post_upgrade.%%{_target_cpu} and similarly with
|
|
|
|
condrestarting sshd (#143046)
|
|
|
|
|
2004-12-17 11:36:40 +00:00
|
|
|
* Fri Dec 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-97
|
|
|
|
- update from CVS
|
|
|
|
- fix ppc64 getcontext and swapcontext (BZ#610)
|
|
|
|
- sparc/sparc64 fixes
|
|
|
|
|
|
|
|
* Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-96
|
|
|
|
- update from CVS
|
|
|
|
- fix i686 __USE_STRING_INLINES strncat
|
|
|
|
- make sure ppc/ppc64 maintain correct stack alignment
|
|
|
|
across clone
|
|
|
|
|
|
|
|
* Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-95
|
|
|
|
- export nis_domain_of_r from libnsl.so again which was
|
|
|
|
unintentionally lost
|
|
|
|
|
2004-12-15 11:45:56 +00:00
|
|
|
* Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-93
|
|
|
|
- update from CVS
|
|
|
|
- ppc/ppc64 clone without CLONE_THREAD getpid () adjustement
|
|
|
|
- fix MALLOC_CHECK_={1,2,3} for non-contiguous main arena
|
|
|
|
(BZ#457)
|
|
|
|
- fix sysconf (_POSIX_V6_*) for other ABI environments in
|
|
|
|
bi-arch setups
|
|
|
|
- s390/s390x clone without CLONE_THREAD getpid () adjustement
|
|
|
|
|
2004-12-14 12:01:31 +00:00
|
|
|
* Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-92
|
|
|
|
- update from CVS
|
2010-07-02 12:42:07 +00:00
|
|
|
- fix %%{_prefix}/libexec/getconf filenames generation
|
2004-12-14 12:01:31 +00:00
|
|
|
|
2004-12-14 00:07:47 +00:00
|
|
|
* Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-91
|
|
|
|
- update from CVS
|
|
|
|
- double buffer size in getXXbyYY or getXXent on ERANGE
|
|
|
|
instead of adding BUFLEN (#142617)
|
|
|
|
- avoid busy loop in malloc if another thread is doing fork
|
|
|
|
(#142214)
|
|
|
|
- some more realloc corruption checks
|
|
|
|
- fix getconf _POSIX_V6_WIDTH_RESTRICTED_ENVS output,
|
2010-07-02 12:42:07 +00:00
|
|
|
tweak %%{_prefix}/libexec/getconf/ filenames
|
2004-12-14 00:07:47 +00:00
|
|
|
|
|
|
|
* Fri Dec 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-90
|
2004-12-10 07:02:45 +00:00
|
|
|
- update from CVS
|
|
|
|
- regex speedups
|
|
|
|
- use | cat in ldd if running under bash3+ to allow running
|
|
|
|
it on binaries that are not through SELinux allowed to access
|
|
|
|
console or tty
|
|
|
|
- add __NR_waitid defines for alpha and ia64
|
|
|
|
|
2004-12-08 11:39:39 +00:00
|
|
|
* Wed Dec 8 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-89
|
|
|
|
- update from CVS
|
|
|
|
- fix clone2 on ia64
|
|
|
|
- avoid tst-timer5 failing with linuxthreads implementation
|
|
|
|
- if __libc_enable_secure, disallow mode != normal
|
|
|
|
- change ldd script to imply -r when -u is used, properly
|
|
|
|
propagate return value and handle suid binaries
|
|
|
|
|
2004-12-07 15:19:04 +00:00
|
|
|
* Tue Dec 7 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-88
|
|
|
|
- update from CVS
|
|
|
|
- disregard LD_SHOW_AUXV and LD_DYNAMIC_WEAK if __libc_enable_secure
|
|
|
|
- disregard LD_DEBUG if __libc_enable_secure in normal mode
|
|
|
|
if /suid-debug doesn't exist
|
|
|
|
- fix fseekpos after ungetc
|
|
|
|
- avoid reading bytes before start of buffers in regex's
|
|
|
|
check_dst_limits_calc_pos_1 (#142060)
|
|
|
|
- make getpid () working with clone/clone2 without CLONE_THREAD
|
|
|
|
(so far on i386/x86_64/ia64 only)
|
2010-07-02 12:42:07 +00:00
|
|
|
- move %%{_prefix}/libexec/getconf/* to glibc from glibc-common
|
|
|
|
- make %%{_prefix}/libexec/getconf directory owned by glibc package
|
2004-12-07 15:19:04 +00:00
|
|
|
|
2004-12-03 12:38:56 +00:00
|
|
|
* Fri Dec 3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-87
|
|
|
|
- update from CVS
|
|
|
|
- build libpthread_nonshared.a objects with -fPIC on s390/s390x
|
|
|
|
- fix mktime with < 0 or > 59 tm_sec on entry
|
|
|
|
- remove nonnull attribute for realpath
|
|
|
|
- add $(make-target-directory) for errlist-compat.c rule
|
|
|
|
(hopefully fix #141404)
|
|
|
|
- add testcase for ungetc bug
|
|
|
|
- define _POSIX_{,THREAD_}CPUTIME to 0 on all Linux arches
|
|
|
|
|
|
|
|
* Tue Nov 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-86
|
|
|
|
- update from CVS
|
|
|
|
- some posix_opt.h fixes
|
|
|
|
- fix strtold use of unitialized memory (#141000)
|
|
|
|
- some more bugfixes for bugs detected by valgrind
|
|
|
|
- rebuilt with GCC >= 3.4.3-5 to avoid packed stack layout
|
|
|
|
on s390{,x} (#139678)
|
|
|
|
|
2004-11-26 14:08:00 +00:00
|
|
|
* Fri Nov 26 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-85
|
|
|
|
- update from CVS
|
|
|
|
- support -v specification in getconf
|
|
|
|
- fix sysconf (_SC_LFS64_CFLAGS) etc.
|
|
|
|
- avoid thread stack aliasing issues on EM64T (#140803)
|
2010-07-02 12:42:07 +00:00
|
|
|
- move %%{_prefix}/include/nptl headers from nptl-devel
|
2004-11-26 14:08:00 +00:00
|
|
|
to glibc-headers, so that even NPTL specific programs
|
|
|
|
can be built bi-arch without problems
|
|
|
|
|
2004-11-24 08:45:39 +00:00
|
|
|
* Wed Nov 24 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-84
|
|
|
|
- update from CVS
|
|
|
|
- fix memory leak in getaddrinfo if using nscd (#139559)
|
|
|
|
- handle large lines in /etc/hosts and /etc/networks
|
|
|
|
(#140378)
|
|
|
|
- add nonnull attributes to selected dirent.h and dlfcn.h
|
|
|
|
functions
|
|
|
|
|
|
|
|
* Sun Nov 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-83
|
|
|
|
- update from CVS
|
|
|
|
- add deprecated and/or nonnull attribute to some signal.h
|
|
|
|
functions
|
|
|
|
- speed up tzset () by only using stat instead of open/fstat
|
|
|
|
when calling tzset for the second and following time if
|
|
|
|
/etc/localtime has not changed
|
|
|
|
- fix tgamma (BZ #552)
|
|
|
|
|
2004-11-20 10:12:53 +00:00
|
|
|
* Sat Nov 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-82
|
|
|
|
- update from CVS
|
|
|
|
- some malloc () checking
|
|
|
|
- libpthread.a object dependency cleanups (#115157)
|
|
|
|
- <bits/socket.h> fix for -std=c89 -pedantic-errors (#140132)
|
|
|
|
|
2004-11-19 06:46:12 +00:00
|
|
|
* Fri Nov 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-81
|
|
|
|
- don't use chunksize in <= 2 * SIZE_SZ free () checks
|
|
|
|
|
2004-11-19 00:41:25 +00:00
|
|
|
* Fri Nov 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-80
|
|
|
|
- update from CVS
|
2010-07-02 12:42:07 +00:00
|
|
|
- with -D_FORTIFY_SOURCE=2, prevent missing %%N$ formats
|
|
|
|
- for -D_FORTIFY_SOURCE=2 and %%n in writable format string,
|
2004-11-19 00:41:25 +00:00
|
|
|
issue special error message instead of using the buffer overflow
|
|
|
|
detected one
|
|
|
|
- speedup regex searching with REG_NOSUB, add RE_NO_SUB,
|
|
|
|
speedup searching with nested subexps (BZ #544)
|
|
|
|
- block SIGCANCEL in NPTL timer_* helper thread
|
|
|
|
- further free () checking
|
|
|
|
|
2004-11-16 10:39:21 +00:00
|
|
|
* Tue Nov 16 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-79
|
|
|
|
- update from CVS
|
|
|
|
- fix free () checking
|
|
|
|
- move /etc/default/nss into glibc-common (hopefully fix #132392)
|
|
|
|
|
2004-11-15 10:37:39 +00:00
|
|
|
* Mon Nov 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-78
|
|
|
|
- update from CVS
|
|
|
|
- fix LD_DEBUG=statistics
|
|
|
|
- issue error message before aborting in __chk_fail ()
|
2004-11-16 10:39:21 +00:00
|
|
|
- some more free () checking
|
2004-11-15 10:37:39 +00:00
|
|
|
|
2004-11-12 18:11:26 +00:00
|
|
|
* Fri Nov 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-77
|
|
|
|
- update from CVS
|
|
|
|
- speedup regex on palindromes (BZ #429)
|
|
|
|
- fix NPTL set{,e,re,res}[ug]id, so that even if making process
|
|
|
|
less priviledged all threads change their credentials successfully
|
|
|
|
|
2004-11-10 10:13:44 +00:00
|
|
|
* Wed Nov 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-76
|
|
|
|
- update from CVS
|
|
|
|
- fix regcomp crash (#138439)
|
|
|
|
- fix ftell{,o,o64} (#137885)
|
|
|
|
- robustification of nscd to cope with corrupt databases (#137140)
|
|
|
|
- fix NPTL with pthread_exit immediately after pthread_create (BZ #530)
|
|
|
|
- some regex optimizations
|
|
|
|
|
2004-11-02 14:03:10 +00:00
|
|
|
* Tue Nov 2 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-75
|
|
|
|
- update from CVS
|
2004-11-10 10:13:44 +00:00
|
|
|
- mktime cleanups (BZ #487, #473)
|
2004-11-02 14:03:10 +00:00
|
|
|
- unique comments in free(3) check error messages
|
|
|
|
- adjust some x86_64 headers for -m32 (#129712)
|
|
|
|
- object size checking support even with GCC-3.4.2-RH >= 3.4.2-8
|
|
|
|
|
|
|
|
* Wed Oct 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-74
|
|
|
|
- fix <netinet/udp.h> header
|
|
|
|
- fix globfree (#137176)
|
|
|
|
- fix exiting if there are dlmopened libraries in namespaces
|
|
|
|
other than main one not closed yet
|
|
|
|
- export again _res_opcodes and __p_{class,type}_syms from
|
|
|
|
libresolv.so that were lost in -69
|
|
|
|
|
2004-10-21 11:56:17 +00:00
|
|
|
* Thu Oct 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-73
|
|
|
|
- remove setaltroot and key{_add,_request,ctl} also from Versions
|
|
|
|
- back out _sys_errlist changes
|
|
|
|
|
2004-10-21 08:49:09 +00:00
|
|
|
* Thu Oct 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-72
|
|
|
|
- back out setaltroot and key{_add,_request,ctl} addition
|
|
|
|
- fix severe x86-64 symbol versioning regressions that breaks
|
|
|
|
e.g. java binaries
|
|
|
|
|
2004-10-20 11:45:54 +00:00
|
|
|
* Wed Oct 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-71
|
|
|
|
- update from CVS
|
|
|
|
- fix minor catchsegv temp file handling vulnerability
|
|
|
|
(CAN-2004-0968, #136319)
|
|
|
|
- add 4 new errno codes
|
|
|
|
- setaltroot, key{_add,_request,ctl} syscalls on some arches
|
|
|
|
- export _dl_debug_state@GLIBC_PRIVATE from ld.so again for
|
|
|
|
gdb purpose
|
|
|
|
- use inet_pton to decide what is address and what is hostname
|
|
|
|
in getent (#135422)
|
|
|
|
- change dladdr/dladdr1, so that dli_saddr is the same kind
|
|
|
|
of value as dlsym/dlvsym return (makes difference on ia64/hppa only)
|
|
|
|
- fix catchsegv script so that it works with both 32-bit and 64-bit
|
|
|
|
programs on multi-arch platforms
|
|
|
|
|
2004-10-18 23:44:24 +00:00
|
|
|
* Tue Oct 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-70
|
|
|
|
- update from CVS
|
|
|
|
- require newer selinux-policy (#135978)
|
|
|
|
- add %%dir for /var/run/nscd and /var/db/nscd and %%ghost
|
|
|
|
files in it
|
|
|
|
- conflict with gcc4 4.0.0-0.6 and earlier (needs __builtin_object_size)
|
|
|
|
|
2004-10-18 12:35:19 +00:00
|
|
|
* Mon Oct 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-69
|
|
|
|
- update from CVS
|
|
|
|
- object size checking support (-D_FORTIFY_SOURCE={1,2})
|
|
|
|
|
2004-10-14 06:14:09 +00:00
|
|
|
* Thu Oct 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-68
|
|
|
|
- update from CVS
|
|
|
|
- support for namespaces in the dynamic linker
|
|
|
|
- fix dlclose (BZ #77)
|
|
|
|
- libSegFault.so uses now backtrace() to work on IA-64, x86-64
|
|
|
|
and s390 (#130254)
|
|
|
|
|
2004-10-12 12:23:57 +00:00
|
|
|
* Tue Oct 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-67
|
|
|
|
- update from CVS
|
|
|
|
- use non-blocking sockets in resolver (#135234)
|
|
|
|
- reset pd->res options on thread exit, so that threads
|
|
|
|
reusing cached stacks get resolver state properly initialized
|
|
|
|
(BZ #434)
|
|
|
|
|
2004-10-06 09:51:52 +00:00
|
|
|
* Wed Oct 6 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-66
|
|
|
|
- update from CVS
|
|
|
|
- avoid using perl in the spec file, buildrequire sed >= 3.95
|
|
|
|
(#127671)
|
|
|
|
- export TIMEOUTFACTOR=16
|
|
|
|
- fix _JMPBUF_CFA_UNWINDS_ADJ on s390{,x}
|
|
|
|
|
2004-10-05 09:19:10 +00:00
|
|
|
* Tue Oct 5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-65
|
|
|
|
- update from CVS
|
|
|
|
- define _POSIX_THREAD_PROCESS_SHARED and _POSIX_CLOCK_SELECTION
|
|
|
|
to -1 in LinuxThreads
|
|
|
|
- define _POSIX_CPUTIME and _POSIX_THREAD_CPUTIME to 0
|
|
|
|
on i?86/ia64 and make sure sysconf (_SC_{,THREAD_}CPUTIME)
|
|
|
|
returns correct value
|
|
|
|
- if _POSIX_CLOCK_SELECTION == -1 in nscd, still try
|
|
|
|
sysconf (_SC_CLOCK_SELECTION) and if it returns true,
|
|
|
|
dlopen libpthread.so and dlsym pthread_condattr_setclock
|
|
|
|
- build nscd with -z relro and -z now
|
|
|
|
|
2004-10-04 09:35:40 +00:00
|
|
|
* Mon Oct 4 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-64
|
|
|
|
- update from CVS
|
|
|
|
- stop using __builtin_expect in assert and assert_perror
|
|
|
|
(#127606)
|
|
|
|
- try to avoid too much VA fragmentation with malloc
|
|
|
|
on flexmap layout (#118574)
|
|
|
|
- nscd robustification
|
|
|
|
- change valloc to use debugging hooks (#134385)
|
|
|
|
- make glibc_post_upgrade more verbose on errors (Fergal Daly,
|
|
|
|
#125700)
|
|
|
|
|
|
|
|
* Fri Oct 1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-63
|
2004-10-01 21:54:12 +00:00
|
|
|
- update from CVS
|
|
|
|
- fix __nscd_getgrouplist
|
|
|
|
- fix a typo in x86_64 pthread_mutex_timedwait fix
|
|
|
|
|
2004-10-01 12:06:34 +00:00
|
|
|
* Fri Oct 1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-62
|
|
|
|
- update from CVS
|
|
|
|
- fix NPTL pthread_mutex_timedwait on i386/x86_64 (BZ #417)
|
|
|
|
|
2004-09-30 09:26:07 +00:00
|
|
|
* Thu Sep 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-61
|
|
|
|
- update from CVS
|
|
|
|
- some nscd fixes (#134193)
|
|
|
|
- cache initgroups in nscd (#132850)
|
|
|
|
- reread /etc/localtime in tzset () even if just mtime changed
|
|
|
|
(#133481)
|
|
|
|
- fix glob (#126460)
|
|
|
|
- another get_myaddress fix
|
|
|
|
|
2004-09-29 09:50:33 +00:00
|
|
|
* Wed Sep 29 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-60
|
|
|
|
- update from CVS
|
|
|
|
- fix get_myaddress (#133982)
|
|
|
|
- remove nonnull attribute from second utime argument (#133866)
|
|
|
|
- handle SIGSETXID the same way as SIGCANCEL in
|
|
|
|
sigaction/pthread_kill/sigwait/sigwaitinfo etc.
|
|
|
|
- add __extension__ to long long types in NPTL <bits/pthreadtypes.h>
|
|
|
|
|
2004-09-27 06:37:42 +00:00
|
|
|
* Mon Sep 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-59
|
|
|
|
- update from CVS
|
|
|
|
- fix BZ #151, #362, #381, #407
|
|
|
|
- fdim fix for +inf/+inf (BZ #376)
|
2005-02-11 11:29:59 +00:00
|
|
|
|
2004-09-26 08:58:16 +00:00
|
|
|
* Sun Sep 26 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-58
|
|
|
|
- update from CVS
|
|
|
|
- vasprintf fix (BZ #346)
|
|
|
|
- gettext locking (BZ #322)
|
|
|
|
- change linuxthreads useldt.h inclusion login again, the last
|
|
|
|
one failed all linuxthreads FLOATING_STACKS tests
|
|
|
|
|
2004-09-25 08:23:12 +00:00
|
|
|
* Sat Sep 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-57
|
|
|
|
- update from CVS
|
|
|
|
- fix setuid in LD_ASSUME_KERNEL=2.2.5 libc (#133558)
|
|
|
|
- fix nis locking (#132204)
|
|
|
|
- RTLD_DEEPBIND support
|
|
|
|
- fix pthread_create bugs (BZ #401, #405)
|
|
|
|
|
|
|
|
* Wed Sep 22 2004 Roland McGrath <roland@redhat.com> 2.3.3-56
|
|
|
|
- migrated CVS to fedora-branch in sources.redhat.com glibc repository
|
|
|
|
- source tarballs renamed
|
|
|
|
- redhat/ moved to fedora/, some old cruft removed
|
|
|
|
- update from trunk
|
|
|
|
- some __nonnull annotations
|
|
|
|
|
2004-09-22 06:44:09 +00:00
|
|
|
* Wed Sep 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-55
|
|
|
|
- update from CVS
|
|
|
|
- set{re,e,res}[ug]id now affect the whole process in NPTL
|
|
|
|
- return EAGAIN instead of ENOMEM when not enough memory
|
|
|
|
in pthread_create
|
|
|
|
|
2004-09-17 06:41:05 +00:00
|
|
|
* Fri Sep 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-54
|
|
|
|
- update from CVS
|
|
|
|
- nscd getaddrinfo caching
|
|
|
|
|
2004-09-14 14:31:42 +00:00
|
|
|
* Tue Sep 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-53
|
|
|
|
- restore temporarily old definition of __P()/__PMT()
|
|
|
|
for third party apps
|
|
|
|
|
2004-09-14 13:41:56 +00:00
|
|
|
* Tue Sep 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-52
|
|
|
|
- update from CVS
|
|
|
|
- nscd bi-arch fix
|
2004-09-14 14:31:42 +00:00
|
|
|
- remove all uses of __P()/__PMT() from glibc headers
|
2004-09-14 13:41:56 +00:00
|
|
|
- update and reenable nscd SELinux patch
|
|
|
|
- remove libnss1* and libnss*.so.1 compatibility NSS modules
|
|
|
|
on IA-32, SPARC and Alpha
|
|
|
|
|
2004-09-10 21:13:22 +00:00
|
|
|
* Fri Sep 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-51
|
|
|
|
- update from CVS
|
|
|
|
- disable one of the malloc double free checks for non-contiguous
|
|
|
|
arenas where it doesn't have to be true even for non-broken
|
|
|
|
apps
|
|
|
|
|
2004-09-10 10:22:16 +00:00
|
|
|
* Thu Sep 9 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-50
|
|
|
|
- update from CVS
|
|
|
|
- pwd/grp/host loops with nscd speed up by sharing the
|
|
|
|
nscd cache r/o with applications
|
|
|
|
- inexpensive double free check in free(3)
|
|
|
|
- make NPTL pthread.h initializers usable even from C++
|
|
|
|
(BZ #375)
|
|
|
|
- use atomic instructions even in i386 nscd on i486+ CPUs
|
|
|
|
(conditionally)
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Fri Sep 3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-49
|
2004-09-09 05:54:44 +00:00
|
|
|
- update from CVS
|
|
|
|
- fix linuxthreads tst-cancel{[45],-static}
|
|
|
|
|
|
|
|
* Fri Sep 3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-48
|
|
|
|
- update from CVS
|
|
|
|
- fix pthread_cond_destroy (BZ #342)
|
|
|
|
- fix fnmatch without FNM_NOESCAPE (BZ #361)
|
|
|
|
- fix ppc32 setcontext (BZ #357)
|
|
|
|
- add NPTL support for i386 glibc (only if run on i486 or higher CPU)
|
|
|
|
- add __NR_waitid defines for i386, x86_64 and sparc*
|
|
|
|
|
2004-09-09 05:53:08 +00:00
|
|
|
* Tue Aug 31 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-47
|
|
|
|
- update from CVS
|
|
|
|
- persistent nscd caching
|
|
|
|
- ppc64 32-bit atomicity fix
|
|
|
|
- fix x86-64 nptl-devel headers for -m32 compilation
|
|
|
|
- %%ghost /etc/ld.so.cache (#130597)
|
|
|
|
- edit /etc/ld.so.conf in glibc_post_upgrade if
|
|
|
|
include ld.so.conf.d/*.conf line is missing (#120588)
|
|
|
|
- ugly hacks for the IA-64 /emul braindamage (#124996, #128267)
|
|
|
|
|
2004-09-09 05:52:58 +00:00
|
|
|
* Sat Aug 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-46
|
|
|
|
- update from CVS
|
|
|
|
|
2004-09-09 05:52:48 +00:00
|
|
|
* Thu Aug 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-45
|
|
|
|
- update from CVS
|
|
|
|
- fix nss_compat's initgroups handling (#130363)
|
|
|
|
- fix getaddrinfo ai_canonname setting
|
|
|
|
|
|
|
|
* Thu Aug 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-44
|
|
|
|
- update from CVS
|
|
|
|
- add ip6-dotint resolv.conf option, make
|
|
|
|
no-ip6-dotint the default
|
|
|
|
- BuildPrereq libselinux-devel (#129946)
|
|
|
|
- on ppc64, build without dot symbols
|
|
|
|
|
2004-09-09 05:52:21 +00:00
|
|
|
* Thu Aug 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-43
|
|
|
|
- update from CVS
|
|
|
|
- remove debugging printout (#129747)
|
|
|
|
- make <sys/shm.h> usable in C++ (IT#45148)
|
|
|
|
- update RLIMIT_* constants in <bits/resource.h>, make
|
|
|
|
<sys/resource.h> POSIX compliant (#129740)
|
|
|
|
|
2004-09-09 05:52:01 +00:00
|
|
|
* Wed Aug 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-42
|
|
|
|
- fix last tzset () fixes, disable rereading of /etc/localtime
|
|
|
|
every time for now
|
|
|
|
- really enable SELinux support for NSCD
|
|
|
|
|
|
|
|
* Wed Aug 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-41
|
|
|
|
- update from CVS
|
|
|
|
- fread_unlocked/fwrite_unlocked macro fixes (BZ #309, #316)
|
|
|
|
- tzset () fixes (BZ #154)
|
|
|
|
- speed up pthread_rwlock_unlock on arches other than i386 and
|
|
|
|
x86_64 (#129455)
|
|
|
|
- fix compilation with -ansi (resp. -std=c89 or -std=c99) and
|
|
|
|
-D_XOPEN_SOURCE=[56]00 but no -D_POSIX_SOURCE* or -D_POSIX_C_SOURCE*
|
|
|
|
(BZ #284)
|
|
|
|
- add SELinux support for NSCD
|
|
|
|
|
|
|
|
* Fri Aug 6 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-40
|
|
|
|
- update from CVS
|
|
|
|
- change res_init to force all threads to re-initialize
|
|
|
|
resolver before they use it next time (#125712)
|
|
|
|
- various getaddrinfo and related fixes (BZ #295, #296)
|
|
|
|
- fix IBM{932,943} iconv modules (#128674)
|
|
|
|
- some nscd fixes (e.g. BZ #292)
|
|
|
|
- RFC 3678 support (Multicast Source Filters)
|
|
|
|
- handle /lib/i686/librtkaio-* in i386 glibc_post_upgrade
|
|
|
|
the same as /lib/i686/librt-*
|
|
|
|
|
2004-09-09 05:51:19 +00:00
|
|
|
* Fri Jul 23 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-39
|
|
|
|
- update from CVS
|
|
|
|
- conformance related changes in headers
|
|
|
|
- remove -finline-limit=2000 for GCC 3.4.x+
|
|
|
|
|
2004-09-09 05:51:13 +00:00
|
|
|
* Thu Jul 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-38
|
|
|
|
- update from CVS
|
|
|
|
- fix res_init leaks
|
|
|
|
- fix newlocale races
|
|
|
|
- fix ppc64 setjmp
|
|
|
|
- fix strtold (BZ #274)
|
|
|
|
|
2004-09-09 05:51:10 +00:00
|
|
|
* Fri Jul 16 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-37
|
|
|
|
- update from CVS
|
|
|
|
- allow pthread_cancel in DSO destructors run at exit time
|
|
|
|
- fix pow{f,,l} on IA-32 and powl on x86-64
|
|
|
|
- allow PIEs on IA-32 to have main in a shared library they depend on
|
|
|
|
|
2004-09-09 05:51:02 +00:00
|
|
|
* Mon Jul 5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-36
|
|
|
|
- s390* .plt slot reduction
|
|
|
|
- fix pthread_rwlock_timedrdlock on x86_64
|
|
|
|
|
|
|
|
* Wed Jun 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-35
|
|
|
|
- tweak spec file for the libpthread-0.61.so -> libpthread-2.3.3.so
|
|
|
|
NPTL changes
|
|
|
|
|
|
|
|
* Wed Jun 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-34
|
|
|
|
- update from CVS
|
|
|
|
- if_nameindex using preferably netlink
|
|
|
|
- printf_parsemb initialization fix
|
|
|
|
- NPTL version is now the same as glibc version
|
|
|
|
|
2004-09-09 05:50:18 +00:00
|
|
|
* Mon Jun 28 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-33
|
|
|
|
- update from CVS
|
|
|
|
- reread resolv.conf for nscd --invalidate=hosts
|
|
|
|
- fix F_GETLK/F_SETLK/F_SETLKW constants on x86_64 for
|
|
|
|
-m32 -D_FILE_OFFSET_BITS=64 compilations
|
|
|
|
- avoid calling non-existing fcntl64 syscall on ppc64
|
|
|
|
|
2004-09-09 05:50:07 +00:00
|
|
|
* Mon Jun 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-32
|
|
|
|
- update from CVS
|
|
|
|
- FUTEX_CMP_REQUEUE support (fix pthread_cond_* deadlocks)
|
|
|
|
- fix backtrace in statically linked programs
|
|
|
|
- rebuilt with GCC 3.4, adjusted ulps and i386 <bits/string.h>
|
2004-09-09 05:49:35 +00:00
|
|
|
|
2004-09-09 05:49:31 +00:00
|
|
|
* Fri May 28 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-31
|
|
|
|
- update from CVS
|
|
|
|
- <bits/string2.h> and <bits/mathinline.h> changes for GCC 3.{2,4,5}+
|
|
|
|
- make c_stubs buildable even with GCC 3.2.x (#123042)
|
|
|
|
|
2004-09-09 05:49:08 +00:00
|
|
|
* Fri May 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-30
|
|
|
|
- fix pthread_cond_wait on architectures other than IA-32 and
|
|
|
|
x86_64
|
|
|
|
|
2004-09-09 05:49:02 +00:00
|
|
|
* Thu May 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-29
|
|
|
|
- use lib64 instead of lib on ia64 if %%{_lib} is defined to lib64
|
|
|
|
|
2004-09-09 05:48:51 +00:00
|
|
|
* Wed May 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-28
|
|
|
|
- update from CVS
|
|
|
|
- FUTEX_REQUEUE fixes (#115349)
|
|
|
|
- SPARC GCC 3.4 build fix
|
|
|
|
- fix handling of undefined TLS symbols on IA32 (RELA only),
|
|
|
|
SPARC and SH
|
|
|
|
- regex translate fix
|
|
|
|
- speed up sprintf
|
|
|
|
- x86_64 makecontext alignment fix
|
|
|
|
- make POSIX sigpause the default sigpause, unless BSD sigpause
|
|
|
|
requested
|
|
|
|
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
* Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
|
|
|
|
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade
|
|
|
|
on x86-64, s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
|
|
|
|
- build mq_{send,receive} with -fexceptions
|
|
|
|
|
|
|
|
* Fri May 7 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
|
|
|
|
- update from CVS
|
|
|
|
- fix <tgmath.h>
|
|
|
|
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect
|
|
|
|
use of realloc
|
|
|
|
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade
|
|
|
|
and rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
|
|
|
|
might be a stale symlink
|
|
|
|
|
|
|
|
* Wed May 5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
|
|
|
|
- update from CVS
|
|
|
|
- disable FUTEX_REQUEUE (work around #115349)
|
|
|
|
- mq for sparc/sparc64/ia64
|
|
|
|
|
|
|
|
* Tue May 4 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
|
|
|
|
- update from CVS
|
|
|
|
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK
|
|
|
|
plus F_[SG]ETOWN also in -D_XOPEN_SOURCE=500 (both
|
|
|
|
included already in XNS5)
|
|
|
|
- reorder dlopen checks, so that dlopening ET_REL objects
|
|
|
|
complains about != ET_DYN != ET_EXEC, not about phentsize
|
|
|
|
(#121606)
|
|
|
|
- fix strpbrk macro for GCC 3.4+ (BZ #130)
|
|
|
|
- fix <sys/sysctl.h> (BZ #140)
|
|
|
|
- sched_[gs]etaffinity documentation fix (BZ #131)
|
|
|
|
- fix sparc64 build (BZ #139)
|
|
|
|
- change linuxthreads back to use non-cancellable writes
|
|
|
|
to manager pipes etc.
|
|
|
|
- fix sem_timedwait return value in linuxthreads (BZ #133)
|
|
|
|
- ia64 unnecessary PLT relocs removal
|
|
|
|
|
|
|
|
* Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
|
|
|
|
- update from CVS
|
|
|
|
- fix *scanf
|
|
|
|
- fix shm_unlink, sem_unlink and mq_unlink errno values
|
|
|
|
- avoid memory leaks in error
|
|
|
|
- execstack fixes on s390
|
|
|
|
|
|
|
|
* Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
|
|
|
|
- update from CVS
|
|
|
|
- mq and timer fixes
|
|
|
|
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically
|
|
|
|
linked binaries
|
|
|
|
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
|
|
|
|
|
|
|
|
* Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
|
|
|
|
- disable rtkaio
|
|
|
|
- update from CVS
|
|
|
|
- POSIX message passing support
|
|
|
|
- fixed SIGEV_THREAD support for POSIX timers
|
|
|
|
- fix free on non-malloced memory in syslog
|
|
|
|
- fix ffsl on some 64-bit arches
|
|
|
|
- fix sched_setaffinity on x86-64, ia64
|
|
|
|
- fix ppc64 umount
|
|
|
|
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
|
|
|
|
- various NIS speedups
|
|
|
|
- fix fwrite with > 2GB sizes on 64-bit arches
|
|
|
|
- fix pthread_getattr_np guardsize reporting in NPTL
|
|
|
|
- report PLT relocations in ld.so and libc.so during the build
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
- update from CVS
|
|
|
|
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
|
|
|
|
- strtol speed optimization
|
|
|
|
- don't try to use certainly unimplemented syscalls on ppc64
|
|
|
|
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common}
|
2010-07-02 12:42:07 +00:00
|
|
|
into /usr/lib/debug/usr/%%{_lib}/ directory
|
auto-import changelog data from glibc-2.3.3-27.src.rpm
Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade on x86-64,
s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
- build mq_{send,receive} with -fexceptions
Fri May 07 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
- update from CVS
- fix <tgmath.h>
- fix memory leaks in nis, getifaddrs, etc. caused by incorrect use of
realloc
- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade and
rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
might be a stale symlink
Wed May 05 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
- update from CVS
- disable FUTEX_REQUEUE (work around #115349)
- mq for sparc/sparc64/ia64
Tue May 04 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
- update from CVS
- define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK plus F_[SG]ETOWN
also in -D_XOPEN_SOURCE=500 (both included already in XNS5)
- reorder dlopen checks, so that dlopening ET_REL objects complains about
!= ET_DYN != ET_EXEC, not about phentsize (#121606)
- fix strpbrk macro for GCC 3.4+ (BZ #130)
- fix <sys/sysctl.h> (BZ #140)
- sched_[gs]etaffinity documentation fix (BZ #131)
- fix sparc64 build (BZ #139)
- change linuxthreads back to use non-cancellable writes to manager pipes
etc.
- fix sem_timedwait return value in linuxthreads (BZ #133)
- ia64 unnecessary PLT relocs removal
Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
- update from CVS
- fix *scanf
- fix shm_unlink, sem_unlink and mq_unlink errno values
- avoid memory leaks in error
- execstack fixes on s390
Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
- update from CVS
- mq and timer fixes
- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically linked
binaries
- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
- disable rtkaio
- update from CVS
- POSIX message passing support
- fixed SIGEV_THREAD support for POSIX timers
- fix free on non-malloced memory in syslog
- fix ffsl on some 64-bit arches
- fix sched_setaffinity on x86-64, ia64
- fix ppc64 umount
- NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
- various NIS speedups
- fix fwrite with > 2GB sizes on 64-bit arches
- fix pthread_getattr_np guardsize reporting in NPTL
- report PLT relocations in ld.so and libc.so during the build
Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
- update from CVS
- change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
- strtol speed optimization
- don't try to use certainly unimplemented syscalls on ppc64
- kill -debug subpackage, move the libs to glibc-debuginfo{,-common} into
/usr/lib/debug/usr/lib64/ directory
- fix c_stubs with gcc 3.4
- move all the up to 3 builds into %build scriptlet and leave only
installation in the %install scriptlet
Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
- update from CVS
- affinity API changes
2004-09-09 05:48:43 +00:00
|
|
|
- fix c_stubs with gcc 3.4
|
|
|
|
- move all the up to 3 builds into %%build scriptlet and
|
|
|
|
leave only installation in the %%install scriptlet
|
|
|
|
|
|
|
|
* Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
|
|
|
|
- update from CVS
|
|
|
|
- affinity API changes
|
|
|
|
|
2004-09-09 05:46:40 +00:00
|
|
|
* Thu Mar 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-18
|
|
|
|
- update from CVS
|
|
|
|
- fix ia64 iopl (#118591)
|
|
|
|
- add support for /etc/ld.so.conf.d/*.conf
|
|
|
|
- fix x86-64 LD_DEBUG=statistics
|
|
|
|
- fix hwcap handling when using ld.so.cache (#118518)
|
|
|
|
|
|
|
|
* Mon Mar 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-17
|
|
|
|
- update from CVS
|
|
|
|
- implement non-_l function on top of _l functions
|
|
|
|
|
|
|
|
* Thu Mar 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-16
|
|
|
|
- update from CVS
|
|
|
|
- fix s390{,x} TLS handling
|
|
|
|
|
|
|
|
* Wed Mar 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-15
|
|
|
|
- update from CVS
|
|
|
|
- special section for compatibility code
|
|
|
|
- make getpid () work even in vfork () child
|
|
|
|
- configure with --enable-bind-now to avoid lazy binding in ld.so
|
|
|
|
and libc.so
|
|
|
|
|
|
|
|
* Fri Mar 5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-14
|
|
|
|
- update from CVS
|
|
|
|
- fix iconv -c (#117021)
|
|
|
|
- fix PIEs on sparc/sparc64
|
|
|
|
- fix posix_fadvise on 64-bit architectures
|
|
|
|
- add locale-archive as %%ghost file (#117014)
|
|
|
|
|
|
|
|
* Mon Mar 1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-13
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Fri Feb 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-12
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Fri Feb 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-11
|
|
|
|
- update from CVS
|
|
|
|
- fix ld.so when vDSO is randomized
|
|
|
|
|
|
|
|
* Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-10
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-9
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Tue Feb 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-8
|
|
|
|
- update from CVS
|
|
|
|
|
2004-09-09 05:43:45 +00:00
|
|
|
* Tue Jan 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-7
|
|
|
|
- update from CVS
|
|
|
|
- dl_iterate_phdr extension to signal number of added/removed
|
|
|
|
libraries
|
|
|
|
- fix PT_GNU_RELRO support on ppc* with prelinking
|
|
|
|
|
2004-09-09 05:43:31 +00:00
|
|
|
* Fri Jan 23 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-6
|
|
|
|
- rebuilt with fixed GCC on IA-64
|
|
|
|
|
|
|
|
* Thu Jan 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-5
|
|
|
|
- fix PT_GNU_RELRO support
|
|
|
|
|
|
|
|
* Wed Jan 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-4
|
|
|
|
- update from CVS
|
|
|
|
- some further regex speedups
|
|
|
|
- fix re.translate handling in regex (#112869)
|
|
|
|
- change regfree to match old regex behaviour (what is freed
|
|
|
|
and clearing of freed pointers)
|
|
|
|
- fix accesses to unitialized memory in regex (#113507, #113425,
|
|
|
|
#113421)
|
|
|
|
- PT_GNU_RELRO support
|
|
|
|
|
2004-09-09 05:42:45 +00:00
|
|
|
* Tue Dec 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-3
|
|
|
|
- update from CVS
|
|
|
|
- fix pmap_set fd and memory leak (#112726)
|
|
|
|
- fix backreference handling in regex
|
|
|
|
- rebuilt under glibc without the above bug to fix
|
|
|
|
libc.so linker script (#112738)
|
|
|
|
|
2004-09-09 05:42:39 +00:00
|
|
|
* Mon Dec 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-2
|
|
|
|
- update from CVS
|
|
|
|
- faster getpid () in NPTL builds
|
|
|
|
- fix to make pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, )
|
|
|
|
really disable cancellation (#112512)
|
|
|
|
- more regex fixes and speedups
|
|
|
|
- fix nextafter*/nexttoward*
|
|
|
|
- handle 6th syscall(3) argument on AMD64
|
|
|
|
- handle memalign/posix_memalign in mtrace
|
|
|
|
- fix linuxthreads memory leak (#112208)
|
|
|
|
- remove throw () from cancellation points in linuxthreads (#112602)
|
|
|
|
- fix NPTL unregister_atfork
|
|
|
|
- fix unwinding through alternate signal stacks
|
|
|
|
|
2004-09-09 05:42:25 +00:00
|
|
|
* Mon Dec 1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-1
|
2004-09-09 05:42:39 +00:00
|
|
|
- update from CVS
|
|
|
|
- 2.3.3 release
|
|
|
|
- lots of regex fixes and speedups (#110401)
|
|
|
|
- fix atan2
|
|
|
|
- fix pshared condvars in NPTL
|
|
|
|
- fix pthread_attr_destroy for attributes created with
|
|
|
|
pthread_attr_init@GLIBC_2.0
|
2004-09-09 05:42:25 +00:00
|
|
|
- for the time being, include both nb_NO* and no_NO* as locales
|
|
|
|
so that the distribution can catch up with the no_NO->nb_NO
|
|
|
|
transition
|
2004-09-09 05:41:43 +00:00
|
|
|
- add BuildPrereq texinfo (#110252)
|
2004-09-09 05:42:25 +00:00
|
|
|
|
|
|
|
* Tue Nov 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-102
|
|
|
|
- update from CVS
|
|
|
|
- fix getifaddrs (CAN-2003-0859)
|
|
|
|
- fix ftw fd leak
|
|
|
|
- fix linuxthreads sigaction (#108634)
|
|
|
|
- fix glibc 2.0 stdio compatibility
|
|
|
|
- fix uselocale (LC_GLOBAL_LOCALE)
|
|
|
|
- speed up stdio locking in non-threaded programs on IA-32
|
|
|
|
- try to maintain correct order of cleanups between those
|
|
|
|
registered with __attribute__((cleanup))
|
|
|
|
and with LinuxThreads style pthread_cleanup_push/pop (#108631)
|
|
|
|
- fix segfault in regex (#109606)
|
|
|
|
- fix RE_ICASE multi-byte handling in regex
|
|
|
|
- fix pthread_exit in libpthread.a (#109790)
|
|
|
|
- FTW_ACTIONRETVAL support
|
|
|
|
- lots of regex fixes and speedups
|
2004-09-09 05:42:39 +00:00
|
|
|
- fix ceill/floorl on AMD64
|
2004-09-09 05:41:22 +00:00
|
|
|
|
2004-09-09 05:40:37 +00:00
|
|
|
* Mon Oct 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-101
|
|
|
|
- update from CVS
|
|
|
|
- fix ld.so --verify (and ldd)
|
|
|
|
|
|
|
|
* Mon Oct 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-100
|
|
|
|
- update from CVS
|
|
|
|
- fix sprof (#103727)
|
|
|
|
- avoid infinite loops in {,f}statvfs{,64} with hosed mounts file
|
|
|
|
- prevent dlopening of executables
|
|
|
|
- fix glob with GLOB_BRACE and without GLOB_NOESCAPE
|
|
|
|
- fix locale printing of word values on 64-bit big-endian arches
|
|
|
|
(#107846)
|
|
|
|
- fix getnameinfo and getaddrinfo with reverse IPv6 lookups
|
|
|
|
(#101261)
|
|
|
|
|
|
|
|
* Wed Oct 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-99
|
|
|
|
- update from CVS
|
|
|
|
- dl_iterate_phdr in libc.a on arches other than IA-64
|
|
|
|
- LD_DEBUG=statistics prints number of relative relocations
|
|
|
|
- fix hwcap computation
|
|
|
|
- NPTL is now part of upstream glibc CVS
|
|
|
|
- include {st,xh,zu}_ZA{,.UTF-8} locales
|
|
|
|
|
|
|
|
* Sat Oct 4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-98
|
|
|
|
- update from CVS
|
|
|
|
- fix close, pause and fsync (#105348)
|
|
|
|
- fix pthread_once on IA-32
|
|
|
|
- implement backtrace () on IA-64, handle -fomit-frame-pointer
|
|
|
|
in AMD64 backtrace () (#90402)
|
|
|
|
|
|
|
|
* Tue Sep 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-97
|
|
|
|
- update from CVS
|
|
|
|
- fix <sys/sysmacros.h> with C++ or -ansi or -pedantic C
|
|
|
|
- fix mknod/ustat return value when given bogus device number (#105768)
|
|
|
|
|
|
|
|
* Fri Sep 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-96
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Sep 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-95
|
|
|
|
- fix IA-64 getcontext
|
|
|
|
|
|
|
|
* Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-94
|
|
|
|
- update from CVS
|
|
|
|
- fix syslog with non-C non-en_* locales (#61296, #104979)
|
|
|
|
- filter GLIBC_PRIVATE symbols from glibc provides
|
|
|
|
- fix NIS+
|
|
|
|
|
|
|
|
* Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-93
|
|
|
|
- update from CVS
|
|
|
|
- assume 2.4.21 kernel features on RHEL/ppc*, so that
|
|
|
|
{make,set,get,swap}context works
|
|
|
|
- backout execstack support for RHEL
|
|
|
|
- build rtkaio on amd64 too
|
|
|
|
|
|
|
|
* Wed Sep 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-92
|
|
|
|
- update from CVS
|
|
|
|
- execstack/noexecstack support
|
|
|
|
- build nscd as PIE
|
|
|
|
- move __libc_stack_end back to @GLIBC_2.1
|
|
|
|
- build against elfutils >= 0.86 to fix stripping on s390x
|
|
|
|
|
|
|
|
* Mon Sep 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-91
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Mon Sep 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-90
|
|
|
|
- update from CVS
|
|
|
|
- NPTL locking change (#102682)
|
|
|
|
- don't jump around lock on amd64
|
|
|
|
|
|
|
|
* Thu Sep 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-89
|
|
|
|
- fix open_memstream/syslog (#104661)
|
|
|
|
|
|
|
|
* Thu Sep 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-88
|
|
|
|
- update from CVS
|
|
|
|
- retrieve affinity in pthread_getattr_np
|
|
|
|
- fix pthread_attr_[gs]etaffinity_np
|
|
|
|
- handle hex and octal in wordexp
|
|
|
|
|
|
|
|
* Wed Sep 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-87
|
|
|
|
- update from CVS
|
|
|
|
- truncate instead of round in utimes when utimes syscall is not available
|
|
|
|
- don't align stack in every glibc function unnecessarily on IA-32
|
|
|
|
- make sure threads have their stack 16 byte aligned on IA-32
|
|
|
|
- move sched_[sg]etaffinity to GLIBC_2.3.3 symbol version (#103231)
|
|
|
|
- fix pthread_getattr_np for the initial thread (#102683)
|
|
|
|
- avoid linuxthreads signal race (#104368)
|
|
|
|
- ensure all gzip invocations are done with -n option
|
|
|
|
|
|
|
|
* Fri Sep 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-86
|
|
|
|
- update from CVS
|
|
|
|
- avoid linking in libgcc_eh.a unnecessarily
|
|
|
|
- change ssize_t back to long int on s390 -m31, unless
|
|
|
|
gcc 2.95.x is used
|
|
|
|
|
|
|
|
* Wed Sep 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-85
|
|
|
|
- update from CVS
|
|
|
|
- fix IA-64 memccpy (#104114)
|
|
|
|
|
|
|
|
* Tue Sep 9 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-84
|
|
|
|
- update from CVS
|
|
|
|
- undo broken amd64 signal context changes
|
|
|
|
|
|
|
|
* Tue Sep 9 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-83
|
|
|
|
- update from CVS
|
|
|
|
- change *nlink_t, *ssize_t and *intptr_t types on s390 -m31 to
|
|
|
|
{unsigned,} int
|
|
|
|
- change *u_quad_t, *quad_t, *qaddr_t, *dev_t, *ino64_t, *loff_t,
|
|
|
|
*off64_t, *rlim64_t, *blkcnt64_t, *fsblkcnt64_t, *fsfilcnt64_t
|
|
|
|
on 64-bit arches from {unsigned,} long long int {,*} to
|
|
|
|
{unsigned,} long int {,*} to restore binary compatibility
|
|
|
|
for C++ functions using these types as arguments
|
|
|
|
|
|
|
|
* Sun Sep 7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-82
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Sat Sep 6 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-81
|
|
|
|
- update from CVS
|
|
|
|
- fix tc[gs]etattr/cf[gs]et[io]speed on ppc (#102732)
|
|
|
|
- libio fixes
|
|
|
|
|
|
|
|
* Thu Sep 4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-80
|
|
|
|
- update from CVS
|
|
|
|
- fix IA-64 cancellation when mixing __attribute__((cleanup ()))
|
|
|
|
and old-style pthread_cleanup_push cleanups
|
|
|
|
|
|
|
|
* Tue Sep 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-79
|
|
|
|
- updated from CVS
|
|
|
|
- lots of cancellation fixes
|
|
|
|
- fix posix_fadvise* on ppc32
|
|
|
|
- TLS layout fix
|
|
|
|
- optimize stdio cleanups (#103354)
|
|
|
|
- sparcv9 NPTL
|
|
|
|
- include sigset, sighold, sigrelse, sigpause and sigignore prototypes
|
|
|
|
in signal.h even if -D_XOPEN_SOURCE_EXTENDED (#103269)
|
|
|
|
- fix svc_getreqset on 64-bit big-endian arches
|
|
|
|
- return ENOSYS in linuxthreads pthread_barrierattr_setpshared for
|
|
|
|
PTHREAD_PROCESS_SHARED
|
|
|
|
- add pthread_cond_timedwait stubs to libc.so (#102709)
|
|
|
|
- split glibc-devel into glibc-devel and glibc-headers to ensure
|
|
|
|
amd64 /usr/include always wins on amd64/i386 bi-arch installs
|
|
|
|
- increase PTHREAD_STACK_MIN on alpha, ia64 and sparc*
|
|
|
|
- get rid of __syscall_* prototypes and stubs in sysdeps/unix/sysv/linux
|
|
|
|
- run make check also with linuxthreads (on IA-32 non-FLOATING_STACKS)
|
|
|
|
ld.so and NPTL (on IA-32 also FLOATING_STACKS linuxthreads) libraries
|
|
|
|
and tests
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Mon Aug 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-78
|
2004-09-09 05:40:37 +00:00
|
|
|
- include dl-osinfo.h only in glibc-debuginfo-2*.rpm, not
|
|
|
|
in glibc-debuginfo-common*
|
|
|
|
|
|
|
|
* Mon Aug 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-77
|
|
|
|
- update from CVS
|
|
|
|
- fix glibc 2.0 libio compatibility (#101385)
|
|
|
|
- fix ldconfig with /usr/lib/lib*.so symlinks (#102853)
|
|
|
|
- fix assert.h (#102916, #103017)
|
|
|
|
- make ld.so.cache identical between IA-32 and AMD64 (#102887)
|
|
|
|
- fix static linking of large IA-64 binaries (#102586)
|
|
|
|
- avoid using floating point regs in lazy binding code on ppc64 (#102763)
|
|
|
|
|
|
|
|
* Fri Aug 22 2003 Roland McGrath <roland@redhat.com> 2.3.2-76
|
|
|
|
- add td_thr_tls_get_addr changes missed in initial nptl_db rewrite
|
|
|
|
|
|
|
|
* Sun Aug 17 2003 Roland McGrath <roland@redhat.com> 2.3.2-74
|
|
|
|
- nptl_db rewrite not yet in CVS
|
|
|
|
|
|
|
|
* Thu Aug 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-72
|
|
|
|
- update from CVS
|
|
|
|
- fix rtkaio aio_fsync{,64}
|
|
|
|
- update rtkaio for !BROKEN_THREAD_SIGNALS
|
|
|
|
- fix assert macro when used on pointers
|
|
|
|
|
|
|
|
* Wed Aug 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-71
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Tue Aug 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-70
|
|
|
|
- update from CVS
|
|
|
|
- disable CLONE_STOPPED for now until it is resolved
|
|
|
|
- strip crt files
|
|
|
|
- fix libio on arches with no < GLIBC_2.2 support (#102102, #102105)
|
|
|
|
- fix glibc-debuginfo to include all nptl and nptl_db sources
|
|
|
|
|
|
|
|
* Thu Aug 7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-69
|
|
|
|
- update from CVS
|
|
|
|
- fix pthread_create@GLIBC_2.0 (#101767)
|
|
|
|
- __ASSUME_CLONE_STOPPED on all arches but s390* in RHEL
|
|
|
|
|
|
|
|
* Sun Aug 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-68
|
|
|
|
- update from CVS
|
|
|
|
- only use CLONE_STOPPED if kernel supports it, fix setting of thread
|
|
|
|
explicit scheduling (#101457)
|
|
|
|
|
|
|
|
* Fri Aug 1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-67
|
|
|
|
- update from CVS
|
|
|
|
- fix utimes and futimes if kernel doesn't support utimes syscall
|
|
|
|
- fix s390 ssize_t type
|
|
|
|
- fix dlerror when called before any dlopen/dlsym
|
|
|
|
- update IA-64 bits/sigcontext.h (#101344)
|
|
|
|
- various warning fixes
|
|
|
|
- fix pthread.h comment typos (#101363)
|
|
|
|
|
|
|
|
* Wed Jul 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-66
|
|
|
|
- update from CVS
|
|
|
|
- fix dlopen of libraries using TLS IE/LE models
|
|
|
|
|
|
|
|
* Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-65
|
|
|
|
- update from CVS
|
|
|
|
- fix timer_create
|
|
|
|
- use __extension__ before long long typedefs in <bits/types.h> (#100718)
|
|
|
|
|
|
|
|
* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-64
|
|
|
|
- update from CVS
|
|
|
|
- fix wcpncpy (#99462)
|
|
|
|
- export _res@GLIBC_2.0 even from NPTL libc.so (__res_state ()
|
|
|
|
unlike __errno_location () or __h_errno_location () was introduced
|
|
|
|
in glibc 2.2)
|
|
|
|
- fix zic bug on 64-bit platforms
|
|
|
|
- some TLS handling fixes
|
|
|
|
- make ldconfig look into alternate ABI dirs by default (#99402)
|
2010-07-02 12:42:07 +00:00
|
|
|
- move %%{_datadir}/zoneinfo to tzdata package, so that it can be
|
2004-09-09 05:40:37 +00:00
|
|
|
errataed separately from glibc
|
|
|
|
- new add-on - rtkaio
|
|
|
|
- prereq libgcc, as glibc now relies on libgcc_s.so.1 for pthread_cancel
|
|
|
|
|
|
|
|
* Tue Jul 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-63
|
|
|
|
- fix thread cancellation on ppc64
|
|
|
|
|
|
|
|
* Sat Jul 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-62
|
|
|
|
- update from CVS
|
|
|
|
- fix thread cancellation on ppc32, s390 and s390x
|
|
|
|
|
|
|
|
* Thu Jul 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-61
|
|
|
|
- update from CVS
|
|
|
|
- build libc_nonshared.a with -fPIC instead of -fpic
|
|
|
|
- fix ppc64 PIE support
|
|
|
|
- add cfi directives to NPTL sysdep-cancel.h on ppc/ppc64/s390/s390x
|
|
|
|
|
|
|
|
* Tue Jul 8 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-60
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Thu Jul 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-59
|
|
|
|
- update from CVS
|
|
|
|
- on IA-64 use different symbols for cancellation portion of syscall
|
|
|
|
handlers to make gdb happier
|
|
|
|
|
|
|
|
* Thu Jun 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-58
|
|
|
|
- update from CVS
|
|
|
|
- nss_compat supporting LDAP etc.
|
|
|
|
|
|
|
|
* Tue Jun 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-57
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Thu Jun 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-56
|
|
|
|
- fix condvars and semaphores in ppc* NPTL
|
|
|
|
- fix test-skeleton.c reporting of timed-out tests (#91269)
|
|
|
|
- increase timeouts for tests during make check
|
|
|
|
|
|
|
|
* Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-55
|
|
|
|
- make ldconfig default to both /lib+/usr/lib and /lib64+/usr/lib64
|
|
|
|
on bi-ABI architectures (#97557)
|
|
|
|
- disable FUTEX_REQUEUE on ppc* temporarily
|
|
|
|
|
|
|
|
* Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-54
|
|
|
|
- update from CVS
|
|
|
|
- fix glibc_post_upgrade on ppc
|
|
|
|
|
|
|
|
* Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-53
|
|
|
|
- update from CVS
|
|
|
|
- fix localedef (#90659)
|
|
|
|
- tweak linuxthreads for librt cancellation
|
|
|
|
|
|
|
|
* Mon Jun 16 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-52
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Thu Jun 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-51
|
|
|
|
- update from CVS
|
|
|
|
- fix <gnu/stubs.h> (#97169)
|
|
|
|
|
|
|
|
* Wed Jun 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-50
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Tue Jun 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-49
|
|
|
|
- update from CVS
|
|
|
|
- fix pthread_cond_signal on IA-32 (#92080, #92253)
|
|
|
|
- fix setegid (#91567)
|
|
|
|
- don't prelink -R libc.so on any architecture, it prohibits
|
|
|
|
address randomization
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Thu Jun 5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-48
|
2004-09-09 05:40:37 +00:00
|
|
|
- update from CVS
|
|
|
|
- fix IA-64 NPTL build
|
|
|
|
|
|
|
|
* Thu Jun 5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-47
|
|
|
|
- update from CVS
|
|
|
|
- PT_GNU_STACK segment in binaries/executables and .note.GNU-stack
|
|
|
|
section in *.[oa]
|
|
|
|
|
|
|
|
* Sun Jun 1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-46
|
|
|
|
- update from CVS
|
|
|
|
- enable NPTL on AMD64
|
|
|
|
- avoid using trampolines in localedef
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-45
|
2004-09-09 05:40:37 +00:00
|
|
|
- enable NPTL on IA-64
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-44
|
2004-09-09 05:40:37 +00:00
|
|
|
- update from CVS
|
|
|
|
- enable NPTL on s390 and s390x
|
|
|
|
- make __init_array_start etc. symbols in elf-init.oS hidden undefined
|
|
|
|
|
|
|
|
* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-43
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Fri May 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-42
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Tue May 20 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-41
|
|
|
|
- update from CVS
|
|
|
|
- use NPTL libs if uname -r contains nptl substring or is >= 2.5.69
|
|
|
|
or set_tid_address syscall is available instead of checking
|
|
|
|
AT_SYSINFO dynamic tag
|
|
|
|
|
|
|
|
* Thu May 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-40
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Wed May 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-39
|
|
|
|
- update from CVS
|
|
|
|
- fix for prelinking of libraries with no dependencies
|
|
|
|
|
|
|
|
* Tue May 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-38
|
|
|
|
- update from CVS
|
|
|
|
- enable NPTL on ppc and ppc64
|
|
|
|
|
|
|
|
* Tue May 6 2003 Matt Wilson <msw@redhat.com> 2.3.2-37
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Sun May 4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-36
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Sat May 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-35
|
|
|
|
- update from CVS
|
|
|
|
- make -jN build fixes
|
|
|
|
|
|
|
|
* Fri May 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-34
|
|
|
|
- update from CVS
|
|
|
|
- avoid using trampolines in iconvconfig for now
|
|
|
|
|
|
|
|
* Sat Apr 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-33
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Fri Apr 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-32
|
|
|
|
- update from CVS
|
|
|
|
- more ppc TLS fixes
|
|
|
|
|
|
|
|
* Wed Apr 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-31
|
|
|
|
- update from CVS
|
|
|
|
- nscd fixes
|
|
|
|
- fix Bahrain spelling (#56298)
|
|
|
|
- fix Ukrainian collation (#83973)
|
|
|
|
- accept trailing spaces in /etc/ld.so.conf (#86032)
|
|
|
|
- perror fix (#85994)
|
|
|
|
- fix localedef (#88978)
|
|
|
|
- fix getifaddrs (#89026)
|
|
|
|
- fix strxfrm (#88409)
|
|
|
|
- fix ppc TLS
|
|
|
|
- fix getaddrinfo (#89448)
|
|
|
|
- don't print warning about errno, h_errno or _res if
|
|
|
|
LD_ASSUME_KERNEL=2.4.1 or earlier
|
|
|
|
|
|
|
|
* Tue Apr 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-30
|
|
|
|
- update from CVS
|
|
|
|
- fix prelink on ppc32
|
|
|
|
- add TLS support on ppc32 and ppc64
|
|
|
|
- make sure on -m64 arches all helper binaries are built with this
|
|
|
|
option
|
|
|
|
|
|
|
|
* Mon Apr 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-29
|
|
|
|
- update from CVS
|
|
|
|
- fix strxfrm (#88409)
|
|
|
|
- use -m64 -mno-minimal-toc on ppc64
|
|
|
|
- conflict with kernels < 2.4.20 on ppc64 and < 2.4.0 on x86_64
|
|
|
|
- link glibc_post_upgrade against newly built libc.a
|
|
|
|
|
|
|
|
* Sun Apr 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-28
|
|
|
|
- update from CVS
|
|
|
|
- fix NPTL pthread_detach and already terminated, but not yet
|
|
|
|
joined thread (#88219)
|
|
|
|
- fix bug-regex4 testcase (#88118)
|
|
|
|
- reenable prelink support broken in 2.3.2-13
|
|
|
|
- fix register_printf_function (#88052)
|
|
|
|
- fix double free with fopen using ccs= (#88056)
|
|
|
|
- fix potential access below $esp in {set,swap}context (#88093)
|
|
|
|
- fix buffer underrun in gencat -H (#88099)
|
|
|
|
- avoid using unitialized variable in tst-tgmath (#88101)
|
|
|
|
- fix gammal (#88104)
|
|
|
|
- fix iconv -c
|
|
|
|
- fix xdr_string (PR libc/4999)
|
|
|
|
- fix /usr/lib/nptl/librt.so symlink
|
|
|
|
- avoid running NPTL cleanups twice in some cases
|
|
|
|
- unblock __pthread_signal_cancel in linuxthreads, so that
|
|
|
|
linuxthreads threaded programs work correctly if spawned
|
|
|
|
from NPTL threaded programs
|
|
|
|
- fix sysconf _SC_{NPROCESSORS_{CONF,ONLN},{,AV}PHYS_PAGES}
|
|
|
|
- remove /lib/i686 directory before running ldconfig in glibc post
|
|
|
|
during i686 -> i386 glibc "upgrades" (#88456)
|
|
|
|
|
|
|
|
* Wed Apr 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-22
|
|
|
|
- update from CVS
|
|
|
|
- add pthread_atfork to libpthread.a
|
|
|
|
|
|
|
|
* Tue Apr 1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-21
|
|
|
|
- update from CVS
|
|
|
|
- make sure linuxthreads pthread_mutex_lock etc. is not a cancellation
|
|
|
|
point
|
|
|
|
|
|
|
|
* Sat Mar 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-20
|
|
|
|
- update from CVS
|
|
|
|
- if kernel >= 2.4.1 doesn't support NPTL, fall back to
|
|
|
|
/lib/i686 libs on i686, not stright to /lib
|
|
|
|
|
|
|
|
* Fri Mar 28 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-19
|
|
|
|
- update from CVS
|
|
|
|
- timers fixes
|
|
|
|
|
|
|
|
* Thu Mar 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-18
|
|
|
|
- update from CVS
|
|
|
|
- fix NPTL pthread_cond_timedwait
|
|
|
|
- fix sysconf (_SC_MONOTONIC_CLOCK)
|
|
|
|
- use /%%{_lib}/tls instead of /lib/tls on x86-64
|
2010-07-02 12:42:07 +00:00
|
|
|
- add /%%{_lib}/tls/librt*so* and /%%{_lib}/i686/librt*so*
|
2004-09-09 05:40:37 +00:00
|
|
|
- display content of .out files for all make check failures
|
|
|
|
|
|
|
|
* Wed Mar 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-17
|
|
|
|
- update from CVS
|
|
|
|
- kernel POSIX timers support
|
|
|
|
|
|
|
|
* Sat Mar 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-16
|
|
|
|
- update from CVS
|
|
|
|
- export __fork from glibc again
|
|
|
|
- fix glibc-compat build in NPTL
|
|
|
|
- fix c_stubs
|
|
|
|
- fix some more atomic.h problems
|
|
|
|
- don't check abi in glibc-compat libs
|
|
|
|
|
|
|
|
* Fri Mar 21 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-15
|
|
|
|
- update from CVS
|
|
|
|
- build glibc-compat (for glibc 2.0 compatibility) and c_stubs add-ons
|
|
|
|
- condrestart sshd in glibc_post_upgrade so that the user can
|
|
|
|
log in remotely and handle the rest (#86339)
|
|
|
|
- fix a typo in glibc_post_upgrade on sparc
|
|
|
|
|
|
|
|
* Tue Mar 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-14
|
|
|
|
- update from CVS
|
|
|
|
- change i686/athlon libc.so.6 base to 0x00e80000
|
|
|
|
|
|
|
|
* Mon Mar 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-13
|
|
|
|
- update from CVS
|
|
|
|
- hopefully last fix for condvar problems
|
|
|
|
|
|
|
|
* Fri Mar 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-12
|
|
|
|
- fix bits/syscall.h creation on x86-64
|
|
|
|
|
|
|
|
* Thu Mar 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-11
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Wed Mar 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-10
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Tue Mar 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-9
|
|
|
|
- update from CVS
|
|
|
|
- fix glibc-debug description (#85111)
|
|
|
|
- make librt.so a symlink again, not linker script
|
|
|
|
|
|
|
|
* Tue Mar 4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-8
|
|
|
|
- update from CVS
|
|
|
|
- remove the workarounds for broken software accessing GLIBC_PRIVATE
|
|
|
|
symbols
|
|
|
|
|
|
|
|
* Mon Mar 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-7
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Sun Mar 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-6
|
|
|
|
- fix TLS IE/LE model handling in dlopened libraries
|
|
|
|
on TCB_AT_TP arches
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Tue Feb 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-5
|
2004-09-09 05:40:37 +00:00
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Tue Feb 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-4
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-3
|
|
|
|
- update from CVS
|
|
|
|
- only warn about errno, h_errno or _res for binaries, never
|
|
|
|
libraries
|
2010-07-02 12:42:07 +00:00
|
|
|
- rebuilt with gcc-3.2.2-4 to use direct %%gs TLS access insn sequences
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
* Sun Feb 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-2
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Sat Feb 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-1
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Thu Feb 20 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-51
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Wed Feb 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-50
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Wed Feb 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-49
|
|
|
|
- update from CVS
|
|
|
|
- remove nisplus and nis from the default nsswitch.conf (#67401, #9952)
|
|
|
|
|
|
|
|
* Tue Feb 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-48
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Sat Feb 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-47
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Fri Feb 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-46
|
|
|
|
- update from CVS
|
|
|
|
- pthread_cond* NPTL fixes, new NPTL testcases
|
|
|
|
|
|
|
|
* Thu Feb 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-45
|
|
|
|
- update from CVS
|
|
|
|
- include also linuxthreads FLOATING_STACKS libs on i686 and athlon:
|
|
|
|
LD_ASSUME_KERNEL=2.2.5 to LD_ASSUME_KERNEL=2.4.0 is non-FLOATING_STACKS lt,
|
|
|
|
LD_ASSUME_KERNEL=2.4.1 to LD_ASSUME_KERNEL=2.4.19 is FLOATING_STACKS lt,
|
|
|
|
later is NPTL
|
|
|
|
- enable TLS on alpha/alphaev6
|
|
|
|
- add BuildPreReq: /usr/bin/readlink
|
|
|
|
|
|
|
|
* Tue Feb 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-44
|
|
|
|
- update from CVS
|
|
|
|
- pthread_once fix
|
|
|
|
|
|
|
|
* Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-43
|
|
|
|
- update from CVS
|
|
|
|
- vfork fix on s390
|
|
|
|
- rebuilt with binutils 2.13.90.0.18-5 so that accesses to errno
|
|
|
|
don't bind locally (#83325)
|
|
|
|
|
|
|
|
* Thu Feb 06 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-42
|
|
|
|
- update from CVS
|
|
|
|
- fix pthread_create after vfork+exec in linuxthreads
|
|
|
|
|
|
|
|
* Wed Feb 05 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-41
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Thu Jan 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-40
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Wed Jan 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-39
|
|
|
|
- update from CVS
|
|
|
|
- enable TLS on s390{,x} and sparc{,v9}
|
|
|
|
|
|
|
|
* Fri Jan 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-38
|
|
|
|
- update from CVS
|
|
|
|
- initialize __environ in glibc_post_upgrade to empty array,
|
|
|
|
so that it is not NULL
|
|
|
|
- compat symlink for s390x /lib/ld64.so.1
|
|
|
|
- enable glibc-profile on x86-64
|
|
|
|
- only include libNoVersion.so on IA-32, Alpha and Sparc 32-bit
|
|
|
|
|
|
|
|
* Thu Jan 16 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-37
|
|
|
|
- update from CVS
|
|
|
|
- nscd fixes, *scanf fix
|
|
|
|
- fix %%nptlarches noarch build (#81909)
|
|
|
|
- IA-64 TLS fixes
|
|
|
|
|
|
|
|
* Tue Jan 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-36
|
|
|
|
- update from CVS
|
|
|
|
- rework -debuginfo subpackage, add -debuginfo-common
|
|
|
|
subpackage on IA-32, Alpha and Sparc (ie. auxiliary arches)
|
|
|
|
- fix vfork in libc.a on PPC32, Alpha, Sparc
|
|
|
|
- fix libio locks in linuxthreads libc.so if libpthread.so
|
|
|
|
is dlopened later (#81374)
|
|
|
|
|
|
|
|
* Mon Jan 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-35
|
|
|
|
- update from CVS
|
|
|
|
- dlclose bugfixes
|
|
|
|
- fix NPTL libpthread.a
|
|
|
|
- fix glibc_post_upgrade on several arches
|
|
|
|
|
|
|
|
* Sat Jan 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-34
|
|
|
|
- update from CVS
|
|
|
|
- TLS support on IA-64
|
|
|
|
|
|
|
|
* Wed Jan 8 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-33
|
|
|
|
- fix vfork in linuxthreads (#81377, #81363)
|
|
|
|
|
|
|
|
* Tue Jan 7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-32
|
|
|
|
- update from CVS
|
|
|
|
- don't use TLS libs if kernel doesn't set AT_SYSINFO
|
|
|
|
(#80921, #81212)
|
|
|
|
- add ntp_adjtime on alpha (#79996)
|
|
|
|
- fix nptl_db (#81116)
|
|
|
|
|
|
|
|
* Sun Jan 5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-31
|
|
|
|
- update from CVS
|
|
|
|
- support all architectures again
|
|
|
|
|
|
|
|
* Fri Jan 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-30
|
|
|
|
- fix condvar compatibility wrappers
|
|
|
|
- add ugly hack to use non-TLS libs if a binary is seen
|
|
|
|
to have errno, h_errno or _res symbols in .dynsym
|
|
|
|
|
|
|
|
* Fri Jan 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-29
|
|
|
|
- update from CVS
|
|
|
|
- fixes for new condvar
|
|
|
|
|
|
|
|
* Thu Jan 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-28
|
|
|
|
- new NPTL condvar implementation plus related linuxthreads
|
|
|
|
symbol versioning updates
|
|
|
|
|
|
|
|
* Thu Jan 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-27
|
|
|
|
- update from CVS
|
|
|
|
- fix #include <sys/stat.h> with -D_BSD_SOURCE or without
|
|
|
|
feature set macros
|
|
|
|
- make *sigaction, sigwait and raise the same between
|
|
|
|
-lpthread -lc and -lc -lpthread in linuxthreads builds
|
|
|
|
|
|
|
|
* Tue Dec 31 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-26
|
|
|
|
- fix dlclose
|
|
|
|
|
|
|
|
* Sun Dec 29 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-25
|
|
|
|
- enable sysenter by default for now
|
|
|
|
- fix endless loop in ldconfig
|
|
|
|
|
|
|
|
* Sat Dec 28 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-24
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Fri Dec 27 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-23
|
|
|
|
- update from CVS
|
|
|
|
- fix ptmalloc_init after clearenv (#80370)
|
|
|
|
|
|
|
|
* Sun Dec 22 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-22
|
|
|
|
- update from CVS
|
|
|
|
- add IA-64 back
|
|
|
|
- move TLS libraries from /lib/i686 to /lib/tls
|
|
|
|
|
|
|
|
* Thu Dec 19 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-21
|
|
|
|
- system(3) fix for linuxthreads
|
|
|
|
- don't segfault in pthread_attr_init from libc.so
|
|
|
|
- add cancellation tests from nptl to linuxthreads
|
|
|
|
|
|
|
|
* Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-20
|
|
|
|
- fix up lists of exported symbols + their versions
|
|
|
|
from the libraries
|
|
|
|
|
|
|
|
* Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-19
|
|
|
|
- fix --with-tls --enable-kernel=2.2.5 libc on IA-32
|
|
|
|
|
|
|
|
* Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-18
|
|
|
|
- update from CVS
|
|
|
|
- fix NPTL hanging mozilla
|
|
|
|
- initialize malloc in mALLOPt (fixes problems with squid, #79957)
|
|
|
|
- make linuxthreads work with dl_dynamic_weak 0
|
|
|
|
- clear dl_dynamic_weak everywhere
|
|
|
|
|
|
|
|
* Tue Dec 17 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-17
|
|
|
|
- update from CVS
|
|
|
|
- NPTL socket fixes, flockfile/ftrylockfile/funlockfile fix
|
|
|
|
- kill -debug sub-package, rename -debug-static to -debug
|
|
|
|
- clear dl_dynamic_weak for NPTL
|
|
|
|
|
|
|
|
* Mon Dec 16 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-16
|
|
|
|
- fix <bits/mathinline.h> and <bits/nan.h> for C++
|
|
|
|
- automatically generate NPTL libpthread wrappers
|
|
|
|
|
|
|
|
* Mon Dec 16 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-15
|
|
|
|
- update from CVS
|
|
|
|
- all functions which need cancellation should now be cancellable
|
|
|
|
both in libpthread.so and libc.so
|
|
|
|
- removed @@GLIBC_2.3.2 cancellation wrappers
|
|
|
|
|
|
|
|
* Fri Dec 13 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-14
|
|
|
|
- update from CVS
|
2010-07-02 12:42:07 +00:00
|
|
|
- replace __libc_lock_needed@GOTOFF(%%ebx) with
|
|
|
|
%%gs:offsetof(tcbhead_t, multiple_threads)
|
2004-09-09 05:40:37 +00:00
|
|
|
- start of new NPTL cancellation wrappers
|
|
|
|
|
|
|
|
* Thu Dec 12 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-13
|
|
|
|
- update from CVS
|
|
|
|
- use inline locks in malloc
|
|
|
|
|
|
|
|
* Tue Dec 10 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-12
|
|
|
|
- update from CVS
|
|
|
|
- support LD_ASSUME_KERNEL=2.2.5 in statically linked programs
|
|
|
|
|
|
|
|
* Mon Dec 9 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-11
|
|
|
|
- update from CVS
|
|
|
|
- rebuilt with gcc-3.2.1-2
|
|
|
|
|
|
|
|
* Fri Dec 6 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-10
|
|
|
|
- update from CVS
|
|
|
|
- non-nptl --with-tls --without-__thread FLOATING_STACKS libpthread
|
|
|
|
should work now
|
|
|
|
- faster libc locking when using nptl
|
|
|
|
- add OUTPUT_FORMAT to linker scripts
|
|
|
|
- fix x86_64 sendfile (#79111)
|
|
|
|
|
|
|
|
* Wed Dec 4 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-9
|
|
|
|
- update from CVS
|
|
|
|
- RUSCII support (#78906)
|
|
|
|
- for nptl builds add BuildRequires
|
|
|
|
- fix byteswap.h for non-gcc (#77689)
|
|
|
|
- add nptl-devel package
|
|
|
|
|
|
|
|
* Tue Dec 3 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-8
|
|
|
|
- update from CVS
|
|
|
|
- make --enable-kernel=2.2.5 --with-tls --without-__thread
|
|
|
|
ld.so load nptl and other --with-__thread libs
|
|
|
|
- disable nptl by default for now
|
|
|
|
|
|
|
|
* Wed Nov 27 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-7
|
|
|
|
- update from CVS
|
|
|
|
- restructured redhat/Makefile and spec, so that src.rpm contains
|
|
|
|
glibc-<date>.tar.bz2, glibc-redhat-<date>.tar.bz2 and glibc-redhat.patch
|
|
|
|
- added nptl
|
|
|
|
|
|
|
|
* Fri Nov 8 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-6
|
|
|
|
- update from CVS
|
|
|
|
- even more regex fixes
|
|
|
|
- run sed testsuite to check glibc regex
|
|
|
|
|
|
|
|
* Thu Oct 24 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-5
|
|
|
|
- fix LD_DEBUG=statistics and LD_TRACE_PRELINKING in programs
|
|
|
|
using libpthread.so.
|
|
|
|
|
|
|
|
* Thu Oct 24 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-4
|
|
|
|
- update from CVS
|
2010-07-02 12:42:07 +00:00
|
|
|
- fixed %%a and %%A in *printf (#75821)
|
2004-09-09 05:40:37 +00:00
|
|
|
- fix re_comp memory leaking (#76594)
|
|
|
|
|
|
|
|
* Tue Oct 22 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-3
|
|
|
|
- update from CVS
|
|
|
|
- some more regex fixes
|
|
|
|
- fix libpthread.a (#76484)
|
|
|
|
- fix locale-archive enlarging
|
|
|
|
|
|
|
|
* Fri Oct 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-2
|
|
|
|
- update from CVS
|
|
|
|
- don't need to use 128K of stacks for DNS lookups
|
|
|
|
- regex fixes
|
|
|
|
- updated timezone data e.g. for this year's Brasil DST
|
|
|
|
changes
|
|
|
|
- expand ${LIB} in RPATH/RUNPATH/dlopen filenames
|
|
|
|
|
|
|
|
* Fri Oct 11 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-1
|
|
|
|
- update to 2.3.1 final
|
|
|
|
- support really low thread stack sizes (#74073)
|
|
|
|
- tzdata update
|
|
|
|
|
|
|
|
* Wed Oct 9 2002 Jakub Jelinek <jakub@redhat.com> 2.3-2
|
|
|
|
- update from CVS
|
|
|
|
- handle low stack limits
|
|
|
|
- move s390x into */lib64
|
|
|
|
|
|
|
|
* Thu Oct 3 2002 Jakub Jelinek <jakub@redhat.com> 2.3-1
|
|
|
|
- update to 2.3 final
|
|
|
|
- fix freopen on libstdc++ <= 2.96 stdin/stdout/stderr (#74800)
|
|
|
|
|
|
|
|
* Sun Sep 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-3
|
|
|
|
- don't prelink -r libc.so on ppc/x86-64/sparc*, it doesn't
|
|
|
|
speed things up, because they are neither REL arches, nor
|
|
|
|
ELF_MACHINE_REL_RELATIVE
|
|
|
|
- fix sparc64 build
|
|
|
|
|
|
|
|
* Sun Sep 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-2
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Sat Sep 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-1
|
|
|
|
- update from CVS
|
|
|
|
- prelink on ppc and x86-64 too
|
|
|
|
- don't remove ppc memset
|
|
|
|
- instead of listing on which arches to remove glibc-compat
|
|
|
|
list where it should stay
|
|
|
|
|
|
|
|
* Fri Sep 6 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-5
|
|
|
|
- fix wcsmbs functions with invalid character sets (or malloc
|
|
|
|
failures)
|
|
|
|
- make sure __ctype_b etc. compat vars are updated even if
|
|
|
|
they are copy relocs in the main program
|
|
|
|
|
|
|
|
* Thu Sep 5 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-4
|
|
|
|
- fix /lib/libnss1_dns.so.1 (missing __set_h_errno definition
|
|
|
|
leading to unresolved __set_h_errno symbol)
|
|
|
|
|
|
|
|
* Wed Sep 4 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-3
|
|
|
|
- security fix - increase dns-network.c MAXPACKET to at least
|
|
|
|
65536 to avoid buffer overrun. Likewise glibc-compat
|
|
|
|
dns-{host,network}.c.
|
|
|
|
|
|
|
|
* Tue Sep 3 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-2
|
|
|
|
- temporarily add back __ctype_b, __ctype_tolower and __ctype_toupper to
|
|
|
|
libc.a and export them as @@GLIBC_2.0 symbols, not @GLIBC_2.0
|
|
|
|
from libc.so - we have still lots of .a libraries referencing
|
|
|
|
__ctype_{b,tolower,toupper} out there...
|
|
|
|
|
|
|
|
* Tue Sep 3 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-1
|
|
|
|
- update from CVS
|
|
|
|
- 2.2.93 release
|
|
|
|
- use double instead of single indirection in isXXX macros
|
|
|
|
- per-locale wcsmbs conversion state
|
|
|
|
|
|
|
|
* Sat Aug 31 2002 Jakub Jelinek <jakub@redhat.com> 2.2.92-2
|
|
|
|
- update from CVS
|
|
|
|
- fix newlocale/duplocale/uselocale
|
|
|
|
- disable profile on x86_64 for now
|
|
|
|
|
|
|
|
* Sat Aug 31 2002 Jakub Jelinek <jakub@redhat.com> 2.2.92-1
|
|
|
|
- update from CVS
|
|
|
|
- 2.2.92 release
|
|
|
|
- fix gettext after uselocale
|
|
|
|
- fix locales in statically linked threaded programs
|
|
|
|
- fix NSS
|
|
|
|
|
|
|
|
* Thu Aug 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.91-1
|
|
|
|
- update from CVS
|
|
|
|
- 2.2.91 release
|
|
|
|
- fix fd leaks in locale-archive reader (#72043)
|
|
|
|
- handle EROFS in build-locale-archive gracefully (#71665)
|
|
|
|
|
|
|
|
* Wed Aug 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-27
|
|
|
|
- update from CVS
|
|
|
|
- fix re_match (#72312)
|
|
|
|
- support more than 1024 threads
|
|
|
|
|
|
|
|
* Fri Aug 23 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-26
|
|
|
|
- update from CVS
|
|
|
|
- fix i386 build
|
|
|
|
|
|
|
|
* Thu Aug 22 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-25
|
|
|
|
- update from CVS
|
|
|
|
- fix locale-archive loading hang on some (non-primary) locales
|
|
|
|
(#72122, #71878)
|
|
|
|
- fix umount problems with locale-archives when /usr is a separate
|
|
|
|
partition (#72043)
|
|
|
|
- add LICENSES file
|
|
|
|
|
|
|
|
* Fri Aug 16 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-24
|
|
|
|
- update from CVS
|
|
|
|
- only mmap up to 2MB of locale-archive on 32-bit machines
|
|
|
|
initially
|
|
|
|
- fix fseek past end + fread segfault with mmaped stdio
|
|
|
|
- include <sys/debugreg.h> which is mistakenly not included
|
|
|
|
in glibc-devel on IA-32
|
|
|
|
|
|
|
|
* Fri Aug 16 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-23
|
|
|
|
- don't return normalized locale name in setlocale when using
|
|
|
|
locale-archive
|
|
|
|
|
|
|
|
* Thu Aug 15 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-22
|
|
|
|
- update from CVS
|
|
|
|
- optimize for primary system locale
|
|
|
|
- localedef fixes (#71552, #67705)
|
|
|
|
|
|
|
|
* Wed Aug 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-21
|
|
|
|
- fix path to locale-archive in libc reader
|
2010-07-02 12:42:07 +00:00
|
|
|
- build locale archive at glibc-common %%post time
|
2004-09-09 05:40:37 +00:00
|
|
|
- export __strtold_internal and __wcstold_internal on Alpha again
|
|
|
|
- workaround some localedata problems
|
|
|
|
|
|
|
|
* Tue Aug 13 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-20
|
|
|
|
- update from CVS
|
|
|
|
- patch out set_thread_area for now
|
|
|
|
|
|
|
|
* Fri Aug 9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-19
|
|
|
|
- update from CVS
|
|
|
|
- GB18030 patch from Yu Shao
|
|
|
|
- applied Debian patch for getaddrinfo IPv4 vs. IPv6
|
|
|
|
- fix regcomp (#71039)
|
|
|
|
|
|
|
|
* Sun Aug 4 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-18
|
|
|
|
- update from CVS
|
|
|
|
- use /usr/sbin/prelink, not prelink (#70376)
|
|
|
|
|
|
|
|
* Thu Jul 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-17
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Thu Jul 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-16
|
|
|
|
- update from CVS
|
|
|
|
- ungetc fix (#69586)
|
|
|
|
- fseek errno fix (#69589)
|
|
|
|
- change *etrlimit prototypes for C++ (#68588)
|
|
|
|
- use --without-tls instead of --disable-tls
|
|
|
|
|
|
|
|
* Thu Jul 11 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-15
|
|
|
|
- set nscd user's shell to /sbin/nologin (#68369)
|
|
|
|
- fix glibc-compat buffer overflows (security)
|
|
|
|
- buildrequire prelink, don't build glibc's own copy of it (#67567)
|
|
|
|
- update from CVS
|
|
|
|
- regex fix (#67734)
|
|
|
|
- fix unused warnings (#67706)
|
|
|
|
- fix freopen with mmap stdio (#67552)
|
|
|
|
- fix realloc (#68499)
|
|
|
|
|
|
|
|
* Tue Jun 25 2002 Bill Nottingham <notting@redhat.com> 2.2.90-14
|
|
|
|
- update from CVS
|
|
|
|
- fix argp on long words
|
|
|
|
- update atime in libio
|
|
|
|
|
|
|
|
* Sat Jun 22 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-13
|
|
|
|
- update from CVS
|
|
|
|
- a thread race fix
|
|
|
|
- fix readdir on invalid dirp
|
|
|
|
|
|
|
|
* Wed Jun 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-12
|
|
|
|
- update from CVS
|
|
|
|
- don't use __thread in headers
|
|
|
|
- fix system(3) in threaded apps
|
|
|
|
- update prelink, so that it is possible to prelink -u libc.so.6.1
|
|
|
|
on Alpha
|
|
|
|
|
|
|
|
* Fri Jun 7 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-11
|
|
|
|
- update from CVS
|
|
|
|
- fix __moddi3 (#65612, #65695)
|
|
|
|
- fix ether_line (#64427)
|
|
|
|
- fix setvbuf with mmap stdio (#65864)
|
|
|
|
- --disable-tls for now, waiting for kernel
|
|
|
|
- avoid duplication of __divtf3 etc. on IA-64
|
|
|
|
- make sure get*ent_r and _IO_wfile_jumps are exported (#62278)
|
|
|
|
|
|
|
|
* Tue May 21 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-10
|
|
|
|
- update from CVS
|
|
|
|
- fix Alpha pthread bug with gcc 3.1
|
|
|
|
|
|
|
|
* Fri Apr 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-35
|
|
|
|
- fix nice
|
|
|
|
|
|
|
|
* Mon Apr 15 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-34
|
|
|
|
- add relocation dependencies even for weak symbols (#63422)
|
|
|
|
- stricter check_fds check for suid/sgid binaries
|
|
|
|
- run make check at %%install time
|
|
|
|
|
|
|
|
* Sat Apr 13 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-33
|
|
|
|
- handle Dec 31 1969 in mktime for timezones west of GMT (#63369)
|
|
|
|
- back out do-lookup.h change (#63261, #63305)
|
|
|
|
- use "memory" clobber instead all the fancy stuff in i386/i686/bits/string.h
|
|
|
|
since lots of compilers break on it
|
|
|
|
- fix sparc build with gcc 3.1
|
|
|
|
- fix spec file for athlon
|
|
|
|
|
|
|
|
* Tue Apr 9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-32
|
|
|
|
- fix debugging of threaded apps (#62804)
|
|
|
|
- fix DST for Estonia (#61494)
|
|
|
|
- document that pthread_mutexattr_?etkind_np are deprecated
|
|
|
|
and pthread_mutexattr_?ettype should be used instead in man
|
|
|
|
pages (#61485)
|
|
|
|
- fix libSegFault.so undefined externals
|
|
|
|
|
|
|
|
* Fri Apr 5 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-31
|
|
|
|
- temporarily disable prelinking ld.so, as some statically linked
|
|
|
|
binaries linked against debugging versions of old glibcs die on it
|
|
|
|
(#62352)
|
|
|
|
- fix <semaphore.h> for -std=c99 (#62516)
|
|
|
|
- fix ether_ntohost segfault (#62397)
|
|
|
|
- remove in glibc_post_upgrade on i386 all /lib/i686/libc-*.so,
|
|
|
|
/lib/i686/libm-*.so and /lib/i686/libpthread-*.so, not just current
|
|
|
|
version (#61633)
|
|
|
|
- prelink -r on alpha too
|
|
|
|
|
|
|
|
* Thu Mar 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-30
|
|
|
|
- update GB18030 iconv module (Yu Shao)
|
|
|
|
|
|
|
|
* Tue Mar 26 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-29
|
|
|
|
- features.h fix
|
|
|
|
|
|
|
|
* Tue Mar 26 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-28
|
|
|
|
- update from CVS
|
|
|
|
- fix nscd with huge groups
|
|
|
|
- fix nis to not close fds it shouldn't
|
|
|
|
- rebuilt against newer glibc-kernheaders to use the correct
|
|
|
|
PATH_MAX
|
|
|
|
- handle .athlon.rpm glibc the same way as .i686.rpm
|
2011-05-13 14:56:46 +00:00
|
|
|
- add a couple of .ISO-8859-15 locales (#61908)
|
2004-09-09 05:40:37 +00:00
|
|
|
- readd temporarily currencies which were superceeded by Euro
|
|
|
|
into the list of accepted currencies by localedef to make
|
|
|
|
standard conformance testsuites happy
|
|
|
|
- temporarily moved __libc_waitpid back to make Sun JDK happy
|
|
|
|
- use old malloc code
|
|
|
|
- prelink i686/athlon ld.so and prelink -r i686/athlon libc.so
|
|
|
|
|
|
|
|
* Thu Mar 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-27
|
|
|
|
- update from CVS
|
|
|
|
- fix DST handling for southern hemisphere (#60747)
|
|
|
|
- fix daylight setting for tzset (#59951)
|
|
|
|
- fix ftime (#60350)
|
|
|
|
- fix nice return value
|
|
|
|
- fix a malloc segfault
|
|
|
|
- temporarily moved __libc_wait, __libc_fork and __libc_stack_end
|
|
|
|
back to what they used to be exported at
|
|
|
|
- censorship (#60758)
|
|
|
|
|
|
|
|
* Thu Feb 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-26
|
|
|
|
- update from CVS
|
|
|
|
- use __attribute__((visibility(...))) if supported, use _rtld_local
|
|
|
|
for ld.so only objects
|
|
|
|
- provide libc's own __{,u}{div,mod}di3
|
|
|
|
|
|
|
|
* Wed Feb 27 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-25
|
|
|
|
- switch back to 2.2.5, mmap stdio needs work
|
|
|
|
|
|
|
|
* Mon Feb 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-8
|
|
|
|
- fix two other mmap stdio bugs (#60228)
|
|
|
|
|
|
|
|
* Thu Feb 21 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-7
|
|
|
|
- fix yet another mmap stdio bug (#60145)
|
|
|
|
|
|
|
|
* Tue Feb 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-6
|
|
|
|
- fix mmap stdio bug (seen on ld as File truncated error, #60043)
|
|
|
|
- apply Andreas Schwab's fix for pthread sigwait
|
|
|
|
- remove /lib/i686/ libraries in glibc_post_upgrade when
|
|
|
|
performing i386 glibc install
|
|
|
|
|
|
|
|
* Thu Feb 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-5
|
|
|
|
- update to CVS
|
|
|
|
- added glibc-utils subpackage
|
|
|
|
- disable autoreq in glibc-debug
|
|
|
|
- readd %%lang() to locale files
|
|
|
|
|
2013-03-21 22:18:11 +00:00
|
|
|
* Thu Feb 7 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-4
|
2004-09-09 05:40:37 +00:00
|
|
|
- update to CVS
|
|
|
|
- move glibc private symbols to GLIBC_PRIVATE symbol version
|
|
|
|
|
|
|
|
* Wed Jan 9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-3
|
|
|
|
- fix a sqrt bug on alpha which caused SHN_UNDEF $__full_ieee754_sqrt..ng
|
|
|
|
symbol in libm
|
|
|
|
|
|
|
|
* Tue Jan 8 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-2
|
|
|
|
- add debug-static package
|
|
|
|
|
|
|
|
* Mon Dec 31 2001 Jakub Jelinek <jakub@redhat.com> 2.2.90-1
|
|
|
|
- update from CVS
|
|
|
|
- remove -D__USE_STRING_INLINES
|
|
|
|
- add debug subpackage to trim glibc and glibc-devel size
|
|
|
|
|
|
|
|
* Wed Oct 3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-19
|
|
|
|
- fix strsep
|
|
|
|
|
|
|
|
* Fri Sep 28 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-18
|
|
|
|
- fix a ld.so bug with duplicate searchlists in l_scope
|
|
|
|
- fix erfcl(-inf)
|
|
|
|
- turn /usr/lib/librt.so into linker script
|
|
|
|
|
|
|
|
* Wed Sep 26 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-17
|
|
|
|
- fix a ld.so lookup bug after lots of dlopen calls
|
|
|
|
- fix CMSG_DATA for non-gcc non-ISOC99 compilers (#53984)
|
|
|
|
- prelinking support for Sparc64
|
|
|
|
|
|
|
|
* Fri Sep 21 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-16
|
|
|
|
- update from CVS to fix DT_SYMBOLIC
|
|
|
|
- prelinking support for Alpha and Sparc
|
|
|
|
|
|
|
|
* Tue Sep 18 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-15
|
|
|
|
- update from CVS
|
|
|
|
- linuxthreads now retries if -1/EINTR is returned from
|
|
|
|
reading or writing to thread manager pipe (#43742)
|
|
|
|
- use DT_FILTER in librt.so (#53394)
|
|
|
|
- update glibc prelink patch so that it handles filters
|
|
|
|
- fix timer_* with SIGEV_NONE (#53494)
|
|
|
|
- make glibc_post_upgrade work on PPC (patch from Franz Sirl)
|
|
|
|
|
|
|
|
* Mon Sep 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-14
|
|
|
|
- fix build on sparc32
|
|
|
|
- 2.2.4-13 build for some reason missed some locales
|
|
|
|
on alpha/ia64
|
|
|
|
|
|
|
|
* Mon Sep 3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-13
|
|
|
|
- fix iconvconfig
|
|
|
|
|
|
|
|
* Mon Sep 3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-12
|
|
|
|
- add fam to /etc/rpc (#52863)
|
|
|
|
- fix <inttypes.h> for C++ (#52960)
|
|
|
|
- fix perror
|
|
|
|
|
|
|
|
* Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-11
|
|
|
|
- fix strnlen(x, -1)
|
|
|
|
|
|
|
|
* Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-10
|
|
|
|
- doh, <bits/libc-lock.h> should only define __libc_rwlock_t
|
|
|
|
if __USE_UNIX98.
|
|
|
|
|
|
|
|
* Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-9
|
|
|
|
- fix bits/libc-lock.h so that gcc can compile
|
|
|
|
- fix s390 build
|
|
|
|
|
|
|
|
* Fri Aug 24 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-8
|
|
|
|
- kill stale library symlinks in ldconfig (#52350)
|
|
|
|
- fix inttypes.h for G++ < 3.0
|
|
|
|
- use DT_REL*COUNT
|
|
|
|
|
|
|
|
* Wed Aug 22 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-7
|
|
|
|
- fix strnlen on IA-64 (#50077)
|
|
|
|
|
|
|
|
* Thu Aug 16 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-6
|
|
|
|
- glibc 2.2.4 final
|
|
|
|
- fix -lpthread -static (#51672)
|
|
|
|
|
|
|
|
* Fri Aug 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-5
|
|
|
|
- doh, include libio/tst-swscanf.c
|
|
|
|
|
|
|
|
* Fri Aug 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-4
|
|
|
|
- don't crash on catclose(-1)
|
2010-07-02 12:42:07 +00:00
|
|
|
- fix wscanf %%[] handling
|
2004-09-09 05:40:37 +00:00
|
|
|
- fix return value from swprintf
|
2010-07-02 12:42:07 +00:00
|
|
|
- handle year + %%U/%%W week + week day in strptime
|
2004-09-09 05:40:37 +00:00
|
|
|
|
|
|
|
* Thu Aug 9 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-3
|
|
|
|
- update from CVS to
|
|
|
|
- fix strcoll (#50548)
|
|
|
|
- fix seekdir (#51132)
|
|
|
|
- fix memusage (#50606)
|
|
|
|
- don't make gconv-modules.cache %%config file, just don't verify
|
|
|
|
its content.
|
|
|
|
|
|
|
|
* Mon Aug 6 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix strtod and *scanf (#50723, #50724)
|
|
|
|
|
|
|
|
* Sat Aug 4 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS
|
|
|
|
- fix iconv cache handling
|
2010-07-02 12:42:07 +00:00
|
|
|
- glibc should not own %%{_infodir}, %%{_mandir} nor %%{_mandir}/man3 (#50673)
|
2004-09-09 05:40:37 +00:00
|
|
|
- add gconv-modules.cache as emtpy config file (#50699)
|
|
|
|
- only run iconvconfig if /usr is mounted read-write (#50667)
|
|
|
|
|
|
|
|
* Wed Jul 25 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- move iconvconfig from glibc-common into glibc subpackage,
|
|
|
|
call it from glibc_post_upgrade instead of common's post.
|
|
|
|
|
|
|
|
* Tue Jul 24 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- turn off debugging printouts in iconvconfig
|
|
|
|
|
|
|
|
* Tue Jul 24 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS
|
|
|
|
- fix IA-32 makecontext
|
|
|
|
- make fflush(0) thread-safe (#46446)
|
|
|
|
|
|
|
|
* Mon Jul 23 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- adjust prelinking DT_* and SHT_* values in elf.h
|
|
|
|
- update from CVS
|
|
|
|
- iconv cache
|
|
|
|
- make iconv work in SUID/SGID programs (#34611)
|
|
|
|
|
|
|
|
* Fri Jul 20 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS
|
|
|
|
- kill non-pic code in libm.so
|
|
|
|
- fix getdate
|
|
|
|
- fix some locales (#49402)
|
|
|
|
- rebuilt with binutils-2.11.90.0.8-5 to place .interp section
|
|
|
|
properly in libBrokenLocale.so, libNoVersion.so and libanl.so
|
|
|
|
- add floating stacks on IA-64, Alpha, Sparc (#49308)
|
|
|
|
|
|
|
|
* Mon Jul 16 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- make /lib/i686 directory owned by glibc*.i686.rpm
|
|
|
|
|
|
|
|
* Mon Jul 9 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- remove rquota.[hx] headers which are now provided by quota (#47141)
|
|
|
|
- add prelinking patch
|
|
|
|
|
|
|
|
* Thu Jul 5 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- require sh-utils for nscd
|
|
|
|
|
|
|
|
* Mon Jun 25 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS (#43681, #43350, #44663, #45685)
|
|
|
|
- fix ro_RO bug (#44644)
|
|
|
|
|
|
|
|
* Wed Jun 6 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix a bunch of math bugs (#43210, #43345, #43346, #43347, #43348, #43355)
|
|
|
|
- make rpc headers -ansi compilable (#42390)
|
|
|
|
- remove alphaev6 optimized memcpy, since there are still far too many
|
|
|
|
broken apps which call memcpy where they should call memmove
|
|
|
|
- update from CVS to (among other things):
|
|
|
|
- fix tanhl bug (#43352)
|
|
|
|
|
|
|
|
* Tue May 22 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix #include <signal.h> with -D_XOPEN_SOURCE=500 on ia64 (#35968)
|
|
|
|
- fix a dlclose reldeps handling bug
|
|
|
|
- some more profiling fixes
|
|
|
|
- fix tgmath.h
|
|
|
|
|
|
|
|
* Thu May 17 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- make ldconfig more quiet
|
|
|
|
- fix LD_PROFILE on i686 (#41030)
|
|
|
|
|
|
|
|
* Wed May 16 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix the hardlink program, so that it really catches all files with
|
|
|
|
identical content
|
|
|
|
- add a s390x clone fix
|
|
|
|
|
|
|
|
* Wed May 16 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix rpc for non-threaded apps using svc_fdset and similar variables (#40409)
|
|
|
|
- fix nss compatibility DSO versions for alphaev6
|
|
|
|
- add a hardlink program instead of the shell 3x for plus cmp -s/link
|
|
|
|
which takes a lot of time during build
|
|
|
|
- rework BuildPreReq and Conflicts with gcc, so that
|
|
|
|
it applies only where it has to
|
|
|
|
|
|
|
|
* Fri May 11 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix locale name of ja_JP in UTF-8 (#39783)
|
|
|
|
- fix re_search_2 (#40244)
|
|
|
|
- fix memusage script (#39138, #39823)
|
|
|
|
- fix dlsym(RTLD_NEXT, ) from main program (#39803)
|
|
|
|
- fix xtrace script (#39609)
|
|
|
|
- make glibc conflict with glibc-devel 2.2.2 and below (to make sure
|
|
|
|
libc_nonshared.a has atexit)
|
|
|
|
- fix getconf LFS_CFLAGS on 64bitters
|
|
|
|
- recompile with gcc-2.96-84 or above to fix binary compatibility problem
|
|
|
|
with __frame_state_for function (#37933)
|
|
|
|
|
|
|
|
* Fri Apr 27 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- glibc 2.2.3 release
|
|
|
|
- fix strcoll (#36539)
|
|
|
|
- add BuildPreReqs (#36378)
|
|
|
|
|
|
|
|
* Wed Apr 25 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Fri Apr 20 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS
|
|
|
|
- fix sparc64, ia64
|
|
|
|
- fix some locale syntax errors (#35982)
|
|
|
|
|
|
|
|
* Wed Apr 18 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Wed Apr 11 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS
|
|
|
|
|
|
|
|
* Fri Apr 6 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- support even 2.4.0 kernels on ia64, sparc64 and s390x
|
|
|
|
- include UTF-8 locales
|
|
|
|
- make gconv-modules %%config(noreplace)
|
|
|
|
|
|
|
|
* Fri Mar 23 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- back out sunrpc changes
|
|
|
|
|
|
|
|
* Wed Mar 21 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS
|
|
|
|
- fix ia64 build
|
|
|
|
- fix pthread_getattr_np
|
|
|
|
|
|
|
|
* Fri Mar 16 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS
|
|
|
|
- run atexit() registered functions at dlclose time if they are in shared
|
|
|
|
libraries (#28625)
|
|
|
|
- add pthread_getattr_np API to make JVM folks happy
|
|
|
|
|
|
|
|
* Wed Mar 14 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- require 2.4.1 instead of 2.4.0 on platforms where it required 2.4 kernel
|
|
|
|
- fix ldd behaviour on unresolved symbols
|
|
|
|
- remove nonsensical ldconfig warning, update osversion for the most
|
|
|
|
recent library with the same soname in the same directory instead (#31703)
|
|
|
|
- apply selected patches from CVS
|
|
|
|
- s390x spec file changes from Florian La Roche
|
|
|
|
|
|
|
|
* Wed Mar 7 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix gencat (#30894)
|
|
|
|
- fix ldconfig changes from yesterday, fix LD_ASSUME_KERNEL handling
|
|
|
|
|
|
|
|
* Tue Mar 6 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS
|
|
|
|
- make pthread_attr_setstacksize consistent before and after pthread manager
|
|
|
|
is started (#28194)
|
|
|
|
- pass back struct sigcontext from pthread signal wrapper (on ia32 only so
|
|
|
|
far, #28493)
|
|
|
|
- on i686 ship both --enable-kernel 2.2.5 and 2.4.0 libc/libm/libpthread,
|
|
|
|
make ld.so pick the right one
|
|
|
|
|
|
|
|
* Sat Feb 17 2001 Preston Brown <pbrown@redhat.com>
|
|
|
|
- glib-common doesn't require glibc, until we can figure out how to get out of dependency hell.
|
|
|
|
|
|
|
|
* Sat Feb 17 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- make glibc require particular version of glibc-common
|
|
|
|
and glibc-common prerequire glibc.
|
|
|
|
|
|
|
|
* Fri Feb 16 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- glibc 2.2.2 release
|
|
|
|
- fix regex REG_ICASE bug seen in ksymoops
|
|
|
|
|
|
|
|
* Sat Feb 10 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix regexec leaking memory (#26864)
|
|
|
|
|
|
|
|
* Fri Feb 9 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS
|
|
|
|
- fix ia64 build with gnupro
|
|
|
|
- make regex 64bit clean
|
|
|
|
- fix tgmath make check failures on alpha
|
|
|
|
|
|
|
|
* Tue Feb 6 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update again for ia64 DF_1_INITFIRST
|
|
|
|
|
|
|
|
* Fri Feb 2 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update from CVS
|
|
|
|
- fix getaddrinfo (#25437)
|
|
|
|
- support DF_1_INITFIRST (#25029)
|
|
|
|
|
|
|
|
* Wed Jan 24 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- build all auxiliary arches with --enablekernel 2.4.0, those wanting
|
|
|
|
to run 2.2 kernels can downgrade to the base architecture glibc.
|
|
|
|
|
|
|
|
* Sat Jan 20 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- remove %%lang() flags from %%{_prefix}/lib/locale files temporarily
|
|
|
|
|
|
|
|
* Sun Jan 14 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update to 2.2.1 final
|
|
|
|
- fix a pthread_kill_other_threads_np breakage (#23966)
|
|
|
|
- make static binaries using dlopen work on ia64 again
|
|
|
|
- fix a typo in glibc-common group
|
|
|
|
|
|
|
|
* Wed Jan 10 2001 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
|
|
- devel requires glibc = %%{version}
|
|
|
|
- noreplace /etc/nscd.conf
|
|
|
|
|
|
|
|
* Wed Jan 10 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- some more security fixes:
|
|
|
|
- don't look up LD_PRELOAD libs in cache for SUID apps
|
|
|
|
(because that bypasses SUID bit checking on the library)
|
|
|
|
- place output files for profiling SUID apps into /var/profile,
|
|
|
|
use O_NOFOLLOW for them
|
|
|
|
- add checks for $MEMUSAGE_OUTPUT and $SEGFAULT_OUTPUT_NAME
|
|
|
|
- hardlink identical locale files together
|
|
|
|
- add %%lang() tags to locale stuff
|
|
|
|
- remove ko_KR.utf8 for now, it is provided by locale-utf8 package
|
|
|
|
|
|
|
|
* Mon Jan 8 2001 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- add glibc-common subpackage
|
|
|
|
- fix alphaev6 memcpy (#22494)
|
|
|
|
- fix sys/cdefs.h (#22908)
|
|
|
|
- don't define stdin/stdout/stderr as macros for -traditional (#22913)
|
|
|
|
- work around a bug in IBM JDK (#22932, #23012)
|
|
|
|
- fix pmap_unset when network is down (#23176)
|
|
|
|
- move nscd in rc.d before netfs on shutdown
|
|
|
|
- fix $RESOLV_HOST_CONF in SUID apps (#23562)
|
|
|
|
|
|
|
|
* Fri Dec 15 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix ftw and nftw
|
|
|
|
|
|
|
|
* Wed Dec 13 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix fcvt (#22184)
|
|
|
|
- ldd /lib/ld-linux.so.2 is not crashing any longer again (#22197)
|
|
|
|
- fix gencat
|
|
|
|
|
|
|
|
* Mon Dec 11 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix alpha htonl and alphaev6 stpcpy
|
|
|
|
|
|
|
|
* Sat Dec 9 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update to CVS to:
|
|
|
|
- fix getnameinfo (#21934)
|
|
|
|
- don't stomp on memory in rpath handling (#21544)
|
|
|
|
- fix setlocale (#21507)
|
|
|
|
- fix libNoVersion.so.1 loading code (#21579)
|
|
|
|
- use auxarches define in spec file for auxiliary
|
|
|
|
architectures (#21219)
|
|
|
|
- remove /usr/share directory from filelist (#21218)
|
|
|
|
|
|
|
|
* Sun Nov 19 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update to CVS to fix getaddrinfo
|
|
|
|
|
|
|
|
* Fri Nov 17 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update to CVS to fix freopen
|
|
|
|
- remove all alpha workarounds, not needed anymore
|
|
|
|
|
|
|
|
* Wed Nov 15 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix dladdr bug on alpha/sparc32/sparc64
|
|
|
|
- fix Makefiles so that they run static tests properly
|
|
|
|
|
|
|
|
* Tue Nov 14 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update to CVS to fix ldconfig
|
|
|
|
|
|
|
|
* Thu Nov 9 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update to glibc 2.2 release
|
|
|
|
|
|
|
|
* Mon Nov 6 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update to CVS to:
|
|
|
|
- export __sysconf@@GLIBC_2.2 (#20417)
|
|
|
|
|
|
|
|
* Fri Nov 3 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- merge to 2.1.97
|
|
|
|
|
|
|
|
* Mon Oct 30 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- update to CVS, including:
|
|
|
|
- fix WORD_BIT/LONG_BIT definition in limits.h (#19088)
|
|
|
|
- fix hesiod (#19375)
|
|
|
|
- set LC_MESSAGES in zic/zdump for proper error message output (#19495)
|
|
|
|
- fix LFS fcntl when used with non-LFS aware kernels (#19730)
|
|
|
|
|
|
|
|
* Thu Oct 19 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix alpha semctl (#19199)
|
|
|
|
- update to CVS, including:
|
|
|
|
- fix glibc headers for Compaq non-gcc compilers
|
|
|
|
- fix locale alias handling code (#18832)
|
|
|
|
- fix rexec on little endian machines (#18886)
|
|
|
|
- started writing changelog again
|
|
|
|
|
|
|
|
* Thu Aug 10 2000 Adrian Havill <havill@redhat.com>
|
|
|
|
- added ja ujis alias for backwards compatibility
|