source: projects/specs/branches/6/g/glibc/glibc-vl.spec @ 7425

Revision 7425, 177.1 KB checked in by iwamoto, 11 years ago (diff)

glibc update @ Vine6

Line 
1%define glibcsrcdir glibc-2.11.1
2%define glibc_release_url ftp://sources.redhat.com/pub/glibc/releases/
3%define glibcversion 2.11.1
4### glibc.spec.in follows:
5%define run_glibc_tests 1
6%define auxarches athlon sparcv9v sparc64v alphaev6
7%define xenarches i686 athlon
8%ifarch %{xenarches}
9%define buildxen 1
10%define xenpackage 0
11%else
12%define buildxen 0
13%define xenpackage 0
14%endif
15%ifarch ppc ppc64
16##VINE##%define buildpower6 1
17%define buildpower6 0
18%else
19%define buildpower6 0
20%endif
21%define rtkaioarches %{ix86} x86_64 ia64 ppc ppc64 s390 s390x
22%define debuginfocommonarches alpha alphaev6 sparc sparcv9 sparcv9v sparc64 sparc64v
23%if 0%{?rhel} >= 6
24%define multiarcharches ppc pp64 %{ix86} x86_64
25%else
26%define multiarcharches %{ix86} x86_64
27%endif
28%define _unpackaged_files_terminate_build 0
29%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
30%if %{build_compat32}
31%define auxarches i586 athlon sparcv9 alphaev6
32%endif
33
34Summary: The GNU libc libraries
35Summary(ja): GNU libc ライブラリ
36Name: glibc
37Version: %{glibcversion}
38Release: 10%{?_dist_release}
39# GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries.
40# Things that are linked directly into dynamically linked programs
41# and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional
42# exception which allows linking it into any kind of programs or shared
43# libraries without restrictions.
44License: LGPLv2+ and LGPLv2+ with exceptions and GPLv2+
45Group: System Environment/Libraries
46URL: http://sources.redhat.com/glibc/
47Source0: %{?glibc_release_url}%{glibcsrcdir}.tar.bz2
48Source1: %{glibcsrcdir}-fedora.tar.bz2
49Source10: find_provides_glibc.sh
50Source11: find_requires_glibc.sh
51Patch0: %{name}-fedora.patch
52Patch1: %{name}-ia64-lib64.patch
53# updates or security fix
54Patch100: glibc-rh643822.patch
55Patch101: glibc-rh667974.patch
56Patch102: glibc-rh625893.patch
57Patch103: glibc-rh681054.patch
58Patch104: glibc-rh645672.patch
59Patch105: glibc-2.11.1_CVE-2012-3480.patch
60
61Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
62Obsoletes: glibc-profile < 2.4
63Provides: ldconfig
64# The dynamic linker supports DT_GNU_HASH
65Provides: rtld(GNU_HASH)
66Requires: glibc-common = %{version}-%{release}
67# Require libgcc in case some program calls pthread_cancel in its %%post
68Requires(pre): basesystem, libgcc
69# This is for building auxiliary programs like memusage, nscd
70# For initial glibc bootstraps it can be commented out
71BuildRequires: gd-devel libpng-devel zlib-devel texinfo
72BuildRequires: audit-libs-devel >= 1.1.3, sed >= 3.95, libcap-devel, gettext, nss-devel
73BuildRequires: /bin/ps, /bin/kill, /bin/awk
74# This is to ensure that __frame_state_for is exported by glibc
75# will be compatible with egcs 1.x.y
76BuildRequires: gcc >= 3.2
77%define enablekernel 2.6.18
78%ifarch i386
79%define nptl_target_cpu i486
80%else
81%define nptl_target_cpu %{_target_cpu}
82%endif
83%ifarch %{multiarcharches}
84# Need STT_IFUNC support
85%ifarch ppc ppc64
86BuildRequires: binutils >= 2.20.51.0.2
87Conflicts: binutils < 2.20.51.0.2
88%else
89BuildRequires: binutils >= 2.19.51.0.10
90Conflicts: binutils < 2.19.51.0.10
91%endif
92# Earlier releases have broken support for IRELATIVE relocations
93Conflicts: prelink < 0.4.2
94%else
95# Need AS_NEEDED directive
96# Need --hash-style=* support
97BuildRequires: binutils >= 2.17.50.0.2-5
98%endif
99BuildRequires: gcc >= 3.2.1-5
100%ifarch ppc s390 s390x
101BuildRequires: gcc >= 4.1.0-0.17
102%endif
103%if 0%{?_enable_debug_packages}
104BuildRequires: elfutils >= 0.72
105BuildRequires: rpm >= 4.2-0.56
106%endif
107%define __find_provides %{SOURCE10}
108%define __find_requires %{SOURCE11}
109%define _filter_GLIBC_PRIVATE 1
110
111Vendor: Project Vine
112Distribution: Vine Linux
113
114%description
115The glibc package contains standard libraries which are used by
116multiple programs on the system. In order to save disk space and
117memory, as well as to make upgrading easier, common system code is
118kept in one place and shared between programs. This particular package
119contains the most important sets of shared libraries: the standard C
120library and the standard math library. Without these two libraries, a
121Linux system will not function.
122
123%description -l ja
124glibc パッケージはシステム上の複数のプログラムで使われる標準ライブラリを
125ふくみます。ディスクスペースとメモリを節約したり、アップグレードを
126用意にするために、共通のシステムコードは一つの場所におかれ、プログラム
127間で共有されます。この部分的なパッケージはシェアドライブラリのかなり
128重要なセットをふくみます: 標準 C ライブラリと標準数値ライブラリです。
129この二つのライブラリ抜きでは、Linux システムは機能しません。
130
131%package -n compat32-%{name}
132Summary: The GNU libc libraries.
133Summary(ja): GNU libc ライブラリ
134Group: System Environment/Libraries
135Requires: %{name} >= %{version}
136
137%description -n compat32-%{name}
138The glibc package contains standard libraries which are used by
139multiple programs on the system. In order to save disk space and
140memory, as well as to make upgrading easier, common system code is
141kept in one place and shared between programs. This particular package
142contains the most important sets of shared libraries: the standard C
143library and the standard math library. Without these two libraries, a
144Linux system will not function.
145
146%description -n compat32-%{name} -l ja
147glibc パッケージはシステム上の複数のプログラムで使われる標準ライブラリを
148ふくみます。ディスクスペースとメモリを節約したり、アップグレードを
149用意にするために、共通のシステムコードは一つの場所におかれ、プログラム
150間で共有されます。この部分的なパッケージはシェアドライブラリのかなり
151重要なセットをふくみます: 標準 C ライブラリと標準数値ライブラリです。
152この二つのライブラリ抜きでは、Linux システムは機能しません。
153
154%if %{xenpackage}
155%package xen
156Summary: The GNU libc libraries (optimized for running under Xen)
157Group: System Environment/Libraries
158Requires: glibc = %{version}-%{release}, glibc-utils = %{version}-%{release}
159
160%description xen
161The standard glibc package is optimized for native kernels and does not
162perform as well under the Xen hypervisor.  This package provides alternative
163library binaries that will be selected instead when running under Xen.
164
165Install glibc-xen if you might run your system under the Xen hypervisor.
166%endif
167
168%package devel
169Summary: Object files for development using standard C libraries.
170Summary(ja): 標準 C ライブラリで使われるオブジェクトファイル
171Group: Development/Libraries
172Requires(pre): /sbin/install-info
173Requires(pre): %{name}-headers
174Requires: %{name}-headers = %{version}-%{release}
175Requires: %{name} = %{version}-%{release}
176
177%description devel
178The glibc-devel package contains the object files necessary
179for developing programs which use the standard C libraries (which are
180used by nearly all programs).  If you are developing programs which
181will use the standard C libraries, your system needs to have these
182standard object files available in order to create the
183executables.
184
185Install glibc-devel if you are going to develop programs which will
186use the standard C libraries.
187
188%description devel -l ja
189glibc-devel パッケージには (ほとんどすべてのプログラムで使われる)
190標準 C ライブラリを使用したプログラムを開発するためのオブジェクトファイルが
191含まれます。標準 C ライブラリを使用するプログラムを開発する場合には、
192これらオブジェクトファイルを使用して実行ファイルを作成できます。
193
194標準 C ライブラリを使用するプログラムを開発するなら glibc-devel
195をインストールしてください。
196
197%package -n compat32-%{name}-devel
198Summary: Object files for development using standard C libraries.
199Summary(ja): 標準 C ライブラリで使われるオブジェクトファイル
200Group: Development/Libraries
201Requires: %{name}-devel >= %{version}
202Requires: compat32-%{name} = %{version}-%{release}
203
204%description -n compat32-%{name}-devel
205The glibc-devel package contains the object files necessary
206for developing programs which use the standard C libraries (which are
207used by nearly all programs).  If you are developing programs which
208will use the standard C libraries, your system needs to have these
209standard object files available in order to create the
210executables.
211
212Install glibc-devel if you are going to develop programs which will
213use the standard C libraries.
214
215%description -n compat32-%{name}-devel -l ja
216glibc-devel パッケージには (ほとんどすべてのプログラムで使われる)
217標準 C ライブラリを使用したプログラムを開発するためのオブジェクトファイルが
218含まれます。標準 C ライブラリを使用するプログラムを開発する場合には、
219これらオブジェクトファイルを使用して実行ファイルを作成できます。
220
221標準 C ライブラリを使用するプログラムを開発するなら glibc-devel
222をインストールしてください。
223
224%package static
225Summary: C library static libraries for -static linking.
226Summary(ja): -static リンクのための静的 C ライブラリ
227Group: Development/Libraries
228Requires: %{name}-devel = %{version}-%{release}
229
230%description static
231The glibc-static package contains the C library static libraries
232for -static linking.  You don't need these, unless you link statically,
233which is highly discouraged.
234
235%description static -l ja
236glibc-static パッケージには -static リンクで使用する静的 C ライブラリが
237入っています。
238静的ライブラリが必要な場合でなければ、このパッケージをインストールする
239ことは避けて下さい。
240
241%package -n compat32-%{name}-static
242Summary: C library static libraries for -static linking.
243Summary(ja): -static リンクのための静的 C ライブラリ
244Group: Development/Libraries
245Requires: %{name}-devel = %{version}-%{release}
246Requires: %{name}-static = %{version}-%{release}
247Requires: compat32-%{name}-devel = %{version}-%{release}
248
249%description -n compat32-%{name}-static
250The glibc-static package contains the C library static libraries
251for -static linking.  You don't need these, unless you link statically,
252which is highly discouraged.
253
254%description -n compat32-%{name}-static -l ja
255glibc-static パッケージには -static リンクで使用する静的 C ライブラリが
256入っています。
257静的ライブラリが必要な場合でなければ、このパッケージをインストールする
258ことは避けて下さい。
259
260%package headers
261Summary: Header files for development using standard C libraries.
262Summary(ja): 標準 C ライブラリで使われるヘッダーファイル
263Group: Development/Libraries
264Provides: %{name}-headers(%{_target_cpu})
265%ifarch x86_64
266# If both -m32 and -m64 is to be supported on AMD64, x86_64 glibc-headers
267# have to be installed, not i586 ones.
268Obsoletes: %{name}-headers(i586)
269Obsoletes: %{name}-headers(i686)
270%endif
271Requires(pre): kernel-headers
272Requires: kernel-headers >= 2.2.1, %{name} = %{version}-%{release}
273BuildRequires: kernel-headers >= 2.6.22
274
275%description headers
276The glibc-headers package contains the header files necessary
277for developing programs which use the standard C libraries (which are
278used by nearly all programs).  If you are developing programs which
279will use the standard C libraries, your system needs to have these
280standard header files available in order to create the
281executables.
282
283Install glibc-headers if you are going to develop programs which will
284use the standard C libraries.
285
286%description devel -l ja
287glibc-headers パッケージには (ほとんどすべてのプログラムで使われる)
288標準 C ライブラリを使用したプログラムを開発するためのヘッダーファイルが
289含まれます。標準 C ライブラリを使用するプログラムを開発する場合には、
290これら標準ヘッダーファイルを使用して実行ファイルを作成できます。
291
292標準 C ライブラリを使用するプログラムを開発するなら glibc-headers
293をインストールしてください。
294
295%package common
296Summary: Common binaries and locale data for glibc
297Summary(ja): glibc 用共通バイナリとロケールデータ
298Requires: %{name} = %{version}-%{release}
299Requires: tzdata >= 2003a
300Group: System Environment/Base
301
302%description common
303The glibc-common package includes common binaries for the GNU libc
304libraries, as well as national language (locale) support.
305This package include ja and en locale-archive.
306
307%description common -l ja
308glibc-common パッケージには GNU libc ライブラリ用の共用バイナリに
309加えて、言語(ロケール)サポートや時間帯データベースが収められています。
310このパッケージには日本語と英語のみの locale-archive が含まれます。
311
312%package common-extra
313Summary: Extra Locale data for glibc
314Summary(ja): glibc 用ロケールデータ(日本語以外)
315Autoreq: false
316Requires(pre): %{name}-common = %{version}-%{release}
317Group: System Environment/Base
318
319%description common-extra
320The glibc-common-extra package includes national language (locale)
321support except for English and Japanese.
322
323%description common-extra -l ja
324glibc-common-extra パッケージには GNU libc ライブラリ用の英語と
325日本語以外の言語(ロケール)が収められています。
326
327%package -n nscd
328Summary: A Name Service Caching Daemon (nscd).
329Summary(ja): ネームサービスキャッシングデーモン (nscd)
330Group: System Environment/Daemons
331Requires: audit-libs >= 1.1.3
332Requires(pre): /sbin/chkconfig, /usr/sbin/useradd, /usr/sbin/userdel, sh-utils
333
334%description -n nscd
335Nscd caches name service lookups and can dramatically improve
336performance with NIS+, and may help with DNS as well.
337
338%description -n nscd -l ja
339nscd はネームサービス参照をキャッシュし、NIS+ のパフォーマンスを
340劇的にに改善することができます。DNS のパフォーマンス向上にも同様に寄与します。
341
342%package utils
343Summary: Development utilities from GNU C library
344Summary(ja): GNU C ライブラリの開発ユーティリティ
345Group: Development/Tools
346Requires: %{name} = %{version}-%{release}
347
348%description utils
349The glibc-utils package contains memusage, a memory usage profiler,
350mtrace, a memory leak tracer and xtrace, a function call tracer
351which can be helpful during program debugging.
352
353If unsure if you need this, don't install this package.
354
355%description utils -l ja
356glibc-utils にはプログラムのデバッグに便利な以下のツールが収録されています:
357memusage (メモリ使用量プロファイラ)、mtrace (メモリリークトレーサ)、
358xtrace (関数呼出しトレーサ)。
359
360これらが必要かどうか分からない場合は、インストールする必要はありません。
361
362%if 0%{?_enable_debug_packages}
363%define debug_package %{nil}
364%define __debug_install_post %{nil}
365%global __debug_package 1
366
367%package debuginfo
368Summary: Debug information for package %{name}
369Group: Development/Debug
370AutoReqProv: no
371%ifarch %{debuginfocommonarches}
372Requires: glibc-debuginfo-common = %{version}-%{release}
373%else
374%ifarch %{ix86}
375Obsoletes: glibc-debuginfo-common
376%endif
377%endif
378
379%description debuginfo
380This package provides debug information for package %{name}.
381Debug information is useful when developing applications that use this
382package or when debugging this package.
383
384This package also contains static standard C libraries with
385debugging information.  You need this only if you want to step into
386C library routines during debugging programs statically linked against
387one or more of the standard C libraries.
388To use this debugging information, you need to link binaries
389with -static -L%{_prefix}/lib/debug%{_prefix}/%{_lib} compiler options.
390
391%ifarch %{debuginfocommonarches}
392
393%package debuginfo-common
394Summary: Debug information for package %{name}
395Group: Development/Debug
396AutoReqProv: no
397
398%description debuginfo-common
399This package provides debug information for package %{name}.
400Debug information is useful when developing applications that use this
401package or when debugging this package.
402
403%endif
404%endif
405
406%prep
407%setup -q -n %{glibcsrcdir} -b1
408%patch0 -E -p1
409%ifarch ia64
410%if "%{_lib}" == "lib64"
411%patch1 -p1
412%endif
413%endif
414
415%patch100 -p1 -b .CVE-2011-0536-1
416%patch101 -p1 -b .CVE-2011-0536-2
417%patch102 -p1 -b .CVE-2011-1095
418%patch103 -p1 -b .CVE-2011-1071
419%patch104 -p1 -b .CVE-2010-3856
420%patch105 -p1 -b .CVE-2012-3480
421
422# A lot of programs still misuse memcpy when they have to use
423# memmove. The memcpy implementation below is not tolerant at
424# all.
425rm -f sysdeps/alpha/alphaev6/memcpy.S
426%if %{buildpower6}
427# On powerpc32, hp timing is only available in power4/power6
428# libs, not in base, so pre-power4 dynamic linker is incompatible
429# with power6 libs.
430rm -f sysdeps/powerpc/powerpc32/power4/hp-timing.[ch]
431%endif
432
433find . -type f -size 0 -o -name "*.orig" -exec rm -f {} \;
434touch `find . -name configure`
435touch locale/programs/*-kw.h
436
437%build
438GCC=gcc
439GXX=g++
440%ifarch %{ix86}
441BuildFlags="-march=%{nptl_target_cpu} -mtune=generic"
442%endif
443%ifarch i686
444BuildFlags="-march=i686 -mtune=generic"
445%endif
446%ifarch i386 i486 i586
447BuildFlags="$BuildFlags -mno-tls-direct-seg-refs"
448%endif
449%ifarch x86_64
450BuildFlags="-mtune=generic"
451%endif
452%ifarch alphaev6
453BuildFlags="-mcpu=ev6"
454%endif
455%ifarch sparc
456BuildFlags="-fcall-used-g6"
457GCC="gcc -m32"
458GXX="g++ -m32"
459%endif
460%ifarch sparcv9
461BuildFlags="-mcpu=ultrasparc -fcall-used-g6"
462GCC="gcc -m32"
463GXX="g++ -m32"
464%endif
465%ifarch sparcv9v
466BuildFlags="-mcpu=niagara -fcall-used-g6"
467GCC="gcc -m32"
468GXX="g++ -m32"
469%endif
470%ifarch sparc64
471BuildFlags="-mcpu=ultrasparc -mvis -fcall-used-g6"
472GCC="gcc -m64"
473GXX="g++ -m64"
474%endif
475%ifarch sparc64v
476BuildFlags="-mcpu=niagara -mvis -fcall-used-g6"
477GCC="gcc -m64"
478GXX="g++ -m64"
479%endif
480%ifarch ppc64
481BuildFlags="-mno-minimal-toc"
482GCC="gcc -m64"
483GXX="g++ -m64"
484%endif
485
486BuildFlags="$BuildFlags -fasynchronous-unwind-tables"
487# Add -DNDEBUG unless using a prerelease
488case %{version} in
489  *.*.9[0-9]*) ;;
490  *)
491     BuildFlags="$BuildFlags -DNDEBUG"
492     ;;
493esac
494EnableKernel="--enable-kernel=%{enablekernel}"
495echo "$GCC" > Gcc
496AddOns=`echo */configure | sed -e 's!/configure!!g;s!\(linuxthreads\|nptl\|rtkaio\|powerpc-cpu\)\( \|$\)!!g;s! \+$!!;s! !,!g;s!^!,!;/^,\*$/d'`
497%ifarch %{rtkaioarches}
498AddOns=,rtkaio$AddOns
499%endif
500
501build_nptl()
502{
503builddir=build-%{nptl_target_cpu}-$1
504shift
505rm -rf $builddir
506mkdir $builddir ; cd $builddir
507build_CFLAGS="$BuildFlags -g -O3 $*"
508../configure CC="$GCC" CXX="$GXX" CFLAGS="$build_CFLAGS" \
509        --prefix=%{_prefix} \
510        --enable-add-ons=nptl$AddOns --without-cvs $EnableKernel \
511        --with-headers=%{_prefix}/include --enable-bind-now \
512        --with-tls --with-__thread --build %{nptl_target_cpu}-vine-linux \
513        --host %{nptl_target_cpu}-vine-linux \
514%ifarch %{multiarcharches}
515        --enable-multi-arch \
516%endif
517        --disable-profile --enable-experimental-malloc --enable-nss-crypt
518
519make %{?_smp_mflags} -r CFLAGS="$build_CFLAGS" PARALLELMFLAGS=-s
520
521cd ..
522}
523
524build_nptl linuxnptl
525
526%if %{buildxen}
527build_nptl linuxnptl-nosegneg -mno-tls-direct-seg-refs
528%endif
529
530%if %{buildpower6}
531(
532platform=`LD_SHOW_AUXV=1 /bin/true | sed -n 's/^AT_PLATFORM:[[:blank:]]*//p'`
533if [ "$platform" != power6 ]; then
534  mkdir -p power6emul/{lib,lib64}
535  $GCC -shared -O2 -fpic -o power6emul/%{_lib}/power6emul.so fedora/power6emul.c -Wl,-z,initfirst
536%ifarch ppc
537  gcc -shared -nostdlib -O2 -fpic -m64 -o power6emul/lib64/power6emul.so -xc - </dev/null
538%endif
539%ifarch ppc64
540  gcc -shared -nostdlib -O2 -fpic -m32 -o power6emul/lib/power6emul.so -xc - < /dev/null
541%endif
542  export LD_PRELOAD=`pwd`/power6emul/\$LIB/power6emul.so
543fi
544AddOns="$AddOns --with-cpu=power6"
545GCC="$GCC -mcpu=power6"
546GXX="$GXX -mcpu=power6"
547build_nptl linuxnptl-power6
548)
549%endif
550
551cd build-%{nptl_target_cpu}-linuxnptl
552$GCC -static -L. -Os -g ../fedora/glibc_post_upgrade.c -o glibc_post_upgrade.%{_target_cpu} \
553  -DNO_SIZE_OPTIMIZATION \
554%ifarch i386 i486 i586
555  -DARCH_386 \
556%endif
557  '-DLIBTLS="/%{_lib}/tls/"' \
558  '-DGCONV_MODULES_DIR="%{_prefix}/%{_lib}/gconv"' \
559  '-DLD_SO_CONF="/etc/ld.so.conf"' \
560  '-DICONVCONFIG="%{_sbindir}/iconvconfig.%{_target_cpu}"'
561cd ..
562
563%install
564GCC=`cat Gcc`
565
566rm -rf $RPM_BUILD_ROOT
567mkdir -p $RPM_BUILD_ROOT
568make -j1 install_root=$RPM_BUILD_ROOT install -C build-%{nptl_target_cpu}-linuxnptl PARALLELMFLAGS=-s
569%ifnarch %{auxarches}
570cd build-%{nptl_target_cpu}-linuxnptl && \
571  make %{?_smp_mflags} install_root=$RPM_BUILD_ROOT install-locales -C ../localedata objdir=`pwd` && \
572  cd ..
573%endif
574
575librtso=`basename $RPM_BUILD_ROOT/%{_lib}/librt.so.*`
576
577%ifarch %{rtkaioarches}
578rm -f $RPM_BUILD_ROOT{,%{_prefix}}/%{_lib}/librtkaio.so*
579rm -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/librt.so.*
580mkdir -p $RPM_BUILD_ROOT/%{_lib}/rtkaio
581mv $RPM_BUILD_ROOT/%{_lib}/librtkaio-*.so $RPM_BUILD_ROOT/%{_lib}/rtkaio/
582rm -f $RPM_BUILD_ROOT/%{_lib}/$librtso
583ln -sf `basename $RPM_BUILD_ROOT/%{_lib}/librt-*.so` $RPM_BUILD_ROOT/%{_lib}/$librtso
584ln -sf `basename $RPM_BUILD_ROOT/%{_lib}/rtkaio/librtkaio-*.so` $RPM_BUILD_ROOT/%{_lib}/rtkaio/$librtso
585%endif
586
587%if %{buildxen}
588%define nosegneg_subdir_base i686
589%define nosegneg_subdir i686/nosegneg
590%define nosegneg_subdir_up ../..
591cd build-%{nptl_target_cpu}-linuxnptl-nosegneg
592destdir=$RPM_BUILD_ROOT/%{_lib}/%{nosegneg_subdir}
593mkdir -p $destdir
594for lib in libc math/libm nptl/libpthread rt/librt nptl_db/libthread_db
595do
596  libbase=${lib#*/}
597  libbaseso=$(basename $RPM_BUILD_ROOT/%{_lib}/${libbase}-*.so)
598  # Only install if different from base lib
599  if cmp -s ${lib}.so ../build-%{nptl_target_cpu}-linuxnptl/${lib}.so; then
600    ln -sf %{nosegneg_subdir_up}/$libbaseso $destdir/$libbaseso
601  else
602    cp -a ${lib}.so $destdir/$libbaseso
603  fi
604  ln -sf $libbaseso $destdir/$(basename $RPM_BUILD_ROOT/%{_lib}/${libbase}.so.*)
605done
606%ifarch %{rtkaioarches}
607destdir=$RPM_BUILD_ROOT/%{_lib}/rtkaio/%{nosegneg_subdir}
608mkdir -p $destdir
609librtkaioso=$(basename $RPM_BUILD_ROOT/%{_lib}/librt-*.so | sed s/librt-/librtkaio-/)
610if cmp -s rtkaio/librtkaio.so ../build-%{nptl_target_cpu}-linuxnptl/rtkaio/librtkaio.so; then
611  ln -s %{nosegneg_subdir_up}/$librtkaioso $destdir/$librtkaioso
612else
613  cp -a rtkaio/librtkaio.so $destdir/$librtkaioso
614fi
615ln -sf $librtkaioso $destdir/$librtso
616%endif
617cd ..
618%endif
619
620%if %{buildpower6}
621cd build-%{nptl_target_cpu}-linuxnptl-power6
622destdir=$RPM_BUILD_ROOT/%{_lib}/power6
623mkdir -p ${destdir}
624for lib in libc math/libm nptl/libpthread rt/librt nptl_db/libthread_db
625do
626  libbase=${lib#*/}
627  libbaseso=$(basename $RPM_BUILD_ROOT/%{_lib}/${libbase}-*.so)
628  cp -a ${lib}.so $destdir/$libbaseso
629  ln -sf $libbaseso $destdir/$(basename $RPM_BUILD_ROOT/%{_lib}/${libbase}.so.*)
630done
631mkdir -p ${destdir}x
632pushd ${destdir}x
633ln -sf ../power6/*.so .
634cp -a ../power6/*.so.* .
635popd
636%ifarch %{rtkaioarches}
637destdir=$RPM_BUILD_ROOT/%{_lib}/rtkaio/power6
638mkdir -p $destdir
639librtkaioso=$(basename $RPM_BUILD_ROOT/%{_lib}/librt-*.so | sed s/librt-/librtkaio-/)
640cp -a rtkaio/librtkaio.so $destdir/$librtkaioso
641ln -sf $librtkaioso $destdir/$librtso
642mkdir -p ${destdir}x
643pushd ${destdir}x
644ln -sf ../power6/*.so .
645cp -a ../power6/*.so.* .
646popd
647%endif
648cd ..
649%endif
650
651# Remove the files we don't want to distribute
652rm -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libNoVersion*
653rm -f $RPM_BUILD_ROOT/%{_lib}/libNoVersion*
654
655# NPTL <bits/stdio-lock.h> is not usable outside of glibc, so include
656# the generic one (#162634)
657cp -a bits/stdio-lock.h $RPM_BUILD_ROOT%{_prefix}/include/bits/stdio-lock.h
658# And <bits/libc-lock.h> needs sanitizing as well.
659cp -a fedora/libc-lock.h $RPM_BUILD_ROOT%{_prefix}/include/bits/libc-lock.h
660
661if [ -d $RPM_BUILD_ROOT%{_prefix}/info -a "%{_infodir}" != "%{_prefix}/info" ]; then
662  mkdir -p $RPM_BUILD_ROOT%{_infodir}
663  mv -f $RPM_BUILD_ROOT%{_prefix}/info/* $RPM_BUILD_ROOT%{_infodir}
664  rm -rf $RPM_BUILD_ROOT%{_prefix}/info
665fi
666
667gzip -9nvf $RPM_BUILD_ROOT%{_infodir}/libc*
668
669ln -sf libbsd-compat.a $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libbsd.a
670
671install -p -m 644 fedora/nsswitch.conf $RPM_BUILD_ROOT/etc/nsswitch.conf
672
673mkdir -p $RPM_BUILD_ROOT/etc/default
674install -p -m 644 nis/nss $RPM_BUILD_ROOT/etc/default/nss
675
676# Take care of setuids
677# -- new security review sez that this shouldn't be needed anymore
678#chmod 755 $RPM_BUILD_ROOT%{_prefix}/libexec/pt_chown
679
680# This is for ncsd - in glibc 2.2
681install -m 644 nscd/nscd.conf $RPM_BUILD_ROOT/etc
682mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
683install -m 755 nscd/nscd.init $RPM_BUILD_ROOT/etc/rc.d/init.d/nscd
684
685# Don't include ld.so.cache
686rm -f $RPM_BUILD_ROOT/etc/ld.so.cache
687
688# Include ld.so.conf
689echo 'include ld.so.conf.d/*.conf' > $RPM_BUILD_ROOT/etc/ld.so.conf
690> $RPM_BUILD_ROOT/etc/ld.so.cache
691chmod 644 $RPM_BUILD_ROOT/etc/ld.so.conf
692mkdir -p $RPM_BUILD_ROOT/etc/ld.so.conf.d
693mkdir -p $RPM_BUILD_ROOT/etc/sysconfig
694> $RPM_BUILD_ROOT/etc/sysconfig/nscd
695
696# Include %{_prefix}/%{_lib}/gconv/gconv-modules.cache
697> $RPM_BUILD_ROOT%{_prefix}/%{_lib}/gconv/gconv-modules.cache
698chmod 644 $RPM_BUILD_ROOT%{_prefix}/%{_lib}/gconv/gconv-modules.cache
699
700# Install the upgrade program
701install -m 700 build-%{nptl_target_cpu}-linuxnptl/glibc_post_upgrade.%{_target_cpu} \
702  $RPM_BUILD_ROOT/usr/sbin/glibc_post_upgrade.%{_target_cpu}
703
704strip -g $RPM_BUILD_ROOT%{_prefix}/%{_lib}/*.o
705
706mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_prefix}/%{_lib}
707cp -a $RPM_BUILD_ROOT%{_prefix}/%{_lib}/*.a \
708  $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_prefix}/%{_lib}/
709rm -f $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_prefix}/%{_lib}/*_p.a
710
711# rquota.x and rquota.h are now provided by quota
712rm -f $RPM_BUILD_ROOT%{_prefix}/include/rpcsvc/rquota.[hx]
713
714# Create archive of locale files
715%ifnarch %{auxarches}
716olddir=`pwd`
717pushd ${RPM_BUILD_ROOT}%{_prefix}/lib/locale
718rm locale-archive || :
719# Intentionally we do not pass --alias-file=, aliases will be added
720# by build-locale-archive.
721$olddir/build-%{nptl_target_cpu}-linuxnptl/elf/ld.so \
722  --library-path $olddir/build-%{nptl_target_cpu}-linuxnptl/ \
723  $olddir/build-%{nptl_target_cpu}-linuxnptl/locale/localedef \
724    --prefix ${RPM_BUILD_ROOT} --add-to-archive \
725    *_*
726mv locale-archive{,-extra.tmpl}
727$olddir/build-%{nptl_target_cpu}-linuxnptl/elf/ld.so \
728  --library-path $olddir/build-%{nptl_target_cpu}-linuxnptl/ \
729  $olddir/build-%{nptl_target_cpu}-linuxnptl/locale/localedef \
730    --prefix ${RPM_BUILD_ROOT} --add-to-archive \
731    ja_JP* en_US*
732mv locale-archive{,.tmpl}
733cp -a locale-archive{.tmpl,-ja.tmpl}
734rm -rf *_*
735popd
736%endif
737
738rm -f ${RPM_BUILD_ROOT}/%{_lib}/libnss1-*
739rm -f ${RPM_BUILD_ROOT}/%{_lib}/libnss-*.so.1
740
741# Ugly hack for buggy rpm
742ln -f ${RPM_BUILD_ROOT}%{_sbindir}/iconvconfig{,.%{_target_cpu}}
743
744rm -f $RPM_BUILD_ROOT/etc/gai.conf
745
746# In F7+ this is provided by rpcbind rpm
747rm -f $RPM_BUILD_ROOT%{_sbindir}/rpcinfo
748
749# BUILD THE FILE LIST
750{
751  find $RPM_BUILD_ROOT \( -type f -o -type l \) \
752       \( \
753         -name etc -printf "%%%%config " -o \
754         -name gconv-modules \
755         -printf "%%%%verify(not md5 size mtime) %%%%config(noreplace) " -o \
756         -name gconv-modules.cache \
757         -printf "%%%%verify(not md5 size mtime) " \
758         , \
759         ! -path "*/lib/debug/*" -printf "/%%P\n" \)
760  find $RPM_BUILD_ROOT -type d \
761       \( -path '*%{_prefix}/share/*' ! -path '*%{_infodir}' -o \
762          -path "*%{_prefix}/include/*" -o \
763          -path "*%{_prefix}/lib/locale/*" \
764       \) -printf "%%%%dir /%%P\n"
765} | {
766
767  # primary filelist
768  SHARE_LANG='s|.*/share/locale/\([^/_]\+\).*/LC_MESSAGES/.*\.mo|%lang(\1) &|'
769  LIB_LANG='s|.*/lib/locale/\([^/_]\+\)|%lang(\1) &|'
770  # rpm does not handle %lang() tagged files hardlinked together accross
771  # languages very well, temporarily disable
772  LIB_LANG=''
773  sed -e "$LIB_LANG" -e "$SHARE_LANG" \
774      -e '\,/etc/\(localtime\|nsswitch.conf\|ld\.so\.conf\|ld\.so\.cache\|default\),d' \
775      -e '\,/%{_lib}/lib\(pcprofile\|memusage\)\.so,d' \
776      -e '\,bin/\(memusage\|mtrace\|xtrace\|pcprofiledump\),d'
777} | sort > rpm.filelist
778
779mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{_lib}
780mv -f $RPM_BUILD_ROOT/%{_lib}/lib{pcprofile,memusage}.so $RPM_BUILD_ROOT%{_prefix}/%{_lib}
781for i in $RPM_BUILD_ROOT%{_prefix}/bin/{xtrace,memusage}; do
782  sed -e 's~=/%{_lib}/libpcprofile.so~=%{_prefix}/%{_lib}/libpcprofile.so~' \
783      -e 's~=/%{_lib}/libmemusage.so~=%{_prefix}/%{_lib}/libmemusage.so~' \
784      -e 's~='\''/\\\$LIB/libpcprofile.so~='\''%{_prefix}/\\$LIB/libpcprofile.so~' \
785      -e 's~='\''/\\\$LIB/libmemusage.so~='\''%{_prefix}/\\$LIB/libmemusage.so~' \
786      -i $i
787done
788
789grep '%{_infodir}' < rpm.filelist | grep -v '%{_infodir}/dir' > devel.filelist
790grep '%{_prefix}/include/gnu/stubs-[32164]\+\.h' < rpm.filelist >> devel.filelist || :
791
792grep '%{_prefix}/include' < rpm.filelist |
793  egrep -v '%{_prefix}/include/(linuxthreads|gnu/stubs-[32164]+\.h)' \
794        > headers.filelist
795
796sed -i -e '\|%{_prefix}/%{_lib}/lib.*_p.a|d' \
797       -e '\|%{_prefix}/include|d' \
798       -e '\|%{_infodir}|d' rpm.filelist
799
800grep '%{_prefix}/%{_lib}/lib.*\.a' < rpm.filelist \
801  | grep '/lib\(\(c\|pthread\|nldbl\)_nonshared\|bsd\(\|-compat\)\|g\|ieee\|mcheck\|rpcsvc\)\.a$' \
802  >> devel.filelist
803grep '%{_prefix}/%{_lib}/lib.*\.a' < rpm.filelist \
804  | grep -v '/lib\(\(c\|pthread\|nldbl\)_nonshared\|bsd\(\|-compat\)\|g\|ieee\|mcheck\|rpcsvc\)\.a$' \
805  > static.filelist
806grep '%{_prefix}/%{_lib}/.*\.o' < rpm.filelist >> devel.filelist
807grep '%{_prefix}/%{_lib}/lib.*\.so' < rpm.filelist >> devel.filelist
808
809sed -i -e '\|%{_prefix}/%{_lib}/lib.*\.a|d' \
810       -e '\|%{_prefix}/%{_lib}/.*\.o|d' \
811       -e '\|%{_prefix}/%{_lib}/lib.*\.so|d' \
812       -e '\|%{_prefix}/%{_lib}/linuxthreads|d' \
813       -e '\|nscd|d' rpm.filelist
814
815grep '%{_prefix}/bin' < rpm.filelist >> common.filelist
816#grep '%{_prefix}/lib/locale' < rpm.filelist | grep -v /locale-archive.tmpl >> common.filelist
817#grep '%{_prefix}/libexec/pt_chown' < rpm.filelist >> common.filelist
818grep '%{_prefix}/sbin/[^gi]' < rpm.filelist >> common.filelist
819grep '%{_prefix}/share' < rpm.filelist | \
820  grep -v '%{_prefix}/share/zoneinfo' >> common.filelist
821
822sed -i -e '\|%{_prefix}/bin|d' \
823       -e '\|%{_prefix}/lib/locale|d' \
824       -e '\|%{_prefix}/libexec/pt_chown|d' \
825       -e '\|%{_prefix}/sbin/[^gi]|d' \
826       -e '\|%{_prefix}/share|d' rpm.filelist
827
828> nosegneg.filelist
829%if %{xenpackage}
830grep '/%{_lib}/%{nosegneg_subdir}' < rpm.filelist >> nosegneg.filelist
831sed -i -e '\|/%{_lib}/%{nosegneg_subdir}|d' rpm.filelist
832%endif
833
834echo '%{_prefix}/sbin/build-locale-archive' >> common.filelist
835echo '%{_prefix}/sbin/tzdata-update' >> common.filelist
836echo '%{_prefix}/sbin/nscd' > nscd.filelist
837
838cat > utils.filelist <<EOF
839%{_prefix}/%{_lib}/libmemusage.so
840%{_prefix}/%{_lib}/libpcprofile.so
841%{_prefix}/bin/memusage
842%{_prefix}/bin/memusagestat
843%{_prefix}/bin/mtrace
844%{_prefix}/bin/pcprofiledump
845%{_prefix}/bin/xtrace
846EOF
847
848# /etc/localtime
849rm -f $RPM_BUILD_ROOT/etc/localtime
850##VINE##cp -f $RPM_BUILD_ROOT%{_prefix}/share/zoneinfo/US/Eastern $RPM_BUILD_ROOT/etc/localtime
851cp -f $RPM_BUILD_ROOT%{_prefix}/share/zoneinfo/Asia/Tokyo $RPM_BUILD_ROOT/etc/localtime
852##VINE###ln -sf ..%{_prefix}/share/zoneinfo/US/Eastern $RPM_BUILD_ROOT/etc/localtime
853#ln -sf ..%{_prefix}/share/zoneinfo/Asia/Tokyo $RPM_BUILD_ROOT/etc/localtime
854
855rm -rf $RPM_BUILD_ROOT%{_prefix}/share/zoneinfo
856
857# Make sure %config files have the same timestamp
858touch -r fedora/glibc.spec.in $RPM_BUILD_ROOT/etc/ld.so.conf
859touch -r timezone/northamerica $RPM_BUILD_ROOT/etc/localtime
860touch -r sunrpc/etc.rpc $RPM_BUILD_ROOT/etc/rpc
861
862cd fedora
863$GCC -Os -g -static -o build-locale-archive build-locale-archive.c \
864  ../build-%{nptl_target_cpu}-linuxnptl/locale/locarchive.o \
865  ../build-%{nptl_target_cpu}-linuxnptl/locale/md5.o \
866  -DDATADIR=\"%{_datadir}\" -DPREFIX=\"%{_prefix}\" \
867  -L../build-%{nptl_target_cpu}-linuxnptl
868install -m 700 build-locale-archive $RPM_BUILD_ROOT/usr/sbin/build-locale-archive
869$GCC -Os -g -static -o tzdata-update tzdata-update.c \
870  -L../build-%{nptl_target_cpu}-linuxnptl
871install -m 700 tzdata-update $RPM_BUILD_ROOT/usr/sbin/tzdata-update
872cd ..
873
874# the last bit: more documentation
875rm -rf documentation
876mkdir documentation
877cp crypt/README.ufc-crypt documentation/README.ufc-crypt
878cp timezone/README documentation/README.timezone
879cp ChangeLog{,.15,.16} documentation
880bzip2 -9 documentation/ChangeLog*
881cp posix/gai.conf documentation/
882
883%ifarch s390x
884# Compatibility symlink
885mkdir -p $RPM_BUILD_ROOT/lib
886ln -sf /%{_lib}/ld64.so.1 $RPM_BUILD_ROOT/lib/ld64.so.1
887%endif
888%ifarch ia64
889%if "%{_lib}" == "lib64"
890# Compatibility symlink
891mkdir -p $RPM_BUILD_ROOT/lib
892ln -sf /%{_lib}/ld-linux-ia64.so.2 $RPM_BUILD_ROOT/lib/ld-linux-ia64.so.2
893%endif
894%endif
895
896%if %{run_glibc_tests}
897
898# Increase timeouts
899export TIMEOUTFACTOR=16
900parent=$$
901echo ====================TESTING=========================
902cd build-%{nptl_target_cpu}-linuxnptl
903( make %{?_smp_mflags} -k check PARALLELMFLAGS=-s 2>&1
904  sleep 10s
905  teepid="`ps -eo ppid,pid,command | awk '($1 == '${parent}' && $3 ~ /^tee/) { print $2 }'`"
906  [ -n "$teepid" ] && kill $teepid
907) | tee check.log || :
908cd ..
909%if %{buildxen}
910echo ====================TESTING -mno-tls-direct-seg-refs=============
911cd build-%{nptl_target_cpu}-linuxnptl-nosegneg
912( make %{?_smp_mflags} -k check PARALLELMFLAGS=-s 2>&1
913  sleep 10s
914  teepid="`ps -eo ppid,pid,command | awk '($1 == '${parent}' && $3 ~ /^tee/) { print $2 }'`"
915  [ -n "$teepid" ] && kill $teepid
916) | tee check.log || :
917cd ..
918%endif
919%if %{buildpower6}
920echo ====================TESTING -mcpu=power6=============
921cd build-%{nptl_target_cpu}-linuxnptl-power6
922( if [ -d ../power6emul ]; then
923    export LD_PRELOAD=`cd ../power6emul; pwd`/\$LIB/power6emul.so
924  fi
925  make %{?_smp_mflags} -k check PARALLELMFLAGS=-s 2>&1
926  sleep 10s
927  teepid="`ps -eo ppid,pid,command | awk '($1 == '${parent}' && $3 ~ /^tee/) { print $2 }'`"
928  [ -n "$teepid" ] && kill $teepid
929) | tee check.log || :
930cd ..
931%endif
932echo ====================TESTING DETAILS=================
933for i in `sed -n 's|^.*\*\*\* \[\([^]]*\.out\)\].*$|\1|p' build-*-linux*/check.log`; do
934  echo =====$i=====
935  cat $i || :
936  echo ============
937done
938echo ====================TESTING END=====================
939PLTCMD='/^Relocation section .*\(\.rela\?\.plt\|\.rela\.IA_64\.pltoff\)/,/^$/p'
940echo ====================PLT RELOCS LD.SO================
941readelf -Wr $RPM_BUILD_ROOT/%{_lib}/ld-*.so | sed -n -e "$PLTCMD"
942echo ====================PLT RELOCS LIBC.SO==============
943readelf -Wr $RPM_BUILD_ROOT/%{_lib}/libc-*.so | sed -n -e "$PLTCMD"
944echo ====================PLT RELOCS END==================
945
946%endif
947
948pushd $RPM_BUILD_ROOT/usr/%{_lib}/
949$GCC -r -nostdlib -o libpthread.o -Wl,--whole-archive ./libpthread.a
950rm libpthread.a
951ar rcs libpthread.a libpthread.o
952rm libpthread.o
953popd
954
955%if 0%{?_enable_debug_packages}
956
957# The #line directives gperf generates do not give the proper
958# file name relative to the build directory.
959(cd locale; ln -s programs/*.gperf .)
960(cd iconv; ln -s ../locale/programs/charmap-kw.gperf .)
961
962ls -l $RPM_BUILD_ROOT/usr/bin/getconf
963ls -l $RPM_BUILD_ROOT/usr/libexec/getconf
964eu-readelf -hS $RPM_BUILD_ROOT/usr/bin/getconf $RPM_BUILD_ROOT/usr/libexec/getconf/*
965
966find_debuginfo_args='--strict-build-id -g'
967%ifarch %{debuginfocommonarches}
968find_debuginfo_args="$find_debuginfo_args \
969  -l common.filelist -l utils.filelist -l nscd.filelist \
970  -o debuginfocommon.filelist \
971  -l rpm.filelist -l nosegneg.filelist \
972"
973%endif
974/usr/lib/rpm/find-debuginfo.sh $find_debuginfo_args -o debuginfo.filelist
975
976list_debug_archives()
977{
978  local dir=%{_prefix}/lib/debug%{_prefix}/%{_lib}
979  find $RPM_BUILD_ROOT$dir -name "*.a" -printf "$dir/%%P\n"
980}
981
982%ifarch %{debuginfocommonarches}
983
984%ifarch %{ix86}
985%define basearch i686
986%endif
987%ifarch alpha alphaev6
988%define basearch alpha
989%endif
990%ifarch sparc sparcv9
991%define basearch sparc
992%endif
993
994sed -i '\#^%{_prefix}/src/debug/#d' debuginfocommon.filelist
995find $RPM_BUILD_ROOT%{_prefix}/src/debug \
996     \( -type d -printf '%%%%dir ' \) , \
997     -printf '%{_prefix}/src/debug/%%P\n' > debuginfocommon.sources
998
999# auxarches get only these few source files
1000auxarches_debugsources=\
1001'/(generic|linux|%{basearch}|nptl(_db)?)/|/%{glibcsrcdir}/build|/dl-osinfo\.h'
1002
1003egrep "$auxarches_debugsources" debuginfocommon.sources >> debuginfo.filelist
1004
1005egrep -v "$auxarches_debugsources" \
1006  debuginfocommon.sources >> debuginfocommon.filelist
1007%ifnarch %{auxarches}
1008# non-aux arches when there is a debuginfo-common
1009# all the sources go into debuginfo-common
1010#cat debuginfocommon.sources >> debuginfocommon.filelist
1011%endif
1012
1013list_debug_archives >> debuginfocommon.filelist
1014
1015%else
1016
1017# already found by find-debuginfo
1018#list_debug_archives >> debuginfo.filelist
1019
1020%endif
1021
1022%endif
1023
1024rm -f $RPM_BUILD_ROOT%{_infodir}/dir
1025
1026%ifarch %{auxarches}
1027
1028echo Cutting down the list of unpackaged files
1029>> debuginfocommon.filelist
1030sed -e '/%%dir/d;/%%config/d;/%%verify/d;s/%%lang([^)]*) //;s#^/*##' \
1031    common.filelist devel.filelist static.filelist headers.filelist \
1032    utils.filelist nscd.filelist debuginfocommon.filelist |
1033(cd $RPM_BUILD_ROOT; xargs --no-run-if-empty rm -f 2> /dev/null || :)
1034
1035%else
1036
1037mkdir -p $RPM_BUILD_ROOT/var/{db,run}/nscd
1038touch $RPM_BUILD_ROOT/var/{db,run}/nscd/{passwd,group,hosts,services}
1039touch $RPM_BUILD_ROOT/var/run/nscd/{socket,nscd.pid}
1040%endif
1041
1042%ifnarch %{auxarches}
1043> $RPM_BUILD_ROOT/%{_prefix}/lib/locale/locale-archive
1044#> $RPM_BUILD_ROOT/%{_prefix}/lib/locale/locale-archive.tmpl
1045%endif
1046
1047mkdir -p $RPM_BUILD_ROOT/var/cache/ldconfig
1048> $RPM_BUILD_ROOT/var/cache/ldconfig/aux-cache
1049
1050%post -p /usr/sbin/glibc_post_upgrade.%{_target_cpu}
1051
1052%postun -p /sbin/ldconfig
1053
1054%post -n compat32-%{name} -p /sbin/ldconfig
1055
1056%postun -n compat32-%{name} -p /sbin/ldconfig
1057
1058%post common
1059/usr/sbin/build-locale-archive
1060
1061%triggerin common -p /usr/sbin/tzdata-update -- tzdata
1062
1063%post common-extra
1064cp -f /usr/lib/locale/locale-archive-extra.tmpl /usr/lib/locale/locale-archive.tmpl
1065/usr/sbin/build-locale-archive
1066
1067%postun common-extra
1068cp -f /usr/lib/locale/locale-archive-ja.tmpl /usr/lib/locale/locale-archive.tmpl
1069/usr/sbin/build-locale-archive
1070
1071%triggerun -- common-extra
1072cp -f /usr/lib/locale/locale-archive-ja.tmpl /usr/lib/locale/locale-archive.tmpl
1073/usr/sbin/build-locale-archive
1074
1075%post devel
1076/sbin/install-info %{_infodir}/libc.info.gz %{_infodir}/dir > /dev/null 2>&1 || :
1077
1078%pre headers
1079# this used to be a link and it is causing nightmares now
1080if [ -L %{_prefix}/include/scsi ] ; then
1081  rm -f %{_prefix}/include/scsi
1082fi
1083
1084%preun devel
1085if [ "$1" = 0 ]; then
1086  /sbin/install-info --delete %{_infodir}/libc.info.gz %{_infodir}/dir > /dev/null 2>&1 || :
1087fi
1088
1089%post utils -p /sbin/ldconfig
1090
1091%postun utils -p /sbin/ldconfig
1092
1093%pre -n nscd
1094/usr/sbin/useradd -M -o -r -d / -s /sbin/nologin \
1095  -c "NSCD Daemon" -u 28 nscd > /dev/null 2>&1 || :
1096
1097%post -n nscd
1098/sbin/chkconfig --add nscd
1099
1100%preun -n nscd
1101if [ $1 = 0 ] ; then
1102  service nscd stop > /dev/null 2>&1
1103  /sbin/chkconfig --del nscd
1104fi
1105
1106%postun -n nscd
1107if [ $1 = 0 ] ; then
1108  /usr/sbin/userdel nscd > /dev/null 2>&1 || :
1109fi
1110if [ "$1" -ge "1" ]; then
1111  service nscd condrestart > /dev/null 2>&1 || :
1112fi
1113
1114%if %{xenpackage}
1115%post xen -p /sbin/ldconfig
1116%postun xen -p /sbin/ldconfig
1117%endif
1118
1119%clean
1120rm -rf "$RPM_BUILD_ROOT"
1121rm -f *.filelist*
1122
1123%files -f rpm.filelist
1124%defattr(-,root,root)
1125%ifarch %{rtkaioarches}
1126%dir /%{_lib}/rtkaio
1127%endif
1128%if %{buildxen} && !%{xenpackage}
1129%dir /%{_lib}/%{nosegneg_subdir_base}
1130%dir /%{_lib}/%{nosegneg_subdir}
1131%ifarch %{rtkaioarches}
1132%dir /%{_lib}/rtkaio/%{nosegneg_subdir_base}
1133%dir /%{_lib}/rtkaio/%{nosegneg_subdir}
1134%endif
1135%endif
1136%if %{buildpower6}
1137%dir /%{_lib}/power6
1138%dir /%{_lib}/power6x
1139%ifarch %{rtkaioarches}
1140%dir /%{_lib}/rtkaio/power6
1141%dir /%{_lib}/rtkaio/power6x
1142%endif
1143%endif
1144%ifarch s390x
1145%dir /lib
1146/lib/ld64.so.1
1147%endif
1148%ifarch ia64
1149%if "%{_lib}" == "lib64"
1150%dir /lib
1151/lib/ld-linux-ia64.so.2
1152%endif
1153%endif
1154%verify(not md5 size mtime) %config(noreplace) /etc/localtime
1155%verify(not md5 size mtime) %config(noreplace) /etc/nsswitch.conf
1156%verify(not md5 size mtime) %config(noreplace) /etc/ld.so.conf
1157%dir /etc/ld.so.conf.d
1158%dir %{_prefix}/libexec/getconf
1159%dir %{_prefix}/%{_lib}/gconv
1160%dir %attr(0700,root,root) /var/cache/ldconfig
1161%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/cache/ldconfig/aux-cache
1162%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /etc/ld.so.cache
1163%doc README NEWS INSTALL FAQ BUGS NOTES PROJECTS CONFORMANCE
1164%doc COPYING COPYING.LIB README.libm LICENSES
1165%doc hesiod/README.hesiod
1166
1167%if %{build_compat32}
1168%files -f rpm.filelist -n compat32-%{name}
1169%ifarch %{rtkaioarches}
1170%dir /%{_lib}/rtkaio
1171%endif
1172%if %{buildxen} && !%{xenpackage}
1173%dir /%{_lib}/%{nosegneg_subdir_base}
1174%dir /%{_lib}/%{nosegneg_subdir}
1175%ifarch %{rtkaioarches}
1176%dir /%{_lib}/rtkaio/%{nosegneg_subdir_base}
1177%dir /%{_lib}/rtkaio/%{nosegneg_subdir}
1178%endif
1179%endif
1180%exclude /etc
1181%exclude /sbin
1182%exclude %{_prefix}/sbin/iconvconfig
1183#%exclude %{_prefix}/share
1184%endif
1185
1186%if %{xenpackage}
1187%files -f nosegneg.filelist xen
1188%defattr(-,root,root)
1189%dir /%{_lib}/%{nosegneg_subdir_base}
1190%dir /%{_lib}/%{nosegneg_subdir}
1191%endif
1192
1193%ifnarch %{auxarches}
1194%files -f common.filelist common
1195%defattr(-,root,root)
1196%dir %{_prefix}/lib/locale
1197%attr(0644,root,root) %verify(not md5 size mtime) %{_prefix}/lib/locale/locale-archive-ja.tmpl
1198%attr(0644,root,root) %verify(not md5 size mtime) %{_prefix}/lib/locale/locale-archive.tmpl
1199%attr(0644,root,root) %verify(not md5 size mtime mode) %ghost %config(missingok,noreplace) %{_prefix}/lib/locale/locale-archive
1200%dir %attr(755,root,root) /etc/default
1201%verify(not md5 size mtime) %config(noreplace) /etc/default/nss
1202%attr(4711,root,root) %{_prefix}/libexec/pt_chown
1203%doc documentation/*
1204
1205%files common-extra
1206%defattr(-,root,root)
1207%attr(0644,root,root) %verify(not md5 size mtime) %{_prefix}/lib/locale/locale-archive-extra.tmpl
1208
1209%files -f devel.filelist devel
1210%defattr(-,root,root)
1211
1212%files -f static.filelist static
1213%defattr(-,root,root)
1214
1215%if %{build_compat32}
1216%files -f devel.filelist -n compat32-%{name}-devel
1217%defattr(-,root,root)
1218%exclude %{_prefix}/share
1219
1220%files -f static.filelist -n compat32-%{name}-static
1221%defattr(-,root,root)
1222%endif
1223
1224%files -f headers.filelist headers
1225%defattr(-,root,root)
1226
1227%files -f utils.filelist utils
1228%defattr(-,root,root)
1229
1230%files -f nscd.filelist -n nscd
1231%defattr(-,root,root)
1232%config(noreplace) /etc/nscd.conf
1233%config /etc/rc.d/init.d/nscd
1234%dir %attr(0755,root,root) /var/run/nscd
1235%dir %attr(0755,root,root) /var/db/nscd
1236%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/nscd.pid
1237%attr(0666,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/socket
1238%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/passwd
1239%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/group
1240%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/hosts
1241%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/services
1242%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/passwd
1243%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/group
1244%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/hosts
1245%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/services
1246%ghost %config(missingok,noreplace) /etc/sysconfig/nscd
1247%endif
1248
1249%if 0%{?_enable_debug_packages}
1250%files debuginfo -f debuginfo.filelist
1251%defattr(-,root,root)
1252%ifarch %{debuginfocommonarches}
1253%ifnarch %{auxarches}
1254%files debuginfo-common -f debuginfocommon.filelist
1255%defattr(-,root,root)
1256%endif
1257%endif
1258%endif
1259
1260%changelog
1261* Tue Sep 25 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.11.1-10
1262- add patch105 for fix CVE-2012-3480
1263  (From rhel6, thanks)
1264
1265* Sun Jul 10 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.11.1-9
1266- add patch100,101 for fix CVE-2011-0536
1267- add patch102 for fix CVE-2011-1095
1268- add patch103 for fix CVE-2011-1071
1269- add patch104 for fix CVE-2010-3856
1270- add Vendor/Distri tags
1271
1272* Wed Mar 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.11.1-8
1273- add compat32-glibc-static
1274
1275* Tue Apr  6 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.11.1-7
1276- rebuilt with gcc-4.3.3-4
1277
1278* Sat Mar  6 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.11.1-6
1279- fix typo in %%triggerun common-extra
1280- add %%postun common-extra (which does the same as %%triggerun common-extra)
1281- fix %%post common so that /bin/cp is not necessary
1282  - locale-archive{,-ja}.tmpl both included (not as ghost) in common
1283
1284* Wed Feb 10 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.11.1-5
1285- change R: for compat32-*
1286  - do not require exact version of glibc
1287
1288* Mon Feb  8 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.11.1-4
1289- rebuilt with gcc-4.4.3-3
1290
1291* Sun Jan 31 2010 Daisuke SUZUKI <daisuke@linux.or.jp> - 2.11.1-3
1292- fix %%post scripts for glibc-common and glibc-common-extra
1293  - use build-locale-archive to create ja-only-locale
1294- add %%triggerun common-extra to remove non-ja locale.
1295
1296* Mon Jan 25 2010 NAKAMURA Kenta <kenta@vinelinux.org> - 2.11.1-2
1297- updated to 2.11.1 based on Fedora 12 2.11.1-1
1298- dropped BuildRequires: libselinux-devel
1299- used pre-generated find_requires/find_provides scripts.
1300- add glibc-common-extras to split out non ja/en locale.
1301  - include en_US* and ja_JP* only.
1302- added compat32- packages for x86_64 architecture support
1303- the previous Vine version was 2.8-2 and its changelog was as follows:
1304  * Mon Apr 27 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8-2
1305  - add glibc-common-extras to split out non ja/en locale.
1306    - include en_US* and ja_JP* only.
1307  * Wed Sep 24 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.8-1
1308  - updated to 2.8 (20080412T0741) based on Fedora 9 errata 2.8-8
1309  * Wed Jul 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7-4
1310  - spec in UTF8
1311  - rebuild with gcc-4.1.2-18
1312  * Sat Apr 05 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.7-2.1
1313  - rebuilt with kernel-headers-2.6.24-6
1314  - remove override_headers hack, BuildRequire >= 2.6.22 kernel-headers
1315    and rely on its content
1316  * Sun Feb 10 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.7-2vl3
1317  - rebuilt with binutils-2.17.50.0.18-1vl2 and gcc-4.1.2-0vl17
1318  * Fri Jan 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7-2vl2
1319  - add missing files to file list.
1320  - fix typo
1321  * Thu Dec 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7-2vl1
1322  - update to 2.7 based on fedora-devel 2.7-2
1323  * Sat May 19 2007 NAKAMURA Kenta <kenta@vinelinux.org> 2.5-12vl3
1324  - added compat32- packages for x86_64 architecture support
1325  * Sun May 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-12vl2
1326  - rebuild with gcc-4.1.2-0vl7 (expecially for ppc)
1327  * Sat May 12 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-12vl1
1328  - rebuilt with gcc-4.1.2-0vl6
1329  - import Patch38 and Patch39 from RHEL5 2.5-12
1330    - Mon Jan 15 2007 Jakub Jelinek <jakub@redhat.com> 2.5-12
1331    - add a workaround for #210748 and #211133
1332   - fix NIS getservbyname when proto is NULL
1333  * Tue May 08 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5-10vl2
1334  - use pre-generated find_requires/find_provides scripts.
1335  * Sun May 06 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-10vl1
1336  - rebuild
1337  * Sun May 06 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-10vl0
1338  - updated for VineSeed based on 2.5-10.fc6
1339  - build_power6 disabled for ppc
1340    (until we have ppc64 environments fully prepared for Vine development)
1341
1342* Mon Dec 14 2009 Andreas Schwab <schwab@redhat.com> - 2.11.1-1
1343- Update to 2.11.1 release.
1344  - Locale updates.
1345  - Don't reuse RPC XIDs across forks.
1346
1347* Mon Nov 30 2009 Andreas Schwab <schwab@redhat.com> - 2.11-4
1348- Update from 2.11 branch
1349  - Fix sync_file_range on ppc/ppc64.
1350  - Fix getwc* and putwc* on non-wide streams (BZ#10958).
1351  - Avoid warnings in CPU_* macros when using const bitsets (BZ#10918).
1352  - Fix ranges with multibyte characters as endpoints.
1353  - Handle LC_GLOBAL_LOCALE in duplocale (BZ#10969).
1354  - Fix _NC_LOCALE_NAME definition (BZ#10968).
1355  - Add missing Linux MADV_* definitions (BZ#10972).
1356  - Handle running out of buffer space with IPv6 mapping enabled.
1357  - Avoid memset warning in one case (#532492).
1358  - Restore locking in free_check (#504963).
1359- Fix infloop in __pthread_disable_asynccancel on x86_64 (#537690).
1360- Prevent unintended file desriptor leak in grantpt (#530558).
1361- Fix startup to security-relevant statically linked binaries (#528631).
1362
1363* Tue Nov 24 2009 Andreas Schwab <schwab@redhat.com> - 2.11-3
1364- Enable multi-arch support for ppc and ppc64 on RHEL-6
1365
1366* Thu Nov  5 2009 Andreas Schwab <schwab@redhat.com> - 2.11-2
1367- Fix readahead on powerpc32.
1368- Fix R_PPC64_{JMP_IREL,IRELATIVE} handling.
1369- Fix preadv, pwritev and fallocate for -D_FILE_OFFSET_BITS=64 (#533063).
1370
1371* Mon Nov  2 2009 Andreas Schwab <schwab@redhat.com> - 2.11-1
1372- Update to 2.11 release.
1373- Disable multi-arch support on PowerPC again since binutils is too old.
1374- Fix crash in tzdata-update due to use of multi-arch symbol (#532128).
1375
1376* Fri Oct 30 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-27
1377- Update from master.
1378  - Fix races in setXid implementation (BZ#3270).
1379  - Implement IFUNC for PPC and enable multi-arch support.
1380  - Implement mkstemps/mkstemps64 and mkostemps/mkostemps64 (BZ#10349).
1381  - Fix IA-64 and S390 sigevent definitions (BZ#10446).
1382  - Fix memory leak in NIS grp database handling (BZ#10713).
1383  - Print timestamp in nscd debug messages (BZ#10742).
1384  - Fix mixing IPv4 and IPv6 name server in resolv.conf.
1385  - Fix range checks in coshl.
1386  - Implement SSE4.2 optimized strchr and strrchr.
1387  - Handle IFUNC symbols in dlsym (#529965).
1388  - Misc fixes (BZ#10312, BZ#10315, BZ#10319, BZ#10391, BZ#10425,
1389    BZ#10540, BZ#10553, BZ#10564, BZ#10609, BZ#10692, BZ#10780,
1390    BZ#10717, BZ#10784, BZ#10789, BZ#10847
1391- No longer build with -fno-var-tracking-assignments.
1392
1393* Mon Oct 19 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-26
1394- Update from master.
1395  - Add ____longjmp_chk for sparc.
1396- Avoid installing the same libraries twice.
1397
1398* Mon Oct 12 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-25
1399- Update from master
1400  - Fix descriptor leak when calling dlopen with RTLD_NOLOAD (#527409).
1401  - Fix week-1stday in C locale.
1402  - Check for integer overflows in formatting functions.
1403  - Fix locale program error handling (#525363).
1404
1405* Mon Sep 28 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-24
1406- Update from master.
1407  - Fix missing reloc dependency (#517001).
1408
1409* Mon Sep 21 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-23
1410- Update from master.
1411
1412* Mon Sep 14 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-22
1413- Update from master.
1414  - Fix endless loop in localedef.
1415  - Fix __longjmp_chk on s390/s390x.
1416- Fix exit codes in nscd start script (#521848).
1417- Build with -fno-var-tracking-assignments for now (#523172).
1418
1419* Mon Sep  7 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-21
1420- Update from master.
1421  - Fix strstr/strcasestr on i386 (#519226).
1422
1423* Thu Sep  3 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-20
1424- Update from master.
1425  - Fix strstr/strcasestr/fma/fmaf on x86_64 (#519226).
1426  - Fix lookup of group names in hesiod initgroups (#520472).
1427
1428* Wed Sep  2 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-19
1429- Update from master.
1430  - Fix x86_64 bits/mathinline.h for -m32 compilation.
1431
1432* Tue Sep  1 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-18
1433- Update from master.
1434  - fix parse error in <bits/mathinline.h> (#520209).
1435
1436* Thu Aug 27 2009 Roland McGrath <roland@redhat.com> - 2.10.90-17
1437- Update from master.
1438
1439* Wed Aug 26 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-16
1440- Update from master.
1441  - handle AVX saving on x86-64 in interrupted symbol lookups (#519081).
1442
1443* Mon Aug 24 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-15
1444- Update from master.
1445  - fix fortify failure with longjmp from alternate stack (#512103).
1446- Add conflict with prelink (#509655).
1447
1448* Mon Aug 17 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-14
1449- Update from master.
1450  - fix pthread_cond_signal (#516469)
1451
1452* Mon Aug 10 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-13
1453- Update from master.
1454  - fix rehashing of unique symbols (#515677)
1455- Fix spurious messages with --excludedocs (#515948)
1456
1457* Mon Aug  3 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-12
1458- Update from master.
1459  - fix fortify failure with longjmp from alternate stack (#512103)
1460
1461* Thu Jul 30 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-11
1462- Update from master.
1463- Don't package debuginfo files in glibc-devel.
1464
1465* Tue Jul 28 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-10
1466- Update from master.
1467  * fix memory ordering in pthread_mutex_unlock (BZ#10418)
1468  * implement RES_USE_DNSSEC option in resolver (#205842)
1469  * fix hang in ldd -r (#513945)
1470
1471* Mon Jul 27 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-9
1472- Update from master.
1473
1474* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.90-8.1
1475- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1476
1477* Fri Jul 24 2009 Jakub Jelinek <jakub@redhat.com> - 2.10.90-7.1
1478- Fix up pthread_cond_timedwait on x86_64 with old kernels.
1479
1480* Thu Jul 23 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-7
1481- Update from master.
1482- Build with -DNDEBUG unless using a prerelease.
1483
1484* Thu Jul 23 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-6
1485- Rebuilt with binutils-2.19.51.0.14-29.fc12 to fix static binaries
1486
1487* Wed Jul 22 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-5
1488- Update from master.
1489- Undefine __i686 on x86 to fix build.
1490
1491* Mon Jul 20 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-4
1492- Update from master.
1493- Don't build separate i686 package.
1494
1495* Wed Jul  8 2009 Andreas Schwab <schwab@redhat.com> 2.10.90-3
1496- Reenable setuid on pt_chown.
1497
1498* Thu Jul  2 2009 Andreas Schwab <aschwab@redhat.com> 2.10.90-2
1499- Update from master.
1500
1501* Thu Jun 26 2009 Andreas Schwab <aschwab@redhat.com> 2.10.90-1
1502- Update from master.
1503- Enable multi-arch support on x86/x86-64.
1504- Add requires glibc-headers to glibc-devel (#476295).
1505- Implement second fallback mode for DNS requests (#505105).
1506- Don't generate invalid POSIX TZ string for Asia/Dhaka timezone (#506941).
1507- Allow backtrace through __longjmp_chk on powerpc.
1508
1509* Fri May 22 2009 Jakub Jelinek <jakub@redhat.com> 2.10.1-2
1510- fix accept4 on architectures other than i?86/x86_64
1511- robustify nscd client code during server GC
1512- fix up nscd segfaults during daemon shutdown
1513- fix memchr on ia64 (BZ#10162)
1514- replace the Sun RPC license with the BSD license, with the explicit
1515  permission of Sun Microsystems
1516- fix up powerpc long double errno reporting
1517
1518* Sun May 10 2009 Jakub Jelinek <jakub@redhat.com> 2.10.1-1
1519- fix up getsgent_r and getsgnam_r exports on i?86 and ppc
1520
1521* Sat May  9 2009 Jakub Jelinek <jakub@redhat.com> 2.10-2
1522- update from trunk
1523  - glibc 2.10 release
1524  - fix memchr on x86_64 (#499689)
1525
1526* Mon Apr 27 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-22
1527- update from trunk
1528  - further localedef fixes
1529- fix build-locale-archive
1530
1531* Fri Apr 24 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-21
1532- update from trunk
1533  - fix localedef
1534  - fix SHIFT_JIS iconv EILSEQ handling (#497267)
1535  - misc fixes (BZ#10093, BZ#10100)
1536
1537* Fri Apr 24 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-20
1538- update from trunk
1539  - fix p{read,write}v{,64} (#497429, #497434)
1540  - fix strfmon (#496386)
1541
1542* Thu Apr 16 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-19
1543- update from trunk
1544  - fix dlopen from statically linked binaries (#495830)
1545
1546* Thu Apr 16 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-18
1547- update from trunk
1548  - fix fallocate
1549
1550* Wed Apr 15 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-17
1551- update from trunk
1552  - if threads have very small stack sizes, use much smaller buffer
1553    in __get_nprocs when called from within malloc (#494631)
1554
1555* Tue Apr 14 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-16
1556- update from trunk
1557
1558* Thu Apr  9 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-15
1559- rebuilt with fixed gcc to avoid miscompilation of i586 memmove
1560- reenable experimental malloc again
1561
1562* Wed Apr  8 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-14
1563- update from trunk
1564- temporarily disable experimental malloc
1565
1566* Tue Apr  7 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-13
1567- update from trunk
1568  - fix strverscmp (#494457)
1569- configure with --enable-nss-crypt
1570
1571* Wed Apr  1 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-12
1572- update from trunk
1573- configure with --enable-experimental-malloc
1574
1575* Fri Mar 20 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-11
1576- update from trunk
1577  - POSIX 2008 prototype adjustments for scandir{,64}, alphasort{,64} and
1578    versionsort{,64}
1579  - fix libthread_db (#491197)
1580
1581* Tue Mar 10 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-10
1582- update from trunk
1583  - fix atexit/__cxa_atexit
1584
1585* Mon Mar  9 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-9
1586- update from trunk
1587  - POSIX 2008 support: -D_XOPEN_SOURCE=700 and -D_POSIX_C_SOURCE=200809L
1588- move libnldbl_nonshared.a on ppc*/s390*/sparc* back to glibc-devel
1589
1590* Fri Feb 27 2009 Roland McGrath <roland@redhat.com> - 2.9.90-8.1
1591- fix libthread_db (#487212)
1592
1593* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.90-8
1594- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1595
1596* Wed Feb 18 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-7
1597- update from trunk
1598- adjust for i586 + i686 from i386 + i686 build
1599- split static libraries into glibc-static subpackage
1600- ld -r the whole libpthread.a together to avoid endless issues with
1601  -static ... -lpthread
1602- require 2.6.18 and later kernel
1603
1604* Wed Feb  4 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-3
1605- update from trunk
1606  - ISO C++ compliant strchr etc. with GCC 4.4+
1607  - AT_RANDOM support
1608
1609* Thu Jan  8 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-2
1610- update from trunk
1611
1612* Fri Jan  2 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-1
1613- update from trunk (#478314)
1614
1615* Mon Dec  8 2008 Jakub Jelinek <jakub@redhat.com> 2.9-3
1616- temporarily disable _nss_dns_gethostbyname4_r (#459756)
1617- NIS hostname lookup fixes (#473073, #474800, BZ#7058)
1618- fix unsetenv (#472941)
1619
1620* Thu Nov 13 2008 Jakub Jelinek <jakub@redhat.com> 2.9-2
1621- glibc 2.9 release
1622- fix CPU_ALLOC_SIZE on 32-bit arches (BZ#7029)
1623
1624* Wed Nov 12 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-17
1625- update from trunk
1626  - don't abort on broken DNS replies (#469299, BZ#7009)
1627  - misc fixes (BZ#6966, BZ#7008, BZ#6955, BZ#6843)
1628
1629* Fri Oct 31 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-16
1630- update from trunk
1631  - further resolver fixes
1632  - another dynamic TLS handling fix (#469263)
1633  - misc fixes (BZ#6867, BZ#6875, BZ#6919, BZ#6920, BZ#6942, BZ#6947,
1634                BZ#6968, BZ#6974, BZ#6980, BZ#6995)
1635- rebuild with newer rpm to avoid stripping
1636  shared libraries when they shouldn't be (#468129)
1637
1638* Tue Oct 28 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-15
1639- update from trunk
1640  - __libc_res_nquery fixes (#466786)
1641
1642* Sun Oct 19 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-14
1643- update from trunk
1644  - fix dynamic TLS handling (#467309)
1645  - fix sys/signalfd.h for C++ (#467172)
1646  - fix sprof (#458861)
1647  - fix _mcount and socket syscalls on s390x (#464146)
1648  - try harder to allocate memory in valloc and pvalloc (#461481)
1649- fix power6 32-bit libs (#467311)
1650
1651* Fri Oct 10 2008 Dennis Gilmore <dennis@ausil.us> 2.8.90-13
1652- apply sparcv9v memset patch from jakub and davem
1653
1654* Fri Aug 29 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-12
1655- update from trunk
1656  - revert origin changes (#457849)
1657  - use MAP_STACK for thread stacks
1658  - misc fixes (BZ#6845, BZ#6544, BZ#6634, BZ#6589, BZ#6790, BZ#6791,
1659    BZ#6824)
1660  - power7 bits (BZ#6817)
1661  - fix expm1 on i?86/x86_64 (#43354, BZ#5794)
1662
1663* Sat Aug  2 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-11
1664- update from trunk
1665  - fix non-absolute $ORIGIN handling (#457560)
1666  - exported some further libresolv APIs (#453325)
1667  - misc fixes
1668
1669* Tue Jul 29 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-10
1670- update from trunk
1671  - resolver fixes
1672  - misc fixes (BZ#6771, BZ#6763, BZ#6698, BZ#6712)
1673  - s390{,x} utmp/utmpx bi-arch support (BZ#6724)
1674  - popen "e" flag
1675- fr_FR locale changes reenabled
1676
1677* Wed Jul 16 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-9
1678- update from trunk
1679  - fix unbuffered vfprintf if writing to the stream fails (#455360)
1680  - remove useless "malloc: using debugging hooks" message (#455355)
1681  - nscd fixes
1682  - fix resolver alignment issues (#454500)
1683  - fix setvbuf (BZ#6719)
1684
1685* Thu Jul  3 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-8
1686- update from trunk
1687  - watch even resolv.conf in nscd using inotify
1688  - some nscd fixes
1689
1690* Fri Jun 13 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-7
1691- update from trunk
1692  - avoid *lround* on ppc* clobbering cr3/cr4 registers (#450790)
1693  - further nscd fixes (#450704)
1694  - use inotify in nscd to watch files
1695
1696* Thu Jun 12 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-6
1697- update from trunk
1698  - nscd fixes (#450704)
1699  - fix getservbyport (#449358)
1700  - fix regexp.h (#446406)
1701  - avoid crashing on T_DNAME in DNS responses (#450766)
1702
1703* Sun May 25 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-5
1704- update from trunk
1705
1706* Tue May 20 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-4
1707- further getaddrinfo and nscd fixes
1708
1709* Sun May 18 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-3
1710- getaddrinfo and nscd fixes
1711- reenable assertion checking in rawhide
1712
1713* Fri May 16 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-2
1714- fix getaddrinfo (#446801, #446808)
1715
1716* Thu May 15 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-1
1717- update to trunk
1718  - O(n) memmem/strstr/strcasestr
1719  - i386/x86_64 TLS descriptors support
1720  - concurrent IPv4 and IPv6 DNS lookups by getaddrinfo
1721
1722* Mon May  5 2008 Jakub Jelinek <jakub@redhat.com> 2.8-3
1723- don't run telinit u in %post if both /dev/initctl and
1724  /sbin/initctl exist (#444978)
1725- workaround GCC ppc64 miscompilation of c{log{,10},acosh,atan}l
1726  (#444996)
1727
1728* Wed Apr 30 2008 Jakub Jelinek <jakub@redhat.com> 2.8-2
1729- fix nscd races during GC (BZ#5381)
1730- rebuilt with fixed GCC to fix regex miscompilation on power6
1731- SPARC fixes
1732
1733* Sat Apr 12 2008 Jakub Jelinek <jakub@redhat.com> 2.8-1
1734- 2.8 release
1735
1736* Fri Apr 11 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-16
1737- update to trunk
1738  - misc fixes (BZ#4997, BZ#5741)
1739  - make sure all users of __libc_setlocale_lock know it is
1740    now a rwlock
1741  - fix ppc/ppc64 compatibility _sys_errlist and _sys_siglist
1742    symbols
1743
1744* Thu Apr 10 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-15
1745- update to trunk
1746  - misc fixes (BZ#4314, BZ#4407, BZ#5209, BZ#5436, BZ#5768, BZ#5998,
1747                BZ#6024)
1748- restart sshd in %post when upstart is used - it doesn't have
1749  /dev/initctl (#441763)
1750- disable assert checking again
1751
1752* Tue Apr  8 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-14
1753- update to trunk
1754  - misc fixes (BZ#5443, BZ#5475, BZ#5478, BZ#5939, BZ#5979, BZ#5995,
1755                BZ#6004, BZ#6007, BZ#6020, BZ#6021, BZ#6042)
1756  - change mtrace to keep perl 5.10 quiet (#441082)
1757  - don't share conversion state between mbtowc and wctomb (#438687)
1758  - if st_blksize is too large and malloc fails, retry with smaller
1759    buffer in opendir (#430768)
1760  - correct *printf overflow test (#358111)
1761
1762* Fri Mar 28 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-13
1763- update to trunk
1764  - don't define ARG_MAX in <limits.h>, as it is no longer
1765    constant - use sysconf (_SC_ARG_MAX) to get the current
1766    argument size limit
1767  - fix build on sparc64
1768- only service sshd condrestart if /etc/rc.d/init.d/sshd exists
1769  (#428859)
1770
1771* Wed Mar 26 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-12
1772- update to trunk
1773  - new CLONE_* flags in <sched.h> (#438542)
1774  - nis+ errno clobbering fix (#437945)
1775  - fix adjtime (#437974)
1776
1777* Fri Mar 14 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-11
1778- update to trunk
1779- remove <stropts.h>, define _XOPEN_STREAMS -1 (#436349)
1780
1781* Wed Mar  5 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-8
1782- update to trunk
1783  - {,v}{as,d}printf and obstack_{,v}printf fortification (#435905)
1784  - fix getnameinfo/gethostbyaddr (#428067, BZ#5790)
1785  - fix yp_order (#435519, BZ#5854)
1786  - misc fixes (BZ#5779, BZ#5736, BZ#5627, BZ#5818, BZ#5012)
1787- merge review cleanup (Tom Callaway, #225806)
1788
1789* Sat Feb 16 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-7
1790- update to trunk
1791  - make NI_MAXHOST and NI_MAXSERV available even in BSDish
1792    namespaces (BZ#5737)
1793  - timerfd_* syscalls
1794
1795* Fri Feb  1 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-6
1796- fix build
1797
1798* Thu Jan 31 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-5
1799- update to trunk
1800- rebuild with gcc 4.3
1801
1802* Fri Jan 11 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-4
1803- update to trunk
1804  - misc fixes (BZ#5541, BZ#5545, BZ#5553, BZ#5112, BZ#5520)
1805  - getaddrinfo fixes
1806  - signalize EOVERFLOW from sem_post instead of overflowing
1807    the counter
1808  - fix i?86 makecontext
1809  - fix iconv for iso-2022-jp//translit (#397021)
1810
1811* Thu Jan  3 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-3
1812- update to trunk
1813  - fix recognition of interface family (#425768)
1814  - add __THROW to __ctype_{b,tolower,toupper}_loc prototypes
1815
1816* Thu Dec 27 2007 Jakub Jelinek <jakub@redhat.com> 2.7.90-2
1817- update to trunk
1818  - nsswitch fix (#425768)
1819- temporarily enable assert checking
1820
1821* Wed Dec 12 2007 Jakub Jelinek <jakub@redhat.com> 2.7.90-1
1822- update to trunk
1823  - fix __USE_STRING_INLINES on i?86 (#408731, #371711)
1824  - fix *scanf (#388751)
1825
1826* Wed Oct 17 2007 Jakub Jelinek <jakub@redhat.com> 2.7-1
1827- glibc 2.7 release
1828- fix tzfile.c for times after last transition (#333561)
1829- fix sem_post@GLIBC_2.0 on i?86
1830- appease valgrind in libpthread.so initialization
1831- misc fixes (BZ#3425, BZ#5184, BZ#5186)
1832
1833* Mon Oct 15 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-21
1834- fix getgr{name,gid}{,_r} with nscd
1835
1836* Sun Oct 14 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-20
1837- install <bits/error.h> (#330031)
1838- disable -D_FORTIFY_SOURCE{,=2} support (with a warning) for
1839  GCC 3.4.x and earlier(#327641)
1840- pl_PL locale changes (BZ#4098, #242296)
1841- misc fixes (BZ#1140, BZ#3195, BZ#3242, BZ#4359)
1842
1843* Thu Oct 11 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-19
1844- fix <netinet/tcp.h>
1845- simple preprocessor in localedef, fix de_DE collation with it
1846
1847* Wed Oct 10 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-18
1848- add signalfd, eventfd, eventfd_read, eventfd_write
1849- qsort speedups
1850- workaround for cpuid bugs (#324081)
1851- make sure gettext's conversion_lock is initialized even if
1852  program isn't linked against libpthread.so.0, only dlopens it (#321761)
1853- misc fixes (BZ#5112, BZ#5113, BZ#5104, BZ#5063, BZ#5010, BZ#4407,
1854  BZ#3924, BZ#5103, BZ#2633, BZ#181, BZ#73, #321901)
1855
1856* Wed Oct  3 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-17
1857- fix {,v}swprintf with -D_FORTIFY_SOURCE=1 -mlong-double-64 on ppc*/s390*/sparc*
1858- strcoll fixes
1859- misc fixes (BZ#645, BZ#5071)
1860- locale fixes (BZ#4941, #299321, #203364, #196711, #236212)
1861
1862* Sat Sep 29 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-16
1863- misc fixes (BZ#4963, BZ#4972, BZ#5028, BZ#5043, BZ#5058)
1864- improve -D_FORTIFY_SOURCE{,=2} diagnostic through warning/error
1865  attributes
1866- fix wcscpy, wcpcpy, fgetws, fgetws_unlocked, swprintf and vswprintf
1867  fortification inlines
1868- fix a scalability issue with lazy binding in heavily multithreaded
1869  programs
1870
1871* Thu Sep 20 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-15
1872- $5$ (SHA-256) and $6$ (SHA-512) support in crypt
1873  (#228697, #249477, #173834)
1874
1875* Tue Sep 18 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-14
1876- -D_FORTIFY_SOURCE{,=2} support for C++
1877- fortification of fread{,_unlocked}
1878- support *scanf m allocation modifier (%ms, %mls, %mc, ...)
1879- in -std=c99 or -D_XOPEN_SOURCE=600 mode don't recognize
1880  %as, %aS and %a[ as a GNU extension for *scanf
1881- fix splice, vmsplice, tee return value, make them cancellation
1882  points
1883- mq_open checking
1884- use inline function rather than function-like macro
1885  for open{,at}{,64} checking
1886- IFA_F_OPTIMISTIC handling in getaddrinfo (#259681)
1887- fix an ABBA deadlock in ld.so (#284171)
1888- remove sparc{32,64} unwind info from _start and clone
1889
1890* Mon Aug 27 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-13
1891- fix personality on x86_64/ppc/ppc64 (#256281)
1892
1893* Sat Aug 25 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-12
1894- readd x86_64 gettimeofday stuff, initialize it earlier
1895- nis_list fix (#254115)
1896- workaround for bugs in ia64 silly /emul/ia32-linux hack (#253961)
1897- misc fixes (BZ#3924, BZ#4566, BZ#4582, BZ#4588, BZ#4726, BZ#4946,
1898  BZ#4905, BZ#4814, BZ#4925, BZ#4936, BZ#4896, BZ#4937, BZ#3842,
1899  BZ#4554, BZ#4557, BZ#4938)
1900
1901* Fri Aug 17 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-11
1902- remove __strtold_internal and __wcstold_internal from ppc*/s390*/sparc*
1903  *-ldbl.h headers
1904- temporarily backout x86_64 gettimeofday.S changes (#252453)
1905- some further sparc, sparc64 and alpha fixes
1906
1907* Wed Aug 15 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-10
1908- don't open /etc/ld.so.{cache,preload} with O_NOATIME (#252146)
1909- s390{,x}, alpha and sparc fixes
1910- sparcv9 is no longer an aux arch, as we expect
1911  to not build sparc.rpm glibc any longer, only sparcv9.rpm,
1912  sparc64.rpm and new two aux arches sparcv9v.rpm and sparc64v.rpm
1913
1914* Tue Aug 14 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-9
1915- private futex even for mutexes and condvars
1916- some further O_CLOEXEC changes
1917- use vDSO on x86_64 if available
1918- ia64 build fixes (#251983)
1919
1920* Fri Aug 10 2007 Roland McGrath <roland@redhat.com> 2.6.90-8
1921- update to trunk
1922  - fix missing strtold_l export on ppc64
1923
1924* Thu Aug  9 2007 Roland McGrath <roland@redhat.com> 2.6.90-6
1925- update to trunk
1926  - fix local PLT regressions
1927- spec file revamp for new find-debuginfo.sh
1928
1929* Sun Aug  5 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-4
1930- fix librt.so and librtkaio.so on ppc32, so that it is not using
1931  bss PLT
1932
1933* Sat Aug  4 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-3
1934- fix open{,at}{,64} macro for -pedantic (#250897)
1935- add transliteration for l with stroke (#250492)
1936- fix strtod ("-0", NULL)
1937- update License tag
1938
1939* Wed Aug  1 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-2
1940- make aux-cache purely optional performance optimization in ldconfig,
1941  don't issue any errors if it can't be created (#250430)
1942- remove override_headers hack, BuildRequire >= 2.6.22 kernel-headers
1943  and rely on its content
1944
1945* Tue Jul 31 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-1
1946- update to trunk
1947  - private futex optimizations
1948  - open{,at}{,64} argument checking
1949- ldconfig speedups
1950
1951* Sun Jul  8 2007 Jakub Jelinek <jakub@redhat.com> 2.6-4
1952- filter <built-in> pseudo-files from debuginfo source lists (#245714)
1953- fix sscanf when errno is EINTR before the call (BZ#4745)
1954- save/restore errno around reading /etc/default/nss (BZ#4702)
1955- fix LD_HWCAP_MASK handling
1956- disable workaround for #210748, instead backport
1957  ld.so locking fixes from the trunk (#235026)
1958- new x86_64 memcpy
1959- don't write uninitialized padding bytes to nscd socket
1960- fix dl{,v}sym, dl_iterate_phdr and dlopen if some library is
1961  mapped into ld.so's inter-segment hole on x86_64 (#245035, #244545)
1962- fix LD_AUDIT=a:b program (#180432)
1963- don't crash on pseudo-zero long double values passed to
1964  *printf on i?86/x86_64/ia64 (BZ#4586)
1965- fix *printf %La and strtold with some hexadecimal floating point
1966  constants on ppc/ppc64
1967- fix nextafterl on ppc/ppc64
1968- fix sem_timedwait on i?86 and x86_64
1969
1970* Thu May 24 2007 Jakub Jelinek <jakub@redhat.com> 2.6-3
1971- don't use %%config(missingok) for locale-archive.tmpl,
1972  instead of removing it altogether truncate it to zero
1973  size (#240697)
1974- add a workaround for #210748
1975
1976* Mon May 21 2007 Jakub Jelinek <jakub@redhat.com> 2.6-2
1977- restore malloc_set_state backwards compatibility (#239344)
1978- fix epoll_pwait (BZ#4525)
1979- fix printf with unknown format spec or positional arguments
1980  and large width and/or precision (BZ#4514)
1981- robust mutexes fix (BZ#4512)
1982
1983* Tue May 15 2007 Roland McGrath <roland@redhat.com> 2.6-1
1984- glibc 2.6 release
1985
1986* Fri May 11 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-24
1987- utimensat, futimens and lutimes support
1988
1989* Thu May 10 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-23
1990- use madvise MADV_DONTNEED in malloc
1991- fix ia64 feraiseexcept
1992- fix s390{,x} feholdexcept (BZ#3427)
1993- ppc fenv fixes
1994- make fdatasync a cancellation point (BZ#4465)
1995- fix *printf for huge precisions with wide char code and multi-byte
1996  strings
1997- fix dladdr (#232224, BZ#4131)
1998
1999* Fri May  4 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-22
2000- add transliteration for <U2044> (BZ#3213)
2001- fix *scanf with %f on hexadecimal floats without exponent (BZ#4342)
2002- fix *printf with very large precisions for %s (#238406, BZ#4438)
2003- fix inet_ntop size checking for AF_INET (BZ#4439)
2004- for *printf %e avoid 1.000e-00, for exponent 0 always use + sign (#238431)
2005- fix a regression introduced in #223467 changes
2006- gethostby*_r alignment fixes (BZ#4381)
2007- fix ifaddrs error handling
2008
2009* Mon Apr 16 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-21
2010- don't include individual locale files in glibc-common,
2011  rather include prepared locale-archive template and let
2012  build-locale-archive create locale-archive from the template
2013  and any user supplied /usr/lib/locale/*_* directories,
2014  then unlink the locale-archive template - this should save
2015  > 80MB of glibc-common occupied disk space
2016- fix _XOPEN_VERSION (BZ#4364)
2017- fix printf with %g and values tiny bit smaller than 1.e-4 (#235864,
2018  BZ#4362)
2019- fix NIS+ __nisfind_server (#235229)
2020
2021* Sat Mar 31 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-20
2022- assorted NIS+ speedups (#223467)
2023- fix HAVE_LIBCAP configure detection (#178934)
2024- remove %{_prefix}/sbin/rpcinfo from glibc-common (#228894)
2025- nexttoward*/nextafter* fixes (BZ#3306)
2026- feholdexcept/feupdateenv fixes (BZ#3427)
2027- speed up fnmatch with two or more * in the pattern
2028
2029* Sat Mar 17 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-19
2030- fix power6 libm compat symbols on ppc32 (#232633)
2031- fix child refcntr in NPTL fork (#230198)
2032- fix ifaddrs with many net devices on > 4KB page size arches (#230151)
2033- fix pthread_mutex_timedlock on x86_64 (#228103)
2034- various fixes (BZ#3919, BZ#4101, BZ#4130, BZ#4181, BZ#4069, BZ#3458)
2035
2036* Wed Feb 21 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-18
2037- fix nftw with FTW_CHDIR on / (BZ#4076)
2038- nscd fixes (BZ#4074)
2039- fix fmod{,f,l} on i?86 (BZ#3325)
2040- support localized digits for fp values in *scanf (BZ#2211)
2041- namespaces fixes (BZ#2633)
2042- fix euidaccess (BZ#3842)
2043- glob fixes (BZ#3996)
2044- assorted locale data fixes (BZ#1430, BZ#672, BZ#58, BZ#3156,
2045  BZ#2692, BZ#2648, BZ#3363, BZ#3334, BZ#3326, BZ#3322, BZ#3995,
2046  BZ#3885, BZ#3884, BZ#3851)
2047
2048* Sun Feb 11 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-17
2049- RFC2671 support in resolver (#205842)
2050- fix strptime (BZ#3944)
2051- fix regcomp with REG_NEWLINE (BZ#3957)
2052- fix pthread_mutex_timedlock on x86_64 (#228103)
2053
2054* Fri Feb  2 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-16
2055- add strerror_l
2056- fix application crashes when doing NSS lookups through nscd
2057  mmapped databases and nscd decides to start garbage collection
2058  during the lookups (#219145, #225315)
2059- fix %0lld printing of 0LL on 32-bit architectures (BZ#3902)
2060- ignore errors from install-info in glibc-devel scriptlets
2061  (#223691)
2062
2063* Wed Jan 17 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-15
2064- fix NIS getservbyname when proto is NULL
2065- fix nss_compat +group handling (#220658)
2066- cache services in nscd
2067- fix double free in fts_close (#222089)
2068- fix vfork+execvp memory leak (#221187)
2069- soft-fp fixes (BZ#2749)
2070- further strtod fixes (BZ#3855)
2071- make sure pthread_kill doesn't return EINVAL even if
2072  the target thread exits in between pthread_kill ESRCH check
2073  and the actual tgkill syscall (#220420)
2074- fix ABBA deadlock possibility in ld.so scope locking code
2075
2076* Tue Dec 19 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-14
2077- fix {j,m}rand48{,_r} on 64-bit arches (BZ#3747)
2078- handle power6x AT_PLATFORM (#216970)
2079- fix a race condition in getXXbyYY_r (#219145)
2080- fix tst-pselect testcase
2081
2082* Thu Dec 14 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-13
2083- fix setcontext on ppc32 (#219107)
2084- fix wide stdio after setvbuf (#217064, BZ#2337)
2085- handle relatime mount option in statvfs
2086- revert i?86/x86_64 clone CFI temporarily
2087
2088* Sun Dec 10 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-12
2089- fix hasmntopt (#218802)
2090- fix setusershell and getusershell (#218782)
2091- strtod fixes (BZ#3664, BZ#3673, BZ#3674)
2092- fix memusage with realloc (x, 0)
2093
2094* Tue Dec  5 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-11
2095- allow suid apps to setenv NIS_PATH and influence through that
2096  nis_list and nis_lookup (#209155)
2097- fix ttyname and ttyname_r with invalid file descriptor (#218276)
2098- cs_CZ LC_TIME fixes (#218438)
2099- fix build with 2.6.19+ headers (#217723)
2100
2101* Fri Dec  1 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-10
2102- fix x86-64 restore_rt unwind info
2103
2104* Thu Nov 30 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-9
2105- fix last svc_run change (#217850)
2106- on ppc64 build __libc_start_main without unwind info,
2107  as it breaks MD_FROB_UPDATE_CONTEXT (#217729, #217775; in the
2108  future that could be fixable just by providing .cfi_undefined r2
2109  in __libc_start_main instead)
2110- add unwind info for x86-64 restore_rt signal return landing pad
2111  (#217087)
2112- add power6x subdir to /%{_lib}/ and /%{_lib}/rtkaio/,
2113  link all libs from ../power6/* into them
2114
2115* Tue Nov 28 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-8
2116- fix svc_run (#216834, BZ#3559)
2117- add -fasynchronous-unwind-tables to CFLAGS (#216518)
2118- make sure there is consistent timestamp for /etc/ld.so.conf,
2119  /etc/localtime and /etc/rpc between multilib glibc rpms
2120
2121* Mon Nov 20 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-7
2122- handle IPv6 addresses in /etc/hosts that are mappable to
2123  IPv4 addresses in IPv4 host lookups (#215283)
2124- fix :include: /etc/alias handling (#215572)
2125- handle new tzdata format to cope with year > 2037 transitions
2126  on 64-bit architectures
2127
2128* Fri Nov 10 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-6
2129- fix strxfrm fix
2130- fix i?86 floor and ceil inlines (BZ#3451)
2131
2132* Thu Nov  9 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-5
2133- fix sysconf (_SC_LEVEL{2,3}_CACHE_SIZE) on Intel Core Duo
2134  CPUs
2135- fix libthread_db.so on TLS_DTV_AT_TP architectures
2136- fix --inhibit-rpath (#214569)
2137- fix _r_debug content when prelinked ld.so executes
2138  a program as its argument
2139- fix strxfrm
2140- powerpc-cpu add-on updates
2141
2142* Fri Nov  3 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-4
2143- fix atexit backwards compatibility (#213388)
2144- add mai_IN locale (#213415)
2145- remove bogus %{_libdir}/librt.so.1 symlink (#213555)
2146- fix memusage (#213656)
2147- change libc.info category (#209493)
2148
2149* Sun Oct 29 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-3
2150- fix suid/sgid binaries on i?86/x86_64 (#212723)
2151
2152* Fri Oct 27 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-2
2153- fix ia64 build
2154- don't call _dl_close outside of dl_load_lock critical section
2155  if dlopen failed (BZ#3426)
2156- add rtld scope locking (#211133)
2157
2158* Wed Oct 25 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-1
2159- fix i?86 6 argument syscalls (e.g. splice)
2160- fix rtld minimal realloc (BZ#3352)
2161- fix RFC3484 getaddrinfo sorting according to rules 4 and 7 (BZ#3369)
2162- fix xdrmem_setpos (#211452)
2163- bump __GLIBC_MINOR__
2164- increase PTHREAD_STACK_MIN on ppc{,64} to 128K to allow
2165  64K pagesize kernels (#209877)
2166- speed up initgroups on NIS+ (#208203)
2167
2168* Mon Oct  2 2006 Jakub Jelinek <jakub@redhat.com> 2.5-2
2169- fix nscd database growing (#207928)
2170- bypass prelinking when LD_DYNAMIC_WEAK=1 is in the environment
2171
2172* Fri Sep 29 2006 Jakub Jelinek <jakub@redhat.com> 2.5-1
2173- glibc 2.5 release
2174
2175* Wed Sep 27 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-36
2176- rebuilt with gcc-4.1.1-26 to fix unwind info
2177
2178* Mon Sep 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-35
2179- fix glob with large number of matches (BZ#3253)
2180- fix fchownat on kernels that don't support that syscall (BZ#3252)
2181- fix lrintl on s390{,64}
2182
2183* Sat Sep 23 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-34
2184- fix ppc{32,64} longjmp (BZ#3225)
2185- fix user visible spelling errors (BZ#3137)
2186- fix l{,l}rint{,f,l} around zero (BZ#2592)
2187- avoid stack trampoline in s390{,x} makecontext
2188
2189* Tue Sep 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-33
2190- fix dlclose (#206639)
2191- don't load platform optimized libraries if kernel doesn't set
2192  AT_PLATFORM
2193- fix ppc{32,64} libSegFault.so
2194- use -mtune=generic even for glibc-devel.i386 (#206437)
2195- fix /%{_lib}/librt.so.1 symlink
2196
2197* Fri Sep 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-32
2198- on ppc* use just AT_PLATFORM and altivec AT_HWCAP bit for library selection
2199- fix lrintl and lroundl on ppc{,64}
2200- use hidden visibility on fstatat{,64} and mknodat in libc_nonshared.a
2201
2202* Sun Sep 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-31
2203- fix pthread_cond_{,timed}wait cancellation (BZ#3123)
2204- fix lrint on ppc32 (BZ#3155)
2205- fix malloc allocating more than half of address space (BZ#2775)
2206- fix mktime on 32-bit arches a few years after 2038 (BZ#2821)
2207
2208* Thu Sep  7 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-30
2209- add librtkaio, to use it add /%{lib}/rtkaio to your
2210  LD_LIBRARY_PATH or /etc/ld.so.conf
2211- fix or_IN February name (#204730)
2212- fix pthread_create called from cancellation handlers (BZ#3124)
2213- fix regex case insensitive searches with characters where upper
2214  and lower case multibyte representations have different length
2215  (e.g. I and dotless i, #202991)
2216
2217* Tue Sep  5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-29
2218- randomize resolver query ids before use instead after use (#205113)
2219- fix resolver symver checking with DT_GNU_HASH (#204909)
2220- put .hash section in glibc libraries at the end of RO segment
2221  when .gnu.hash is present
2222
2223* Thu Aug 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-28
2224- another malloc doubly linked list corruption problem fix (#204653)
2225
2226* Thu Aug 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-27
2227- allow $LIB and $PLATFORM in dlopen parameters even in suid/sgid (#204399)
2228- handle $LIB/$PLATFORM in LD_LIBRARY_PATH
2229- fix splice prototype (#204530)
2230
2231* Mon Aug 28 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-26
2232- real fix for the doubly linked list corruption problem
2233- try harder in realloc to allocate memory (BZ#2684)
2234- fix getnameinfo error reporting (#204122)
2235- make localedef more robust on invalid input (#203728)
2236
2237* Fri Aug 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-25
2238- temporarily back out code to limit number of unsorted block
2239  sort iterations (#203735, #204027)
2240- handle PLT symbols in dladdr properly (BZ#2683)
2241- avoid malloc infinite looping for allocations larger than
2242  the system can allocate (#203915)
2243
2244* Tue Aug 22 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-23
2245- malloc fixes, especially for 32-bit arches (#202309)
2246- further *_IN locale fixes (#200230)
2247- fix get{serv,rpc}ent{,_r} if NIS map is empty (#203237)
2248- fix /usr/bin/iconv (#203400)
2249
2250* Fri Aug 18 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-22
2251- rebuilt with latest binutils to pick up 64K -z commonpagesize
2252  on ppc/ppc64 (#203001)
2253
2254* Tue Aug 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-21
2255- if some test gets stuck, kill the tee process after make check
2256  finishes
2257- build with -mtune=generic on i686 and x86_64
2258
2259* Tue Aug 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-20
2260- PTHREAD_PRIO_PROTECT support
2261- fix errno if nice() fails (#201826)
2262
2263* Thu Aug 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-19
2264- adaptive malloc brk/mmap threshold
2265- fix fchownat to use kernel syscall (if available) on many arches (#201870)
2266- only define O_DIRECT with -D_GNU_SOURCE on ia64 to match all
2267  other arches (#201748)
2268
2269* Mon Aug  7 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-18
2270- NIS+ fixes
2271- fix memusage and xtrace scripts (#200736)
2272- redirect /sbin/service sshd condrestart std{out,err} to /dev/null
2273  when executed from glibc_post_upgrade
2274
2275* Wed Aug  2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-17
2276- typo fix for the dladdr patch
2277- build i?86 glibc with -mno-tls-direct-seg-refs (#200469)
2278
2279* Wed Aug  2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-16
2280- fix dladdr on binaries/libraries with only DT_GNU_HASH and no
2281  DT_HASH (#200635)
2282- fix early timeout of initgroups data in nscd (#173019)
2283- add am/pm display to es_PE and es_NI locales (#167101)
2284- fix nss_compat failures when nis/nis+ unavailable (#192072)
2285
2286* Mon Jul 31 2006 Roland McGrath <roland@redhat.com> 2.4.90-15
2287- fix missing destructor calls in dlclose (#197932)
2288- enable transliteration support in all locales (#196713)
2289- disallow RTLD_GLOBAL flag for dlmopen in secondary namespaces (#197462)
2290- PI mutex support
2291
2292* Tue Jul 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-13
2293- DT_GNU_HASH support
2294
2295* Fri Jun 30 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-12
2296- buildrequire gettext
2297- enable fstatat64/newfstatat syscalls even on ppc*/s390*/ia64 (#196494)
2298- fix out of memory behavior in gettext (#194321)
2299- fix regex on multi-byte non-UTF-8 charsets (#193873)
2300- minor NIS+ fixes (#190803)
2301- don't use cancellable calls in posix_spawn* and only set{u,g}id
2302  current thread if requested (#193631)
2303
2304* Wed May 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-11
2305- don't exit from nscd -i <database> before the database is
2306  actually invalidated, add locking to prune_cache (#191464)
2307- build glibc-devel.i386 static libraries with
2308  -mno-tls-direct-seg-refs -DNO_TLS_DIRECT_SEG_REFS
2309- RFC3542 support (advanced API for IPv6; #191001, BZ##2693)
2310
2311* Wed May 24 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-10
2312- on i686 make glibc owner of /lib/i686 directory (#192597)
2313- search parent NIS+ domains (#190803)
2314
2315* Sun May 21 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-9
2316- update from CVS
2317  - big NIS+ changes
2318
2319* Fri May 19 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-8
2320- update from CVS
2321  - fix nss_compat when SETENT_BATCH_READ=TRUE is in /etc/default/nss
2322  - fix RFC3484 precedence table for site-local and ULA addresses (#188364)
2323  - fix a sunrpc memory leak
2324
2325* Thu May 11 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-7
2326- update from CVS
2327  - fix tcgetattr (#177965)
2328  - fix <sys/queue.h> (#191264)
2329
2330* Fri May  5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-6
2331- update from CVS
2332- rebuilt using fixed rpm
2333
2334* Fri May  5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-5
2335- update from CVS
2336  - some NIS+ fixes
2337  - allow overriding rfc3484 address sorting tables for getaddrinfo
2338    through /etc/gai.conf (sample config file included in %%doc directory)
2339
2340* Mon May  1 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-4
2341- update from CVS
2342  - SETENT_BATCH_READ /etc/default/nss option for speeding up
2343    some usages of NIS+ (#188246)
2344  - move debug state change notification (#179208)
2345  - fix ldd script if one of the dynamic linkers is not installed (#190259)
2346
2347* Thu Apr 27 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-3
2348- update from CVS
2349  - fix a typo in nscd.conf (#190085)
2350  - fix handling of SIGHUP in nscd when some caches are disabled (#189978)
2351  - make nscd paranoia mode working with non-root server-user (#189779)
2352
2353* Wed Apr 26 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-2
2354- update from CVS
2355  - fix getaddrinfo (#190002)
2356  - add auto-propagate nscd.conf options (#177154)
2357  - fix nscd auditing (#169148)
2358
2359* Tue Apr 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-1
2360- update from CVS
2361
2362* Mon Apr 24 2006 Jakub Jelinek <jakub@redhat.com> 2.4-6
2363- update from CVS
2364  - NIS+ fixes
2365  - don't segfault on too large argp key values (#189545)
2366  - getaddrinfo fixes for RFC3484 (#188364)
2367
2368* Tue Mar 28 2006 Jakub Jelinek <jakub@redhat.com> 2.4-5
2369- update from CVS
2370  - pshared robust mutex support
2371  - fix btowc and bwtoc in C++ (#186410)
2372  - fix NIS+ (#186592)
2373  - don't declare __wcsto*l_internal for non-GCC or if not -O1+ (#185667)
2374- don't mention nscd failures on 2.0 kernels (#185335)
2375
2376* Tue Mar  7 2006 Roland McGrath <roland@redhat.com> 2.4-4
2377- back up %%{ix86} gdb conflicts to < 6.3.0.0-1.111
2378
2379* Tue Mar  7 2006 Jakub Jelinek <jakub@redhat.com> 2.4-3
2380- really fix rintl on ppc64
2381
2382* Tue Mar  7 2006 Jakub Jelinek <jakub@redhat.com> 2.4-2
2383- accurate unwind info for lowlevellock.h stubs on %%{ix86}
2384- fix ppc/ppc64 ceill, floorl, rintl, roundl and truncl (BZ#2423)
2385
2386* Mon Mar  6 2006 Jakub Jelinek <jakub@redhat.com> 2.4-1
2387- update from CVS
2388  - glibc 2.4 release
2389
2390* Mon Mar  6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.91-2
2391- update from CVS
2392  - fix sYSMALLOc for MALLOC_ALIGNMENT > 2 * SIZE_SZ (#183895)
2393  - revert ppc32 malloc alignment patch, it breaks malloc_set_state
2394    and needs some further thoughts and time (#183894)
2395- provide accurate unwind info for lowlevellock.h stubs on x86_64
2396
2397* Thu Mar  2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.91-1
2398- update from CVS
2399  - fixes for various arches
2400- ensure malloc returns pointers aligned to at least
2401  MIN (2 * sizeof (size_t), __alignof__ (long double))
2402  (only on ppc32 this has not been the case lately with addition
2403   of 128-bit long double, #182742)
2404
2405* Wed Mar  1 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-39
2406- update from CVS
2407
2408* Fri Feb 17 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-38
2409- update from CVS
2410  - robust mutexes rewrite
2411
2412* Mon Feb 13 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-37
2413- update from CVS
2414  - *at fixes
2415  - unshare syscall wrapper
2416
2417* Sat Feb  4 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-36
2418- update from CVS
2419  - fix frequency setting for ITIMER_PROF (#179938, BZ#2268)
2420  - fix powerpc inline fegetround ()
2421  - fix nptl_db (#179946)
2422
2423* Fri Feb  3 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-35
2424- update from CVS
2425  - handle futimesat (fd, NULL, tvp) as futimes (fd, tvp)
2426- fix <stdlib.h> q{e,f,g}cvt{,_r} for -mlong-double-64
2427
2428* Thu Feb  2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-34
2429- fix <math.h> with C++ and -mlong-double-64 (#179742)
2430- add nexttowardl redirect for -mlong-double-64
2431
2432* Thu Feb  2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-33
2433- update from CVS
2434  - long double support fixes
2435
2436* Wed Feb  1 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-32
2437- update from CVS
2438  - 128-bit long double fixes for ppc{,64}, s390{,x} and sparc{,v9},
2439    alpha 128-bit long double support
2440- add inotify syscall numbers to the override <asm/unistd.h> headers
2441  (#179366)
2442
2443* Mon Jan 30 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-31
2444- update from CVS
2445  - 128-bit long double on ppc, ppc64, s390, s390x and sparc{,v9}
2446- add some new syscall numbers to the override <asm/unistd.h>
2447  headers
2448
2449* Mon Jan  9 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-30
2450- update from CVS
2451  - <pthread.h> initializer fixes for -std=c{8,9}9 on 32-bit
2452    arches
2453- avoid writable .rodata (#177121)
2454
2455* Fri Jan  6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-29
2456- update from CVS
2457  - make pthread_mutex_t an unnamed union again, as it affects
2458    libstdc++ ABI mangling
2459
2460* Fri Jan  6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-28
2461- update from CVS
2462  - make aio_suspend interruptible by signals (#171968)
2463
2464* Fri Jan  6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-27
2465- only rely on d_type in 32-bit getdents on s390 for 2.6.11+
2466
2467* Wed Jan  4 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-26
2468- update from CVS
2469  - for newly linked lio_listio* callers, send per request
2470    notifications (#170116)
2471  - fixup nscd -S option removal changes (#176860)
2472  - remove nonnull attribute from ctermid (#176753)
2473  - fix PTHREAD_*_INITIALIZER{,_NP} on 64-bit arches
2474  - SPARC NPTL support for pre-v9 CPUs
2475- drop support for 2.4.xx and < 2.6.9 kernels
2476
2477* Mon Jan  2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-25
2478- update from CVS
2479  - s390{,x} and sparc{,64} pointer mangling fixes
2480- install a sanitized LinuxThreads <bits/libc-lock.h>
2481
2482* Mon Jan  2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-24
2483- update from CVS
2484  - nscd audit changes (#174422)
2485  - ppc{32,64} vDSO support and ppc32 hp-timing
2486
2487* Tue Dec 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-23
2488- update from CVS
2489  - robust mutexes
2490- fix transliteration segfaults (#176573, #176583)
2491- ignore prelink temporaries in ldconfig (#176570)
2492
2493* Wed Dec 21 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-22
2494- update from CVS
2495  - minor fts fixes
2496- revert broken _Pragma () workaround
2497- fix ldconfig on bi-arch architectures (#176316)
2498
2499* Tue Dec 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-21
2500- update from CVS
2501  - fix pointer (de)mangling in gconv_cache.c
2502
2503* Tue Dec 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-20
2504- update from CVS
2505  - time ((void *) 1) should segfault, not return -EFAULT (#174856, BZ#1952)
2506  - fix errlist generation
2507- update ulps for GCC 4.1 on IA-64
2508
2509* Mon Dec 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-19
2510- update from CVS
2511  - sysdeps/generic reorg
2512  - setjmp/longjmp jump pointer mangling
2513- rebuilt with GCC 4.1-RH prerelease, worked around broken _Pragma ()
2514  handling in it
2515- remove glibc-profile subpackage
2516- use non-PLT calls for malloc/free/realloc/memalign invocations in
2517  mtrace and mcheck hooks (#175261)
2518- setjmp/longjmp jump pointer mangling on ppc{,64}/ia64/s390{,x}
2519
2520* Sat Nov 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-18
2521- update from CVS
2522  - change <sys/stat.h> for broken apps that #define const /**/,
2523    handle non-GCC compilers
2524  - fix ppc{32,64} strncmp (BZ#1877, #173643, IT#83510)
2525  - provide shmatt_t typedef in ia64 <sys/shm.h (#173680)
2526  - support 2nd arg to futimesat being NULL (#173581)
2527
2528* Wed Nov 16 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-17
2529- update from CVS
2530  - fix <sys/stat.h> in C++
2531  - {fstat,fchown,rename,unlink}at fixes
2532  - epoll_wait is now a cancellation point
2533
2534* Tue Nov 15 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-16
2535- update from CVS
2536- make sure waitid syscall is used on ppc*/s390*
2537
2538* Thu Oct 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-15
2539- update from CVS
2540  - be permissive in %n check because of kernel bug #165351 (#171240)
2541  - don't misalign stack in pthread_once on x86_64 (#170786, IT#81521)
2542  - many locale fixes
2543
2544* Mon Oct 10 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-14
2545- update from CVS
2546  - fix malloc bug after fork introduced in the last update
2547  - fix getent hosts IP for IPv4 IPs (#169831)
2548
2549* Mon Oct  3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-13
2550- update from CVS
2551  - fix setuid etc. hangs if some thread exits during the call (#167766)
2552  - fix innetgr memory leak (#169051)
2553  - support > 2GB nscd log files (#168851)
2554  - too many other changes to list here
2555- include errno in nscd message if audit_open failed (#169148)
2556
2557* Mon Sep 12 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-12
2558- update from CVS
2559  - netgrp handling fixes (#167728)
2560  - fix memory leak in setlocale (BZ#1318)
2561  - fix hwcaps computation
2562  - several regex portability improvements (#167019)
2563  - hypotf fix
2564  - fix *printf return code if underlying write fails (BZ#1146)
2565  - PPC64 dl{,v}sym fixes for new ABI .opd symbols
2566- fix calloc with MALLOC_PERTURB_ in environment on 64-bit architectures
2567  (#166719)
2568- source /etc/sysconfig/nscd (if it exists) in /etc/rc.d/init.d/nscd
2569  (#167083)
2570- add %%triggerin for tzdata to glibc-common, so that tzdata updates
2571  update /etc/localtime and /var/spool/postfix/etc/localtime if they
2572  exist (#167787)
2573
2574* Mon Aug 29 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-11
2575- FUTEX_WAKE_OP support to speed up pthread_cond_signal
2576
2577* Wed Aug 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-10
2578- update from CVS
2579  - fix growing of nscd persistent database (BZ#1204)
2580  - fix _FORTIFY_SOURCE mbstowcs and wcstombs if destination size
2581    is known at compile time, but length argument is not
2582
2583* Mon Aug 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-9
2584- update from CVS
2585  - fix resolving over TCP (#161181, #165802)
2586  - on ia64 don't abort on unhandled math function exception codes
2587    (#165693)
2588
2589* Mon Aug  8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-8
2590- update from CVS
2591  - nscd persistent database verifier (#164001)
2592  - cleanup _FORTIFY_SOURCE bits/*.h headers (#165000)
2593  - handle EINTR in sigwait properly
2594- make sure poor man's stack guard randomization keeps first
2595  byte 0 even on big-endian 32-bit arches
2596- fix {elf,nptl}/tst-stackguard1
2597- obsolete linuxthreads-devel in glibc-devel
2598
2599* Fri Jul 29 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-7
2600- update from CVS
2601- do some poor man's stack guard randomization even without
2602  the costly --enable-stackguard-randomization
2603- rebuilt with new GCC to make it use -msecure-plt on PPC32
2604
2605* Mon Jul 25 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-6
2606- update from CVS
2607  - fix execvp if PATH is not in environment and the call is going
2608    to fail (BZ#1125)
2609  - another bits/wchar2.h fix (#163990)
2610
2611* Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-5
2612- update from CVS
2613  - fix stubs.h generation
2614- don't use _G_va_list in bits/wchar2.h
2615
2616* Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-4
2617- update from CVS
2618  - make sure bits/wchar2.h header is installed
2619  - fix __getgroups_chk return type
2620
2621* Thu Jul 21 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-3
2622- update from CVS
2623  - make sure nscd cmsg buffers aren't misaligned, handle EINTR from
2624    poll when contacting nscd more gracefully
2625  - remove malloc attribute from posix_memalign
2626  - correctly size nscd buffer for grpcache key (#163538)
2627  - fix atan2f
2628  - fix error memory leaks
2629  - some more _FORTIFY_SOURCE protection
2630
2631* Fri Jul  8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-2
2632- update from CVS
2633  - ia64 stack protector support
2634  - handle DNS referral results as server errors (#162625)
2635  - ctan{,h}{,f,l} fixes (#160759)
2636  - pass argc, argv and envp also to executable's *ni_array
2637    functions (BZ#974)
2638  - add ellipsis to clone prototype (#161593)
2639  - fix glibc-profile (#162601)
2640  - nss_compat fixes
2641- use sysdeps/generic version of <bits/stdio-lock.h> in installed
2642  headers instead of NPTL version (#162634)
2643
2644* Mon Jun 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-1
2645- update from CVS
2646  - stack protector support
2647  - fix xdr_{,u_}{longlong_t,hyper} on 64-bit arches (#161583)
2648- enable @GLIBC_2.4 symbols
2649- remove linuxthreads
2650
2651* Mon Jun 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-11
2652- update from CVS
2653  - PPC32 -msecure-plt support
2654  - support classes keyword in /etc/hesiod.conf (#150350)
2655  - add RLIMIT_NICE and RLIMIT_RTPRIO to <sys/resources.h> (#157049)
2656  - decrease number of .plt relocations in libc.so
2657  - use -laudit in nscd (#159217)
2658  - handle big amounts of networking interfaces in getifaddrs/if_nameindex
2659    (#159399)
2660  - fix pa_IN locale's am_pm (#158715, BZ#622)
2661  - fix debugging of PIEs
2662
2663* Mon May 30 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-10
2664- fix LD_ASSUME_KERNEL (since 2.3.5-8 GLRO(dl_osversion)
2665  has been always overwritten with the version of currently
2666  running kernel)
2667- remove linuxthreads man pages other than those covered in
2668  3p section, as 3p man pages are far better quality and describe
2669  POSIX behaviour that NPTL implements (#159084)
2670
2671* Tue May 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-9
2672- update from CVS
2673  - increase bindresvport's LOWPORT to 512, apparently some
2674    broken daemons don't think 0 .. 511 ports are reserved
2675
2676* Mon May 23 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-8
2677- update from CVS
2678  - fix kernel version check in ld.so
2679- fix sendfile{,64} prototypes (BZ#961)
2680- try more ports in bindresvport if all 600..1023 are
2681  used, don't use priviledged ports when talking to portmap
2682  (#141773)
2683
2684* Fri May 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-7
2685- update from CVS
2686  - make regexec thread safe (BZ#934)
2687- fix statically linked programs on i?86, x86_64, s390* and
2688  sparc* (#158027)
2689- fix IBM939 iconv module (BZ#955)
2690
2691* Wed May  4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-6
2692- update from CVS
2693  - fix cancellation on i?86
2694  - add call frame information to i?86 assembly
2695
2696* Tue May  3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-5
2697- update from CVS
2698  - add some more UTF-8 locales (#156115)
2699- clean up /lib64/tls instead of /lib/tls on x86-64, s390x and
2700  ppc64 in glibc_post_upgrade (#156656)
2701- fix posix_fallocate{,64} (#156289)
2702
2703* Thu Apr 28 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-4
2704- update from CVS
2705  - fix nscd cache pruning (#150748)
2706
2707* Wed Apr 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-3
2708- update from CVS
2709  - fix linuxthreads clocks
2710- put xen libs into the glibc-2*.i686 package instead of a separate one
2711- fix librt.so symlink in linuxthreads-devel
2712- do not include linuxthreads-devel on %{auxarches},
2713  just on the base architectures
2714
2715* Wed Apr 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-2
2716- update from CVS
2717  - with MALLOC_CHECK_=N N>0 (#153003)
2718  - fix recursive dlclose (#154641)
2719  - handle %z in strptime (#154804)
2720  - automatically append /%{_lib}/obsolete/linuxthreads/
2721    to standard library search path if LD_ASSUME_KERNEL=N N <= 2.4.19
2722    or for glibc 2.0 binaries (or broken ones that don't use errno/h_errno
2723    properly).  Warning: all those will stop working when LinuxThreads
2724    is finally nuked, which is not very far away
2725  - remove nonnull attribute from acct prototype (BZ#877)
2726  - kernel CPU clocks support
2727  - fix *scanf in locales with multi-byte decimal point
2728
2729* Wed Apr 27 2005 Roland McGrath <roland@redhat.com>
2730- glibc-xen subpackage for i686
2731
2732* Fri Apr 15 2005 Roland McGrath <roland@redhat.com> 2.3.5-1
2733- update from CVS
2734  - fix execvp regression (BZ#851)
2735  - ia64 libm updates
2736  - sparc updates
2737  - fix initstate{,_r}/strfry (#154504)
2738  - grok PT_NOTE in vDSO for kernel version and extra hwcap dirs,
2739    support "hwcap" keyword in ld.so.conf files
2740
2741* Tue Apr  4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-21
2742- update from CVS
2743  - fix xdr_rmtcall_args on 64-bit arches (#151686)
2744- fix <pthread.h> and <bits/libc-lock.h> with -std=c89 -fexceptions (#153774)
2745
2746* Mon Apr  4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-20
2747- move LinuxThreads libraries to /%{_lib}/obsolete/linuxthreads/
2748  and NPTL libraries to /%{_lib}.  To run a program against LinuxThreads,
2749  LD_ASSUME_KERNEL=2.4.xx LD_LIBRARY_PATH=/%{_lib}/obsolete/linuxthreads/
2750  is now needed
2751- bzip2 ChangeLog* files instead of gzipping them
2752
2753* Sat Apr  2 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-19
2754- update from CVS
2755  - fix nextafterl and several other libm routines on ia64
2756  - fix initgroups (BZ#661)
2757- kill nptl-devel subpackage, add linuxthreads-devel,
2758  compile and link by default against NPTL and only with
2759  -I/usr/include/linuxthreads -L/usr/%{_lib}/linuxthreads
2760  against LinuxThreads
2761- package /usr/lib/debug/%{_lib}/tls/i{5,6}86 symlinks in
2762  i386 glibc-debuginfo
2763- limit number of ChangeLog* files in glibc-common %%doc
2764  to last 2.5 years of changes only to save space
2765
2766* Fri Mar 25 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-18
2767- fix build on 64-bit arches with new GCC
2768
2769* Thu Mar 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-17
2770- update from CVS
2771  - fix LD_AUDIT in LinuxThreads ld.so
2772  - fix calloc with M_PERTURB
2773  - fix error handling in pthread_create with PTHREAD_EXPLICIT_SCHED
2774    on ppc*/ia64/alpha/mips (BZ#801)
2775  - fix a typo in WINDOWS-31J charmap (#151739)
2776  - fix NIS ypprot_err (#151469)
2777
2778* Sun Mar 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-16
2779- fix pread with -D_FILE_OFFSET_BITS=64 (#151573)
2780
2781* Sat Mar 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-15
2782- update from CVS
2783  - better fix for the dlclose bug (#145810, #150414)
2784  - fix regex crash on case insensitive search in zh_CN locale
2785    (#151215)
2786  - fix malloc_trim (BZ#779)
2787  - with -D_FORTIFY_SOURCE=*, avoid defining read and a bunch of others
2788    as function-like macros, there are too many broken programs
2789    out there
2790- add %%dir %{_prefix}/%{_lib}/gconv to glibc's file list (#151372)
2791
2792* Sun Mar  6 2005 Roland McGrath <roland@redhat.com> 2.3.4-14
2793- fix bits/socket2.h macro typos
2794
2795* Sat Mar  5 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-12
2796- fix tst-chk{2,3}
2797- fix up AS_NEEDED directive in /usr/%{_lib}/libc.so
2798- BuildReq binutils >= 2.15.94.0.2-1 for AS_NEEDED, in
2799  glibc-devel Conflict with binutils < 2.15.94.0.2-1
2800
2801* Thu Mar  3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-11
2802- update from CVS
2803  - fix execvp (#149290)
2804  - fix dlclose (#145810)
2805  - clear padding in gconv-modules.cache (#146614, BZ#776)
2806- rebuilt with GCC4
2807- changed __GLIBC_MINOR__ for now back to 3
2808- back out the newly added GLIBC_2.4 *_chk routines, instead
2809  do the checking in macros
2810
2811* Sat Feb 12 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-10
2812- hopefully fix interaction with prelink (#147655)
2813
2814* Fri Feb 11 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-9
2815- update from CVS
2816  - bi-arch <gnu/stubs.h> (BZ#715)
2817
2818* Fri Feb 11 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-8
2819- update from CVS
2820  - bi-arch <gnu/lib-names.h> (BZ#632)
2821  - fix libdl on s390 and maybe other platforms
2822  - fix initstate{,_r} (BZ#710)
2823  - fix <gnu/stubs.h> generation (BZ#157)
2824- define CMSPAR in bits/termios.h (#147533)
2825
2826* Tue Feb  8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-7
2827- update from CVS
2828  - fix TLS handling in linuxthreads
2829
2830* Tue Feb  8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-6
2831- update from CVS
2832  - ld.so auditing
2833  - fix segfault if chrooted app attempts to dlopen a library
2834    and no standard library directory exists at all (#147067, #144303)
2835  - fix initgroups when nscd is running, but has group caching disabled
2836    (#146588)
2837  - fix pthread_key_{create,destroy} in LinuxThreads when pthread_create
2838    has not been called yet (#146710)
2839  - fix ppc64 swapcontext and setcontext (#146736, BZ#700)
2840  - service nscd cosmetic fixes (#146776)
2841  - fix IA-32 and x86-64 stack alignment in DSO constructors (#145689)
2842  - fix zdump -v segfaults on x86-64 (#146210)
2843  - avoid calling sigaction (SIGPIPE, ...) inside syslog (#146021, IT#56686)
2844  - fix errno values for futimes (BZ#633)
2845  - unconditionally include <features.h> in malloc.h (BZ#650)
2846  - change regex \B handling to match old GNU regex as well as perl/grep's dfa
2847    (from empty string inside of word to empty string not at a word boundary,
2848     BZ#693)
2849  - slightly optimize i686 TLS accesses, use direct TLS %gs access in sem_*
2850    and allow building -mno-tls-direct-seg-refs glibc that is free of direct TLS
2851    %gs access with negative offsets
2852  - fix addseverity
2853  - fix fmemopen
2854  - fix rewinddir
2855  - increase svc{tcp,unix}_create listen backlog
2856
2857* Thu Jan  6 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-5
2858- update from CVS
2859  - add some warn_unused_result marking
2860  - make ftruncate available even for just -D_POSIX_C_SOURCE=200112L
2861    (BZ#640)
2862
2863* Thu Jan  6 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-4
2864- update from CVS
2865  - fix IA-32 stack alignment for LinuxThreads thread functions
2866    and functions passed to clone(2) directly
2867  - fix ecvt{,_r} on denormals (#143279)
2868  - fix __tls_get_addr typo
2869  - fix rounding in IA-64 alarm (#143710)
2870  - don't reinitialize __environ in __libc_start_main, so that
2871    effects of setenv/putenv done in DSO initializers are preserved
2872    (#144037, IT#57403)
2873  - fix fmemopen
2874  - fix vDSO l_map_end and l_text_end values
2875  - IA64 libm update (#142494)
2876- fix ppc rint/ceil etc. (BZ#602)
2877
2878* Tue Dec 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-3
2879- rebuilt
2880
2881* Mon Dec 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-2
2882- work around rpm bug some more, this time by copying
2883  iconvconfig to iconvconfig.%%{_target_cpu}.
2884
2885* Mon Dec 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-1
2886- update from CVS
2887  - glibc 2.3.4 release
2888  - add -o and --nostdlib options to iconvconfig
2889- if /sbin/ldconfig doesn't exist when running
2890  glibc_post_upgrade.%%{_target_cpu}, just don't attempt to run it.
2891  This can happen during first install of bi-arch glibc and the
2892  other arch glibc's %post wil run /sbin/ldconfig (#143326)
2893- use -o and --nostdlib options to create all needed
2894  gconv-modules.cache files on bi-arch setups
2895
2896* Sun Dec 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-99
2897- rebuilt
2898
2899* Sat Dec 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-98
2900- add .%%{_target_cpu} to glibc_post_upgrade, only run telinit u
2901  if /sbin/init is the same ELF class and machine as
2902  glibc_post_upgrade.%%{_target_cpu} and similarly with
2903  condrestarting sshd (#143046)
2904
2905* Fri Dec 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-97
2906- update from CVS
2907  - fix ppc64 getcontext and swapcontext (BZ#610)
2908  - sparc/sparc64 fixes
2909
2910* Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-96
2911- update from CVS
2912  - fix i686 __USE_STRING_INLINES strncat
2913  - make sure ppc/ppc64 maintain correct stack alignment
2914    across clone
2915
2916* Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-95
2917- export nis_domain_of_r from libnsl.so again which was
2918  unintentionally lost
2919
2920* Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-93
2921- update from CVS
2922  - ppc/ppc64 clone without CLONE_THREAD getpid () adjustement
2923  - fix MALLOC_CHECK_={1,2,3} for non-contiguous main arena
2924    (BZ#457)
2925  - fix sysconf (_POSIX_V6_*) for other ABI environments in
2926    bi-arch setups
2927- s390/s390x clone without CLONE_THREAD getpid () adjustement
2928
2929* Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-92
2930- update from CVS
2931- fix %{_prefix}/libexec/getconf filenames generation
2932
2933* Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-91
2934- update from CVS
2935  - double buffer size in getXXbyYY or getXXent on ERANGE
2936    instead of adding BUFLEN (#142617)
2937  - avoid busy loop in malloc if another thread is doing fork
2938    (#142214)
2939  - some more realloc corruption checks
2940  - fix getconf _POSIX_V6_WIDTH_RESTRICTED_ENVS output,
2941    tweak %{_prefix}/libexec/getconf/ filenames
2942
2943* Fri Dec 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-90
2944- update from CVS
2945  - regex speedups
2946  - use | cat in ldd if running under bash3+ to allow running
2947    it on binaries that are not through SELinux allowed to access
2948    console or tty
2949- add __NR_waitid defines for alpha and ia64
2950
2951* Wed Dec  8 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-89
2952- update from CVS
2953  - fix clone2 on ia64
2954  - avoid tst-timer5 failing with linuxthreads implementation
2955- if __libc_enable_secure, disallow mode != normal
2956- change ldd script to imply -r when -u is used, properly
2957  propagate return value and handle suid binaries
2958
2959* Tue Dec  7 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-88
2960- update from CVS
2961  - disregard LD_SHOW_AUXV and LD_DYNAMIC_WEAK if __libc_enable_secure
2962  - disregard LD_DEBUG if __libc_enable_secure in normal mode
2963    if /suid-debug doesn't exist
2964  - fix fseekpos after ungetc
2965  - avoid reading bytes before start of buffers in regex's
2966    check_dst_limits_calc_pos_1 (#142060)
2967  - make getpid () working with clone/clone2 without CLONE_THREAD
2968    (so far on i386/x86_64/ia64 only)
2969- move %{_prefix}/libexec/getconf/* to glibc from glibc-common
2970- make %{_prefix}/libexec/getconf directory owned by glibc package
2971
2972* Fri Dec  3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-87
2973- update from CVS
2974  - build libpthread_nonshared.a objects with -fPIC on s390/s390x
2975  - fix mktime with < 0 or > 59 tm_sec on entry
2976  - remove nonnull attribute for realpath
2977  - add $(make-target-directory) for errlist-compat.c rule
2978    (hopefully fix #141404)
2979- add testcase for ungetc bug
2980- define _POSIX_{,THREAD_}CPUTIME to 0 on all Linux arches
2981
2982* Tue Nov 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-86
2983- update from CVS
2984  - some posix_opt.h fixes
2985- fix strtold use of unitialized memory (#141000)
2986- some more bugfixes for bugs detected by valgrind
2987- rebuilt with GCC >= 3.4.3-5 to avoid packed stack layout
2988  on s390{,x} (#139678)
2989
2990* Fri Nov 26 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-85
2991- update from CVS
2992  - support -v specification in getconf
2993  - fix sysconf (_SC_LFS64_CFLAGS) etc.
2994  - avoid thread stack aliasing issues on EM64T (#140803)
2995- move %{_prefix}/include/nptl headers from nptl-devel
2996  to glibc-headers, so that even NPTL specific programs
2997  can be built bi-arch without problems
2998
2999* Wed Nov 24 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-84
3000- update from CVS
3001  - fix memory leak in getaddrinfo if using nscd (#139559)
3002  - handle large lines in /etc/hosts and /etc/networks
3003    (#140378)
3004  - add nonnull attributes to selected dirent.h and dlfcn.h
3005    functions
3006
3007* Sun Nov 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-83
3008- update from CVS
3009  - add deprecated and/or nonnull attribute to some signal.h
3010    functions
3011  - speed up tzset () by only using stat instead of open/fstat
3012    when calling tzset for the second and following time if
3013    /etc/localtime has not changed
3014- fix tgamma (BZ #552)
3015
3016* Sat Nov 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-82
3017- update from CVS
3018  - some malloc () checking
3019  - libpthread.a object dependency cleanups (#115157)
3020  - <bits/socket.h> fix for -std=c89 -pedantic-errors (#140132)
3021
3022* Fri Nov 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-81
3023- don't use chunksize in <= 2 * SIZE_SZ free () checks
3024
3025* Fri Nov 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-80
3026- update from CVS
3027  - with -D_FORTIFY_SOURCE=2, prevent missing %N$ formats
3028  - for -D_FORTIFY_SOURCE=2 and %n in writable format string,
3029    issue special error message instead of using the buffer overflow
3030    detected one
3031  - speedup regex searching with REG_NOSUB, add RE_NO_SUB,
3032    speedup searching with nested subexps (BZ #544)
3033  - block SIGCANCEL in NPTL timer_* helper thread
3034- further free () checking
3035
3036* Tue Nov 16 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-79
3037- update from CVS
3038- fix free () checking
3039- move /etc/default/nss into glibc-common (hopefully fix #132392)
3040
3041* Mon Nov 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-78
3042- update from CVS
3043  - fix LD_DEBUG=statistics
3044  - issue error message before aborting in __chk_fail ()
3045- some more free () checking
3046
3047* Fri Nov 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-77
3048- update from CVS
3049  - speedup regex on palindromes (BZ #429)
3050  - fix NPTL set{,e,re,res}[ug]id, so that even if making process
3051    less priviledged all threads change their credentials successfully
3052
3053* Wed Nov 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-76
3054- update from CVS
3055  - fix regcomp crash (#138439)
3056  - fix ftell{,o,o64} (#137885)
3057  - robustification of nscd to cope with corrupt databases (#137140)
3058  - fix NPTL with pthread_exit immediately after pthread_create (BZ #530)
3059  - some regex optimizations
3060
3061* Tue Nov  2 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-75
3062- update from CVS
3063  - mktime cleanups (BZ #487, #473)
3064  - unique comments in free(3) check error messages
3065- adjust some x86_64 headers for -m32 (#129712)
3066- object size checking support even with GCC-3.4.2-RH >= 3.4.2-8
3067
3068* Wed Oct 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-74
3069- fix <netinet/udp.h> header
3070- fix globfree (#137176)
3071- fix exiting if there are dlmopened libraries in namespaces
3072  other than main one not closed yet
3073- export again _res_opcodes and __p_{class,type}_syms from
3074  libresolv.so that were lost in -69
3075
3076* Thu Oct 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-73
3077- remove setaltroot and key{_add,_request,ctl} also from Versions
3078- back out _sys_errlist changes
3079
3080* Thu Oct 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-72
3081- back out setaltroot and key{_add,_request,ctl} addition
3082- fix severe x86-64 symbol versioning regressions that breaks
3083  e.g. java binaries
3084
3085* Wed Oct 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-71
3086- update from CVS
3087  - fix minor catchsegv temp file handling vulnerability
3088    (CAN-2004-0968, #136319)
3089  - add 4 new errno codes
3090  - setaltroot, key{_add,_request,ctl} syscalls on some arches
3091  - export _dl_debug_state@GLIBC_PRIVATE from ld.so again for
3092    gdb purpose
3093  - use inet_pton to decide what is address and what is hostname
3094    in getent (#135422)
3095  - change dladdr/dladdr1, so that dli_saddr is the same kind
3096    of value as dlsym/dlvsym return (makes difference on ia64/hppa only)
3097  - fix catchsegv script so that it works with both 32-bit and 64-bit
3098    programs on multi-arch platforms
3099
3100* Tue Oct 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-70
3101- update from CVS
3102- require newer selinux-policy (#135978)
3103- add %%dir for /var/run/nscd and /var/db/nscd and %%ghost
3104  files in it
3105- conflict with gcc4 4.0.0-0.6 and earlier (needs __builtin_object_size)
3106
3107* Mon Oct 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-69
3108- update from CVS
3109  - object size checking support (-D_FORTIFY_SOURCE={1,2})
3110
3111* Thu Oct 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-68
3112- update from CVS
3113  - support for namespaces in the dynamic linker
3114  - fix dlclose (BZ #77)
3115  - libSegFault.so uses now backtrace() to work on IA-64, x86-64
3116    and s390 (#130254)
3117
3118* Tue Oct 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-67
3119- update from CVS
3120  - use non-blocking sockets in resolver (#135234)
3121  - reset pd->res options on thread exit, so that threads
3122    reusing cached stacks get resolver state properly initialized
3123    (BZ #434)
3124
3125* Wed Oct  6 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-66
3126- update from CVS
3127- avoid using perl in the spec file, buildrequire sed >= 3.95
3128  (#127671)
3129- export TIMEOUTFACTOR=16
3130- fix _JMPBUF_CFA_UNWINDS_ADJ on s390{,x}
3131
3132* Tue Oct  5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-65
3133- update from CVS
3134  - define _POSIX_THREAD_PROCESS_SHARED and _POSIX_CLOCK_SELECTION
3135    to -1 in LinuxThreads
3136  - define _POSIX_CPUTIME and _POSIX_THREAD_CPUTIME to 0
3137    on i?86/ia64 and make sure sysconf (_SC_{,THREAD_}CPUTIME)
3138    returns correct value
3139- if _POSIX_CLOCK_SELECTION == -1 in nscd, still try
3140  sysconf (_SC_CLOCK_SELECTION) and if it returns true,
3141  dlopen libpthread.so and dlsym pthread_condattr_setclock
3142- build nscd with -z relro and -z now
3143
3144* Mon Oct  4 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-64
3145- update from CVS
3146  - stop using __builtin_expect in assert and assert_perror
3147    (#127606)
3148  - try to avoid too much VA fragmentation with malloc
3149    on flexmap layout (#118574)
3150  - nscd robustification
3151  - change valloc to use debugging hooks (#134385)
3152- make glibc_post_upgrade more verbose on errors (Fergal Daly,
3153  #125700)
3154
3155* Fri Oct  1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-63
3156- update from CVS
3157  - fix __nscd_getgrouplist
3158  - fix a typo in x86_64 pthread_mutex_timedwait fix
3159
3160* Fri Oct  1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-62
3161- update from CVS
3162  - fix NPTL pthread_mutex_timedwait on i386/x86_64 (BZ #417)
3163
3164* Thu Sep 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-61
3165- update from CVS
3166  - some nscd fixes (#134193)
3167  - cache initgroups in nscd (#132850)
3168  - reread /etc/localtime in tzset () even if just mtime changed
3169    (#133481)
3170  - fix glob (#126460)
3171  - another get_myaddress fix
3172
3173* Wed Sep 29 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-60
3174- update from CVS
3175  - fix get_myaddress (#133982)
3176  - remove nonnull attribute from second utime argument (#133866)
3177  - handle SIGSETXID the same way as SIGCANCEL in
3178    sigaction/pthread_kill/sigwait/sigwaitinfo etc.
3179  - add __extension__ to long long types in NPTL <bits/pthreadtypes.h>
3180
3181* Mon Sep 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-59
3182- update from CVS
3183  - fix BZ #151, #362, #381, #407
3184  - fdim fix for +inf/+inf (BZ #376)
3185
3186* Sun Sep 26 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-58
3187- update from CVS
3188  - vasprintf fix (BZ #346)
3189  - gettext locking (BZ #322)
3190- change linuxthreads useldt.h inclusion login again, the last
3191  one failed all linuxthreads FLOATING_STACKS tests
3192
3193* Sat Sep 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-57
3194- update from CVS
3195  - fix setuid in LD_ASSUME_KERNEL=2.2.5 libc (#133558)
3196  - fix nis locking (#132204)
3197  - RTLD_DEEPBIND support
3198  - fix pthread_create bugs (BZ #401, #405)
3199
3200* Wed Sep 22 2004 Roland McGrath <roland@redhat.com> 2.3.3-56
3201- migrated CVS to fedora-branch in sources.redhat.com glibc repository
3202  - source tarballs renamed
3203  - redhat/ moved to fedora/, some old cruft removed
3204- update from trunk
3205  - some __nonnull annotations
3206
3207* Wed Sep 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-55
3208- update from CVS
3209  - set{re,e,res}[ug]id now affect the whole process in NPTL
3210  - return EAGAIN instead of ENOMEM when not enough memory
3211    in pthread_create
3212
3213* Fri Sep 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-54
3214- update from CVS
3215  - nscd getaddrinfo caching
3216
3217* Tue Sep 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-53
3218- restore temporarily old definition of __P()/__PMT()
3219  for third party apps
3220
3221* Tue Sep 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-52
3222- update from CVS
3223  - nscd bi-arch fix
3224  - remove all uses of __P()/__PMT() from glibc headers
3225- update and reenable nscd SELinux patch
3226- remove libnss1* and libnss*.so.1 compatibility NSS modules
3227  on IA-32, SPARC and Alpha
3228
3229* Fri Sep 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-51
3230- update from CVS
3231  - disable one of the malloc double free checks for non-contiguous
3232    arenas where it doesn't have to be true even for non-broken
3233    apps
3234
3235* Thu Sep  9 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-50
3236- update from CVS
3237  - pwd/grp/host loops with nscd speed up by sharing the
3238    nscd cache r/o with applications
3239  - inexpensive double free check in free(3)
3240  - make NPTL pthread.h initializers usable even from C++
3241    (BZ #375)
3242- use atomic instructions even in i386 nscd on i486+ CPUs
3243  (conditionally)
3244
3245* Sat Sep  3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-49
3246- update from CVS
3247- fix linuxthreads tst-cancel{[45],-static}
3248
3249* Fri Sep  3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-48
3250- update from CVS
3251  - fix pthread_cond_destroy (BZ #342)
3252  - fix fnmatch without FNM_NOESCAPE (BZ #361)
3253  - fix ppc32 setcontext (BZ #357)
3254- add NPTL support for i386 glibc (only if run on i486 or higher CPU)
3255- add __NR_waitid defines for i386, x86_64 and sparc*
3256
3257* Tue Aug 31 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-47
3258- update from CVS
3259  - persistent nscd caching
3260  - ppc64 32-bit atomicity fix
3261  - fix x86-64 nptl-devel headers for -m32 compilation
3262- %%ghost /etc/ld.so.cache (#130597)
3263- edit /etc/ld.so.conf in glibc_post_upgrade if
3264  include ld.so.conf.d/*.conf line is missing (#120588)
3265- ugly hacks for the IA-64 /emul braindamage (#124996, #128267)
3266
3267* Sat Aug 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-46
3268- update from CVS
3269
3270* Thu Aug 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-45
3271- update from CVS
3272  - fix nss_compat's initgroups handling (#130363)
3273  - fix getaddrinfo ai_canonname setting
3274
3275* Thu Aug 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-44
3276- update from CVS
3277  - add ip6-dotint resolv.conf option, make
3278    no-ip6-dotint the default
3279- BuildPrereq libselinux-devel (#129946)
3280- on ppc64, build without dot symbols
3281
3282* Thu Aug 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-43
3283- update from CVS
3284  - remove debugging printout (#129747)
3285  - make <sys/shm.h> usable in C++ (IT#45148)
3286- update RLIMIT_* constants in <bits/resource.h>, make
3287  <sys/resource.h> POSIX compliant (#129740)
3288
3289* Wed Aug 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-42
3290- fix last tzset () fixes, disable rereading of /etc/localtime
3291  every time for now
3292- really enable SELinux support for NSCD
3293
3294* Wed Aug 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-41
3295- update from CVS
3296  - fread_unlocked/fwrite_unlocked macro fixes (BZ #309, #316)
3297  - tzset () fixes (BZ #154)
3298- speed up pthread_rwlock_unlock on arches other than i386 and
3299  x86_64 (#129455)
3300- fix compilation with -ansi (resp. -std=c89 or -std=c99) and
3301  -D_XOPEN_SOURCE=[56]00 but no -D_POSIX_SOURCE* or -D_POSIX_C_SOURCE*
3302  (BZ #284)
3303- add SELinux support for NSCD
3304
3305* Fri Aug  6 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-40
3306- update from CVS
3307  - change res_init to force all threads to re-initialize
3308    resolver before they use it next time (#125712)
3309  - various getaddrinfo and related fixes (BZ #295, #296)
3310  - fix IBM{932,943} iconv modules (#128674)
3311  - some nscd fixes (e.g. BZ #292)
3312  - RFC 3678 support (Multicast Source Filters)
3313- handle /lib/i686/librtkaio-* in i386 glibc_post_upgrade
3314  the same as /lib/i686/librt-*
3315
3316* Fri Jul 23 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-39
3317- update from CVS
3318  - conformance related changes in headers
3319- remove -finline-limit=2000 for GCC 3.4.x+
3320
3321* Thu Jul 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-38
3322- update from CVS
3323  - fix res_init leaks
3324  - fix newlocale races
3325  - fix ppc64 setjmp
3326- fix strtold (BZ #274)
3327
3328* Fri Jul 16 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-37
3329- update from CVS
3330  - allow pthread_cancel in DSO destructors run at exit time
3331- fix pow{f,,l} on IA-32 and powl on x86-64
3332- allow PIEs on IA-32 to have main in a shared library they depend on
3333
3334* Mon Jul  5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-36
3335- s390* .plt slot reduction
3336- fix pthread_rwlock_timedrdlock on x86_64
3337
3338* Wed Jun 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-35
3339- tweak spec file for the libpthread-0.61.so -> libpthread-2.3.3.so
3340  NPTL changes
3341
3342* Wed Jun 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-34
3343- update from CVS
3344  - if_nameindex using preferably netlink
3345  - printf_parsemb initialization fix
3346  - NPTL version is now the same as glibc version
3347
3348* Mon Jun 28 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-33
3349- update from CVS
3350  - reread resolv.conf for nscd --invalidate=hosts
3351  - fix F_GETLK/F_SETLK/F_SETLKW constants on x86_64 for
3352    -m32 -D_FILE_OFFSET_BITS=64 compilations
3353  - avoid calling non-existing fcntl64 syscall on ppc64
3354
3355* Mon Jun 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-32
3356- update from CVS
3357  - FUTEX_CMP_REQUEUE support (fix pthread_cond_* deadlocks)
3358  - fix backtrace in statically linked programs
3359- rebuilt with GCC 3.4, adjusted ulps and i386 <bits/string.h>
3360
3361* Fri May 28 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-31
3362- update from CVS
3363- <bits/string2.h> and <bits/mathinline.h> changes for GCC 3.{2,4,5}+
3364- make c_stubs buildable even with GCC 3.2.x (#123042)
3365
3366* Fri May 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-30
3367- fix pthread_cond_wait on architectures other than IA-32 and
3368  x86_64
3369
3370* Thu May 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-29
3371- use lib64 instead of lib on ia64 if %%{_lib} is defined to lib64
3372
3373* Wed May 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-28
3374- update from CVS
3375  - FUTEX_REQUEUE fixes (#115349)
3376  - SPARC GCC 3.4 build fix
3377  - fix handling of undefined TLS symbols on IA32 (RELA only),
3378    SPARC and SH
3379  - regex translate fix
3380  - speed up sprintf
3381  - x86_64 makecontext alignment fix
3382  - make POSIX sigpause the default sigpause, unless BSD sigpause
3383    requested
3384
3385* Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
3386- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade
3387  on x86-64, s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
3388- build mq_{send,receive} with -fexceptions
3389
3390* Fri May  7 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
3391- update from CVS
3392  - fix <tgmath.h>
3393  - fix memory leaks in nis, getifaddrs, etc. caused by incorrect
3394    use of realloc
3395- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade
3396  and rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
3397  might be a stale symlink
3398
3399* Wed May  5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
3400- update from CVS
3401- disable FUTEX_REQUEUE (work around #115349)
3402- mq for sparc/sparc64/ia64
3403
3404* Tue May  4 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
3405- update from CVS
3406  - define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK
3407    plus F_[SG]ETOWN also in -D_XOPEN_SOURCE=500 (both
3408    included already in XNS5)
3409  - reorder dlopen checks, so that dlopening ET_REL objects
3410    complains about != ET_DYN != ET_EXEC, not about phentsize
3411    (#121606)
3412  - fix strpbrk macro for GCC 3.4+ (BZ #130)
3413  - fix <sys/sysctl.h> (BZ #140)
3414  - sched_[gs]etaffinity documentation fix (BZ #131)
3415  - fix sparc64 build (BZ #139)
3416  - change linuxthreads back to use non-cancellable writes
3417    to manager pipes etc.
3418  - fix sem_timedwait return value in linuxthreads (BZ #133)
3419  - ia64 unnecessary PLT relocs removal
3420
3421* Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
3422- update from CVS
3423  - fix *scanf
3424  - fix shm_unlink, sem_unlink and mq_unlink errno values
3425  - avoid memory leaks in error
3426  - execstack fixes on s390
3427
3428* Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
3429- update from CVS
3430  - mq and timer fixes
3431- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically
3432  linked binaries
3433- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
3434
3435* Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
3436- disable rtkaio
3437- update from CVS
3438  - POSIX message passing support
3439  - fixed SIGEV_THREAD support for POSIX timers
3440  - fix free on non-malloced memory in syslog
3441  - fix ffsl on some 64-bit arches
3442  - fix sched_setaffinity on x86-64, ia64
3443  - fix ppc64 umount
3444  - NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
3445  - various NIS speedups
3446  - fix fwrite with > 2GB sizes on 64-bit arches
3447  - fix pthread_getattr_np guardsize reporting in NPTL
3448- report PLT relocations in ld.so and libc.so during the build
3449
3450* Fri Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
3451- update from CVS
3452  - change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
3453  - strtol speed optimization
3454  - don't try to use certainly unimplemented syscalls on ppc64
3455- kill -debug subpackage, move the libs to glibc-debuginfo{,-common}
3456  into /usr/lib/debug/usr/%{_lib}/ directory
3457- fix c_stubs with gcc 3.4
3458- move all the up to 3 builds into %%build scriptlet and
3459  leave only installation in the %%install scriptlet
3460
3461* Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
3462- update from CVS
3463  - affinity API changes
3464
3465* Thu Mar 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-18
3466- update from CVS
3467  - fix ia64 iopl (#118591)
3468  - add support for /etc/ld.so.conf.d/*.conf
3469  - fix x86-64 LD_DEBUG=statistics
3470- fix hwcap handling when using ld.so.cache (#118518)
3471
3472* Mon Mar 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-17
3473- update from CVS
3474  - implement non-_l function on top of _l functions
3475
3476* Thu Mar 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-16
3477- update from CVS
3478- fix s390{,x} TLS handling
3479
3480* Wed Mar 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-15
3481- update from CVS
3482  - special section for compatibility code
3483  - make getpid () work even in vfork () child
3484- configure with --enable-bind-now to avoid lazy binding in ld.so
3485  and libc.so
3486
3487* Fri Mar  5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-14
3488- update from CVS
3489  - fix iconv -c (#117021)
3490  - fix PIEs on sparc/sparc64
3491  - fix posix_fadvise on 64-bit architectures
3492- add locale-archive as %%ghost file (#117014)
3493
3494* Mon Mar  1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-13
3495- update from CVS
3496
3497* Fri Feb 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-12
3498- update from CVS
3499
3500* Fri Feb 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-11
3501- update from CVS
3502  - fix ld.so when vDSO is randomized
3503
3504* Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-10
3505- update from CVS
3506
3507* Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-9
3508- update from CVS
3509
3510* Tue Feb 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-8
3511- update from CVS
3512
3513* Tue Jan 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-7
3514- update from CVS
3515  - dl_iterate_phdr extension to signal number of added/removed
3516    libraries
3517- fix PT_GNU_RELRO support on ppc* with prelinking
3518
3519* Fri Jan 23 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-6
3520- rebuilt with fixed GCC on IA-64
3521
3522* Thu Jan 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-5
3523- fix PT_GNU_RELRO support
3524
3525* Wed Jan 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-4
3526- update from CVS
3527  - some further regex speedups
3528  - fix re.translate handling in regex (#112869)
3529  - change regfree to match old regex behaviour (what is freed
3530    and clearing of freed pointers)
3531  - fix accesses to unitialized memory in regex (#113507, #113425,
3532    #113421)
3533  - PT_GNU_RELRO support
3534
3535* Tue Dec 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-3
3536- update from CVS
3537  - fix pmap_set fd and memory leak (#112726)
3538- fix backreference handling in regex
3539- rebuilt under glibc without the above bug to fix
3540  libc.so linker script (#112738)
3541
3542* Mon Dec 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-2
3543- update from CVS
3544  - faster getpid () in NPTL builds
3545  - fix to make pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, )
3546    really disable cancellation (#112512)
3547  - more regex fixes and speedups
3548  - fix nextafter*/nexttoward*
3549  - handle 6th syscall(3) argument on AMD64
3550  - handle memalign/posix_memalign in mtrace
3551  - fix linuxthreads memory leak (#112208)
3552  - remove throw () from cancellation points in linuxthreads (#112602)
3553  - fix NPTL unregister_atfork
3554  - fix unwinding through alternate signal stacks
3555
3556* Mon Dec  1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-1
3557- update from CVS
3558  - 2.3.3 release
3559  - lots of regex fixes and speedups (#110401)
3560  - fix atan2
3561  - fix pshared condvars in NPTL
3562  - fix pthread_attr_destroy for attributes created with
3563    pthread_attr_init@GLIBC_2.0
3564- for the time being, include both nb_NO* and no_NO* as locales
3565  so that the distribution can catch up with the no_NO->nb_NO
3566  transition
3567- add BuildPrereq texinfo (#110252)
3568
3569* Tue Nov 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-102
3570- update from CVS
3571  - fix getifaddrs (CAN-2003-0859)
3572  - fix ftw fd leak
3573  - fix linuxthreads sigaction (#108634)
3574  - fix glibc 2.0 stdio compatibility
3575  - fix uselocale (LC_GLOBAL_LOCALE)
3576  - speed up stdio locking in non-threaded programs on IA-32
3577  - try to maintain correct order of cleanups between those
3578    registered with __attribute__((cleanup))
3579    and with LinuxThreads style pthread_cleanup_push/pop (#108631)
3580  - fix segfault in regex (#109606)
3581  - fix RE_ICASE multi-byte handling in regex
3582  - fix pthread_exit in libpthread.a (#109790)
3583  - FTW_ACTIONRETVAL support
3584  - lots of regex fixes and speedups
3585  - fix ceill/floorl on AMD64
3586
3587* Mon Oct 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-101
3588- update from CVS
3589  - fix ld.so --verify (and ldd)
3590
3591* Mon Oct 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-100
3592- update from CVS
3593  - fix sprof (#103727)
3594  - avoid infinite loops in {,f}statvfs{,64} with hosed mounts file
3595  - prevent dlopening of executables
3596  - fix glob with GLOB_BRACE and without GLOB_NOESCAPE
3597  - fix locale printing of word values on 64-bit big-endian arches
3598    (#107846)
3599  - fix getnameinfo and getaddrinfo with reverse IPv6 lookups
3600    (#101261)
3601
3602* Wed Oct 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-99
3603- update from CVS
3604  - dl_iterate_phdr in libc.a on arches other than IA-64
3605  - LD_DEBUG=statistics prints number of relative relocations
3606  - fix hwcap computation
3607- NPTL is now part of upstream glibc CVS
3608- include {st,xh,zu}_ZA{,.UTF-8} locales
3609
3610* Sat Oct  4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-98
3611- update from CVS
3612  - fix close, pause and fsync (#105348)
3613  - fix pthread_once on IA-32
3614- implement backtrace () on IA-64, handle -fomit-frame-pointer
3615  in AMD64 backtrace () (#90402)
3616
3617* Tue Sep 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-97
3618- update from CVS
3619  - fix <sys/sysmacros.h> with C++ or -ansi or -pedantic C
3620  - fix mknod/ustat return value when given bogus device number (#105768)
3621
3622* Fri Sep 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-96
3623- rebuilt
3624
3625* Fri Sep 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-95
3626- fix IA-64 getcontext
3627
3628* Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-94
3629- update from CVS
3630- fix syslog with non-C non-en_* locales (#61296, #104979)
3631- filter GLIBC_PRIVATE symbols from glibc provides
3632- fix NIS+
3633
3634* Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-93
3635- update from CVS
3636- assume 2.4.21 kernel features on RHEL/ppc*, so that
3637  {make,set,get,swap}context works
3638- backout execstack support for RHEL
3639- build rtkaio on amd64 too
3640
3641* Wed Sep 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-92
3642- update from CVS
3643  - execstack/noexecstack support
3644  - build nscd as PIE
3645- move __libc_stack_end back to @GLIBC_2.1
3646- build against elfutils >= 0.86 to fix stripping on s390x
3647
3648* Mon Sep 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-91
3649- rebuilt
3650
3651* Mon Sep 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-90
3652- update from CVS
3653  - NPTL locking change (#102682)
3654- don't jump around lock on amd64
3655
3656* Thu Sep 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-89
3657- fix open_memstream/syslog (#104661)
3658
3659* Thu Sep 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-88
3660- update from CVS
3661  - retrieve affinity in pthread_getattr_np
3662  - fix pthread_attr_[gs]etaffinity_np
3663  - handle hex and octal in wordexp
3664
3665* Wed Sep 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-87
3666- update from CVS
3667  - truncate instead of round in utimes when utimes syscall is not available
3668  - don't align stack in every glibc function unnecessarily on IA-32
3669  - make sure threads have their stack 16 byte aligned on IA-32
3670  - move sched_[sg]etaffinity to GLIBC_2.3.3 symbol version (#103231)
3671  - fix pthread_getattr_np for the initial thread (#102683)
3672  - avoid linuxthreads signal race (#104368)
3673- ensure all gzip invocations are done with -n option
3674
3675* Fri Sep 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-86
3676- update from CVS
3677- avoid linking in libgcc_eh.a unnecessarily
3678- change ssize_t back to long int on s390 -m31, unless
3679  gcc 2.95.x is used
3680
3681* Wed Sep 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-85
3682- update from CVS
3683  - fix IA-64 memccpy (#104114)
3684
3685* Tue Sep  9 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-84
3686- update from CVS
3687  - undo broken amd64 signal context changes
3688
3689* Tue Sep  9 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-83
3690- update from CVS
3691- change *nlink_t, *ssize_t and *intptr_t types on s390 -m31 to
3692  {unsigned,} int
3693- change *u_quad_t, *quad_t, *qaddr_t, *dev_t, *ino64_t, *loff_t,
3694  *off64_t, *rlim64_t, *blkcnt64_t, *fsblkcnt64_t, *fsfilcnt64_t
3695  on 64-bit arches from {unsigned,} long long int {,*} to
3696  {unsigned,} long int {,*} to restore binary compatibility
3697  for C++ functions using these types as arguments
3698
3699* Sun Sep  7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-82
3700- rebuilt
3701
3702* Sat Sep  6 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-81
3703- update from CVS
3704  - fix tc[gs]etattr/cf[gs]et[io]speed on ppc (#102732)
3705  - libio fixes
3706
3707* Thu Sep  4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-80
3708- update from CVS
3709  - fix IA-64 cancellation when mixing __attribute__((cleanup ()))
3710    and old-style pthread_cleanup_push cleanups
3711
3712* Tue Sep  2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-79
3713- updated from CVS
3714  - lots of cancellation fixes
3715  - fix posix_fadvise* on ppc32
3716  - TLS layout fix
3717  - optimize stdio cleanups (#103354)
3718  - sparcv9 NPTL
3719  - include sigset, sighold, sigrelse, sigpause and sigignore prototypes
3720    in signal.h even if -D_XOPEN_SOURCE_EXTENDED (#103269)
3721  - fix svc_getreqset on 64-bit big-endian arches
3722  - return ENOSYS in linuxthreads pthread_barrierattr_setpshared for
3723    PTHREAD_PROCESS_SHARED
3724  - add pthread_cond_timedwait stubs to libc.so (#102709)
3725- split glibc-devel into glibc-devel and glibc-headers to ensure
3726  amd64 /usr/include always wins on amd64/i386 bi-arch installs
3727- increase PTHREAD_STACK_MIN on alpha, ia64 and sparc*
3728- get rid of __syscall_* prototypes and stubs in sysdeps/unix/sysv/linux
3729- run make check also with linuxthreads (on IA-32 non-FLOATING_STACKS)
3730  ld.so and NPTL (on IA-32 also FLOATING_STACKS linuxthreads) libraries
3731  and tests
3732
3733* Tue Aug 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-78
3734- include dl-osinfo.h only in glibc-debuginfo-2*.rpm, not
3735  in glibc-debuginfo-common*
3736
3737* Mon Aug 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-77
3738- update from CVS
3739  - fix glibc 2.0 libio compatibility (#101385)
3740  - fix ldconfig with /usr/lib/lib*.so symlinks (#102853)
3741  - fix assert.h (#102916, #103017)
3742  - make ld.so.cache identical between IA-32 and AMD64 (#102887)
3743  - fix static linking of large IA-64 binaries (#102586)
3744- avoid using floating point regs in lazy binding code on ppc64 (#102763)
3745
3746* Fri Aug 22 2003 Roland McGrath <roland@redhat.com> 2.3.2-76
3747- add td_thr_tls_get_addr changes missed in initial nptl_db rewrite
3748
3749* Sun Aug 17 2003 Roland McGrath <roland@redhat.com> 2.3.2-74
3750- nptl_db rewrite not yet in CVS
3751
3752* Thu Aug 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-72
3753- update from CVS
3754  - fix rtkaio aio_fsync{,64}
3755  - update rtkaio for !BROKEN_THREAD_SIGNALS
3756  - fix assert macro when used on pointers
3757
3758* Wed Aug 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-71
3759- update from CVS
3760
3761* Tue Aug 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-70
3762- update from CVS
3763- disable CLONE_STOPPED for now until it is resolved
3764- strip crt files
3765- fix libio on arches with no < GLIBC_2.2 support (#102102, #102105)
3766- fix glibc-debuginfo to include all nptl and nptl_db sources
3767
3768* Thu Aug  7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-69
3769- update from CVS
3770  - fix pthread_create@GLIBC_2.0 (#101767)
3771- __ASSUME_CLONE_STOPPED on all arches but s390* in RHEL
3772
3773* Sun Aug  3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-68
3774- update from CVS
3775  - only use CLONE_STOPPED if kernel supports it, fix setting of thread
3776    explicit scheduling (#101457)
3777
3778* Fri Aug  1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-67
3779- update from CVS
3780  - fix utimes and futimes if kernel doesn't support utimes syscall
3781  - fix s390 ssize_t type
3782  - fix dlerror when called before any dlopen/dlsym
3783  - update IA-64 bits/sigcontext.h (#101344)
3784  - various warning fixes
3785  - fix pthread.h comment typos (#101363)
3786
3787* Wed Jul 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-66
3788- update from CVS
3789- fix dlopen of libraries using TLS IE/LE models
3790
3791* Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-65
3792- update from CVS
3793  - fix timer_create
3794  - use __extension__ before long long typedefs in <bits/types.h> (#100718)
3795
3796* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-64
3797- update from CVS
3798  - fix wcpncpy (#99462)
3799  - export _res@GLIBC_2.0 even from NPTL libc.so (__res_state ()
3800    unlike __errno_location () or __h_errno_location () was introduced
3801    in glibc 2.2)
3802  - fix zic bug on 64-bit platforms
3803  - some TLS handling fixes
3804  - make ldconfig look into alternate ABI dirs by default (#99402)
3805- move %{_datadir}/zoneinfo to tzdata package, so that it can be
3806  errataed separately from glibc
3807- new add-on - rtkaio
3808- prereq libgcc, as glibc now relies on libgcc_s.so.1 for pthread_cancel
3809
3810* Tue Jul 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-63
3811- fix thread cancellation on ppc64
3812
3813* Sat Jul 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-62
3814- update from CVS
3815  - fix thread cancellation on ppc32, s390 and s390x
3816
3817* Thu Jul 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-61
3818- update from CVS
3819  - build libc_nonshared.a with -fPIC instead of -fpic
3820- fix ppc64 PIE support
3821- add cfi directives to NPTL sysdep-cancel.h on ppc/ppc64/s390/s390x
3822
3823* Tue Jul  8 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-60
3824- update from CVS
3825
3826* Thu Jul  3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-59
3827- update from CVS
3828- on IA-64 use different symbols for cancellation portion of syscall
3829  handlers to make gdb happier
3830
3831* Thu Jun 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-58
3832- update from CVS
3833  - nss_compat supporting LDAP etc.
3834
3835* Tue Jun 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-57
3836- update from CVS
3837
3838* Thu Jun 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-56
3839- fix condvars and semaphores in ppc* NPTL
3840- fix test-skeleton.c reporting of timed-out tests (#91269)
3841- increase timeouts for tests during make check
3842
3843* Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-55
3844- make ldconfig default to both /lib+/usr/lib and /lib64+/usr/lib64
3845  on bi-ABI architectures (#97557)
3846- disable FUTEX_REQUEUE on ppc* temporarily
3847
3848* Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-54
3849- update from CVS
3850- fix glibc_post_upgrade on ppc
3851
3852* Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-53
3853- update from CVS
3854- fix localedef (#90659)
3855- tweak linuxthreads for librt cancellation
3856
3857* Mon Jun 16 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-52
3858- update from CVS
3859
3860* Thu Jun 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-51
3861- update from CVS
3862- fix <gnu/stubs.h> (#97169)
3863
3864* Wed Jun 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-50
3865- update from CVS
3866
3867* Tue Jun 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-49
3868- update from CVS
3869  - fix pthread_cond_signal on IA-32 (#92080, #92253)
3870  - fix setegid (#91567)
3871- don't prelink -R libc.so on any architecture, it prohibits
3872  address randomization
3873
3874* Fri Jun  5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-48
3875- update from CVS
3876  - fix IA-64 NPTL build
3877
3878* Thu Jun  5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-47
3879- update from CVS
3880- PT_GNU_STACK segment in binaries/executables and .note.GNU-stack
3881  section in *.[oa]
3882
3883* Sun Jun  1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-46
3884- update from CVS
3885- enable NPTL on AMD64
3886- avoid using trampolines in localedef
3887
3888* Fri May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-45
3889- enable NPTL on IA-64
3890
3891* Fri May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-44
3892- update from CVS
3893- enable NPTL on s390 and s390x
3894- make __init_array_start etc. symbols in elf-init.oS hidden undefined
3895
3896* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-43
3897- update from CVS
3898
3899* Fri May 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-42
3900- update from CVS
3901
3902* Tue May 20 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-41
3903- update from CVS
3904- use NPTL libs if uname -r contains nptl substring or is >= 2.5.69
3905  or set_tid_address syscall is available instead of checking
3906  AT_SYSINFO dynamic tag
3907
3908* Thu May 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-40
3909- update from CVS
3910
3911* Wed May 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-39
3912- update from CVS
3913  - fix for prelinking of libraries with no dependencies
3914
3915* Tue May 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-38
3916- update from CVS
3917- enable NPTL on ppc and ppc64
3918
3919* Tue May  6 2003 Matt Wilson <msw@redhat.com> 2.3.2-37
3920- rebuild
3921
3922* Sun May  4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-36
3923- update from CVS
3924
3925* Sat May  3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-35
3926- update from CVS
3927  - make -jN build fixes
3928
3929* Fri May  2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-34
3930- update from CVS
3931- avoid using trampolines in iconvconfig for now
3932
3933* Sat Apr 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-33
3934- update from CVS
3935
3936* Fri Apr 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-32
3937- update from CVS
3938- more ppc TLS fixes
3939
3940* Wed Apr 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-31
3941- update from CVS
3942  - nscd fixes
3943  - fix Bahrain spelling (#56298)
3944  - fix Ukrainian collation (#83973)
3945  - accept trailing spaces in /etc/ld.so.conf (#86032)
3946  - perror fix (#85994)
3947  - fix localedef (#88978)
3948  - fix getifaddrs (#89026)
3949  - fix strxfrm (#88409)
3950- fix ppc TLS
3951- fix getaddrinfo (#89448)
3952- don't print warning about errno, h_errno or _res if
3953  LD_ASSUME_KERNEL=2.4.1 or earlier
3954
3955* Tue Apr 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-30
3956- update from CVS
3957- fix prelink on ppc32
3958- add TLS support on ppc32 and ppc64
3959- make sure on -m64 arches all helper binaries are built with this
3960  option
3961
3962* Mon Apr 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-29
3963- update from CVS
3964  - fix strxfrm (#88409)
3965- use -m64 -mno-minimal-toc on ppc64
3966- conflict with kernels < 2.4.20 on ppc64 and < 2.4.0 on x86_64
3967- link glibc_post_upgrade against newly built libc.a
3968
3969* Sun Apr 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-28
3970- update from CVS
3971  - fix NPTL pthread_detach and already terminated, but not yet
3972    joined thread (#88219)
3973  - fix bug-regex4 testcase (#88118)
3974  - reenable prelink support broken in 2.3.2-13
3975  - fix register_printf_function (#88052)
3976  - fix double free with fopen using ccs= (#88056)
3977  - fix potential access below $esp in {set,swap}context (#88093)
3978  - fix buffer underrun in gencat -H (#88099)
3979  - avoid using unitialized variable in tst-tgmath (#88101)
3980  - fix gammal (#88104)
3981  - fix iconv -c
3982  - fix xdr_string (PR libc/4999)
3983  - fix /usr/lib/nptl/librt.so symlink
3984  - avoid running NPTL cleanups twice in some cases
3985  - unblock __pthread_signal_cancel in linuxthreads, so that
3986    linuxthreads threaded programs work correctly if spawned
3987    from NPTL threaded programs
3988  - fix sysconf _SC_{NPROCESSORS_{CONF,ONLN},{,AV}PHYS_PAGES}
3989- remove /lib/i686 directory before running ldconfig in glibc post
3990  during i686 -> i386 glibc "upgrades" (#88456)
3991
3992* Wed Apr  2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-22
3993- update from CVS
3994  - add pthread_atfork to libpthread.a
3995
3996* Tue Apr  1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-21
3997- update from CVS
3998- make sure linuxthreads pthread_mutex_lock etc. is not a cancellation
3999  point
4000
4001* Sat Mar 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-20
4002- update from CVS
4003- if kernel >= 2.4.1 doesn't support NPTL, fall back to
4004  /lib/i686 libs on i686, not stright to /lib
4005
4006* Fri Mar 28 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-19
4007- update from CVS
4008  - timers fixes
4009
4010* Thu Mar 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-18
4011- update from CVS
4012- fix NPTL pthread_cond_timedwait
4013- fix sysconf (_SC_MONOTONIC_CLOCK)
4014- use /%%{_lib}/tls instead of /lib/tls on x86-64
4015- add /%{_lib}/tls/librt*so* and /%{_lib}/i686/librt*so*
4016- display content of .out files for all make check failures
4017
4018* Wed Mar 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-17
4019- update from CVS
4020  - kernel POSIX timers support
4021
4022* Sat Mar 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-16
4023- update from CVS
4024  - export __fork from glibc again
4025- fix glibc-compat build in NPTL
4026- fix c_stubs
4027- fix some more atomic.h problems
4028- don't check abi in glibc-compat libs
4029
4030* Fri Mar 21 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-15
4031- update from CVS
4032- build glibc-compat (for glibc 2.0 compatibility) and c_stubs add-ons
4033- condrestart sshd in glibc_post_upgrade so that the user can
4034  log in remotely and handle the rest (#86339)
4035- fix a typo in glibc_post_upgrade on sparc
4036
4037* Tue Mar 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-14
4038- update from CVS
4039- change i686/athlon libc.so.6 base to 0x00e80000
4040
4041* Mon Mar 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-13
4042- update from CVS
4043  - hopefully last fix for condvar problems
4044
4045* Fri Mar 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-12
4046- fix bits/syscall.h creation on x86-64
4047
4048* Thu Mar 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-11
4049- update from CVS
4050
4051* Wed Mar 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-10
4052- update from CVS
4053
4054* Tue Mar 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-9
4055- update from CVS
4056- fix glibc-debug description (#85111)
4057- make librt.so a symlink again, not linker script
4058
4059* Tue Mar  4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-8
4060- update from CVS
4061- remove the workarounds for broken software accessing GLIBC_PRIVATE
4062  symbols
4063
4064* Mon Mar  3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-7
4065- update from CVS
4066
4067* Sun Mar  2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-6
4068- fix TLS IE/LE model handling in dlopened libraries
4069  on TCB_AT_TP arches
4070
4071* Thu Feb 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-5
4072- update from CVS
4073
4074* Tue Feb 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-4
4075- update from CVS
4076
4077* Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-3
4078- update from CVS
4079- only warn about errno, h_errno or _res for binaries, never
4080  libraries
4081- rebuilt with gcc-3.2.2-4 to use direct %gs TLS access insn sequences
4082
4083* Sun Feb 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-2
4084- update from CVS
4085
4086* Sat Feb 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-1
4087- update from CVS
4088
4089* Thu Feb 20 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-51
4090- update from CVS
4091
4092* Wed Feb 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-50
4093- update from CVS
4094
4095* Wed Feb 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-49
4096- update from CVS
4097- remove nisplus and nis from the default nsswitch.conf (#67401, #9952)
4098
4099* Tue Feb 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-48
4100- update from CVS
4101
4102* Sat Feb 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-47
4103- update from CVS
4104
4105* Fri Feb 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-46
4106- update from CVS
4107  - pthread_cond* NPTL fixes, new NPTL testcases
4108
4109* Thu Feb 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-45
4110- update from CVS
4111- include also linuxthreads FLOATING_STACKS libs on i686 and athlon:
4112  LD_ASSUME_KERNEL=2.2.5 to LD_ASSUME_KERNEL=2.4.0 is non-FLOATING_STACKS lt,
4113  LD_ASSUME_KERNEL=2.4.1 to LD_ASSUME_KERNEL=2.4.19 is FLOATING_STACKS lt,
4114  later is NPTL
4115- enable TLS on alpha/alphaev6
4116- add BuildPreReq: /usr/bin/readlink
4117
4118* Tue Feb 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-44
4119- update from CVS
4120  - pthread_once fix
4121
4122* Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-43
4123- update from CVS
4124- vfork fix on s390
4125- rebuilt with binutils 2.13.90.0.18-5 so that accesses to errno
4126  don't bind locally (#83325)
4127
4128* Thu Feb 06 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-42
4129- update from CVS
4130- fix pthread_create after vfork+exec in linuxthreads
4131
4132* Wed Feb 05 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-41
4133- update from CVS
4134
4135* Thu Jan 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-40
4136- update from CVS
4137
4138* Wed Jan 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-39
4139- update from CVS
4140- enable TLS on s390{,x} and sparc{,v9}
4141
4142* Fri Jan 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-38
4143- update from CVS
4144- initialize __environ in glibc_post_upgrade to empty array,
4145  so that it is not NULL
4146- compat symlink for s390x /lib/ld64.so.1
4147- enable glibc-profile on x86-64
4148- only include libNoVersion.so on IA-32, Alpha and Sparc 32-bit
4149
4150* Thu Jan 16 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-37
4151- update from CVS
4152  - nscd fixes, *scanf fix
4153- fix %%nptlarches noarch build (#81909)
4154- IA-64 TLS fixes
4155
4156* Tue Jan 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-36
4157- update from CVS
4158- rework -debuginfo subpackage, add -debuginfo-common
4159  subpackage on IA-32, Alpha and Sparc (ie. auxiliary arches)
4160- fix vfork in libc.a on PPC32, Alpha, Sparc
4161- fix libio locks in linuxthreads libc.so if libpthread.so
4162  is dlopened later (#81374)
4163
4164* Mon Jan 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-35
4165- update from CVS
4166  - dlclose bugfixes
4167- fix NPTL libpthread.a
4168- fix glibc_post_upgrade on several arches
4169
4170* Sat Jan 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-34
4171- update from CVS
4172- TLS support on IA-64
4173
4174* Wed Jan  8 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-33
4175- fix vfork in linuxthreads (#81377, #81363)
4176
4177* Tue Jan  7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-32
4178- update from CVS
4179- don't use TLS libs if kernel doesn't set AT_SYSINFO
4180  (#80921, #81212)
4181- add ntp_adjtime on alpha (#79996)
4182- fix nptl_db (#81116)
4183
4184* Sun Jan  5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-31
4185- update from CVS
4186- support all architectures again
4187
4188* Fri Jan  3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-30
4189- fix condvar compatibility wrappers
4190- add ugly hack to use non-TLS libs if a binary is seen
4191  to have errno, h_errno or _res symbols in .dynsym
4192
4193* Fri Jan  3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-29
4194- update from CVS
4195  - fixes for new condvar
4196
4197* Thu Jan  2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-28
4198- new NPTL condvar implementation plus related linuxthreads
4199  symbol versioning updates
4200
4201* Thu Jan  2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-27
4202- update from CVS
4203- fix #include <sys/stat.h> with -D_BSD_SOURCE or without
4204  feature set macros
4205- make *sigaction, sigwait and raise the same between
4206  -lpthread -lc and -lc -lpthread in linuxthreads builds
4207
4208* Tue Dec 31 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-26
4209- fix dlclose
4210
4211* Sun Dec 29 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-25
4212- enable sysenter by default for now
4213- fix endless loop in ldconfig
4214
4215* Sat Dec 28 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-24
4216- update from CVS
4217
4218* Fri Dec 27 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-23
4219- update from CVS
4220  - fix ptmalloc_init after clearenv (#80370)
4221
4222* Sun Dec 22 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-22
4223- update from CVS
4224- add IA-64 back
4225- move TLS libraries from /lib/i686 to /lib/tls
4226
4227* Thu Dec 19 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-21
4228- system(3) fix for linuxthreads
4229- don't segfault in pthread_attr_init from libc.so
4230- add cancellation tests from nptl to linuxthreads
4231
4232* Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-20
4233- fix up lists of exported symbols + their versions
4234  from the libraries
4235
4236* Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-19
4237- fix --with-tls --enable-kernel=2.2.5 libc on IA-32
4238
4239* Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-18
4240- update from CVS
4241  - fix NPTL hanging mozilla
4242  - initialize malloc in mALLOPt (fixes problems with squid, #79957)
4243  - make linuxthreads work with dl_dynamic_weak 0
4244  - clear dl_dynamic_weak everywhere
4245
4246* Tue Dec 17 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-17
4247- update from CVS
4248  - NPTL socket fixes, flockfile/ftrylockfile/funlockfile fix
4249  - kill -debug sub-package, rename -debug-static to -debug
4250  - clear dl_dynamic_weak for NPTL
4251
4252* Mon Dec 16 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-16
4253- fix <bits/mathinline.h> and <bits/nan.h> for C++
4254- automatically generate NPTL libpthread wrappers
4255
4256* Mon Dec 16 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-15
4257- update from CVS
4258  - all functions which need cancellation should now be cancellable
4259    both in libpthread.so and libc.so
4260  - removed @@GLIBC_2.3.2 cancellation wrappers
4261
4262* Fri Dec 13 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-14
4263- update from CVS
4264  - replace __libc_lock_needed@GOTOFF(%ebx) with
4265    %gs:offsetof(tcbhead_t, multiple_threads)
4266  - start of new NPTL cancellation wrappers
4267
4268* Thu Dec 12 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-13
4269- update from CVS
4270- use inline locks in malloc
4271
4272* Tue Dec 10 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-12
4273- update from CVS
4274  - support LD_ASSUME_KERNEL=2.2.5 in statically linked programs
4275
4276* Mon Dec  9 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-11
4277- update from CVS
4278- rebuilt with gcc-3.2.1-2
4279
4280* Fri Dec  6 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-10
4281- update from CVS
4282- non-nptl --with-tls --without-__thread FLOATING_STACKS libpthread
4283  should work now
4284- faster libc locking when using nptl
4285- add OUTPUT_FORMAT to linker scripts
4286- fix x86_64 sendfile (#79111)
4287
4288* Wed Dec  4 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-9
4289- update from CVS
4290  - RUSCII support (#78906)
4291- for nptl builds add BuildRequires
4292- fix byteswap.h for non-gcc (#77689)
4293- add nptl-devel package
4294
4295* Tue Dec  3 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-8
4296- update from CVS
4297  - make --enable-kernel=2.2.5 --with-tls --without-__thread
4298    ld.so load nptl and other --with-__thread libs
4299- disable nptl by default for now
4300
4301* Wed Nov 27 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-7
4302- update from CVS
4303- restructured redhat/Makefile and spec, so that src.rpm contains
4304  glibc-<date>.tar.bz2, glibc-redhat-<date>.tar.bz2 and glibc-redhat.patch
4305- added nptl
4306
4307* Fri Nov  8 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-6
4308- update from CVS
4309  - even more regex fixes
4310- run sed testsuite to check glibc regex
4311
4312* Thu Oct 24 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-5
4313- fix LD_DEBUG=statistics and LD_TRACE_PRELINKING in programs
4314  using libpthread.so.
4315
4316* Thu Oct 24 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-4
4317- update from CVS
4318  - fixed %a and %A in *printf (#75821)
4319  - fix re_comp memory leaking (#76594)
4320
4321* Tue Oct 22 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-3
4322- update from CVS
4323  - some more regex fixes
4324- fix libpthread.a (#76484)
4325- fix locale-archive enlarging
4326
4327* Fri Oct 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-2
4328- update from CVS
4329  - don't need to use 128K of stacks for DNS lookups
4330  - regex fixes
4331  - updated timezone data e.g. for this year's Brasil DST
4332    changes
4333  - expand ${LIB} in RPATH/RUNPATH/dlopen filenames
4334
4335* Fri Oct 11 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-1
4336- update to 2.3.1 final
4337  - support really low thread stack sizes (#74073)
4338- tzdata update
4339
4340* Wed Oct  9 2002 Jakub Jelinek <jakub@redhat.com> 2.3-2
4341- update from CVS
4342  - handle low stack limits
4343  - move s390x into */lib64
4344
4345* Thu Oct  3 2002 Jakub Jelinek <jakub@redhat.com> 2.3-1
4346- update to 2.3 final
4347  - fix freopen on libstdc++ <= 2.96 stdin/stdout/stderr (#74800)
4348
4349* Sun Sep 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-3
4350- don't prelink -r libc.so on ppc/x86-64/sparc*, it doesn't
4351  speed things up, because they are neither REL arches, nor
4352  ELF_MACHINE_REL_RELATIVE
4353- fix sparc64 build
4354
4355* Sun Sep 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-2
4356- update from CVS
4357
4358* Sat Sep 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-1
4359- update from CVS
4360- prelink on ppc and x86-64 too
4361- don't remove ppc memset
4362- instead of listing on which arches to remove glibc-compat
4363  list where it should stay
4364
4365* Fri Sep  6 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-5
4366- fix wcsmbs functions with invalid character sets (or malloc
4367  failures)
4368- make sure __ctype_b etc. compat vars are updated even if
4369  they are copy relocs in the main program
4370
4371* Thu Sep  5 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-4
4372- fix /lib/libnss1_dns.so.1 (missing __set_h_errno definition
4373  leading to unresolved __set_h_errno symbol)
4374
4375* Wed Sep  4 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-3
4376- security fix - increase dns-network.c MAXPACKET to at least
4377  65536 to avoid buffer overrun. Likewise glibc-compat
4378  dns-{host,network}.c.
4379
4380* Tue Sep  3 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-2
4381- temporarily add back __ctype_b, __ctype_tolower and __ctype_toupper to
4382  libc.a and export them as @@GLIBC_2.0 symbols, not @GLIBC_2.0
4383  from libc.so - we have still lots of .a libraries referencing
4384  __ctype_{b,tolower,toupper} out there...
4385
4386* Tue Sep  3 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-1
4387- update from CVS
4388  - 2.2.93 release
4389  - use double instead of single indirection in isXXX macros
4390  - per-locale wcsmbs conversion state
4391
4392* Sat Aug 31 2002 Jakub Jelinek <jakub@redhat.com> 2.2.92-2
4393- update from CVS
4394  - fix newlocale/duplocale/uselocale
4395- disable profile on x86_64 for now
4396
4397* Sat Aug 31 2002 Jakub Jelinek <jakub@redhat.com> 2.2.92-1
4398- update from CVS
4399  - 2.2.92 release
4400  - fix gettext after uselocale
4401  - fix locales in statically linked threaded programs
4402  - fix NSS
4403
4404* Thu Aug 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.91-1
4405- update from CVS
4406  - 2.2.91 release
4407  - fix fd leaks in locale-archive reader (#72043)
4408- handle EROFS in build-locale-archive gracefully (#71665)
4409
4410* Wed Aug 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-27
4411- update from CVS
4412  - fix re_match (#72312)
4413- support more than 1024 threads
4414
4415* Fri Aug 23 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-26
4416- update from CVS
4417  - fix i386 build
4418
4419* Thu Aug 22 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-25
4420- update from CVS
4421  - fix locale-archive loading hang on some (non-primary) locales
4422    (#72122, #71878)
4423  - fix umount problems with locale-archives when /usr is a separate
4424    partition (#72043)
4425- add LICENSES file
4426
4427* Fri Aug 16 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-24
4428- update from CVS
4429  - only mmap up to 2MB of locale-archive on 32-bit machines
4430    initially
4431  - fix fseek past end + fread segfault with mmaped stdio
4432- include <sys/debugreg.h> which is mistakenly not included
4433  in glibc-devel on IA-32
4434
4435* Fri Aug 16 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-23
4436- don't return normalized locale name in setlocale when using
4437  locale-archive
4438
4439* Thu Aug 15 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-22
4440- update from CVS
4441  - optimize for primary system locale
4442- localedef fixes (#71552, #67705)
4443
4444* Wed Aug 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-21
4445- fix path to locale-archive in libc reader
4446- build locale archive at glibc-common %post time
4447- export __strtold_internal and __wcstold_internal on Alpha again
4448- workaround some localedata problems
4449
4450* Tue Aug 13 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-20
4451- update from CVS
4452- patch out set_thread_area for now
4453
4454* Fri Aug  9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-19
4455- update from CVS
4456- GB18030 patch from Yu Shao
4457- applied Debian patch for getaddrinfo IPv4 vs. IPv6
4458- fix regcomp (#71039)
4459
4460* Sun Aug  4 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-18
4461- update from CVS
4462- use /usr/sbin/prelink, not prelink (#70376)
4463
4464* Thu Jul 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-17
4465- update from CVS
4466
4467* Thu Jul 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-16
4468- update from CVS
4469  - ungetc fix (#69586)
4470  - fseek errno fix (#69589)
4471  - change *etrlimit prototypes for C++ (#68588)
4472- use --without-tls instead of --disable-tls
4473
4474* Thu Jul 11 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-15
4475- set nscd user's shell to /sbin/nologin (#68369)
4476- fix glibc-compat buffer overflows (security)
4477- buildrequire prelink, don't build glibc's own copy of it (#67567)
4478- update from CVS
4479  - regex fix (#67734)
4480  - fix unused warnings (#67706)
4481  - fix freopen with mmap stdio (#67552)
4482  - fix realloc (#68499)
4483
4484* Tue Jun 25 2002 Bill Nottingham <notting@redhat.com> 2.2.90-14
4485- update from CVS
4486  - fix argp on long words
4487  - update atime in libio
4488
4489* Sat Jun 22 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-13
4490- update from CVS
4491  - a thread race fix
4492  - fix readdir on invalid dirp
4493
4494* Wed Jun 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-12
4495- update from CVS
4496  - don't use __thread in headers
4497- fix system(3) in threaded apps
4498- update prelink, so that it is possible to prelink -u libc.so.6.1
4499  on Alpha
4500
4501* Fri Jun  7 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-11
4502- update from CVS
4503  - fix __moddi3 (#65612, #65695)
4504  - fix ether_line (#64427)
4505- fix setvbuf with mmap stdio (#65864)
4506- --disable-tls for now, waiting for kernel
4507- avoid duplication of __divtf3 etc. on IA-64
4508- make sure get*ent_r and _IO_wfile_jumps are exported (#62278)
4509
4510* Tue May 21 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-10
4511- update from CVS
4512  - fix Alpha pthread bug with gcc 3.1
4513
4514* Fri Apr 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-35
4515- fix nice
4516
4517* Mon Apr 15 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-34
4518- add relocation dependencies even for weak symbols (#63422)
4519- stricter check_fds check for suid/sgid binaries
4520- run make check at %%install time
4521
4522* Sat Apr 13 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-33
4523- handle Dec 31 1969 in mktime for timezones west of GMT (#63369)
4524- back out do-lookup.h change (#63261, #63305)
4525- use "memory" clobber instead all the fancy stuff in i386/i686/bits/string.h
4526  since lots of compilers break on it
4527- fix sparc build with gcc 3.1
4528- fix spec file for athlon
4529
4530* Tue Apr  9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-32
4531- fix debugging of threaded apps (#62804)
4532- fix DST for Estonia (#61494)
4533- document that pthread_mutexattr_?etkind_np are deprecated
4534  and pthread_mutexattr_?ettype should be used instead in man
4535  pages (#61485)
4536- fix libSegFault.so undefined externals
4537
4538* Fri Apr  5 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-31
4539- temporarily disable prelinking ld.so, as some statically linked
4540  binaries linked against debugging versions of old glibcs die on it
4541  (#62352)
4542- fix <semaphore.h> for -std=c99 (#62516)
4543- fix ether_ntohost segfault (#62397)
4544- remove in glibc_post_upgrade on i386 all /lib/i686/libc-*.so,
4545  /lib/i686/libm-*.so and /lib/i686/libpthread-*.so, not just current
4546  version (#61633)
4547- prelink -r on alpha too
4548
4549* Thu Mar 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-30
4550- update GB18030 iconv module (Yu Shao)
4551
4552* Tue Mar 26 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-29
4553- features.h fix
4554
4555* Tue Mar 26 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-28
4556- update from CVS
4557  - fix nscd with huge groups
4558  - fix nis to not close fds it shouldn't
4559- rebuilt against newer glibc-kernheaders to use the correct
4560  PATH_MAX
4561- handle .athlon.rpm glibc the same way as .i686.rpm
4562- add a couple of .ISO-8859-15 locales (#61922)
4563- readd temporarily currencies which were superceeded by Euro
4564  into the list of accepted currencies by localedef to make
4565  standard conformance testsuites happy
4566- temporarily moved __libc_waitpid back to make Sun JDK happy
4567- use old malloc code
4568- prelink i686/athlon ld.so and prelink -r i686/athlon libc.so
4569
4570* Thu Mar 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-27
4571- update from CVS
4572  - fix DST handling for southern hemisphere (#60747)
4573  - fix daylight setting for tzset (#59951)
4574  - fix ftime (#60350)
4575  - fix nice return value
4576  - fix a malloc segfault
4577- temporarily moved __libc_wait, __libc_fork and __libc_stack_end
4578  back to what they used to be exported at
4579- censorship (#60758)
4580
4581* Thu Feb 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-26
4582- update from CVS
4583- use __attribute__((visibility(...))) if supported, use _rtld_local
4584  for ld.so only objects
4585- provide libc's own __{,u}{div,mod}di3
4586
4587* Wed Feb 27 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-25
4588- switch back to 2.2.5, mmap stdio needs work
4589
4590* Mon Feb 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-8
4591- fix two other mmap stdio bugs (#60228)
4592
4593* Thu Feb 21 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-7
4594- fix yet another mmap stdio bug (#60145)
4595
4596* Tue Feb 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-6
4597- fix mmap stdio bug (seen on ld as File truncated error, #60043)
4598- apply Andreas Schwab's fix for pthread sigwait
4599- remove /lib/i686/ libraries in glibc_post_upgrade when
4600  performing i386 glibc install
4601
4602* Thu Feb 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-5
4603- update to CVS
4604- added glibc-utils subpackage
4605- disable autoreq in glibc-debug
4606- readd %%lang() to locale files
4607
4608* Fri Feb  7 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-4
4609- update to CVS
4610- move glibc private symbols to GLIBC_PRIVATE symbol version
4611
4612* Wed Jan  9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-3
4613- fix a sqrt bug on alpha which caused SHN_UNDEF $__full_ieee754_sqrt..ng
4614  symbol in libm
4615
4616* Tue Jan  8 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-2
4617- add debug-static package
4618
4619* Mon Dec 31 2001 Jakub Jelinek <jakub@redhat.com> 2.2.90-1
4620- update from CVS
4621- remove -D__USE_STRING_INLINES
4622- add debug subpackage to trim glibc and glibc-devel size
4623
4624* Wed Oct  3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-19
4625- fix strsep
4626
4627* Fri Sep 28 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-18
4628- fix a ld.so bug with duplicate searchlists in l_scope
4629- fix erfcl(-inf)
4630- turn /usr/lib/librt.so into linker script
4631
4632* Wed Sep 26 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-17
4633- fix a ld.so lookup bug after lots of dlopen calls
4634- fix CMSG_DATA for non-gcc non-ISOC99 compilers (#53984)
4635- prelinking support for Sparc64
4636
4637* Fri Sep 21 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-16
4638- update from CVS to fix DT_SYMBOLIC
4639- prelinking support for Alpha and Sparc
4640
4641* Tue Sep 18 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-15
4642- update from CVS
4643  - linuxthreads now retries if -1/EINTR is returned from
4644    reading or writing to thread manager pipe (#43742)
4645- use DT_FILTER in librt.so (#53394)
4646  - update glibc prelink patch so that it handles filters
4647- fix timer_* with SIGEV_NONE (#53494)
4648- make glibc_post_upgrade work on PPC (patch from Franz Sirl)
4649
4650* Mon Sep 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-14
4651- fix build on sparc32
4652- 2.2.4-13 build for some reason missed some locales
4653  on alpha/ia64
4654
4655* Mon Sep  3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-13
4656- fix iconvconfig
4657
4658* Mon Sep  3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-12
4659- add fam to /etc/rpc (#52863)
4660- fix <inttypes.h> for C++ (#52960)
4661- fix perror
4662
4663* Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-11
4664- fix strnlen(x, -1)
4665
4666* Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-10
4667- doh, <bits/libc-lock.h> should only define __libc_rwlock_t
4668  if __USE_UNIX98.
4669
4670* Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-9
4671- fix bits/libc-lock.h so that gcc can compile
4672- fix s390 build
4673
4674* Fri Aug 24 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-8
4675- kill stale library symlinks in ldconfig (#52350)
4676- fix inttypes.h for G++ < 3.0
4677- use DT_REL*COUNT
4678
4679* Wed Aug 22 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-7
4680- fix strnlen on IA-64 (#50077)
4681
4682* Thu Aug 16 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-6
4683- glibc 2.2.4 final
4684- fix -lpthread -static (#51672)
4685
4686* Fri Aug 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-5
4687- doh, include libio/tst-swscanf.c
4688
4689* Fri Aug 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-4
4690- don't crash on catclose(-1)
4691- fix wscanf %[] handling
4692- fix return value from swprintf
4693- handle year + %U/%W week + week day in strptime
4694
4695* Thu Aug  9 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-3
4696- update from CVS to
4697  - fix strcoll (#50548)
4698  - fix seekdir (#51132)
4699  - fix memusage (#50606)
4700- don't make gconv-modules.cache %%config file, just don't verify
4701  its content.
4702
4703* Mon Aug  6 2001 Jakub Jelinek <jakub@redhat.com>
4704- fix strtod and *scanf (#50723, #50724)
4705
4706* Sat Aug  4 2001 Jakub Jelinek <jakub@redhat.com>
4707- update from CVS
4708  - fix iconv cache handling
4709- glibc should not own %{_infodir}, %{_mandir} nor %{_mandir}/man3 (#50673)
4710- add gconv-modules.cache as emtpy config file (#50699)
4711- only run iconvconfig if /usr is mounted read-write (#50667)
4712
4713* Wed Jul 25 2001 Jakub Jelinek <jakub@redhat.com>
4714- move iconvconfig from glibc-common into glibc subpackage,
4715  call it from glibc_post_upgrade instead of common's post.
4716
4717* Tue Jul 24 2001 Jakub Jelinek <jakub@redhat.com>
4718- turn off debugging printouts in iconvconfig
4719
4720* Tue Jul 24 2001 Jakub Jelinek <jakub@redhat.com>
4721- update from CVS
4722  - fix IA-32 makecontext
4723  - make fflush(0) thread-safe (#46446)
4724
4725* Mon Jul 23 2001 Jakub Jelinek <jakub@redhat.com>
4726- adjust prelinking DT_* and SHT_* values in elf.h
4727- update from CVS
4728  - iconv cache
4729  - make iconv work in SUID/SGID programs (#34611)
4730
4731* Fri Jul 20 2001 Jakub Jelinek <jakub@redhat.com>
4732- update from CVS
4733  - kill non-pic code in libm.so
4734  - fix getdate
4735  - fix some locales (#49402)
4736- rebuilt with binutils-2.11.90.0.8-5 to place .interp section
4737  properly in libBrokenLocale.so, libNoVersion.so and libanl.so
4738- add floating stacks on IA-64, Alpha, Sparc (#49308)
4739
4740* Mon Jul 16 2001 Jakub Jelinek <jakub@redhat.com>
4741- make /lib/i686 directory owned by glibc*.i686.rpm
4742
4743* Mon Jul  9 2001 Jakub Jelinek <jakub@redhat.com>
4744- remove rquota.[hx] headers which are now provided by quota (#47141)
4745- add prelinking patch
4746
4747* Thu Jul  5 2001 Jakub Jelinek <jakub@redhat.com>
4748- require sh-utils for nscd
4749
4750* Mon Jun 25 2001 Jakub Jelinek <jakub@redhat.com>
4751- update from CVS (#43681, #43350, #44663, #45685)
4752- fix ro_RO bug (#44644)
4753
4754* Wed Jun  6 2001 Jakub Jelinek <jakub@redhat.com>
4755- fix a bunch of math bugs (#43210, #43345, #43346, #43347, #43348, #43355)
4756- make rpc headers -ansi compilable (#42390)
4757- remove alphaev6 optimized memcpy, since there are still far too many
4758  broken apps which call memcpy where they should call memmove
4759- update from CVS to (among other things):
4760  - fix tanhl bug (#43352)
4761
4762* Tue May 22 2001 Jakub Jelinek <jakub@redhat.com>
4763- fix #include <signal.h> with -D_XOPEN_SOURCE=500 on ia64 (#35968)
4764- fix a dlclose reldeps handling bug
4765- some more profiling fixes
4766- fix tgmath.h
4767
4768* Thu May 17 2001 Jakub Jelinek <jakub@redhat.com>
4769- make ldconfig more quiet
4770- fix LD_PROFILE on i686 (#41030)
4771
4772* Wed May 16 2001 Jakub Jelinek <jakub@redhat.com>
4773- fix the hardlink program, so that it really catches all files with
4774  identical content
4775- add a s390x clone fix
4776
4777* Wed May 16 2001 Jakub Jelinek <jakub@redhat.com>
4778- fix rpc for non-threaded apps using svc_fdset and similar variables (#40409)
4779- fix nss compatibility DSO versions for alphaev6
4780- add a hardlink program instead of the shell 3x for plus cmp -s/link
4781  which takes a lot of time during build
4782- rework BuildPreReq and Conflicts with gcc, so that
4783  it applies only where it has to
4784
4785* Fri May 11 2001 Jakub Jelinek <jakub@redhat.com>
4786- fix locale name of ja_JP in UTF-8 (#39783)
4787- fix re_search_2 (#40244)
4788- fix memusage script (#39138, #39823)
4789- fix dlsym(RTLD_NEXT, ) from main program (#39803)
4790- fix xtrace script (#39609)
4791- make glibc conflict with glibc-devel 2.2.2 and below (to make sure
4792  libc_nonshared.a has atexit)
4793- fix getconf LFS_CFLAGS on 64bitters
4794- recompile with gcc-2.96-84 or above to fix binary compatibility problem
4795  with __frame_state_for function (#37933)
4796
4797* Fri Apr 27 2001 Jakub Jelinek <jakub@redhat.com>
4798- glibc 2.2.3 release
4799  - fix strcoll (#36539)
4800- add BuildPreReqs (#36378)
4801
4802* Wed Apr 25 2001 Jakub Jelinek <jakub@redhat.com>
4803- update from CVS
4804
4805* Fri Apr 20 2001 Jakub Jelinek <jakub@redhat.com>
4806- update from CVS
4807  - fix sparc64, ia64
4808  - fix some locale syntax errors (#35982)
4809
4810* Wed Apr 18 2001 Jakub Jelinek <jakub@redhat.com>
4811- update from CVS
4812
4813* Wed Apr 11 2001 Jakub Jelinek <jakub@redhat.com>
4814- update from CVS
4815
4816* Fri Apr  6 2001 Jakub Jelinek <jakub@redhat.com>
4817- support even 2.4.0 kernels on ia64, sparc64 and s390x
4818- include UTF-8 locales
4819- make gconv-modules %%config(noreplace)
4820
4821* Fri Mar 23 2001 Jakub Jelinek <jakub@redhat.com>
4822- back out sunrpc changes
4823
4824* Wed Mar 21 2001 Jakub Jelinek <jakub@redhat.com>
4825- update from CVS
4826  - fix ia64 build
4827  - fix pthread_getattr_np
4828
4829* Fri Mar 16 2001 Jakub Jelinek <jakub@redhat.com>
4830- update from CVS
4831  - run atexit() registered functions at dlclose time if they are in shared
4832    libraries (#28625)
4833  - add pthread_getattr_np API to make JVM folks happy
4834
4835* Wed Mar 14 2001 Jakub Jelinek <jakub@redhat.com>
4836- require 2.4.1 instead of 2.4.0 on platforms where it required 2.4 kernel
4837- fix ldd behaviour on unresolved symbols
4838- remove nonsensical ldconfig warning, update osversion for the most
4839  recent library with the same soname in the same directory instead (#31703)
4840- apply selected patches from CVS
4841- s390x spec file changes from Florian La Roche
4842
4843* Wed Mar  7 2001 Jakub Jelinek <jakub@redhat.com>
4844- fix gencat (#30894)
4845- fix ldconfig changes from yesterday, fix LD_ASSUME_KERNEL handling
4846
4847* Tue Mar  6 2001 Jakub Jelinek <jakub@redhat.com>
4848- update from CVS
4849- make pthread_attr_setstacksize consistent before and after pthread manager
4850  is started (#28194)
4851- pass back struct sigcontext from pthread signal wrapper (on ia32 only so
4852  far, #28493)
4853- on i686 ship both --enable-kernel 2.2.5 and 2.4.0 libc/libm/libpthread,
4854  make ld.so pick the right one
4855
4856* Sat Feb 17 2001 Preston Brown <pbrown@redhat.com>
4857- glib-common doesn't require glibc, until we can figure out how to get out of dependency hell.
4858
4859* Sat Feb 17 2001 Jakub Jelinek <jakub@redhat.com>
4860- make glibc require particular version of glibc-common
4861  and glibc-common prerequire glibc.
4862
4863* Fri Feb 16 2001 Jakub Jelinek <jakub@redhat.com>
4864- glibc 2.2.2 release
4865  - fix regex REG_ICASE bug seen in ksymoops
4866
4867* Sat Feb 10 2001 Jakub Jelinek <jakub@redhat.com>
4868- fix regexec leaking memory (#26864)
4869
4870* Fri Feb  9 2001 Jakub Jelinek <jakub@redhat.com>
4871- update from CVS
4872  - fix ia64 build with gnupro
4873  - make regex 64bit clean
4874  - fix tgmath make check failures on alpha
4875
4876* Tue Feb  6 2001 Jakub Jelinek <jakub@redhat.com>
4877- update again for ia64 DF_1_INITFIRST
4878
4879* Fri Feb  2 2001 Jakub Jelinek <jakub@redhat.com>
4880- update from CVS
4881  - fix getaddrinfo (#25437)
4882  - support DF_1_INITFIRST (#25029)
4883
4884* Wed Jan 24 2001 Jakub Jelinek <jakub@redhat.com>
4885- build all auxiliary arches with --enablekernel 2.4.0, those wanting
4886  to run 2.2 kernels can downgrade to the base architecture glibc.
4887
4888* Sat Jan 20 2001 Jakub Jelinek <jakub@redhat.com>
4889- remove %%lang() flags from %%{_prefix}/lib/locale files temporarily
4890
4891* Sun Jan 14 2001 Jakub Jelinek <jakub@redhat.com>
4892- update to 2.2.1 final
4893  - fix a pthread_kill_other_threads_np breakage (#23966)
4894  - make static binaries using dlopen work on ia64 again
4895- fix a typo in glibc-common group
4896
4897* Wed Jan 10 2001 Bernhard Rosenkraenzer <bero@redhat.com>
4898- devel requires glibc = %%{version}
4899- noreplace /etc/nscd.conf
4900
4901* Wed Jan 10 2001 Jakub Jelinek <jakub@redhat.com>
4902- some more security fixes:
4903  - don't look up LD_PRELOAD libs in cache for SUID apps
4904    (because that bypasses SUID bit checking on the library)
4905  - place output files for profiling SUID apps into /var/profile,
4906    use O_NOFOLLOW for them
4907  - add checks for $MEMUSAGE_OUTPUT and $SEGFAULT_OUTPUT_NAME
4908- hardlink identical locale files together
4909- add %%lang() tags to locale stuff
4910- remove ko_KR.utf8 for now, it is provided by locale-utf8 package
4911
4912* Mon Jan  8 2001 Jakub Jelinek <jakub@redhat.com>
4913- add glibc-common subpackage
4914- fix alphaev6 memcpy (#22494)
4915- fix sys/cdefs.h (#22908)
4916- don't define stdin/stdout/stderr as macros for -traditional (#22913)
4917- work around a bug in IBM JDK (#22932, #23012)
4918- fix pmap_unset when network is down (#23176)
4919- move nscd in rc.d before netfs on shutdown
4920- fix $RESOLV_HOST_CONF in SUID apps (#23562)
4921
4922* Fri Dec 15 2000 Jakub Jelinek <jakub@redhat.com>
4923- fix ftw and nftw
4924
4925* Wed Dec 13 2000 Jakub Jelinek <jakub@redhat.com>
4926- fix fcvt (#22184)
4927- ldd /lib/ld-linux.so.2 is not crashing any longer again (#22197)
4928- fix gencat
4929
4930* Mon Dec 11 2000 Jakub Jelinek <jakub@redhat.com>
4931- fix alpha htonl and alphaev6 stpcpy
4932
4933* Sat Dec  9 2000 Jakub Jelinek <jakub@redhat.com>
4934- update to CVS to:
4935  - fix getnameinfo (#21934)
4936  - don't stomp on memory in rpath handling (#21544)
4937  - fix setlocale (#21507)
4938- fix libNoVersion.so.1 loading code (#21579)
4939- use auxarches define in spec file for auxiliary
4940  architectures (#21219)
4941- remove /usr/share directory from filelist (#21218)
4942
4943* Sun Nov 19 2000 Jakub Jelinek <jakub@redhat.com>
4944- update to CVS to fix getaddrinfo
4945
4946* Fri Nov 17 2000 Jakub Jelinek <jakub@redhat.com>
4947- update to CVS to fix freopen
4948- remove all alpha workarounds, not needed anymore
4949
4950* Wed Nov 15 2000 Jakub Jelinek <jakub@redhat.com>
4951- fix dladdr bug on alpha/sparc32/sparc64
4952- fix Makefiles so that they run static tests properly
4953
4954* Tue Nov 14 2000 Jakub Jelinek <jakub@redhat.com>
4955- update to CVS to fix ldconfig
4956
4957* Thu Nov  9 2000 Jakub Jelinek <jakub@redhat.com>
4958- update to glibc 2.2 release
4959
4960* Mon Nov  6 2000 Jakub Jelinek <jakub@redhat.com>
4961- update to CVS to:
4962  - export __sysconf@@GLIBC_2.2 (#20417)
4963
4964* Fri Nov  3 2000 Jakub Jelinek <jakub@redhat.com>
4965- merge to 2.1.97
4966
4967* Mon Oct 30 2000 Jakub Jelinek <jakub@redhat.com>
4968- update to CVS, including:
4969  - fix WORD_BIT/LONG_BIT definition in limits.h (#19088)
4970  - fix hesiod (#19375)
4971  - set LC_MESSAGES in zic/zdump for proper error message output (#19495)
4972  - fix LFS fcntl when used with non-LFS aware kernels (#19730)
4973
4974* Thu Oct 19 2000 Jakub Jelinek <jakub@redhat.com>
4975- fix alpha semctl (#19199)
4976- update to CVS, including:
4977  - fix glibc headers for Compaq non-gcc compilers
4978  - fix locale alias handling code (#18832)
4979  - fix rexec on little endian machines (#18886)
4980- started writing changelog again
4981
4982* Thu Aug 10 2000 Adrian Havill <havill@redhat.com>
4983- added ja ujis alias for backwards compatibility
Note: See TracBrowser for help on using the repository browser.