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

Revision 10314, 184.5 KB checked in by Takemikaduchi, 8 years ago (diff)

for Vine6.5

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