source: projects/specs/trunk/g/glibc/glibc-vl.spec @ 10250

Revision 10250, 182.4 KB checked in by Takemikaduchi, 8 years ago (diff)

binutils-2.26,gcc-4.9.3,glibc-2.23

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%changelog
1405* Sat May 07 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.23-1
1406- update to 2.23
1407- remove Patch14-18
1408- update SOURCE1 from fedora
1409
1410* Sun Dec 13 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18-3
1411- rebuild with VineSeed environment
1412
1413* Mon Jul 14 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18-2
1414- rebuild with libpng-1.6.12
1415
1416* Mon Nov 04 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18-1
1417- update to 2.18
1418- merged with FC 2.18-6.fc21
1419- add Source1,2,3 and Patch11,12,13,14,15,16,17,18,19 from Fedora
1420- add Patch10001 for vine
1421
1422* Tue Oct 01 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.14.1-4
1423- rebuild with gcc-4.8.1
1424
1425* Wed Jan 04 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.14.1-3
1426- add Patch12: glibc-fix-do_lookup_x.patch
1427
1428* Thu Dec 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-2
1429- add patch10 to reexport rpc interface
1430- add patch11 to reinstall nis rpc headers
1431
1432* Sat Dec 17 2011 NAKAMURA Kenta <kenta@vinelinux.org> 2.14.1-1
1433- updated to 2.14.1
1434- converted tzdata-update to lua (Red Hat Bugzilla – Bug 729796)
1435- dropped obsolete CVE patches
1436- update glibc-fedora.patch (glibc-2.14.90-20.fc17) for reference
1437- added patch1, 2 and 3 based on glibc-fedora.patch
1438
1439* Sun Jul 10 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.11.1-9
1440- add patch100,101 for fix CVE-2011-0536
1441- add patch102 for fix CVE-2011-1095
1442- add patch103 for fix CVE-2011-1071
1443- add patch104 for fix CVE-2010-3856
1444- add Vendor/Distri tags
1445
1446* Wed Mar 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.11.1-8
1447- add compat32-glibc-static
1448
1449* Tue Apr  6 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.11.1-7
1450- rebuilt with gcc-4.3.3-4
1451
1452* Sat Mar  6 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.11.1-6
1453- fix typo in %%triggerun common-extra
1454- add %%postun common-extra (which does the same as %%triggerun common-extra)
1455- fix %%post common so that /bin/cp is not necessary
1456  - locale-archive{,-ja}.tmpl both included (not as ghost) in common
1457
1458* Wed Feb 10 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.11.1-5
1459- change R: for compat32-*
1460  - do not require exact version of glibc
1461
1462* Mon Feb  8 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.11.1-4
1463- rebuilt with gcc-4.4.3-3
1464
1465* Sun Jan 31 2010 Daisuke SUZUKI <daisuke@linux.or.jp> - 2.11.1-3
1466- fix %%post scripts for glibc-common and glibc-common-extra
1467  - use build-locale-archive to create ja-only-locale
1468- add %%triggerun common-extra to remove non-ja locale.
1469
1470* Mon Jan 25 2010 NAKAMURA Kenta <kenta@vinelinux.org> - 2.11.1-2
1471- updated to 2.11.1 based on Fedora 12 2.11.1-1
1472- dropped BuildRequires: libselinux-devel
1473- used pre-generated find_requires/find_provides scripts.
1474- add glibc-common-extras to split out non ja/en locale.
1475  - include en_US* and ja_JP* only.
1476- added compat32- packages for x86_64 architecture support
1477- the previous Vine version was 2.8-2 and its changelog was as follows:
1478  * Mon Apr 27 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8-2
1479  - add glibc-common-extras to split out non ja/en locale.
1480    - include en_US* and ja_JP* only.
1481  * Wed Sep 24 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.8-1
1482  - updated to 2.8 (20080412T0741) based on Fedora 9 errata 2.8-8
1483  * Wed Jul 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7-4
1484  - spec in UTF8
1485  - rebuild with gcc-4.1.2-18
1486  * Sat Apr 05 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.7-2.1
1487  - rebuilt with kernel-headers-2.6.24-6
1488  - remove override_headers hack, BuildRequire >= 2.6.22 kernel-headers
1489    and rely on its content
1490  * Sun Feb 10 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.7-2vl3
1491  - rebuilt with binutils-2.17.50.0.18-1vl2 and gcc-4.1.2-0vl17
1492  * Fri Jan 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7-2vl2
1493  - add missing files to file list.
1494  - fix typo
1495  * Thu Dec 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7-2vl1
1496  - update to 2.7 based on fedora-devel 2.7-2
1497  * Sat May 19 2007 NAKAMURA Kenta <kenta@vinelinux.org> 2.5-12vl3
1498  - added compat32- packages for x86_64 architecture support
1499  * Sun May 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-12vl2
1500  - rebuild with gcc-4.1.2-0vl7 (expecially for ppc)
1501  * Sat May 12 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-12vl1
1502  - rebuilt with gcc-4.1.2-0vl6
1503  - import Patch38 and Patch39 from RHEL5 2.5-12
1504    - Mon Jan 15 2007 Jakub Jelinek <jakub@redhat.com> 2.5-12
1505    - add a workaround for #210748 and #211133
1506   - fix NIS getservbyname when proto is NULL
1507  * Tue May 08 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.5-10vl2
1508  - use pre-generated find_requires/find_provides scripts.
1509  * Sun May 06 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-10vl1
1510  - rebuild
1511  * Sun May 06 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-10vl0
1512  - updated for VineSeed based on 2.5-10.fc6
1513  - build_power6 disabled for ppc
1514    (until we have ppc64 environments fully prepared for Vine development)
1515
1516* Mon Dec 14 2009 Andreas Schwab <schwab@redhat.com> - 2.11.1-1
1517- Update to 2.11.1 release.
1518  - Locale updates.
1519  - Don't reuse RPC XIDs across forks.
1520
1521* Mon Nov 30 2009 Andreas Schwab <schwab@redhat.com> - 2.11-4
1522- Update from 2.11 branch
1523  - Fix sync_file_range on ppc/ppc64.
1524  - Fix getwc* and putwc* on non-wide streams (BZ#10958).
1525  - Avoid warnings in CPU_* macros when using const bitsets (BZ#10918).
1526  - Fix ranges with multibyte characters as endpoints.
1527  - Handle LC_GLOBAL_LOCALE in duplocale (BZ#10969).
1528  - Fix _NC_LOCALE_NAME definition (BZ#10968).
1529  - Add missing Linux MADV_* definitions (BZ#10972).
1530  - Handle running out of buffer space with IPv6 mapping enabled.
1531  - Avoid memset warning in one case (#532492).
1532  - Restore locking in free_check (#504963).
1533- Fix infloop in __pthread_disable_asynccancel on x86_64 (#537690).
1534- Prevent unintended file desriptor leak in grantpt (#530558).
1535- Fix startup to security-relevant statically linked binaries (#528631).
1536
1537* Tue Nov 24 2009 Andreas Schwab <schwab@redhat.com> - 2.11-3
1538- Enable multi-arch support for ppc and ppc64 on RHEL-6
1539
1540* Thu Nov  5 2009 Andreas Schwab <schwab@redhat.com> - 2.11-2
1541- Fix readahead on powerpc32.
1542- Fix R_PPC64_{JMP_IREL,IRELATIVE} handling.
1543- Fix preadv, pwritev and fallocate for -D_FILE_OFFSET_BITS=64 (#533063).
1544
1545* Mon Nov  2 2009 Andreas Schwab <schwab@redhat.com> - 2.11-1
1546- Update to 2.11 release.
1547- Disable multi-arch support on PowerPC again since binutils is too old.
1548- Fix crash in tzdata-update due to use of multi-arch symbol (#532128).
1549
1550* Fri Oct 30 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-27
1551- Update from master.
1552  - Fix races in setXid implementation (BZ#3270).
1553  - Implement IFUNC for PPC and enable multi-arch support.
1554  - Implement mkstemps/mkstemps64 and mkostemps/mkostemps64 (BZ#10349).
1555  - Fix IA-64 and S390 sigevent definitions (BZ#10446).
1556  - Fix memory leak in NIS grp database handling (BZ#10713).
1557  - Print timestamp in nscd debug messages (BZ#10742).
1558  - Fix mixing IPv4 and IPv6 name server in resolv.conf.
1559  - Fix range checks in coshl.
1560  - Implement SSE4.2 optimized strchr and strrchr.
1561  - Handle IFUNC symbols in dlsym (#529965).
1562  - Misc fixes (BZ#10312, BZ#10315, BZ#10319, BZ#10391, BZ#10425,
1563    BZ#10540, BZ#10553, BZ#10564, BZ#10609, BZ#10692, BZ#10780,
1564    BZ#10717, BZ#10784, BZ#10789, BZ#10847
1565- No longer build with -fno-var-tracking-assignments.
1566
1567* Mon Oct 19 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-26
1568- Update from master.
1569  - Add ____longjmp_chk for sparc.
1570- Avoid installing the same libraries twice.
1571
1572* Mon Oct 12 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-25
1573- Update from master
1574  - Fix descriptor leak when calling dlopen with RTLD_NOLOAD (#527409).
1575  - Fix week-1stday in C locale.
1576  - Check for integer overflows in formatting functions.
1577  - Fix locale program error handling (#525363).
1578
1579* Mon Sep 28 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-24
1580- Update from master.
1581  - Fix missing reloc dependency (#517001).
1582
1583* Mon Sep 21 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-23
1584- Update from master.
1585
1586* Mon Sep 14 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-22
1587- Update from master.
1588  - Fix endless loop in localedef.
1589  - Fix __longjmp_chk on s390/s390x.
1590- Fix exit codes in nscd start script (#521848).
1591- Build with -fno-var-tracking-assignments for now (#523172).
1592
1593* Mon Sep  7 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-21
1594- Update from master.
1595  - Fix strstr/strcasestr on i386 (#519226).
1596
1597* Thu Sep  3 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-20
1598- Update from master.
1599  - Fix strstr/strcasestr/fma/fmaf on x86_64 (#519226).
1600  - Fix lookup of group names in hesiod initgroups (#520472).
1601
1602* Wed Sep  2 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-19
1603- Update from master.
1604  - Fix x86_64 bits/mathinline.h for -m32 compilation.
1605
1606* Tue Sep  1 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-18
1607- Update from master.
1608  - fix parse error in <bits/mathinline.h> (#520209).
1609
1610* Thu Aug 27 2009 Roland McGrath <roland@redhat.com> - 2.10.90-17
1611- Update from master.
1612
1613* Wed Aug 26 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-16
1614- Update from master.
1615  - handle AVX saving on x86-64 in interrupted symbol lookups (#519081).
1616
1617* Mon Aug 24 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-15
1618- Update from master.
1619  - fix fortify failure with longjmp from alternate stack (#512103).
1620- Add conflict with prelink (#509655).
1621
1622* Mon Aug 17 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-14
1623- Update from master.
1624  - fix pthread_cond_signal (#516469)
1625
1626* Mon Aug 10 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-13
1627- Update from master.
1628  - fix rehashing of unique symbols (#515677)
1629- Fix spurious messages with --excludedocs (#515948)
1630
1631* Mon Aug  3 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-12
1632- Update from master.
1633  - fix fortify failure with longjmp from alternate stack (#512103)
1634
1635* Thu Jul 30 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-11
1636- Update from master.
1637- Don't package debuginfo files in glibc-devel.
1638
1639* Tue Jul 28 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-10
1640- Update from master.
1641  * fix memory ordering in pthread_mutex_unlock (BZ#10418)
1642  * implement RES_USE_DNSSEC option in resolver (#205842)
1643  * fix hang in ldd -r (#513945)
1644
1645* Mon Jul 27 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-9
1646- Update from master.
1647
1648* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.90-8.1
1649- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1650
1651* Fri Jul 24 2009 Jakub Jelinek <jakub@redhat.com> - 2.10.90-7.1
1652- Fix up pthread_cond_timedwait on x86_64 with old kernels.
1653
1654* Thu Jul 23 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-7
1655- Update from master.
1656- Build with -DNDEBUG unless using a prerelease.
1657
1658* Thu Jul 23 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-6
1659- Rebuilt with binutils-2.19.51.0.14-29.fc12 to fix static binaries
1660
1661* Wed Jul 22 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-5
1662- Update from master.
1663- Undefine __i686 on x86 to fix build.
1664
1665* Mon Jul 20 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-4
1666- Update from master.
1667- Don't build separate i686 package.
1668
1669* Wed Jul  8 2009 Andreas Schwab <schwab@redhat.com> 2.10.90-3
1670- Reenable setuid on pt_chown.
1671
1672* Thu Jul  2 2009 Andreas Schwab <aschwab@redhat.com> 2.10.90-2
1673- Update from master.
1674
1675* Fri Jun 26 2009 Andreas Schwab <aschwab@redhat.com> 2.10.90-1
1676- Update from master.
1677- Enable multi-arch support on x86/x86-64.
1678- Add requires glibc-headers to glibc-devel (#476295).
1679- Implement second fallback mode for DNS requests (#505105).
1680- Don't generate invalid POSIX TZ string for Asia/Dhaka timezone (#506941).
1681- Allow backtrace through __longjmp_chk on powerpc.
1682
1683* Fri May 22 2009 Jakub Jelinek <jakub@redhat.com> 2.10.1-2
1684- fix accept4 on architectures other than i?86/x86_64
1685- robustify nscd client code during server GC
1686- fix up nscd segfaults during daemon shutdown
1687- fix memchr on ia64 (BZ#10162)
1688- replace the Sun RPC license with the BSD license, with the explicit
1689  permission of Sun Microsystems
1690- fix up powerpc long double errno reporting
1691
1692* Sun May 10 2009 Jakub Jelinek <jakub@redhat.com> 2.10.1-1
1693- fix up getsgent_r and getsgnam_r exports on i?86 and ppc
1694
1695* Sat May  9 2009 Jakub Jelinek <jakub@redhat.com> 2.10-2
1696- update from trunk
1697  - glibc 2.10 release
1698  - fix memchr on x86_64 (#499689)
1699
1700* Mon Apr 27 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-22
1701- update from trunk
1702  - further localedef fixes
1703- fix build-locale-archive
1704
1705* Fri Apr 24 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-21
1706- update from trunk
1707  - fix localedef
1708  - fix SHIFT_JIS iconv EILSEQ handling (#497267)
1709  - misc fixes (BZ#10093, BZ#10100)
1710
1711* Fri Apr 24 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-20
1712- update from trunk
1713  - fix p{read,write}v{,64} (#497429, #497434)
1714  - fix strfmon (#496386)
1715
1716* Thu Apr 16 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-19
1717- update from trunk
1718  - fix dlopen from statically linked binaries (#495830)
1719
1720* Thu Apr 16 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-18
1721- update from trunk
1722  - fix fallocate
1723
1724* Wed Apr 15 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-17
1725- update from trunk
1726  - if threads have very small stack sizes, use much smaller buffer
1727    in __get_nprocs when called from within malloc (#494631)
1728
1729* Tue Apr 14 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-16
1730- update from trunk
1731
1732* Thu Apr  9 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-15
1733- rebuilt with fixed gcc to avoid miscompilation of i586 memmove
1734- reenable experimental malloc again
1735
1736* Wed Apr  8 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-14
1737- update from trunk
1738- temporarily disable experimental malloc
1739
1740* Tue Apr  7 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-13
1741- update from trunk
1742  - fix strverscmp (#494457)
1743- configure with --enable-nss-crypt
1744
1745* Wed Apr  1 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-12
1746- update from trunk
1747- configure with --enable-experimental-malloc
1748
1749* Fri Mar 20 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-11
1750- update from trunk
1751  - POSIX 2008 prototype adjustments for scandir{,64}, alphasort{,64} and
1752    versionsort{,64}
1753  - fix libthread_db (#491197)
1754
1755* Tue Mar 10 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-10
1756- update from trunk
1757  - fix atexit/__cxa_atexit
1758
1759* Mon Mar  9 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-9
1760- update from trunk
1761  - POSIX 2008 support: -D_XOPEN_SOURCE=700 and -D_POSIX_C_SOURCE=200809L
1762- move libnldbl_nonshared.a on ppc*/s390*/sparc* back to glibc-devel
1763
1764* Fri Feb 27 2009 Roland McGrath <roland@redhat.com> - 2.9.90-8.1
1765- fix libthread_db (#487212)
1766
1767* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.90-8
1768- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1769
1770* Wed Feb 18 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-7
1771- update from trunk
1772- adjust for i586 + i686 from i386 + i686 build
1773- split static libraries into glibc-static subpackage
1774- ld -r the whole libpthread.a together to avoid endless issues with
1775  -static ... -lpthread
1776- require 2.6.18 and later kernel
1777
1778* Wed Feb  4 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-3
1779- update from trunk
1780  - ISO C++ compliant strchr etc. with GCC 4.4+
1781  - AT_RANDOM support
1782
1783* Thu Jan  8 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-2
1784- update from trunk
1785
1786* Fri Jan  2 2009 Jakub Jelinek <jakub@redhat.com> 2.9.90-1
1787- update from trunk (#478314)
1788
1789* Mon Dec  8 2008 Jakub Jelinek <jakub@redhat.com> 2.9-3
1790- temporarily disable _nss_dns_gethostbyname4_r (#459756)
1791- NIS hostname lookup fixes (#473073, #474800, BZ#7058)
1792- fix unsetenv (#472941)
1793
1794* Thu Nov 13 2008 Jakub Jelinek <jakub@redhat.com> 2.9-2
1795- glibc 2.9 release
1796- fix CPU_ALLOC_SIZE on 32-bit arches (BZ#7029)
1797
1798* Wed Nov 12 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-17
1799- update from trunk
1800  - don't abort on broken DNS replies (#469299, BZ#7009)
1801  - misc fixes (BZ#6966, BZ#7008, BZ#6955, BZ#6843)
1802
1803* Fri Oct 31 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-16
1804- update from trunk
1805  - further resolver fixes
1806  - another dynamic TLS handling fix (#469263)
1807  - misc fixes (BZ#6867, BZ#6875, BZ#6919, BZ#6920, BZ#6942, BZ#6947,
1808                BZ#6968, BZ#6974, BZ#6980, BZ#6995)
1809- rebuild with newer rpm to avoid stripping
1810  shared libraries when they shouldn't be (#468129)
1811
1812* Tue Oct 28 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-15
1813- update from trunk
1814  - __libc_res_nquery fixes (#466786)
1815
1816* Sun Oct 19 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-14
1817- update from trunk
1818  - fix dynamic TLS handling (#467309)
1819  - fix sys/signalfd.h for C++ (#467172)
1820  - fix sprof (#458861)
1821  - fix _mcount and socket syscalls on s390x (#464146)
1822  - try harder to allocate memory in valloc and pvalloc (#461481)
1823- fix power6 32-bit libs (#467311)
1824
1825* Fri Oct 10 2008 Dennis Gilmore <dennis@ausil.us> 2.8.90-13
1826- apply sparcv9v memset patch from jakub and davem
1827
1828* Fri Aug 29 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-12
1829- update from trunk
1830  - revert origin changes (#457849)
1831  - use MAP_STACK for thread stacks
1832  - misc fixes (BZ#6845, BZ#6544, BZ#6634, BZ#6589, BZ#6790, BZ#6791,
1833    BZ#6824)
1834  - power7 bits (BZ#6817)
1835  - fix expm1 on i?86/x86_64 (#43354, BZ#5794)
1836
1837* Sat Aug  2 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-11
1838- update from trunk
1839  - fix non-absolute $ORIGIN handling (#457560)
1840  - exported some further libresolv APIs (#453325)
1841  - misc fixes
1842
1843* Tue Jul 29 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-10
1844- update from trunk
1845  - resolver fixes
1846  - misc fixes (BZ#6771, BZ#6763, BZ#6698, BZ#6712)
1847  - s390{,x} utmp/utmpx bi-arch support (BZ#6724)
1848  - popen "e" flag
1849- fr_FR locale changes reenabled
1850
1851* Wed Jul 16 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-9
1852- update from trunk
1853  - fix unbuffered vfprintf if writing to the stream fails (#455360)
1854  - remove useless "malloc: using debugging hooks" message (#455355)
1855  - nscd fixes
1856  - fix resolver alignment issues (#454500)
1857  - fix setvbuf (BZ#6719)
1858
1859* Thu Jul  3 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-8
1860- update from trunk
1861  - watch even resolv.conf in nscd using inotify
1862  - some nscd fixes
1863
1864* Fri Jun 13 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-7
1865- update from trunk
1866  - avoid *lround* on ppc* clobbering cr3/cr4 registers (#450790)
1867  - further nscd fixes (#450704)
1868  - use inotify in nscd to watch files
1869
1870* Thu Jun 12 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-6
1871- update from trunk
1872  - nscd fixes (#450704)
1873  - fix getservbyport (#449358)
1874  - fix regexp.h (#446406)
1875  - avoid crashing on T_DNAME in DNS responses (#450766)
1876
1877* Sun May 25 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-5
1878- update from trunk
1879
1880* Tue May 20 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-4
1881- further getaddrinfo and nscd fixes
1882
1883* Sun May 18 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-3
1884- getaddrinfo and nscd fixes
1885- reenable assertion checking in rawhide
1886
1887* Fri May 16 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-2
1888- fix getaddrinfo (#446801, #446808)
1889
1890* Thu May 15 2008 Jakub Jelinek <jakub@redhat.com> 2.8.90-1
1891- update to trunk
1892  - O(n) memmem/strstr/strcasestr
1893  - i386/x86_64 TLS descriptors support
1894  - concurrent IPv4 and IPv6 DNS lookups by getaddrinfo
1895
1896* Mon May  5 2008 Jakub Jelinek <jakub@redhat.com> 2.8-3
1897- don't run telinit u in %%post if both /dev/initctl and
1898  /sbin/initctl exist (#444978)
1899- workaround GCC ppc64 miscompilation of c{log{,10},acosh,atan}l
1900  (#444996)
1901
1902* Wed Apr 30 2008 Jakub Jelinek <jakub@redhat.com> 2.8-2
1903- fix nscd races during GC (BZ#5381)
1904- rebuilt with fixed GCC to fix regex miscompilation on power6
1905- SPARC fixes
1906
1907* Sat Apr 12 2008 Jakub Jelinek <jakub@redhat.com> 2.8-1
1908- 2.8 release
1909
1910* Fri Apr 11 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-16
1911- update to trunk
1912  - misc fixes (BZ#4997, BZ#5741)
1913  - make sure all users of __libc_setlocale_lock know it is
1914    now a rwlock
1915  - fix ppc/ppc64 compatibility _sys_errlist and _sys_siglist
1916    symbols
1917
1918* Thu Apr 10 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-15
1919- update to trunk
1920  - misc fixes (BZ#4314, BZ#4407, BZ#5209, BZ#5436, BZ#5768, BZ#5998,
1921                BZ#6024)
1922- restart sshd in %%post when upstart is used - it doesn't have
1923  /dev/initctl (#441763)
1924- disable assert checking again
1925
1926* Tue Apr  8 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-14
1927- update to trunk
1928  - misc fixes (BZ#5443, BZ#5475, BZ#5478, BZ#5939, BZ#5979, BZ#5995,
1929                BZ#6004, BZ#6007, BZ#6020, BZ#6021, BZ#6042)
1930  - change mtrace to keep perl 5.10 quiet (#441082)
1931  - don't share conversion state between mbtowc and wctomb (#438687)
1932  - if st_blksize is too large and malloc fails, retry with smaller
1933    buffer in opendir (#430768)
1934  - correct *printf overflow test (#358111)
1935
1936* Fri Mar 28 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-13
1937- update to trunk
1938  - don't define ARG_MAX in <limits.h>, as it is no longer
1939    constant - use sysconf (_SC_ARG_MAX) to get the current
1940    argument size limit
1941  - fix build on sparc64
1942- only service sshd condrestart if /etc/rc.d/init.d/sshd exists
1943  (#428859)
1944
1945* Wed Mar 26 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-12
1946- update to trunk
1947  - new CLONE_* flags in <sched.h> (#438542)
1948  - nis+ errno clobbering fix (#437945)
1949  - fix adjtime (#437974)
1950
1951* Fri Mar 14 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-11
1952- update to trunk
1953- remove <stropts.h>, define _XOPEN_STREAMS -1 (#436349)
1954
1955* Wed Mar  5 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-8
1956- update to trunk
1957  - {,v}{as,d}printf and obstack_{,v}printf fortification (#435905)
1958  - fix getnameinfo/gethostbyaddr (#428067, BZ#5790)
1959  - fix yp_order (#435519, BZ#5854)
1960  - misc fixes (BZ#5779, BZ#5736, BZ#5627, BZ#5818, BZ#5012)
1961- merge review cleanup (Tom Callaway, #225806)
1962
1963* Sat Feb 16 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-7
1964- update to trunk
1965  - make NI_MAXHOST and NI_MAXSERV available even in BSDish
1966    namespaces (BZ#5737)
1967  - timerfd_* syscalls
1968
1969* Fri Feb  1 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-6
1970- fix build
1971
1972* Thu Jan 31 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-5
1973- update to trunk
1974- rebuild with gcc 4.3
1975
1976* Fri Jan 11 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-4
1977- update to trunk
1978  - misc fixes (BZ#5541, BZ#5545, BZ#5553, BZ#5112, BZ#5520)
1979  - getaddrinfo fixes
1980  - signalize EOVERFLOW from sem_post instead of overflowing
1981    the counter
1982  - fix i?86 makecontext
1983  - fix iconv for iso-2022-jp//translit (#397021)
1984
1985* Thu Jan  3 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-3
1986- update to trunk
1987  - fix recognition of interface family (#425768)
1988  - add __THROW to __ctype_{b,tolower,toupper}_loc prototypes
1989
1990* Thu Dec 27 2007 Jakub Jelinek <jakub@redhat.com> 2.7.90-2
1991- update to trunk
1992  - nsswitch fix (#425768)
1993- temporarily enable assert checking
1994
1995* Wed Dec 12 2007 Jakub Jelinek <jakub@redhat.com> 2.7.90-1
1996- update to trunk
1997  - fix __USE_STRING_INLINES on i?86 (#408731, #371711)
1998  - fix *scanf (#388751)
1999
2000* Wed Oct 17 2007 Jakub Jelinek <jakub@redhat.com> 2.7-1
2001- glibc 2.7 release
2002- fix tzfile.c for times after last transition (#333561)
2003- fix sem_post@GLIBC_2.0 on i?86
2004- appease valgrind in libpthread.so initialization
2005- misc fixes (BZ#3425, BZ#5184, BZ#5186)
2006
2007* Mon Oct 15 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-21
2008- fix getgr{name,gid}{,_r} with nscd
2009
2010* Sun Oct 14 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-20
2011- install <bits/error.h> (#330031)
2012- disable -D_FORTIFY_SOURCE{,=2} support (with a warning) for
2013  GCC 3.4.x and earlier(#327641)
2014- pl_PL locale changes (BZ#4098, #242296)
2015- misc fixes (BZ#1140, BZ#3195, BZ#3242, BZ#4359)
2016
2017* Thu Oct 11 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-19
2018- fix <netinet/tcp.h>
2019- simple preprocessor in localedef, fix de_DE collation with it
2020
2021* Wed Oct 10 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-18
2022- add signalfd, eventfd, eventfd_read, eventfd_write
2023- qsort speedups
2024- workaround for cpuid bugs (#324081)
2025- make sure gettext's conversion_lock is initialized even if
2026  program isn't linked against libpthread.so.0, only dlopens it (#321761)
2027- misc fixes (BZ#5112, BZ#5113, BZ#5104, BZ#5063, BZ#5010, BZ#4407,
2028  BZ#3924, BZ#5103, BZ#2633, BZ#181, BZ#73, #321901)
2029
2030* Wed Oct  3 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-17
2031- fix {,v}swprintf with -D_FORTIFY_SOURCE=1 -mlong-double-64 on ppc*/s390*/sparc*
2032- strcoll fixes
2033- misc fixes (BZ#645, BZ#5071)
2034- locale fixes (BZ#4941, #299321, #203364, #196711, #236212)
2035
2036* Sat Sep 29 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-16
2037- misc fixes (BZ#4963, BZ#4972, BZ#5028, BZ#5043, BZ#5058)
2038- improve -D_FORTIFY_SOURCE{,=2} diagnostic through warning/error
2039  attributes
2040- fix wcscpy, wcpcpy, fgetws, fgetws_unlocked, swprintf and vswprintf
2041  fortification inlines
2042- fix a scalability issue with lazy binding in heavily multithreaded
2043  programs
2044
2045* Thu Sep 20 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-15
2046- $5$ (SHA-256) and $6$ (SHA-512) support in crypt
2047  (#228697, #249477, #173834)
2048
2049* Tue Sep 18 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-14
2050- -D_FORTIFY_SOURCE{,=2} support for C++
2051- fortification of fread{,_unlocked}
2052- support *scanf m allocation modifier (%%ms, %%mls, %%mc, ...)
2053- in -std=c99 or -D_XOPEN_SOURCE=600 mode don't recognize
2054  %%as, %%aS and %%a[ as a GNU extension for *scanf
2055- fix splice, vmsplice, tee return value, make them cancellation
2056  points
2057- mq_open checking
2058- use inline function rather than function-like macro
2059  for open{,at}{,64} checking
2060- IFA_F_OPTIMISTIC handling in getaddrinfo (#259681)
2061- fix an ABBA deadlock in ld.so (#284171)
2062- remove sparc{32,64} unwind info from _start and clone
2063
2064* Mon Aug 27 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-13
2065- fix personality on x86_64/ppc/ppc64 (#256281)
2066
2067* Sat Aug 25 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-12
2068- readd x86_64 gettimeofday stuff, initialize it earlier
2069- nis_list fix (#254115)
2070- workaround for bugs in ia64 silly /emul/ia32-linux hack (#253961)
2071- misc fixes (BZ#3924, BZ#4566, BZ#4582, BZ#4588, BZ#4726, BZ#4946,
2072  BZ#4905, BZ#4814, BZ#4925, BZ#4936, BZ#4896, BZ#4937, BZ#3842,
2073  BZ#4554, BZ#4557, BZ#4938)
2074
2075* Fri Aug 17 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-11
2076- remove __strtold_internal and __wcstold_internal from ppc*/s390*/sparc*
2077  *-ldbl.h headers
2078- temporarily backout x86_64 gettimeofday.S changes (#252453)
2079- some further sparc, sparc64 and alpha fixes
2080
2081* Wed Aug 15 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-10
2082- don't open /etc/ld.so.{cache,preload} with O_NOATIME (#252146)
2083- s390{,x}, alpha and sparc fixes
2084- sparcv9 is no longer an aux arch, as we expect
2085  to not build sparc.rpm glibc any longer, only sparcv9.rpm,
2086  sparc64.rpm and new two aux arches sparcv9v.rpm and sparc64v.rpm
2087
2088* Tue Aug 14 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-9
2089- private futex even for mutexes and condvars
2090- some further O_CLOEXEC changes
2091- use vDSO on x86_64 if available
2092- ia64 build fixes (#251983)
2093
2094* Fri Aug 10 2007 Roland McGrath <roland@redhat.com> 2.6.90-8
2095- update to trunk
2096  - fix missing strtold_l export on ppc64
2097
2098* Thu Aug  9 2007 Roland McGrath <roland@redhat.com> 2.6.90-6
2099- update to trunk
2100  - fix local PLT regressions
2101- spec file revamp for new find-debuginfo.sh
2102
2103* Sun Aug  5 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-4
2104- fix librt.so and librtkaio.so on ppc32, so that it is not using
2105  bss PLT
2106
2107* Sat Aug  4 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-3
2108- fix open{,at}{,64} macro for -pedantic (#250897)
2109- add transliteration for l with stroke (#250492)
2110- fix strtod ("-0", NULL)
2111- update License tag
2112
2113* Wed Aug  1 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-2
2114- make aux-cache purely optional performance optimization in ldconfig,
2115  don't issue any errors if it can't be created (#250430)
2116- remove override_headers hack, BuildRequire >= 2.6.22 kernel-headers
2117  and rely on its content
2118
2119* Tue Jul 31 2007 Jakub Jelinek <jakub@redhat.com> 2.6.90-1
2120- update to trunk
2121  - private futex optimizations
2122  - open{,at}{,64} argument checking
2123- ldconfig speedups
2124
2125* Sun Jul  8 2007 Jakub Jelinek <jakub@redhat.com> 2.6-4
2126- filter <built-in> pseudo-files from debuginfo source lists (#245714)
2127- fix sscanf when errno is EINTR before the call (BZ#4745)
2128- save/restore errno around reading /etc/default/nss (BZ#4702)
2129- fix LD_HWCAP_MASK handling
2130- disable workaround for #210748, instead backport
2131  ld.so locking fixes from the trunk (#235026)
2132- new x86_64 memcpy
2133- don't write uninitialized padding bytes to nscd socket
2134- fix dl{,v}sym, dl_iterate_phdr and dlopen if some library is
2135  mapped into ld.so's inter-segment hole on x86_64 (#245035, #244545)
2136- fix LD_AUDIT=a:b program (#180432)
2137- don't crash on pseudo-zero long double values passed to
2138  *printf on i?86/x86_64/ia64 (BZ#4586)
2139- fix *printf %%La and strtold with some hexadecimal floating point
2140  constants on ppc/ppc64
2141- fix nextafterl on ppc/ppc64
2142- fix sem_timedwait on i?86 and x86_64
2143
2144* Thu May 24 2007 Jakub Jelinek <jakub@redhat.com> 2.6-3
2145- don't use %%config(missingok) for locale-archive.tmpl,
2146  instead of removing it altogether truncate it to zero
2147  size (#240697)
2148- add a workaround for #210748
2149
2150* Mon May 21 2007 Jakub Jelinek <jakub@redhat.com> 2.6-2
2151- restore malloc_set_state backwards compatibility (#239344)
2152- fix epoll_pwait (BZ#4525)
2153- fix printf with unknown format spec or positional arguments
2154  and large width and/or precision (BZ#4514)
2155- robust mutexes fix (BZ#4512)
2156
2157* Tue May 15 2007 Roland McGrath <roland@redhat.com> 2.6-1
2158- glibc 2.6 release
2159
2160* Fri May 11 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-24
2161- utimensat, futimens and lutimes support
2162
2163* Thu May 10 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-23
2164- use madvise MADV_DONTNEED in malloc
2165- fix ia64 feraiseexcept
2166- fix s390{,x} feholdexcept (BZ#3427)
2167- ppc fenv fixes
2168- make fdatasync a cancellation point (BZ#4465)
2169- fix *printf for huge precisions with wide char code and multi-byte
2170  strings
2171- fix dladdr (#232224, BZ#4131)
2172
2173* Fri May  4 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-22
2174- add transliteration for <U2044> (BZ#3213)
2175- fix *scanf with %%f on hexadecimal floats without exponent (BZ#4342)
2176- fix *printf with very large precisions for %%s (#238406, BZ#4438)
2177- fix inet_ntop size checking for AF_INET (BZ#4439)
2178- for *printf %%e avoid 1.000e-00, for exponent 0 always use + sign (#238431)
2179- fix a regression introduced in #223467 changes
2180- gethostby*_r alignment fixes (BZ#4381)
2181- fix ifaddrs error handling
2182
2183* Mon Apr 16 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-21
2184- don't include individual locale files in glibc-common,
2185  rather include prepared locale-archive template and let
2186  build-locale-archive create locale-archive from the template
2187  and any user supplied /usr/lib/locale/*_* directories,
2188  then unlink the locale-archive template - this should save
2189  > 80MB of glibc-common occupied disk space
2190- fix _XOPEN_VERSION (BZ#4364)
2191- fix printf with %%g and values tiny bit smaller than 1.e-4 (#235864,
2192  BZ#4362)
2193- fix NIS+ __nisfind_server (#235229)
2194
2195* Sat Mar 31 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-20
2196- assorted NIS+ speedups (#223467)
2197- fix HAVE_LIBCAP configure detection (#178934)
2198- remove %%{_prefix}/sbin/rpcinfo from glibc-common (#228894)
2199- nexttoward*/nextafter* fixes (BZ#3306)
2200- feholdexcept/feupdateenv fixes (BZ#3427)
2201- speed up fnmatch with two or more * in the pattern
2202
2203* Sat Mar 17 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-19
2204- fix power6 libm compat symbols on ppc32 (#232633)
2205- fix child refcntr in NPTL fork (#230198)
2206- fix ifaddrs with many net devices on > 4KB page size arches (#230151)
2207- fix pthread_mutex_timedlock on x86_64 (#228103)
2208- various fixes (BZ#3919, BZ#4101, BZ#4130, BZ#4181, BZ#4069, BZ#3458)
2209
2210* Wed Feb 21 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-18
2211- fix nftw with FTW_CHDIR on / (BZ#4076)
2212- nscd fixes (BZ#4074)
2213- fix fmod{,f,l} on i?86 (BZ#3325)
2214- support localized digits for fp values in *scanf (BZ#2211)
2215- namespaces fixes (BZ#2633)
2216- fix euidaccess (BZ#3842)
2217- glob fixes (BZ#3996)
2218- assorted locale data fixes (BZ#1430, BZ#672, BZ#58, BZ#3156,
2219  BZ#2692, BZ#2648, BZ#3363, BZ#3334, BZ#3326, BZ#3322, BZ#3995,
2220  BZ#3885, BZ#3884, BZ#3851)
2221
2222* Sun Feb 11 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-17
2223- RFC2671 support in resolver (#205842)
2224- fix strptime (BZ#3944)
2225- fix regcomp with REG_NEWLINE (BZ#3957)
2226- fix pthread_mutex_timedlock on x86_64 (#228103)
2227
2228* Fri Feb  2 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-16
2229- add strerror_l
2230- fix application crashes when doing NSS lookups through nscd
2231  mmapped databases and nscd decides to start garbage collection
2232  during the lookups (#219145, #225315)
2233- fix %%0lld printing of 0LL on 32-bit architectures (BZ#3902)
2234- ignore errors from install-info in glibc-devel scriptlets
2235  (#223691)
2236
2237* Wed Jan 17 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-15
2238- fix NIS getservbyname when proto is NULL
2239- fix nss_compat +group handling (#220658)
2240- cache services in nscd
2241- fix double free in fts_close (#222089)
2242- fix vfork+execvp memory leak (#221187)
2243- soft-fp fixes (BZ#2749)
2244- further strtod fixes (BZ#3855)
2245- make sure pthread_kill doesn't return EINVAL even if
2246  the target thread exits in between pthread_kill ESRCH check
2247  and the actual tgkill syscall (#220420)
2248- fix ABBA deadlock possibility in ld.so scope locking code
2249
2250* Tue Dec 19 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-14
2251- fix {j,m}rand48{,_r} on 64-bit arches (BZ#3747)
2252- handle power6x AT_PLATFORM (#216970)
2253- fix a race condition in getXXbyYY_r (#219145)
2254- fix tst-pselect testcase
2255
2256* Thu Dec 14 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-13
2257- fix setcontext on ppc32 (#219107)
2258- fix wide stdio after setvbuf (#217064, BZ#2337)
2259- handle relatime mount option in statvfs
2260- revert i?86/x86_64 clone CFI temporarily
2261
2262* Sun Dec 10 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-12
2263- fix hasmntopt (#218802)
2264- fix setusershell and getusershell (#218782)
2265- strtod fixes (BZ#3664, BZ#3673, BZ#3674)
2266- fix memusage with realloc (x, 0)
2267
2268* Tue Dec  5 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-11
2269- allow suid apps to setenv NIS_PATH and influence through that
2270  nis_list and nis_lookup (#209155)
2271- fix ttyname and ttyname_r with invalid file descriptor (#218276)
2272- cs_CZ LC_TIME fixes (#218438)
2273- fix build with 2.6.19+ headers (#217723)
2274
2275* Fri Dec  1 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-10
2276- fix x86-64 restore_rt unwind info
2277
2278* Thu Nov 30 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-9
2279- fix last svc_run change (#217850)
2280- on ppc64 build __libc_start_main without unwind info,
2281  as it breaks MD_FROB_UPDATE_CONTEXT (#217729, #217775; in the
2282  future that could be fixable just by providing .cfi_undefined r2
2283  in __libc_start_main instead)
2284- add unwind info for x86-64 restore_rt signal return landing pad
2285  (#217087)
2286- add power6x subdir to /%%{_lib}/ and /%%{_lib}/rtkaio/,
2287  link all libs from ../power6/* into them
2288
2289* Tue Nov 28 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-8
2290- fix svc_run (#216834, BZ#3559)
2291- add -fasynchronous-unwind-tables to CFLAGS (#216518)
2292- make sure there is consistent timestamp for /etc/ld.so.conf,
2293  /etc/localtime and /etc/rpc between multilib glibc rpms
2294
2295* Mon Nov 20 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-7
2296- handle IPv6 addresses in /etc/hosts that are mappable to
2297  IPv4 addresses in IPv4 host lookups (#215283)
2298- fix :include: /etc/alias handling (#215572)
2299- handle new tzdata format to cope with year > 2037 transitions
2300  on 64-bit architectures
2301
2302* Fri Nov 10 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-6
2303- fix strxfrm fix
2304- fix i?86 floor and ceil inlines (BZ#3451)
2305
2306* Thu Nov  9 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-5
2307- fix sysconf (_SC_LEVEL{2,3}_CACHE_SIZE) on Intel Core Duo
2308  CPUs
2309- fix libthread_db.so on TLS_DTV_AT_TP architectures
2310- fix --inhibit-rpath (#214569)
2311- fix _r_debug content when prelinked ld.so executes
2312  a program as its argument
2313- fix strxfrm
2314- powerpc-cpu add-on updates
2315
2316* Fri Nov  3 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-4
2317- fix atexit backwards compatibility (#213388)
2318- add mai_IN locale (#213415)
2319- remove bogus %%{_libdir}/librt.so.1 symlink (#213555)
2320- fix memusage (#213656)
2321- change libc.info category (#209493)
2322
2323* Sun Oct 29 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-3
2324- fix suid/sgid binaries on i?86/x86_64 (#212723)
2325
2326* Fri Oct 27 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-2
2327- fix ia64 build
2328- don't call _dl_close outside of dl_load_lock critical section
2329  if dlopen failed (BZ#3426)
2330- add rtld scope locking (#211133)
2331
2332* Wed Oct 25 2006 Jakub Jelinek <jakub@redhat.com> 2.5.90-1
2333- fix i?86 6 argument syscalls (e.g. splice)
2334- fix rtld minimal realloc (BZ#3352)
2335- fix RFC3484 getaddrinfo sorting according to rules 4 and 7 (BZ#3369)
2336- fix xdrmem_setpos (#211452)
2337- bump __GLIBC_MINOR__
2338- increase PTHREAD_STACK_MIN on ppc{,64} to 128K to allow
2339  64K pagesize kernels (#209877)
2340- speed up initgroups on NIS+ (#208203)
2341
2342* Mon Oct  2 2006 Jakub Jelinek <jakub@redhat.com> 2.5-2
2343- fix nscd database growing (#207928)
2344- bypass prelinking when LD_DYNAMIC_WEAK=1 is in the environment
2345
2346* Fri Sep 29 2006 Jakub Jelinek <jakub@redhat.com> 2.5-1
2347- glibc 2.5 release
2348
2349* Wed Sep 27 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-36
2350- rebuilt with gcc-4.1.1-26 to fix unwind info
2351
2352* Mon Sep 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-35
2353- fix glob with large number of matches (BZ#3253)
2354- fix fchownat on kernels that don't support that syscall (BZ#3252)
2355- fix lrintl on s390{,64}
2356
2357* Sat Sep 23 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-34
2358- fix ppc{32,64} longjmp (BZ#3225)
2359- fix user visible spelling errors (BZ#3137)
2360- fix l{,l}rint{,f,l} around zero (BZ#2592)
2361- avoid stack trampoline in s390{,x} makecontext
2362
2363* Fri Sep 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-33
2364- fix dlclose (#206639)
2365- don't load platform optimized libraries if kernel doesn't set
2366  AT_PLATFORM
2367- fix ppc{32,64} libSegFault.so
2368- use -mtune=generic even for glibc-devel.i386 (#206437)
2369- fix /%%{_lib}/librt.so.1 symlink
2370
2371* Fri Sep 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-32
2372- on ppc* use just AT_PLATFORM and altivec AT_HWCAP bit for library selection
2373- fix lrintl and lroundl on ppc{,64}
2374- use hidden visibility on fstatat{,64} and mknodat in libc_nonshared.a
2375
2376* Sun Sep 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-31
2377- fix pthread_cond_{,timed}wait cancellation (BZ#3123)
2378- fix lrint on ppc32 (BZ#3155)
2379- fix malloc allocating more than half of address space (BZ#2775)
2380- fix mktime on 32-bit arches a few years after 2038 (BZ#2821)
2381
2382* Thu Sep  7 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-30
2383- add librtkaio, to use it add /%%{lib}/rtkaio to your
2384  LD_LIBRARY_PATH or /etc/ld.so.conf
2385- fix or_IN February name (#204730)
2386- fix pthread_create called from cancellation handlers (BZ#3124)
2387- fix regex case insensitive searches with characters where upper
2388  and lower case multibyte representations have different length
2389  (e.g. I and dotless i, #202991)
2390
2391* Tue Sep  5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-29
2392- randomize resolver query ids before use instead after use (#205113)
2393- fix resolver symver checking with DT_GNU_HASH (#204909)
2394- put .hash section in glibc libraries at the end of RO segment
2395  when .gnu.hash is present
2396
2397* Thu Aug 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-28
2398- another malloc doubly linked list corruption problem fix (#204653)
2399
2400* Thu Aug 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-27
2401- allow $LIB and $PLATFORM in dlopen parameters even in suid/sgid (#204399)
2402- handle $LIB/$PLATFORM in LD_LIBRARY_PATH
2403- fix splice prototype (#204530)
2404
2405* Mon Aug 28 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-26
2406- real fix for the doubly linked list corruption problem
2407- try harder in realloc to allocate memory (BZ#2684)
2408- fix getnameinfo error reporting (#204122)
2409- make localedef more robust on invalid input (#203728)
2410
2411* Fri Aug 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-25
2412- temporarily back out code to limit number of unsorted block
2413  sort iterations (#203735, #204027)
2414- handle PLT symbols in dladdr properly (BZ#2683)
2415- avoid malloc infinite looping for allocations larger than
2416  the system can allocate (#203915)
2417
2418* Tue Aug 22 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-23
2419- malloc fixes, especially for 32-bit arches (#202309)
2420- further *_IN locale fixes (#200230)
2421- fix get{serv,rpc}ent{,_r} if NIS map is empty (#203237)
2422- fix /usr/bin/iconv (#203400)
2423
2424* Fri Aug 18 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-22
2425- rebuilt with latest binutils to pick up 64K -z commonpagesize
2426  on ppc/ppc64 (#203001)
2427
2428* Tue Aug 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-21
2429- if some test gets stuck, kill the tee process after make check
2430  finishes
2431- build with -mtune=generic on i686 and x86_64
2432
2433* Tue Aug 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-20
2434- PTHREAD_PRIO_PROTECT support
2435- fix errno if nice() fails (#201826)
2436
2437* Thu Aug 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-19
2438- adaptive malloc brk/mmap threshold
2439- fix fchownat to use kernel syscall (if available) on many arches (#201870)
2440- only define O_DIRECT with -D_GNU_SOURCE on ia64 to match all
2441  other arches (#201748)
2442
2443* Mon Aug  7 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-18
2444- NIS+ fixes
2445- fix memusage and xtrace scripts (#200736)
2446- redirect /sbin/service sshd condrestart std{out,err} to /dev/null
2447  when executed from glibc_post_upgrade
2448
2449* Wed Aug  2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-17
2450- typo fix for the dladdr patch
2451- build i?86 glibc with -mno-tls-direct-seg-refs (#200469)
2452
2453* Wed Aug  2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-16
2454- fix dladdr on binaries/libraries with only DT_GNU_HASH and no
2455  DT_HASH (#200635)
2456- fix early timeout of initgroups data in nscd (#173019)
2457- add am/pm display to es_PE and es_NI locales (#167101)
2458- fix nss_compat failures when nis/nis+ unavailable (#192072)
2459
2460* Mon Jul 31 2006 Roland McGrath <roland@redhat.com> 2.4.90-15
2461- fix missing destructor calls in dlclose (#197932)
2462- enable transliteration support in all locales (#196713)
2463- disallow RTLD_GLOBAL flag for dlmopen in secondary namespaces (#197462)
2464- PI mutex support
2465
2466* Mon Jul 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-13
2467- DT_GNU_HASH support
2468
2469* Fri Jun 30 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-12
2470- buildrequire gettext
2471- enable fstatat64/newfstatat syscalls even on ppc*/s390*/ia64 (#196494)
2472- fix out of memory behavior in gettext (#194321)
2473- fix regex on multi-byte non-UTF-8 charsets (#193873)
2474- minor NIS+ fixes (#190803)
2475- don't use cancellable calls in posix_spawn* and only set{u,g}id
2476  current thread if requested (#193631)
2477
2478* Wed May 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-11
2479- don't exit from nscd -i <database> before the database is
2480  actually invalidated, add locking to prune_cache (#191464)
2481- build glibc-devel.i386 static libraries with
2482  -mno-tls-direct-seg-refs -DNO_TLS_DIRECT_SEG_REFS
2483- RFC3542 support (advanced API for IPv6; #191001, BZ##2693)
2484
2485* Wed May 24 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-10
2486- on i686 make glibc owner of /lib/i686 directory (#192597)
2487- search parent NIS+ domains (#190803)
2488
2489* Sun May 21 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-9
2490- update from CVS
2491  - big NIS+ changes
2492
2493* Fri May 19 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-8
2494- update from CVS
2495  - fix nss_compat when SETENT_BATCH_READ=TRUE is in /etc/default/nss
2496  - fix RFC3484 precedence table for site-local and ULA addresses (#188364)
2497  - fix a sunrpc memory leak
2498
2499* Thu May 11 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-7
2500- update from CVS
2501  - fix tcgetattr (#177965)
2502  - fix <sys/queue.h> (#191264)
2503
2504* Fri May  5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-6
2505- update from CVS
2506- rebuilt using fixed rpm
2507
2508* Fri May  5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-5
2509- update from CVS
2510  - some NIS+ fixes
2511  - allow overriding rfc3484 address sorting tables for getaddrinfo
2512    through /etc/gai.conf (sample config file included in %%doc directory)
2513
2514* Mon May  1 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-4
2515- update from CVS
2516  - SETENT_BATCH_READ /etc/default/nss option for speeding up
2517    some usages of NIS+ (#188246)
2518  - move debug state change notification (#179208)
2519  - fix ldd script if one of the dynamic linkers is not installed (#190259)
2520
2521* Thu Apr 27 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-3
2522- update from CVS
2523  - fix a typo in nscd.conf (#190085)
2524  - fix handling of SIGHUP in nscd when some caches are disabled (#189978)
2525  - make nscd paranoia mode working with non-root server-user (#189779)
2526
2527* Wed Apr 26 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-2
2528- update from CVS
2529  - fix getaddrinfo (#190002)
2530  - add auto-propagate nscd.conf options (#177154)
2531  - fix nscd auditing (#169148)
2532
2533* Tue Apr 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-1
2534- update from CVS
2535
2536* Mon Apr 24 2006 Jakub Jelinek <jakub@redhat.com> 2.4-6
2537- update from CVS
2538  - NIS+ fixes
2539  - don't segfault on too large argp key values (#189545)
2540  - getaddrinfo fixes for RFC3484 (#188364)
2541
2542* Tue Mar 28 2006 Jakub Jelinek <jakub@redhat.com> 2.4-5
2543- update from CVS
2544  - pshared robust mutex support
2545  - fix btowc and bwtoc in C++ (#186410)
2546  - fix NIS+ (#186592)
2547  - don't declare __wcsto*l_internal for non-GCC or if not -O1+ (#185667)
2548- don't mention nscd failures on 2.0 kernels (#185335)
2549
2550* Tue Mar  7 2006 Roland McGrath <roland@redhat.com> 2.4-4
2551- back up %%{ix86} gdb conflicts to < 6.3.0.0-1.111
2552
2553* Tue Mar  7 2006 Jakub Jelinek <jakub@redhat.com> 2.4-3
2554- really fix rintl on ppc64
2555
2556* Tue Mar  7 2006 Jakub Jelinek <jakub@redhat.com> 2.4-2
2557- accurate unwind info for lowlevellock.h stubs on %%{ix86}
2558- fix ppc/ppc64 ceill, floorl, rintl, roundl and truncl (BZ#2423)
2559
2560* Mon Mar  6 2006 Jakub Jelinek <jakub@redhat.com> 2.4-1
2561- update from CVS
2562  - glibc 2.4 release
2563
2564* Mon Mar  6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.91-2
2565- update from CVS
2566  - fix sYSMALLOc for MALLOC_ALIGNMENT > 2 * SIZE_SZ (#183895)
2567  - revert ppc32 malloc alignment patch, it breaks malloc_set_state
2568    and needs some further thoughts and time (#183894)
2569- provide accurate unwind info for lowlevellock.h stubs on x86_64
2570
2571* Thu Mar  2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.91-1
2572- update from CVS
2573  - fixes for various arches
2574- ensure malloc returns pointers aligned to at least
2575  MIN (2 * sizeof (size_t), __alignof__ (long double))
2576  (only on ppc32 this has not been the case lately with addition
2577   of 128-bit long double, #182742)
2578
2579* Wed Mar  1 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-39
2580- update from CVS
2581
2582* Fri Feb 17 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-38
2583- update from CVS
2584  - robust mutexes rewrite
2585
2586* Mon Feb 13 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-37
2587- update from CVS
2588  - *at fixes
2589  - unshare syscall wrapper
2590
2591* Sat Feb  4 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-36
2592- update from CVS
2593  - fix frequency setting for ITIMER_PROF (#179938, BZ#2268)
2594  - fix powerpc inline fegetround ()
2595  - fix nptl_db (#179946)
2596
2597* Fri Feb  3 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-35
2598- update from CVS
2599  - handle futimesat (fd, NULL, tvp) as futimes (fd, tvp)
2600- fix <stdlib.h> q{e,f,g}cvt{,_r} for -mlong-double-64
2601
2602* Thu Feb  2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-34
2603- fix <math.h> with C++ and -mlong-double-64 (#179742)
2604- add nexttowardl redirect for -mlong-double-64
2605
2606* Thu Feb  2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-33
2607- update from CVS
2608  - long double support fixes
2609
2610* Wed Feb  1 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-32
2611- update from CVS
2612  - 128-bit long double fixes for ppc{,64}, s390{,x} and sparc{,v9},
2613    alpha 128-bit long double support
2614- add inotify syscall numbers to the override <asm/unistd.h> headers
2615  (#179366)
2616
2617* Mon Jan 30 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-31
2618- update from CVS
2619  - 128-bit long double on ppc, ppc64, s390, s390x and sparc{,v9}
2620- add some new syscall numbers to the override <asm/unistd.h>
2621  headers
2622
2623* Mon Jan  9 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-30
2624- update from CVS
2625  - <pthread.h> initializer fixes for -std=c{8,9}9 on 32-bit
2626    arches
2627- avoid writable .rodata (#177121)
2628
2629* Fri Jan  6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-29
2630- update from CVS
2631  - make pthread_mutex_t an unnamed union again, as it affects
2632    libstdc++ ABI mangling
2633
2634* Fri Jan  6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-28
2635- update from CVS
2636  - make aio_suspend interruptible by signals (#171968)
2637
2638* Fri Jan  6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-27
2639- only rely on d_type in 32-bit getdents on s390 for 2.6.11+
2640
2641* Wed Jan  4 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-26
2642- update from CVS
2643  - for newly linked lio_listio* callers, send per request
2644    notifications (#170116)
2645  - fixup nscd -S option removal changes (#176860)
2646  - remove nonnull attribute from ctermid (#176753)
2647  - fix PTHREAD_*_INITIALIZER{,_NP} on 64-bit arches
2648  - SPARC NPTL support for pre-v9 CPUs
2649- drop support for 2.4.xx and < 2.6.9 kernels
2650
2651* Mon Jan  2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-25
2652- update from CVS
2653  - s390{,x} and sparc{,64} pointer mangling fixes
2654- install a sanitized LinuxThreads <bits/libc-lock.h>
2655
2656* Mon Jan  2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-24
2657- update from CVS
2658  - nscd audit changes (#174422)
2659  - ppc{32,64} vDSO support and ppc32 hp-timing
2660
2661* Tue Dec 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-23
2662- update from CVS
2663  - robust mutexes
2664- fix transliteration segfaults (#176573, #176583)
2665- ignore prelink temporaries in ldconfig (#176570)
2666
2667* Wed Dec 21 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-22
2668- update from CVS
2669  - minor fts fixes
2670- revert broken _Pragma () workaround
2671- fix ldconfig on bi-arch architectures (#176316)
2672
2673* Tue Dec 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-21
2674- update from CVS
2675  - fix pointer (de)mangling in gconv_cache.c
2676
2677* Tue Dec 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-20
2678- update from CVS
2679  - time ((void *) 1) should segfault, not return -EFAULT (#174856, BZ#1952)
2680  - fix errlist generation
2681- update ulps for GCC 4.1 on IA-64
2682
2683* Mon Dec 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-19
2684- update from CVS
2685  - sysdeps/generic reorg
2686  - setjmp/longjmp jump pointer mangling
2687- rebuilt with GCC 4.1-RH prerelease, worked around broken _Pragma ()
2688  handling in it
2689- remove glibc-profile subpackage
2690- use non-PLT calls for malloc/free/realloc/memalign invocations in
2691  mtrace and mcheck hooks (#175261)
2692- setjmp/longjmp jump pointer mangling on ppc{,64}/ia64/s390{,x}
2693
2694* Sat Nov 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-18
2695- update from CVS
2696  - change <sys/stat.h> for broken apps that #define const /**/,
2697    handle non-GCC compilers
2698  - fix ppc{32,64} strncmp (BZ#1877, #173643, IT#83510)
2699  - provide shmatt_t typedef in ia64 <sys/shm.h (#173680)
2700  - support 2nd arg to futimesat being NULL (#173581)
2701
2702* Wed Nov 16 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-17
2703- update from CVS
2704  - fix <sys/stat.h> in C++
2705  - {fstat,fchown,rename,unlink}at fixes
2706  - epoll_wait is now a cancellation point
2707
2708* Tue Nov 15 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-16
2709- update from CVS
2710- make sure waitid syscall is used on ppc*/s390*
2711
2712* Thu Oct 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-15
2713- update from CVS
2714  - be permissive in %%n check because of kernel bug #165351 (#171240)
2715  - don't misalign stack in pthread_once on x86_64 (#170786, IT#81521)
2716  - many locale fixes
2717
2718* Mon Oct 10 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-14
2719- update from CVS
2720  - fix malloc bug after fork introduced in the last update
2721  - fix getent hosts IP for IPv4 IPs (#169831)
2722
2723* Mon Oct  3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-13
2724- update from CVS
2725  - fix setuid etc. hangs if some thread exits during the call (#167766)
2726  - fix innetgr memory leak (#169051)
2727  - support > 2GB nscd log files (#168851)
2728  - too many other changes to list here
2729- include errno in nscd message if audit_open failed (#169148)
2730
2731* Mon Sep 12 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-12
2732- update from CVS
2733  - netgrp handling fixes (#167728)
2734  - fix memory leak in setlocale (BZ#1318)
2735  - fix hwcaps computation
2736  - several regex portability improvements (#167019)
2737  - hypotf fix
2738  - fix *printf return code if underlying write fails (BZ#1146)
2739  - PPC64 dl{,v}sym fixes for new ABI .opd symbols
2740- fix calloc with MALLOC_PERTURB_ in environment on 64-bit architectures
2741  (#166719)
2742- source /etc/sysconfig/nscd (if it exists) in /etc/rc.d/init.d/nscd
2743  (#167083)
2744- add %%triggerin for tzdata to glibc-common, so that tzdata updates
2745  update /etc/localtime and /var/spool/postfix/etc/localtime if they
2746  exist (#167787)
2747
2748* Mon Aug 29 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-11
2749- FUTEX_WAKE_OP support to speed up pthread_cond_signal
2750
2751* Wed Aug 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-10
2752- update from CVS
2753  - fix growing of nscd persistent database (BZ#1204)
2754  - fix _FORTIFY_SOURCE mbstowcs and wcstombs if destination size
2755    is known at compile time, but length argument is not
2756
2757* Mon Aug 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-9
2758- update from CVS
2759  - fix resolving over TCP (#161181, #165802)
2760  - on ia64 don't abort on unhandled math function exception codes
2761    (#165693)
2762
2763* Mon Aug  8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-8
2764- update from CVS
2765  - nscd persistent database verifier (#164001)
2766  - cleanup _FORTIFY_SOURCE bits/*.h headers (#165000)
2767  - handle EINTR in sigwait properly
2768- make sure poor man's stack guard randomization keeps first
2769  byte 0 even on big-endian 32-bit arches
2770- fix {elf,nptl}/tst-stackguard1
2771- obsolete linuxthreads-devel in glibc-devel
2772
2773* Fri Jul 29 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-7
2774- update from CVS
2775- do some poor man's stack guard randomization even without
2776  the costly --enable-stackguard-randomization
2777- rebuilt with new GCC to make it use -msecure-plt on PPC32
2778
2779* Mon Jul 25 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-6
2780- update from CVS
2781  - fix execvp if PATH is not in environment and the call is going
2782    to fail (BZ#1125)
2783  - another bits/wchar2.h fix (#163990)
2784
2785* Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-5
2786- update from CVS
2787  - fix stubs.h generation
2788- don't use _G_va_list in bits/wchar2.h
2789
2790* Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-4
2791- update from CVS
2792  - make sure bits/wchar2.h header is installed
2793  - fix __getgroups_chk return type
2794
2795* Thu Jul 21 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-3
2796- update from CVS
2797  - make sure nscd cmsg buffers aren't misaligned, handle EINTR from
2798    poll when contacting nscd more gracefully
2799  - remove malloc attribute from posix_memalign
2800  - correctly size nscd buffer for grpcache key (#163538)
2801  - fix atan2f
2802  - fix error memory leaks
2803  - some more _FORTIFY_SOURCE protection
2804
2805* Fri Jul  8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-2
2806- update from CVS
2807  - ia64 stack protector support
2808  - handle DNS referral results as server errors (#162625)
2809  - ctan{,h}{,f,l} fixes (#160759)
2810  - pass argc, argv and envp also to executable's *ni_array
2811    functions (BZ#974)
2812  - add ellipsis to clone prototype (#161593)
2813  - fix glibc-profile (#162601)
2814  - nss_compat fixes
2815- use sysdeps/generic version of <bits/stdio-lock.h> in installed
2816  headers instead of NPTL version (#162634)
2817
2818* Mon Jun 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-1
2819- update from CVS
2820  - stack protector support
2821  - fix xdr_{,u_}{longlong_t,hyper} on 64-bit arches (#161583)
2822- enable @GLIBC_2.4 symbols
2823- remove linuxthreads
2824
2825* Mon Jun 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-11
2826- update from CVS
2827  - PPC32 -msecure-plt support
2828  - support classes keyword in /etc/hesiod.conf (#150350)
2829  - add RLIMIT_NICE and RLIMIT_RTPRIO to <sys/resources.h> (#157049)
2830  - decrease number of .plt relocations in libc.so
2831  - use -laudit in nscd (#159217)
2832  - handle big amounts of networking interfaces in getifaddrs/if_nameindex
2833    (#159399)
2834  - fix pa_IN locale's am_pm (#158715, BZ#622)
2835  - fix debugging of PIEs
2836
2837* Mon May 30 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-10
2838- fix LD_ASSUME_KERNEL (since 2.3.5-8 GLRO(dl_osversion)
2839  has been always overwritten with the version of currently
2840  running kernel)
2841- remove linuxthreads man pages other than those covered in
2842  3p section, as 3p man pages are far better quality and describe
2843  POSIX behaviour that NPTL implements (#159084)
2844
2845* Tue May 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-9
2846- update from CVS
2847  - increase bindresvport's LOWPORT to 512, apparently some
2848    broken daemons don't think 0 .. 511 ports are reserved
2849
2850* Mon May 23 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-8
2851- update from CVS
2852  - fix kernel version check in ld.so
2853- fix sendfile{,64} prototypes (BZ#961)
2854- try more ports in bindresvport if all 600..1023 are
2855  used, don't use priviledged ports when talking to portmap
2856  (#141773)
2857
2858* Fri May 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-7
2859- update from CVS
2860  - make regexec thread safe (BZ#934)
2861- fix statically linked programs on i?86, x86_64, s390* and
2862  sparc* (#158027)
2863- fix IBM939 iconv module (BZ#955)
2864
2865* Wed May  4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-6
2866- update from CVS
2867  - fix cancellation on i?86
2868  - add call frame information to i?86 assembly
2869
2870* Tue May  3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-5
2871- update from CVS
2872  - add some more UTF-8 locales (#156115)
2873- clean up /lib64/tls instead of /lib/tls on x86-64, s390x and
2874  ppc64 in glibc_post_upgrade (#156656)
2875- fix posix_fallocate{,64} (#156289)
2876
2877* Thu Apr 28 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-4
2878- update from CVS
2879  - fix nscd cache pruning (#150748)
2880
2881* Wed Apr 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-3
2882- update from CVS
2883  - fix linuxthreads clocks
2884- put xen libs into the glibc-2*.i686 package instead of a separate one
2885- fix librt.so symlink in linuxthreads-devel
2886- do not include linuxthreads-devel on %%{auxarches},
2887  just on the base architectures
2888
2889* Wed Apr 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-2
2890- update from CVS
2891  - with MALLOC_CHECK_=N N>0 (#153003)
2892  - fix recursive dlclose (#154641)
2893  - handle %%z in strptime (#154804)
2894  - automatically append /%%{_lib}/obsolete/linuxthreads/
2895    to standard library search path if LD_ASSUME_KERNEL=N N <= 2.4.19
2896    or for glibc 2.0 binaries (or broken ones that don't use errno/h_errno
2897    properly).  Warning: all those will stop working when LinuxThreads
2898    is finally nuked, which is not very far away
2899  - remove nonnull attribute from acct prototype (BZ#877)
2900  - kernel CPU clocks support
2901  - fix *scanf in locales with multi-byte decimal point
2902
2903* Wed Apr 27 2005 Roland McGrath <roland@redhat.com>
2904- glibc-xen subpackage for i686
2905
2906* Fri Apr 15 2005 Roland McGrath <roland@redhat.com> 2.3.5-1
2907- update from CVS
2908  - fix execvp regression (BZ#851)
2909  - ia64 libm updates
2910  - sparc updates
2911  - fix initstate{,_r}/strfry (#154504)
2912  - grok PT_NOTE in vDSO for kernel version and extra hwcap dirs,
2913    support "hwcap" keyword in ld.so.conf files
2914
2915* Mon Apr  4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-21
2916- update from CVS
2917  - fix xdr_rmtcall_args on 64-bit arches (#151686)
2918- fix <pthread.h> and <bits/libc-lock.h> with -std=c89 -fexceptions (#153774)
2919
2920* Mon Apr  4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-20
2921- move LinuxThreads libraries to /%%{_lib}/obsolete/linuxthreads/
2922  and NPTL libraries to /%%{_lib}.  To run a program against LinuxThreads,
2923  LD_ASSUME_KERNEL=2.4.xx LD_LIBRARY_PATH=/%%{_lib}/obsolete/linuxthreads/
2924  is now needed
2925- bzip2 ChangeLog* files instead of gzipping them
2926
2927* Sat Apr  2 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-19
2928- update from CVS
2929  - fix nextafterl and several other libm routines on ia64
2930  - fix initgroups (BZ#661)
2931- kill nptl-devel subpackage, add linuxthreads-devel,
2932  compile and link by default against NPTL and only with
2933  -I/usr/include/linuxthreads -L/usr/%%{_lib}/linuxthreads
2934  against LinuxThreads
2935- package /usr/lib/debug/%%{_lib}/tls/i{5,6}86 symlinks in
2936  i386 glibc-debuginfo
2937- limit number of ChangeLog* files in glibc-common %%doc
2938  to last 2.5 years of changes only to save space
2939
2940* Fri Mar 25 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-18
2941- fix build on 64-bit arches with new GCC
2942
2943* Thu Mar 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-17
2944- update from CVS
2945  - fix LD_AUDIT in LinuxThreads ld.so
2946  - fix calloc with M_PERTURB
2947  - fix error handling in pthread_create with PTHREAD_EXPLICIT_SCHED
2948    on ppc*/ia64/alpha/mips (BZ#801)
2949  - fix a typo in WINDOWS-31J charmap (#151739)
2950  - fix NIS ypprot_err (#151469)
2951
2952* Sun Mar 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-16
2953- fix pread with -D_FILE_OFFSET_BITS=64 (#151573)
2954
2955* Sat Mar 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-15
2956- update from CVS
2957  - better fix for the dlclose bug (#145810, #150414)
2958  - fix regex crash on case insensitive search in zh_CN locale
2959    (#151215)
2960  - fix malloc_trim (BZ#779)
2961  - with -D_FORTIFY_SOURCE=*, avoid defining read and a bunch of others
2962    as function-like macros, there are too many broken programs
2963    out there
2964- add %%dir %%{_prefix}/%%{_lib}/gconv to glibc's file list (#151372)
2965
2966* Sun Mar  6 2005 Roland McGrath <roland@redhat.com> 2.3.4-14
2967- fix bits/socket2.h macro typos
2968
2969* Sat Mar  5 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-12
2970- fix tst-chk{2,3}
2971- fix up AS_NEEDED directive in /usr/%%{_lib}/libc.so
2972- BuildReq binutils >= 2.15.94.0.2-1 for AS_NEEDED, in
2973  glibc-devel Conflict with binutils < 2.15.94.0.2-1
2974
2975* Thu Mar  3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-11
2976- update from CVS
2977  - fix execvp (#149290)
2978  - fix dlclose (#145810)
2979  - clear padding in gconv-modules.cache (#146614, BZ#776)
2980- rebuilt with GCC4
2981- changed __GLIBC_MINOR__ for now back to 3
2982- back out the newly added GLIBC_2.4 *_chk routines, instead
2983  do the checking in macros
2984
2985* Sat Feb 12 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-10
2986- hopefully fix interaction with prelink (#147655)
2987
2988* Fri Feb 11 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-9
2989- update from CVS
2990  - bi-arch <gnu/stubs.h> (BZ#715)
2991
2992* Fri Feb 11 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-8
2993- update from CVS
2994  - bi-arch <gnu/lib-names.h> (BZ#632)
2995  - fix libdl on s390 and maybe other platforms
2996  - fix initstate{,_r} (BZ#710)
2997  - fix <gnu/stubs.h> generation (BZ#157)
2998- define CMSPAR in bits/termios.h (#147533)
2999
3000* Tue Feb  8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-7
3001- update from CVS
3002  - fix TLS handling in linuxthreads
3003
3004* Tue Feb  8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-6
3005- update from CVS
3006  - ld.so auditing
3007  - fix segfault if chrooted app attempts to dlopen a library
3008    and no standard library directory exists at all (#147067, #144303)
3009  - fix initgroups when nscd is running, but has group caching disabled
3010    (#146588)
3011  - fix pthread_key_{create,destroy} in LinuxThreads when pthread_create
3012    has not been called yet (#146710)
3013  - fix ppc64 swapcontext and setcontext (#146736, BZ#700)
3014  - service nscd cosmetic fixes (#146776)
3015  - fix IA-32 and x86-64 stack alignment in DSO constructors (#145689)
3016  - fix zdump -v segfaults on x86-64 (#146210)
3017  - avoid calling sigaction (SIGPIPE, ...) inside syslog (#146021, IT#56686)
3018  - fix errno values for futimes (BZ#633)
3019  - unconditionally include <features.h> in malloc.h (BZ#650)
3020  - change regex \B handling to match old GNU regex as well as perl/grep's dfa
3021    (from empty string inside of word to empty string not at a word boundary,
3022     BZ#693)
3023  - slightly optimize i686 TLS accesses, use direct TLS %%gs access in sem_*
3024    and allow building -mno-tls-direct-seg-refs glibc that is free of direct TLS
3025    %%gs access with negative offsets
3026  - fix addseverity
3027  - fix fmemopen
3028  - fix rewinddir
3029  - increase svc{tcp,unix}_create listen backlog
3030
3031* Thu Jan  6 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-5
3032- update from CVS
3033  - add some warn_unused_result marking
3034  - make ftruncate available even for just -D_POSIX_C_SOURCE=200112L
3035    (BZ#640)
3036
3037* Thu Jan  6 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-4
3038- update from CVS
3039  - fix IA-32 stack alignment for LinuxThreads thread functions
3040    and functions passed to clone(2) directly
3041  - fix ecvt{,_r} on denormals (#143279)
3042  - fix __tls_get_addr typo
3043  - fix rounding in IA-64 alarm (#143710)
3044  - don't reinitialize __environ in __libc_start_main, so that
3045    effects of setenv/putenv done in DSO initializers are preserved
3046    (#144037, IT#57403)
3047  - fix fmemopen
3048  - fix vDSO l_map_end and l_text_end values
3049  - IA64 libm update (#142494)
3050- fix ppc rint/ceil etc. (BZ#602)
3051
3052* Tue Dec 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-3
3053- rebuilt
3054
3055* Mon Dec 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-2
3056- work around rpm bug some more, this time by copying
3057  iconvconfig to iconvconfig.%%{_target_cpu}.
3058
3059* Mon Dec 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-1
3060- update from CVS
3061  - glibc 2.3.4 release
3062  - add -o and --nostdlib options to iconvconfig
3063- if /sbin/ldconfig doesn't exist when running
3064  glibc_post_upgrade.%%{_target_cpu}, just don't attempt to run it.
3065  This can happen during first install of bi-arch glibc and the
3066  other arch glibc's %%post wil run /sbin/ldconfig (#143326)
3067- use -o and --nostdlib options to create all needed
3068  gconv-modules.cache files on bi-arch setups
3069
3070* Sun Dec 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-99
3071- rebuilt
3072
3073* Sat Dec 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-98
3074- add .%%{_target_cpu} to glibc_post_upgrade, only run telinit u
3075  if /sbin/init is the same ELF class and machine as
3076  glibc_post_upgrade.%%{_target_cpu} and similarly with
3077  condrestarting sshd (#143046)
3078
3079* Fri Dec 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-97
3080- update from CVS
3081  - fix ppc64 getcontext and swapcontext (BZ#610)
3082  - sparc/sparc64 fixes
3083
3084* Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-96
3085- update from CVS
3086  - fix i686 __USE_STRING_INLINES strncat
3087  - make sure ppc/ppc64 maintain correct stack alignment
3088    across clone
3089
3090* Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-95
3091- export nis_domain_of_r from libnsl.so again which was
3092  unintentionally lost
3093
3094* Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-93
3095- update from CVS
3096  - ppc/ppc64 clone without CLONE_THREAD getpid () adjustement
3097  - fix MALLOC_CHECK_={1,2,3} for non-contiguous main arena
3098    (BZ#457)
3099  - fix sysconf (_POSIX_V6_*) for other ABI environments in
3100    bi-arch setups
3101- s390/s390x clone without CLONE_THREAD getpid () adjustement
3102
3103* Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-92
3104- update from CVS
3105- fix %%{_prefix}/libexec/getconf filenames generation
3106
3107* Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-91
3108- update from CVS
3109  - double buffer size in getXXbyYY or getXXent on ERANGE
3110    instead of adding BUFLEN (#142617)
3111  - avoid busy loop in malloc if another thread is doing fork
3112    (#142214)
3113  - some more realloc corruption checks
3114  - fix getconf _POSIX_V6_WIDTH_RESTRICTED_ENVS output,
3115    tweak %%{_prefix}/libexec/getconf/ filenames
3116
3117* Fri Dec 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-90
3118- update from CVS
3119  - regex speedups
3120  - use | cat in ldd if running under bash3+ to allow running
3121    it on binaries that are not through SELinux allowed to access
3122    console or tty
3123- add __NR_waitid defines for alpha and ia64
3124
3125* Wed Dec  8 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-89
3126- update from CVS
3127  - fix clone2 on ia64
3128  - avoid tst-timer5 failing with linuxthreads implementation
3129- if __libc_enable_secure, disallow mode != normal
3130- change ldd script to imply -r when -u is used, properly
3131  propagate return value and handle suid binaries
3132
3133* Tue Dec  7 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-88
3134- update from CVS
3135  - disregard LD_SHOW_AUXV and LD_DYNAMIC_WEAK if __libc_enable_secure
3136  - disregard LD_DEBUG if __libc_enable_secure in normal mode
3137    if /suid-debug doesn't exist
3138  - fix fseekpos after ungetc
3139  - avoid reading bytes before start of buffers in regex's
3140    check_dst_limits_calc_pos_1 (#142060)
3141  - make getpid () working with clone/clone2 without CLONE_THREAD
3142    (so far on i386/x86_64/ia64 only)
3143- move %%{_prefix}/libexec/getconf/* to glibc from glibc-common
3144- make %%{_prefix}/libexec/getconf directory owned by glibc package
3145
3146* Fri Dec  3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-87
3147- update from CVS
3148  - build libpthread_nonshared.a objects with -fPIC on s390/s390x
3149  - fix mktime with < 0 or > 59 tm_sec on entry
3150  - remove nonnull attribute for realpath
3151  - add $(make-target-directory) for errlist-compat.c rule
3152    (hopefully fix #141404)
3153- add testcase for ungetc bug
3154- define _POSIX_{,THREAD_}CPUTIME to 0 on all Linux arches
3155
3156* Tue Nov 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-86
3157- update from CVS
3158  - some posix_opt.h fixes
3159- fix strtold use of unitialized memory (#141000)
3160- some more bugfixes for bugs detected by valgrind
3161- rebuilt with GCC >= 3.4.3-5 to avoid packed stack layout
3162  on s390{,x} (#139678)
3163
3164* Fri Nov 26 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-85
3165- update from CVS
3166  - support -v specification in getconf
3167  - fix sysconf (_SC_LFS64_CFLAGS) etc.
3168  - avoid thread stack aliasing issues on EM64T (#140803)
3169- move %%{_prefix}/include/nptl headers from nptl-devel
3170  to glibc-headers, so that even NPTL specific programs
3171  can be built bi-arch without problems
3172
3173* Wed Nov 24 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-84
3174- update from CVS
3175  - fix memory leak in getaddrinfo if using nscd (#139559)
3176  - handle large lines in /etc/hosts and /etc/networks
3177    (#140378)
3178  - add nonnull attributes to selected dirent.h and dlfcn.h
3179    functions
3180
3181* Sun Nov 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-83
3182- update from CVS
3183  - add deprecated and/or nonnull attribute to some signal.h
3184    functions
3185  - speed up tzset () by only using stat instead of open/fstat
3186    when calling tzset for the second and following time if
3187    /etc/localtime has not changed
3188- fix tgamma (BZ #552)
3189
3190* Sat Nov 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-82
3191- update from CVS
3192  - some malloc () checking
3193  - libpthread.a object dependency cleanups (#115157)
3194  - <bits/socket.h> fix for -std=c89 -pedantic-errors (#140132)
3195
3196* Fri Nov 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-81
3197- don't use chunksize in <= 2 * SIZE_SZ free () checks
3198
3199* Fri Nov 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-80
3200- update from CVS
3201  - with -D_FORTIFY_SOURCE=2, prevent missing %%N$ formats
3202  - for -D_FORTIFY_SOURCE=2 and %%n in writable format string,
3203    issue special error message instead of using the buffer overflow
3204    detected one
3205  - speedup regex searching with REG_NOSUB, add RE_NO_SUB,
3206    speedup searching with nested subexps (BZ #544)
3207  - block SIGCANCEL in NPTL timer_* helper thread
3208- further free () checking
3209
3210* Tue Nov 16 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-79
3211- update from CVS
3212- fix free () checking
3213- move /etc/default/nss into glibc-common (hopefully fix #132392)
3214
3215* Mon Nov 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-78
3216- update from CVS
3217  - fix LD_DEBUG=statistics
3218  - issue error message before aborting in __chk_fail ()
3219- some more free () checking
3220
3221* Fri Nov 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-77
3222- update from CVS
3223  - speedup regex on palindromes (BZ #429)
3224  - fix NPTL set{,e,re,res}[ug]id, so that even if making process
3225    less priviledged all threads change their credentials successfully
3226
3227* Wed Nov 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-76
3228- update from CVS
3229  - fix regcomp crash (#138439)
3230  - fix ftell{,o,o64} (#137885)
3231  - robustification of nscd to cope with corrupt databases (#137140)
3232  - fix NPTL with pthread_exit immediately after pthread_create (BZ #530)
3233  - some regex optimizations
3234
3235* Tue Nov  2 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-75
3236- update from CVS
3237  - mktime cleanups (BZ #487, #473)
3238  - unique comments in free(3) check error messages
3239- adjust some x86_64 headers for -m32 (#129712)
3240- object size checking support even with GCC-3.4.2-RH >= 3.4.2-8
3241
3242* Wed Oct 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-74
3243- fix <netinet/udp.h> header
3244- fix globfree (#137176)
3245- fix exiting if there are dlmopened libraries in namespaces
3246  other than main one not closed yet
3247- export again _res_opcodes and __p_{class,type}_syms from
3248  libresolv.so that were lost in -69
3249
3250* Thu Oct 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-73
3251- remove setaltroot and key{_add,_request,ctl} also from Versions
3252- back out _sys_errlist changes
3253
3254* Thu Oct 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-72
3255- back out setaltroot and key{_add,_request,ctl} addition
3256- fix severe x86-64 symbol versioning regressions that breaks
3257  e.g. java binaries
3258
3259* Wed Oct 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-71
3260- update from CVS
3261  - fix minor catchsegv temp file handling vulnerability
3262    (CAN-2004-0968, #136319)
3263  - add 4 new errno codes
3264  - setaltroot, key{_add,_request,ctl} syscalls on some arches
3265  - export _dl_debug_state@GLIBC_PRIVATE from ld.so again for
3266    gdb purpose
3267  - use inet_pton to decide what is address and what is hostname
3268    in getent (#135422)
3269  - change dladdr/dladdr1, so that dli_saddr is the same kind
3270    of value as dlsym/dlvsym return (makes difference on ia64/hppa only)
3271  - fix catchsegv script so that it works with both 32-bit and 64-bit
3272    programs on multi-arch platforms
3273
3274* Tue Oct 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-70
3275- update from CVS
3276- require newer selinux-policy (#135978)
3277- add %%dir for /var/run/nscd and /var/db/nscd and %%ghost
3278  files in it
3279- conflict with gcc4 4.0.0-0.6 and earlier (needs __builtin_object_size)
3280
3281* Mon Oct 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-69
3282- update from CVS
3283  - object size checking support (-D_FORTIFY_SOURCE={1,2})
3284
3285* Thu Oct 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-68
3286- update from CVS
3287  - support for namespaces in the dynamic linker
3288  - fix dlclose (BZ #77)
3289  - libSegFault.so uses now backtrace() to work on IA-64, x86-64
3290    and s390 (#130254)
3291
3292* Tue Oct 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-67
3293- update from CVS
3294  - use non-blocking sockets in resolver (#135234)
3295  - reset pd->res options on thread exit, so that threads
3296    reusing cached stacks get resolver state properly initialized
3297    (BZ #434)
3298
3299* Wed Oct  6 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-66
3300- update from CVS
3301- avoid using perl in the spec file, buildrequire sed >= 3.95
3302  (#127671)
3303- export TIMEOUTFACTOR=16
3304- fix _JMPBUF_CFA_UNWINDS_ADJ on s390{,x}
3305
3306* Tue Oct  5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-65
3307- update from CVS
3308  - define _POSIX_THREAD_PROCESS_SHARED and _POSIX_CLOCK_SELECTION
3309    to -1 in LinuxThreads
3310  - define _POSIX_CPUTIME and _POSIX_THREAD_CPUTIME to 0
3311    on i?86/ia64 and make sure sysconf (_SC_{,THREAD_}CPUTIME)
3312    returns correct value
3313- if _POSIX_CLOCK_SELECTION == -1 in nscd, still try
3314  sysconf (_SC_CLOCK_SELECTION) and if it returns true,
3315  dlopen libpthread.so and dlsym pthread_condattr_setclock
3316- build nscd with -z relro and -z now
3317
3318* Mon Oct  4 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-64
3319- update from CVS
3320  - stop using __builtin_expect in assert and assert_perror
3321    (#127606)
3322  - try to avoid too much VA fragmentation with malloc
3323    on flexmap layout (#118574)
3324  - nscd robustification
3325  - change valloc to use debugging hooks (#134385)
3326- make glibc_post_upgrade more verbose on errors (Fergal Daly,
3327  #125700)
3328
3329* Fri Oct  1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-63
3330- update from CVS
3331  - fix __nscd_getgrouplist
3332  - fix a typo in x86_64 pthread_mutex_timedwait fix
3333
3334* Fri Oct  1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-62
3335- update from CVS
3336  - fix NPTL pthread_mutex_timedwait on i386/x86_64 (BZ #417)
3337
3338* Thu Sep 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-61
3339- update from CVS
3340  - some nscd fixes (#134193)
3341  - cache initgroups in nscd (#132850)
3342  - reread /etc/localtime in tzset () even if just mtime changed
3343    (#133481)
3344  - fix glob (#126460)
3345  - another get_myaddress fix
3346
3347* Wed Sep 29 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-60
3348- update from CVS
3349  - fix get_myaddress (#133982)
3350  - remove nonnull attribute from second utime argument (#133866)
3351  - handle SIGSETXID the same way as SIGCANCEL in
3352    sigaction/pthread_kill/sigwait/sigwaitinfo etc.
3353  - add __extension__ to long long types in NPTL <bits/pthreadtypes.h>
3354
3355* Mon Sep 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-59
3356- update from CVS
3357  - fix BZ #151, #362, #381, #407
3358  - fdim fix for +inf/+inf (BZ #376)
3359
3360* Sun Sep 26 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-58
3361- update from CVS
3362  - vasprintf fix (BZ #346)
3363  - gettext locking (BZ #322)
3364- change linuxthreads useldt.h inclusion login again, the last
3365  one failed all linuxthreads FLOATING_STACKS tests
3366
3367* Sat Sep 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-57
3368- update from CVS
3369  - fix setuid in LD_ASSUME_KERNEL=2.2.5 libc (#133558)
3370  - fix nis locking (#132204)
3371  - RTLD_DEEPBIND support
3372  - fix pthread_create bugs (BZ #401, #405)
3373
3374* Wed Sep 22 2004 Roland McGrath <roland@redhat.com> 2.3.3-56
3375- migrated CVS to fedora-branch in sources.redhat.com glibc repository
3376  - source tarballs renamed
3377  - redhat/ moved to fedora/, some old cruft removed
3378- update from trunk
3379  - some __nonnull annotations
3380
3381* Wed Sep 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-55
3382- update from CVS
3383  - set{re,e,res}[ug]id now affect the whole process in NPTL
3384  - return EAGAIN instead of ENOMEM when not enough memory
3385    in pthread_create
3386
3387* Fri Sep 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-54
3388- update from CVS
3389  - nscd getaddrinfo caching
3390
3391* Tue Sep 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-53
3392- restore temporarily old definition of __P()/__PMT()
3393  for third party apps
3394
3395* Tue Sep 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-52
3396- update from CVS
3397  - nscd bi-arch fix
3398  - remove all uses of __P()/__PMT() from glibc headers
3399- update and reenable nscd SELinux patch
3400- remove libnss1* and libnss*.so.1 compatibility NSS modules
3401  on IA-32, SPARC and Alpha
3402
3403* Fri Sep 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-51
3404- update from CVS
3405  - disable one of the malloc double free checks for non-contiguous
3406    arenas where it doesn't have to be true even for non-broken
3407    apps
3408
3409* Thu Sep  9 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-50
3410- update from CVS
3411  - pwd/grp/host loops with nscd speed up by sharing the
3412    nscd cache r/o with applications
3413  - inexpensive double free check in free(3)
3414  - make NPTL pthread.h initializers usable even from C++
3415    (BZ #375)
3416- use atomic instructions even in i386 nscd on i486+ CPUs
3417  (conditionally)
3418
3419* Fri Sep  3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-49
3420- update from CVS
3421- fix linuxthreads tst-cancel{[45],-static}
3422
3423* Fri Sep  3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-48
3424- update from CVS
3425  - fix pthread_cond_destroy (BZ #342)
3426  - fix fnmatch without FNM_NOESCAPE (BZ #361)
3427  - fix ppc32 setcontext (BZ #357)
3428- add NPTL support for i386 glibc (only if run on i486 or higher CPU)
3429- add __NR_waitid defines for i386, x86_64 and sparc*
3430
3431* Tue Aug 31 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-47
3432- update from CVS
3433  - persistent nscd caching
3434  - ppc64 32-bit atomicity fix
3435  - fix x86-64 nptl-devel headers for -m32 compilation
3436- %%ghost /etc/ld.so.cache (#130597)
3437- edit /etc/ld.so.conf in glibc_post_upgrade if
3438  include ld.so.conf.d/*.conf line is missing (#120588)
3439- ugly hacks for the IA-64 /emul braindamage (#124996, #128267)
3440
3441* Sat Aug 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-46
3442- update from CVS
3443
3444* Thu Aug 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-45
3445- update from CVS
3446  - fix nss_compat's initgroups handling (#130363)
3447  - fix getaddrinfo ai_canonname setting
3448
3449* Thu Aug 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-44
3450- update from CVS
3451  - add ip6-dotint resolv.conf option, make
3452    no-ip6-dotint the default
3453- BuildPrereq libselinux-devel (#129946)
3454- on ppc64, build without dot symbols
3455
3456* Thu Aug 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-43
3457- update from CVS
3458  - remove debugging printout (#129747)
3459  - make <sys/shm.h> usable in C++ (IT#45148)
3460- update RLIMIT_* constants in <bits/resource.h>, make
3461  <sys/resource.h> POSIX compliant (#129740)
3462
3463* Wed Aug 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-42
3464- fix last tzset () fixes, disable rereading of /etc/localtime
3465  every time for now
3466- really enable SELinux support for NSCD
3467
3468* Wed Aug 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-41
3469- update from CVS
3470  - fread_unlocked/fwrite_unlocked macro fixes (BZ #309, #316)
3471  - tzset () fixes (BZ #154)
3472- speed up pthread_rwlock_unlock on arches other than i386 and
3473  x86_64 (#129455)
3474- fix compilation with -ansi (resp. -std=c89 or -std=c99) and
3475  -D_XOPEN_SOURCE=[56]00 but no -D_POSIX_SOURCE* or -D_POSIX_C_SOURCE*
3476  (BZ #284)
3477- add SELinux support for NSCD
3478
3479* Fri Aug  6 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-40
3480- update from CVS
3481  - change res_init to force all threads to re-initialize
3482    resolver before they use it next time (#125712)
3483  - various getaddrinfo and related fixes (BZ #295, #296)
3484  - fix IBM{932,943} iconv modules (#128674)
3485  - some nscd fixes (e.g. BZ #292)
3486  - RFC 3678 support (Multicast Source Filters)
3487- handle /lib/i686/librtkaio-* in i386 glibc_post_upgrade
3488  the same as /lib/i686/librt-*
3489
3490* Fri Jul 23 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-39
3491- update from CVS
3492  - conformance related changes in headers
3493- remove -finline-limit=2000 for GCC 3.4.x+
3494
3495* Thu Jul 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-38
3496- update from CVS
3497  - fix res_init leaks
3498  - fix newlocale races
3499  - fix ppc64 setjmp
3500- fix strtold (BZ #274)
3501
3502* Fri Jul 16 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-37
3503- update from CVS
3504  - allow pthread_cancel in DSO destructors run at exit time
3505- fix pow{f,,l} on IA-32 and powl on x86-64
3506- allow PIEs on IA-32 to have main in a shared library they depend on
3507
3508* Mon Jul  5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-36
3509- s390* .plt slot reduction
3510- fix pthread_rwlock_timedrdlock on x86_64
3511
3512* Wed Jun 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-35
3513- tweak spec file for the libpthread-0.61.so -> libpthread-2.3.3.so
3514  NPTL changes
3515
3516* Wed Jun 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-34
3517- update from CVS
3518  - if_nameindex using preferably netlink
3519  - printf_parsemb initialization fix
3520  - NPTL version is now the same as glibc version
3521
3522* Mon Jun 28 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-33
3523- update from CVS
3524  - reread resolv.conf for nscd --invalidate=hosts
3525  - fix F_GETLK/F_SETLK/F_SETLKW constants on x86_64 for
3526    -m32 -D_FILE_OFFSET_BITS=64 compilations
3527  - avoid calling non-existing fcntl64 syscall on ppc64
3528
3529* Mon Jun 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-32
3530- update from CVS
3531  - FUTEX_CMP_REQUEUE support (fix pthread_cond_* deadlocks)
3532  - fix backtrace in statically linked programs
3533- rebuilt with GCC 3.4, adjusted ulps and i386 <bits/string.h>
3534
3535* Fri May 28 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-31
3536- update from CVS
3537- <bits/string2.h> and <bits/mathinline.h> changes for GCC 3.{2,4,5}+
3538- make c_stubs buildable even with GCC 3.2.x (#123042)
3539
3540* Fri May 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-30
3541- fix pthread_cond_wait on architectures other than IA-32 and
3542  x86_64
3543
3544* Thu May 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-29
3545- use lib64 instead of lib on ia64 if %%{_lib} is defined to lib64
3546
3547* Wed May 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-28
3548- update from CVS
3549  - FUTEX_REQUEUE fixes (#115349)
3550  - SPARC GCC 3.4 build fix
3551  - fix handling of undefined TLS symbols on IA32 (RELA only),
3552    SPARC and SH
3553  - regex translate fix
3554  - speed up sprintf
3555  - x86_64 makecontext alignment fix
3556  - make POSIX sigpause the default sigpause, unless BSD sigpause
3557    requested
3558
3559* Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
3560- remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade
3561  on x86-64, s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
3562- build mq_{send,receive} with -fexceptions
3563
3564* Fri May  7 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
3565- update from CVS
3566  - fix <tgmath.h>
3567  - fix memory leaks in nis, getifaddrs, etc. caused by incorrect
3568    use of realloc
3569- remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade
3570  and rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
3571  might be a stale symlink
3572
3573* Wed May  5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
3574- update from CVS
3575- disable FUTEX_REQUEUE (work around #115349)
3576- mq for sparc/sparc64/ia64
3577
3578* Tue May  4 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
3579- update from CVS
3580  - define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK
3581    plus F_[SG]ETOWN also in -D_XOPEN_SOURCE=500 (both
3582    included already in XNS5)
3583  - reorder dlopen checks, so that dlopening ET_REL objects
3584    complains about != ET_DYN != ET_EXEC, not about phentsize
3585    (#121606)
3586  - fix strpbrk macro for GCC 3.4+ (BZ #130)
3587  - fix <sys/sysctl.h> (BZ #140)
3588  - sched_[gs]etaffinity documentation fix (BZ #131)
3589  - fix sparc64 build (BZ #139)
3590  - change linuxthreads back to use non-cancellable writes
3591    to manager pipes etc.
3592  - fix sem_timedwait return value in linuxthreads (BZ #133)
3593  - ia64 unnecessary PLT relocs removal
3594
3595* Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
3596- update from CVS
3597  - fix *scanf
3598  - fix shm_unlink, sem_unlink and mq_unlink errno values
3599  - avoid memory leaks in error
3600  - execstack fixes on s390
3601
3602* Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
3603- update from CVS
3604  - mq and timer fixes
3605- rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically
3606  linked binaries
3607- fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
3608
3609* Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
3610- disable rtkaio
3611- update from CVS
3612  - POSIX message passing support
3613  - fixed SIGEV_THREAD support for POSIX timers
3614  - fix free on non-malloced memory in syslog
3615  - fix ffsl on some 64-bit arches
3616  - fix sched_setaffinity on x86-64, ia64
3617  - fix ppc64 umount
3618  - NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
3619  - various NIS speedups
3620  - fix fwrite with > 2GB sizes on 64-bit arches
3621  - fix pthread_getattr_np guardsize reporting in NPTL
3622- report PLT relocations in ld.so and libc.so during the build
3623
3624* Thu Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
3625- update from CVS
3626  - change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
3627  - strtol speed optimization
3628  - don't try to use certainly unimplemented syscalls on ppc64
3629- kill -debug subpackage, move the libs to glibc-debuginfo{,-common}
3630  into /usr/lib/debug/usr/%%{_lib}/ directory
3631- fix c_stubs with gcc 3.4
3632- move all the up to 3 builds into %%build scriptlet and
3633  leave only installation in the %%install scriptlet
3634
3635* Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
3636- update from CVS
3637  - affinity API changes
3638
3639* Thu Mar 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-18
3640- update from CVS
3641  - fix ia64 iopl (#118591)
3642  - add support for /etc/ld.so.conf.d/*.conf
3643  - fix x86-64 LD_DEBUG=statistics
3644- fix hwcap handling when using ld.so.cache (#118518)
3645
3646* Mon Mar 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-17
3647- update from CVS
3648  - implement non-_l function on top of _l functions
3649
3650* Thu Mar 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-16
3651- update from CVS
3652- fix s390{,x} TLS handling
3653
3654* Wed Mar 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-15
3655- update from CVS
3656  - special section for compatibility code
3657  - make getpid () work even in vfork () child
3658- configure with --enable-bind-now to avoid lazy binding in ld.so
3659  and libc.so
3660
3661* Fri Mar  5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-14
3662- update from CVS
3663  - fix iconv -c (#117021)
3664  - fix PIEs on sparc/sparc64
3665  - fix posix_fadvise on 64-bit architectures
3666- add locale-archive as %%ghost file (#117014)
3667
3668* Mon Mar  1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-13
3669- update from CVS
3670
3671* Fri Feb 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-12
3672- update from CVS
3673
3674* Fri Feb 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-11
3675- update from CVS
3676  - fix ld.so when vDSO is randomized
3677
3678* Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-10
3679- update from CVS
3680
3681* Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-9
3682- update from CVS
3683
3684* Tue Feb 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-8
3685- update from CVS
3686
3687* Tue Jan 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-7
3688- update from CVS
3689  - dl_iterate_phdr extension to signal number of added/removed
3690    libraries
3691- fix PT_GNU_RELRO support on ppc* with prelinking
3692
3693* Fri Jan 23 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-6
3694- rebuilt with fixed GCC on IA-64
3695
3696* Thu Jan 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-5
3697- fix PT_GNU_RELRO support
3698
3699* Wed Jan 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-4
3700- update from CVS
3701  - some further regex speedups
3702  - fix re.translate handling in regex (#112869)
3703  - change regfree to match old regex behaviour (what is freed
3704    and clearing of freed pointers)
3705  - fix accesses to unitialized memory in regex (#113507, #113425,
3706    #113421)
3707  - PT_GNU_RELRO support
3708
3709* Tue Dec 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-3
3710- update from CVS
3711  - fix pmap_set fd and memory leak (#112726)
3712- fix backreference handling in regex
3713- rebuilt under glibc without the above bug to fix
3714  libc.so linker script (#112738)
3715
3716* Mon Dec 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-2
3717- update from CVS
3718  - faster getpid () in NPTL builds
3719  - fix to make pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, )
3720    really disable cancellation (#112512)
3721  - more regex fixes and speedups
3722  - fix nextafter*/nexttoward*
3723  - handle 6th syscall(3) argument on AMD64
3724  - handle memalign/posix_memalign in mtrace
3725  - fix linuxthreads memory leak (#112208)
3726  - remove throw () from cancellation points in linuxthreads (#112602)
3727  - fix NPTL unregister_atfork
3728  - fix unwinding through alternate signal stacks
3729
3730* Mon Dec  1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-1
3731- update from CVS
3732  - 2.3.3 release
3733  - lots of regex fixes and speedups (#110401)
3734  - fix atan2
3735  - fix pshared condvars in NPTL
3736  - fix pthread_attr_destroy for attributes created with
3737    pthread_attr_init@GLIBC_2.0
3738- for the time being, include both nb_NO* and no_NO* as locales
3739  so that the distribution can catch up with the no_NO->nb_NO
3740  transition
3741- add BuildPrereq texinfo (#110252)
3742
3743* Tue Nov 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-102
3744- update from CVS
3745  - fix getifaddrs (CAN-2003-0859)
3746  - fix ftw fd leak
3747  - fix linuxthreads sigaction (#108634)
3748  - fix glibc 2.0 stdio compatibility
3749  - fix uselocale (LC_GLOBAL_LOCALE)
3750  - speed up stdio locking in non-threaded programs on IA-32
3751  - try to maintain correct order of cleanups between those
3752    registered with __attribute__((cleanup))
3753    and with LinuxThreads style pthread_cleanup_push/pop (#108631)
3754  - fix segfault in regex (#109606)
3755  - fix RE_ICASE multi-byte handling in regex
3756  - fix pthread_exit in libpthread.a (#109790)
3757  - FTW_ACTIONRETVAL support
3758  - lots of regex fixes and speedups
3759  - fix ceill/floorl on AMD64
3760
3761* Mon Oct 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-101
3762- update from CVS
3763  - fix ld.so --verify (and ldd)
3764
3765* Mon Oct 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-100
3766- update from CVS
3767  - fix sprof (#103727)
3768  - avoid infinite loops in {,f}statvfs{,64} with hosed mounts file
3769  - prevent dlopening of executables
3770  - fix glob with GLOB_BRACE and without GLOB_NOESCAPE
3771  - fix locale printing of word values on 64-bit big-endian arches
3772    (#107846)
3773  - fix getnameinfo and getaddrinfo with reverse IPv6 lookups
3774    (#101261)
3775
3776* Wed Oct 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-99
3777- update from CVS
3778  - dl_iterate_phdr in libc.a on arches other than IA-64
3779  - LD_DEBUG=statistics prints number of relative relocations
3780  - fix hwcap computation
3781- NPTL is now part of upstream glibc CVS
3782- include {st,xh,zu}_ZA{,.UTF-8} locales
3783
3784* Sat Oct  4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-98
3785- update from CVS
3786  - fix close, pause and fsync (#105348)
3787  - fix pthread_once on IA-32
3788- implement backtrace () on IA-64, handle -fomit-frame-pointer
3789  in AMD64 backtrace () (#90402)
3790
3791* Tue Sep 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-97
3792- update from CVS
3793  - fix <sys/sysmacros.h> with C++ or -ansi or -pedantic C
3794  - fix mknod/ustat return value when given bogus device number (#105768)
3795
3796* Fri Sep 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-96
3797- rebuilt
3798
3799* Fri Sep 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-95
3800- fix IA-64 getcontext
3801
3802* Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-94
3803- update from CVS
3804- fix syslog with non-C non-en_* locales (#61296, #104979)
3805- filter GLIBC_PRIVATE symbols from glibc provides
3806- fix NIS+
3807
3808* Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-93
3809- update from CVS
3810- assume 2.4.21 kernel features on RHEL/ppc*, so that
3811  {make,set,get,swap}context works
3812- backout execstack support for RHEL
3813- build rtkaio on amd64 too
3814
3815* Wed Sep 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-92
3816- update from CVS
3817  - execstack/noexecstack support
3818  - build nscd as PIE
3819- move __libc_stack_end back to @GLIBC_2.1
3820- build against elfutils >= 0.86 to fix stripping on s390x
3821
3822* Mon Sep 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-91
3823- rebuilt
3824
3825* Mon Sep 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-90
3826- update from CVS
3827  - NPTL locking change (#102682)
3828- don't jump around lock on amd64
3829
3830* Thu Sep 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-89
3831- fix open_memstream/syslog (#104661)
3832
3833* Thu Sep 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-88
3834- update from CVS
3835  - retrieve affinity in pthread_getattr_np
3836  - fix pthread_attr_[gs]etaffinity_np
3837  - handle hex and octal in wordexp
3838
3839* Wed Sep 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-87
3840- update from CVS
3841  - truncate instead of round in utimes when utimes syscall is not available
3842  - don't align stack in every glibc function unnecessarily on IA-32
3843  - make sure threads have their stack 16 byte aligned on IA-32
3844  - move sched_[sg]etaffinity to GLIBC_2.3.3 symbol version (#103231)
3845  - fix pthread_getattr_np for the initial thread (#102683)
3846  - avoid linuxthreads signal race (#104368)
3847- ensure all gzip invocations are done with -n option
3848
3849* Fri Sep 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-86
3850- update from CVS
3851- avoid linking in libgcc_eh.a unnecessarily
3852- change ssize_t back to long int on s390 -m31, unless
3853  gcc 2.95.x is used
3854
3855* Wed Sep 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-85
3856- update from CVS
3857  - fix IA-64 memccpy (#104114)
3858
3859* Tue Sep  9 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-84
3860- update from CVS
3861  - undo broken amd64 signal context changes
3862
3863* Tue Sep  9 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-83
3864- update from CVS
3865- change *nlink_t, *ssize_t and *intptr_t types on s390 -m31 to
3866  {unsigned,} int
3867- change *u_quad_t, *quad_t, *qaddr_t, *dev_t, *ino64_t, *loff_t,
3868  *off64_t, *rlim64_t, *blkcnt64_t, *fsblkcnt64_t, *fsfilcnt64_t
3869  on 64-bit arches from {unsigned,} long long int {,*} to
3870  {unsigned,} long int {,*} to restore binary compatibility
3871  for C++ functions using these types as arguments
3872
3873* Sun Sep  7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-82
3874- rebuilt
3875
3876* Sat Sep  6 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-81
3877- update from CVS
3878  - fix tc[gs]etattr/cf[gs]et[io]speed on ppc (#102732)
3879  - libio fixes
3880
3881* Thu Sep  4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-80
3882- update from CVS
3883  - fix IA-64 cancellation when mixing __attribute__((cleanup ()))
3884    and old-style pthread_cleanup_push cleanups
3885
3886* Tue Sep  2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-79
3887- updated from CVS
3888  - lots of cancellation fixes
3889  - fix posix_fadvise* on ppc32
3890  - TLS layout fix
3891  - optimize stdio cleanups (#103354)
3892  - sparcv9 NPTL
3893  - include sigset, sighold, sigrelse, sigpause and sigignore prototypes
3894    in signal.h even if -D_XOPEN_SOURCE_EXTENDED (#103269)
3895  - fix svc_getreqset on 64-bit big-endian arches
3896  - return ENOSYS in linuxthreads pthread_barrierattr_setpshared for
3897    PTHREAD_PROCESS_SHARED
3898  - add pthread_cond_timedwait stubs to libc.so (#102709)
3899- split glibc-devel into glibc-devel and glibc-headers to ensure
3900  amd64 /usr/include always wins on amd64/i386 bi-arch installs
3901- increase PTHREAD_STACK_MIN on alpha, ia64 and sparc*
3902- get rid of __syscall_* prototypes and stubs in sysdeps/unix/sysv/linux
3903- run make check also with linuxthreads (on IA-32 non-FLOATING_STACKS)
3904  ld.so and NPTL (on IA-32 also FLOATING_STACKS linuxthreads) libraries
3905  and tests
3906
3907* Mon Aug 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-78
3908- include dl-osinfo.h only in glibc-debuginfo-2*.rpm, not
3909  in glibc-debuginfo-common*
3910
3911* Mon Aug 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-77
3912- update from CVS
3913  - fix glibc 2.0 libio compatibility (#101385)
3914  - fix ldconfig with /usr/lib/lib*.so symlinks (#102853)
3915  - fix assert.h (#102916, #103017)
3916  - make ld.so.cache identical between IA-32 and AMD64 (#102887)
3917  - fix static linking of large IA-64 binaries (#102586)
3918- avoid using floating point regs in lazy binding code on ppc64 (#102763)
3919
3920* Fri Aug 22 2003 Roland McGrath <roland@redhat.com> 2.3.2-76
3921- add td_thr_tls_get_addr changes missed in initial nptl_db rewrite
3922
3923* Sun Aug 17 2003 Roland McGrath <roland@redhat.com> 2.3.2-74
3924- nptl_db rewrite not yet in CVS
3925
3926* Thu Aug 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-72
3927- update from CVS
3928  - fix rtkaio aio_fsync{,64}
3929  - update rtkaio for !BROKEN_THREAD_SIGNALS
3930  - fix assert macro when used on pointers
3931
3932* Wed Aug 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-71
3933- update from CVS
3934
3935* Tue Aug 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-70
3936- update from CVS
3937- disable CLONE_STOPPED for now until it is resolved
3938- strip crt files
3939- fix libio on arches with no < GLIBC_2.2 support (#102102, #102105)
3940- fix glibc-debuginfo to include all nptl and nptl_db sources
3941
3942* Thu Aug  7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-69
3943- update from CVS
3944  - fix pthread_create@GLIBC_2.0 (#101767)
3945- __ASSUME_CLONE_STOPPED on all arches but s390* in RHEL
3946
3947* Sun Aug  3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-68
3948- update from CVS
3949  - only use CLONE_STOPPED if kernel supports it, fix setting of thread
3950    explicit scheduling (#101457)
3951
3952* Fri Aug  1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-67
3953- update from CVS
3954  - fix utimes and futimes if kernel doesn't support utimes syscall
3955  - fix s390 ssize_t type
3956  - fix dlerror when called before any dlopen/dlsym
3957  - update IA-64 bits/sigcontext.h (#101344)
3958  - various warning fixes
3959  - fix pthread.h comment typos (#101363)
3960
3961* Wed Jul 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-66
3962- update from CVS
3963- fix dlopen of libraries using TLS IE/LE models
3964
3965* Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-65
3966- update from CVS
3967  - fix timer_create
3968  - use __extension__ before long long typedefs in <bits/types.h> (#100718)
3969
3970* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-64
3971- update from CVS
3972  - fix wcpncpy (#99462)
3973  - export _res@GLIBC_2.0 even from NPTL libc.so (__res_state ()
3974    unlike __errno_location () or __h_errno_location () was introduced
3975    in glibc 2.2)
3976  - fix zic bug on 64-bit platforms
3977  - some TLS handling fixes
3978  - make ldconfig look into alternate ABI dirs by default (#99402)
3979- move %%{_datadir}/zoneinfo to tzdata package, so that it can be
3980  errataed separately from glibc
3981- new add-on - rtkaio
3982- prereq libgcc, as glibc now relies on libgcc_s.so.1 for pthread_cancel
3983
3984* Tue Jul 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-63
3985- fix thread cancellation on ppc64
3986
3987* Sat Jul 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-62
3988- update from CVS
3989  - fix thread cancellation on ppc32, s390 and s390x
3990
3991* Thu Jul 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-61
3992- update from CVS
3993  - build libc_nonshared.a with -fPIC instead of -fpic
3994- fix ppc64 PIE support
3995- add cfi directives to NPTL sysdep-cancel.h on ppc/ppc64/s390/s390x
3996
3997* Tue Jul  8 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-60
3998- update from CVS
3999
4000* Thu Jul  3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-59
4001- update from CVS
4002- on IA-64 use different symbols for cancellation portion of syscall
4003  handlers to make gdb happier
4004
4005* Thu Jun 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-58
4006- update from CVS
4007  - nss_compat supporting LDAP etc.
4008
4009* Tue Jun 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-57
4010- update from CVS
4011
4012* Thu Jun 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-56
4013- fix condvars and semaphores in ppc* NPTL
4014- fix test-skeleton.c reporting of timed-out tests (#91269)
4015- increase timeouts for tests during make check
4016
4017* Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-55
4018- make ldconfig default to both /lib+/usr/lib and /lib64+/usr/lib64
4019  on bi-ABI architectures (#97557)
4020- disable FUTEX_REQUEUE on ppc* temporarily
4021
4022* Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-54
4023- update from CVS
4024- fix glibc_post_upgrade on ppc
4025
4026* Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-53
4027- update from CVS
4028- fix localedef (#90659)
4029- tweak linuxthreads for librt cancellation
4030
4031* Mon Jun 16 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-52
4032- update from CVS
4033
4034* Thu Jun 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-51
4035- update from CVS
4036- fix <gnu/stubs.h> (#97169)
4037
4038* Wed Jun 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-50
4039- update from CVS
4040
4041* Tue Jun 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-49
4042- update from CVS
4043  - fix pthread_cond_signal on IA-32 (#92080, #92253)
4044  - fix setegid (#91567)
4045- don't prelink -R libc.so on any architecture, it prohibits
4046  address randomization
4047
4048* Thu Jun  5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-48
4049- update from CVS
4050  - fix IA-64 NPTL build
4051
4052* Thu Jun  5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-47
4053- update from CVS
4054- PT_GNU_STACK segment in binaries/executables and .note.GNU-stack
4055  section in *.[oa]
4056
4057* Sun Jun  1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-46
4058- update from CVS
4059- enable NPTL on AMD64
4060- avoid using trampolines in localedef
4061
4062* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-45
4063- enable NPTL on IA-64
4064
4065* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-44
4066- update from CVS
4067- enable NPTL on s390 and s390x
4068- make __init_array_start etc. symbols in elf-init.oS hidden undefined
4069
4070* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-43
4071- update from CVS
4072
4073* Fri May 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-42
4074- update from CVS
4075
4076* Tue May 20 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-41
4077- update from CVS
4078- use NPTL libs if uname -r contains nptl substring or is >= 2.5.69
4079  or set_tid_address syscall is available instead of checking
4080  AT_SYSINFO dynamic tag
4081
4082* Thu May 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-40
4083- update from CVS
4084
4085* Wed May 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-39
4086- update from CVS
4087  - fix for prelinking of libraries with no dependencies
4088
4089* Tue May 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-38
4090- update from CVS
4091- enable NPTL on ppc and ppc64
4092
4093* Tue May  6 2003 Matt Wilson <msw@redhat.com> 2.3.2-37
4094- rebuild
4095
4096* Sun May  4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-36
4097- update from CVS
4098
4099* Sat May  3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-35
4100- update from CVS
4101  - make -jN build fixes
4102
4103* Fri May  2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-34
4104- update from CVS
4105- avoid using trampolines in iconvconfig for now
4106
4107* Sat Apr 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-33
4108- update from CVS
4109
4110* Fri Apr 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-32
4111- update from CVS
4112- more ppc TLS fixes
4113
4114* Wed Apr 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-31
4115- update from CVS
4116  - nscd fixes
4117  - fix Bahrain spelling (#56298)
4118  - fix Ukrainian collation (#83973)
4119  - accept trailing spaces in /etc/ld.so.conf (#86032)
4120  - perror fix (#85994)
4121  - fix localedef (#88978)
4122  - fix getifaddrs (#89026)
4123  - fix strxfrm (#88409)
4124- fix ppc TLS
4125- fix getaddrinfo (#89448)
4126- don't print warning about errno, h_errno or _res if
4127  LD_ASSUME_KERNEL=2.4.1 or earlier
4128
4129* Tue Apr 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-30
4130- update from CVS
4131- fix prelink on ppc32
4132- add TLS support on ppc32 and ppc64
4133- make sure on -m64 arches all helper binaries are built with this
4134  option
4135
4136* Mon Apr 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-29
4137- update from CVS
4138  - fix strxfrm (#88409)
4139- use -m64 -mno-minimal-toc on ppc64
4140- conflict with kernels < 2.4.20 on ppc64 and < 2.4.0 on x86_64
4141- link glibc_post_upgrade against newly built libc.a
4142
4143* Sun Apr 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-28
4144- update from CVS
4145  - fix NPTL pthread_detach and already terminated, but not yet
4146    joined thread (#88219)
4147  - fix bug-regex4 testcase (#88118)
4148  - reenable prelink support broken in 2.3.2-13
4149  - fix register_printf_function (#88052)
4150  - fix double free with fopen using ccs= (#88056)
4151  - fix potential access below $esp in {set,swap}context (#88093)
4152  - fix buffer underrun in gencat -H (#88099)
4153  - avoid using unitialized variable in tst-tgmath (#88101)
4154  - fix gammal (#88104)
4155  - fix iconv -c
4156  - fix xdr_string (PR libc/4999)
4157  - fix /usr/lib/nptl/librt.so symlink
4158  - avoid running NPTL cleanups twice in some cases
4159  - unblock __pthread_signal_cancel in linuxthreads, so that
4160    linuxthreads threaded programs work correctly if spawned
4161    from NPTL threaded programs
4162  - fix sysconf _SC_{NPROCESSORS_{CONF,ONLN},{,AV}PHYS_PAGES}
4163- remove /lib/i686 directory before running ldconfig in glibc post
4164  during i686 -> i386 glibc "upgrades" (#88456)
4165
4166* Wed Apr  2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-22
4167- update from CVS
4168  - add pthread_atfork to libpthread.a
4169
4170* Tue Apr  1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-21
4171- update from CVS
4172- make sure linuxthreads pthread_mutex_lock etc. is not a cancellation
4173  point
4174
4175* Sat Mar 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-20
4176- update from CVS
4177- if kernel >= 2.4.1 doesn't support NPTL, fall back to
4178  /lib/i686 libs on i686, not stright to /lib
4179
4180* Fri Mar 28 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-19
4181- update from CVS
4182  - timers fixes
4183
4184* Thu Mar 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-18
4185- update from CVS
4186- fix NPTL pthread_cond_timedwait
4187- fix sysconf (_SC_MONOTONIC_CLOCK)
4188- use /%%{_lib}/tls instead of /lib/tls on x86-64
4189- add /%%{_lib}/tls/librt*so* and /%%{_lib}/i686/librt*so*
4190- display content of .out files for all make check failures
4191
4192* Wed Mar 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-17
4193- update from CVS
4194  - kernel POSIX timers support
4195
4196* Sat Mar 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-16
4197- update from CVS
4198  - export __fork from glibc again
4199- fix glibc-compat build in NPTL
4200- fix c_stubs
4201- fix some more atomic.h problems
4202- don't check abi in glibc-compat libs
4203
4204* Fri Mar 21 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-15
4205- update from CVS
4206- build glibc-compat (for glibc 2.0 compatibility) and c_stubs add-ons
4207- condrestart sshd in glibc_post_upgrade so that the user can
4208  log in remotely and handle the rest (#86339)
4209- fix a typo in glibc_post_upgrade on sparc
4210
4211* Tue Mar 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-14
4212- update from CVS
4213- change i686/athlon libc.so.6 base to 0x00e80000
4214
4215* Mon Mar 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-13
4216- update from CVS
4217  - hopefully last fix for condvar problems
4218
4219* Fri Mar 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-12
4220- fix bits/syscall.h creation on x86-64
4221
4222* Thu Mar 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-11
4223- update from CVS
4224
4225* Wed Mar 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-10
4226- update from CVS
4227
4228* Tue Mar 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-9
4229- update from CVS
4230- fix glibc-debug description (#85111)
4231- make librt.so a symlink again, not linker script
4232
4233* Tue Mar  4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-8
4234- update from CVS
4235- remove the workarounds for broken software accessing GLIBC_PRIVATE
4236  symbols
4237
4238* Mon Mar  3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-7
4239- update from CVS
4240
4241* Sun Mar  2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-6
4242- fix TLS IE/LE model handling in dlopened libraries
4243  on TCB_AT_TP arches
4244
4245* Tue Feb 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-5
4246- update from CVS
4247
4248* Tue Feb 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-4
4249- update from CVS
4250
4251* Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-3
4252- update from CVS
4253- only warn about errno, h_errno or _res for binaries, never
4254  libraries
4255- rebuilt with gcc-3.2.2-4 to use direct %%gs TLS access insn sequences
4256
4257* Sun Feb 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-2
4258- update from CVS
4259
4260* Sat Feb 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-1
4261- update from CVS
4262
4263* Thu Feb 20 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-51
4264- update from CVS
4265
4266* Wed Feb 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-50
4267- update from CVS
4268
4269* Wed Feb 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-49
4270- update from CVS
4271- remove nisplus and nis from the default nsswitch.conf (#67401, #9952)
4272
4273* Tue Feb 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-48
4274- update from CVS
4275
4276* Sat Feb 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-47
4277- update from CVS
4278
4279* Fri Feb 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-46
4280- update from CVS
4281  - pthread_cond* NPTL fixes, new NPTL testcases
4282
4283* Thu Feb 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-45
4284- update from CVS
4285- include also linuxthreads FLOATING_STACKS libs on i686 and athlon:
4286  LD_ASSUME_KERNEL=2.2.5 to LD_ASSUME_KERNEL=2.4.0 is non-FLOATING_STACKS lt,
4287  LD_ASSUME_KERNEL=2.4.1 to LD_ASSUME_KERNEL=2.4.19 is FLOATING_STACKS lt,
4288  later is NPTL
4289- enable TLS on alpha/alphaev6
4290- add BuildPreReq: /usr/bin/readlink
4291
4292* Tue Feb 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-44
4293- update from CVS
4294  - pthread_once fix
4295
4296* Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-43
4297- update from CVS
4298- vfork fix on s390
4299- rebuilt with binutils 2.13.90.0.18-5 so that accesses to errno
4300  don't bind locally (#83325)
4301
4302* Thu Feb 06 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-42
4303- update from CVS
4304- fix pthread_create after vfork+exec in linuxthreads
4305
4306* Wed Feb 05 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-41
4307- update from CVS
4308
4309* Thu Jan 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-40
4310- update from CVS
4311
4312* Wed Jan 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-39
4313- update from CVS
4314- enable TLS on s390{,x} and sparc{,v9}
4315
4316* Fri Jan 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-38
4317- update from CVS
4318- initialize __environ in glibc_post_upgrade to empty array,
4319  so that it is not NULL
4320- compat symlink for s390x /lib/ld64.so.1
4321- enable glibc-profile on x86-64
4322- only include libNoVersion.so on IA-32, Alpha and Sparc 32-bit
4323
4324* Thu Jan 16 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-37
4325- update from CVS
4326  - nscd fixes, *scanf fix
4327- fix %%nptlarches noarch build (#81909)
4328- IA-64 TLS fixes
4329
4330* Tue Jan 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-36
4331- update from CVS
4332- rework -debuginfo subpackage, add -debuginfo-common
4333  subpackage on IA-32, Alpha and Sparc (ie. auxiliary arches)
4334- fix vfork in libc.a on PPC32, Alpha, Sparc
4335- fix libio locks in linuxthreads libc.so if libpthread.so
4336  is dlopened later (#81374)
4337
4338* Mon Jan 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-35
4339- update from CVS
4340  - dlclose bugfixes
4341- fix NPTL libpthread.a
4342- fix glibc_post_upgrade on several arches
4343
4344* Sat Jan 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-34
4345- update from CVS
4346- TLS support on IA-64
4347
4348* Wed Jan  8 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-33
4349- fix vfork in linuxthreads (#81377, #81363)
4350
4351* Tue Jan  7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-32
4352- update from CVS
4353- don't use TLS libs if kernel doesn't set AT_SYSINFO
4354  (#80921, #81212)
4355- add ntp_adjtime on alpha (#79996)
4356- fix nptl_db (#81116)
4357
4358* Sun Jan  5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-31
4359- update from CVS
4360- support all architectures again
4361
4362* Fri Jan  3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-30
4363- fix condvar compatibility wrappers
4364- add ugly hack to use non-TLS libs if a binary is seen
4365  to have errno, h_errno or _res symbols in .dynsym
4366
4367* Fri Jan  3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-29
4368- update from CVS
4369  - fixes for new condvar
4370
4371* Thu Jan  2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-28
4372- new NPTL condvar implementation plus related linuxthreads
4373  symbol versioning updates
4374
4375* Thu Jan  2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-27
4376- update from CVS
4377- fix #include <sys/stat.h> with -D_BSD_SOURCE or without
4378  feature set macros
4379- make *sigaction, sigwait and raise the same between
4380  -lpthread -lc and -lc -lpthread in linuxthreads builds
4381
4382* Tue Dec 31 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-26
4383- fix dlclose
4384
4385* Sun Dec 29 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-25
4386- enable sysenter by default for now
4387- fix endless loop in ldconfig
4388
4389* Sat Dec 28 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-24
4390- update from CVS
4391
4392* Fri Dec 27 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-23
4393- update from CVS
4394  - fix ptmalloc_init after clearenv (#80370)
4395
4396* Sun Dec 22 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-22
4397- update from CVS
4398- add IA-64 back
4399- move TLS libraries from /lib/i686 to /lib/tls
4400
4401* Thu Dec 19 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-21
4402- system(3) fix for linuxthreads
4403- don't segfault in pthread_attr_init from libc.so
4404- add cancellation tests from nptl to linuxthreads
4405
4406* Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-20
4407- fix up lists of exported symbols + their versions
4408  from the libraries
4409
4410* Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-19
4411- fix --with-tls --enable-kernel=2.2.5 libc on IA-32
4412
4413* Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-18
4414- update from CVS
4415  - fix NPTL hanging mozilla
4416  - initialize malloc in mALLOPt (fixes problems with squid, #79957)
4417  - make linuxthreads work with dl_dynamic_weak 0
4418  - clear dl_dynamic_weak everywhere
4419
4420* Tue Dec 17 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-17
4421- update from CVS
4422  - NPTL socket fixes, flockfile/ftrylockfile/funlockfile fix
4423  - kill -debug sub-package, rename -debug-static to -debug
4424  - clear dl_dynamic_weak for NPTL
4425
4426* Mon Dec 16 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-16
4427- fix <bits/mathinline.h> and <bits/nan.h> for C++
4428- automatically generate NPTL libpthread wrappers
4429
4430* Mon Dec 16 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-15
4431- update from CVS
4432  - all functions which need cancellation should now be cancellable
4433    both in libpthread.so and libc.so
4434  - removed @@GLIBC_2.3.2 cancellation wrappers
4435
4436* Fri Dec 13 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-14
4437- update from CVS
4438  - replace __libc_lock_needed@GOTOFF(%%ebx) with
4439    %%gs:offsetof(tcbhead_t, multiple_threads)
4440  - start of new NPTL cancellation wrappers
4441
4442* Thu Dec 12 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-13
4443- update from CVS
4444- use inline locks in malloc
4445
4446* Tue Dec 10 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-12
4447- update from CVS
4448  - support LD_ASSUME_KERNEL=2.2.5 in statically linked programs
4449
4450* Mon Dec  9 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-11
4451- update from CVS
4452- rebuilt with gcc-3.2.1-2
4453
4454* Fri Dec  6 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-10
4455- update from CVS
4456- non-nptl --with-tls --without-__thread FLOATING_STACKS libpthread
4457  should work now
4458- faster libc locking when using nptl
4459- add OUTPUT_FORMAT to linker scripts
4460- fix x86_64 sendfile (#79111)
4461
4462* Wed Dec  4 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-9
4463- update from CVS
4464  - RUSCII support (#78906)
4465- for nptl builds add BuildRequires
4466- fix byteswap.h for non-gcc (#77689)
4467- add nptl-devel package
4468
4469* Tue Dec  3 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-8
4470- update from CVS
4471  - make --enable-kernel=2.2.5 --with-tls --without-__thread
4472    ld.so load nptl and other --with-__thread libs
4473- disable nptl by default for now
4474
4475* Wed Nov 27 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-7
4476- update from CVS
4477- restructured redhat/Makefile and spec, so that src.rpm contains
4478  glibc-<date>.tar.bz2, glibc-redhat-<date>.tar.bz2 and glibc-redhat.patch
4479- added nptl
4480
4481* Fri Nov  8 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-6
4482- update from CVS
4483  - even more regex fixes
4484- run sed testsuite to check glibc regex
4485
4486* Thu Oct 24 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-5
4487- fix LD_DEBUG=statistics and LD_TRACE_PRELINKING in programs
4488  using libpthread.so.
4489
4490* Thu Oct 24 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-4
4491- update from CVS
4492  - fixed %%a and %%A in *printf (#75821)
4493  - fix re_comp memory leaking (#76594)
4494
4495* Tue Oct 22 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-3
4496- update from CVS
4497  - some more regex fixes
4498- fix libpthread.a (#76484)
4499- fix locale-archive enlarging
4500
4501* Fri Oct 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-2
4502- update from CVS
4503  - don't need to use 128K of stacks for DNS lookups
4504  - regex fixes
4505  - updated timezone data e.g. for this year's Brasil DST
4506    changes
4507  - expand ${LIB} in RPATH/RUNPATH/dlopen filenames
4508
4509* Fri Oct 11 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-1
4510- update to 2.3.1 final
4511  - support really low thread stack sizes (#74073)
4512- tzdata update
4513
4514* Wed Oct  9 2002 Jakub Jelinek <jakub@redhat.com> 2.3-2
4515- update from CVS
4516  - handle low stack limits
4517  - move s390x into */lib64
4518
4519* Thu Oct  3 2002 Jakub Jelinek <jakub@redhat.com> 2.3-1
4520- update to 2.3 final
4521  - fix freopen on libstdc++ <= 2.96 stdin/stdout/stderr (#74800)
4522
4523* Sun Sep 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-3
4524- don't prelink -r libc.so on ppc/x86-64/sparc*, it doesn't
4525  speed things up, because they are neither REL arches, nor
4526  ELF_MACHINE_REL_RELATIVE
4527- fix sparc64 build
4528
4529* Sun Sep 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-2
4530- update from CVS
4531
4532* Sat Sep 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-1
4533- update from CVS
4534- prelink on ppc and x86-64 too
4535- don't remove ppc memset
4536- instead of listing on which arches to remove glibc-compat
4537  list where it should stay
4538
4539* Fri Sep  6 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-5
4540- fix wcsmbs functions with invalid character sets (or malloc
4541  failures)
4542- make sure __ctype_b etc. compat vars are updated even if
4543  they are copy relocs in the main program
4544
4545* Thu Sep  5 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-4
4546- fix /lib/libnss1_dns.so.1 (missing __set_h_errno definition
4547  leading to unresolved __set_h_errno symbol)
4548
4549* Wed Sep  4 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-3
4550- security fix - increase dns-network.c MAXPACKET to at least
4551  65536 to avoid buffer overrun. Likewise glibc-compat
4552  dns-{host,network}.c.
4553
4554* Tue Sep  3 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-2
4555- temporarily add back __ctype_b, __ctype_tolower and __ctype_toupper to
4556  libc.a and export them as @@GLIBC_2.0 symbols, not @GLIBC_2.0
4557  from libc.so - we have still lots of .a libraries referencing
4558  __ctype_{b,tolower,toupper} out there...
4559
4560* Tue Sep  3 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-1
4561- update from CVS
4562  - 2.2.93 release
4563  - use double instead of single indirection in isXXX macros
4564  - per-locale wcsmbs conversion state
4565
4566* Sat Aug 31 2002 Jakub Jelinek <jakub@redhat.com> 2.2.92-2
4567- update from CVS
4568  - fix newlocale/duplocale/uselocale
4569- disable profile on x86_64 for now
4570
4571* Sat Aug 31 2002 Jakub Jelinek <jakub@redhat.com> 2.2.92-1
4572- update from CVS
4573  - 2.2.92 release
4574  - fix gettext after uselocale
4575  - fix locales in statically linked threaded programs
4576  - fix NSS
4577
4578* Thu Aug 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.91-1
4579- update from CVS
4580  - 2.2.91 release
4581  - fix fd leaks in locale-archive reader (#72043)
4582- handle EROFS in build-locale-archive gracefully (#71665)
4583
4584* Wed Aug 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-27
4585- update from CVS
4586  - fix re_match (#72312)
4587- support more than 1024 threads
4588
4589* Fri Aug 23 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-26
4590- update from CVS
4591  - fix i386 build
4592
4593* Thu Aug 22 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-25
4594- update from CVS
4595  - fix locale-archive loading hang on some (non-primary) locales
4596    (#72122, #71878)
4597  - fix umount problems with locale-archives when /usr is a separate
4598    partition (#72043)
4599- add LICENSES file
4600
4601* Fri Aug 16 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-24
4602- update from CVS
4603  - only mmap up to 2MB of locale-archive on 32-bit machines
4604    initially
4605  - fix fseek past end + fread segfault with mmaped stdio
4606- include <sys/debugreg.h> which is mistakenly not included
4607  in glibc-devel on IA-32
4608
4609* Fri Aug 16 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-23
4610- don't return normalized locale name in setlocale when using
4611  locale-archive
4612
4613* Thu Aug 15 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-22
4614- update from CVS
4615  - optimize for primary system locale
4616- localedef fixes (#71552, #67705)
4617
4618* Wed Aug 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-21
4619- fix path to locale-archive in libc reader
4620- build locale archive at glibc-common %%post time
4621- export __strtold_internal and __wcstold_internal on Alpha again
4622- workaround some localedata problems
4623
4624* Tue Aug 13 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-20
4625- update from CVS
4626- patch out set_thread_area for now
4627
4628* Fri Aug  9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-19
4629- update from CVS
4630- GB18030 patch from Yu Shao
4631- applied Debian patch for getaddrinfo IPv4 vs. IPv6
4632- fix regcomp (#71039)
4633
4634* Sun Aug  4 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-18
4635- update from CVS
4636- use /usr/sbin/prelink, not prelink (#70376)
4637
4638* Thu Jul 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-17
4639- update from CVS
4640
4641* Thu Jul 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-16
4642- update from CVS
4643  - ungetc fix (#69586)
4644  - fseek errno fix (#69589)
4645  - change *etrlimit prototypes for C++ (#68588)
4646- use --without-tls instead of --disable-tls
4647
4648* Thu Jul 11 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-15
4649- set nscd user's shell to /sbin/nologin (#68369)
4650- fix glibc-compat buffer overflows (security)
4651- buildrequire prelink, don't build glibc's own copy of it (#67567)
4652- update from CVS
4653  - regex fix (#67734)
4654  - fix unused warnings (#67706)
4655  - fix freopen with mmap stdio (#67552)
4656  - fix realloc (#68499)
4657
4658* Tue Jun 25 2002 Bill Nottingham <notting@redhat.com> 2.2.90-14
4659- update from CVS
4660  - fix argp on long words
4661  - update atime in libio
4662
4663* Sat Jun 22 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-13
4664- update from CVS
4665  - a thread race fix
4666  - fix readdir on invalid dirp
4667
4668* Wed Jun 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-12
4669- update from CVS
4670  - don't use __thread in headers
4671- fix system(3) in threaded apps
4672- update prelink, so that it is possible to prelink -u libc.so.6.1
4673  on Alpha
4674
4675* Fri Jun  7 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-11
4676- update from CVS
4677  - fix __moddi3 (#65612, #65695)
4678  - fix ether_line (#64427)
4679- fix setvbuf with mmap stdio (#65864)
4680- --disable-tls for now, waiting for kernel
4681- avoid duplication of __divtf3 etc. on IA-64
4682- make sure get*ent_r and _IO_wfile_jumps are exported (#62278)
4683
4684* Tue May 21 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-10
4685- update from CVS
4686  - fix Alpha pthread bug with gcc 3.1
4687
4688* Fri Apr 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-35
4689- fix nice
4690
4691* Mon Apr 15 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-34
4692- add relocation dependencies even for weak symbols (#63422)
4693- stricter check_fds check for suid/sgid binaries
4694- run make check at %%install time
4695
4696* Sat Apr 13 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-33
4697- handle Dec 31 1969 in mktime for timezones west of GMT (#63369)
4698- back out do-lookup.h change (#63261, #63305)
4699- use "memory" clobber instead all the fancy stuff in i386/i686/bits/string.h
4700  since lots of compilers break on it
4701- fix sparc build with gcc 3.1
4702- fix spec file for athlon
4703
4704* Tue Apr  9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-32
4705- fix debugging of threaded apps (#62804)
4706- fix DST for Estonia (#61494)
4707- document that pthread_mutexattr_?etkind_np are deprecated
4708  and pthread_mutexattr_?ettype should be used instead in man
4709  pages (#61485)
4710- fix libSegFault.so undefined externals
4711
4712* Fri Apr  5 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-31
4713- temporarily disable prelinking ld.so, as some statically linked
4714  binaries linked against debugging versions of old glibcs die on it
4715  (#62352)
4716- fix <semaphore.h> for -std=c99 (#62516)
4717- fix ether_ntohost segfault (#62397)
4718- remove in glibc_post_upgrade on i386 all /lib/i686/libc-*.so,
4719  /lib/i686/libm-*.so and /lib/i686/libpthread-*.so, not just current
4720  version (#61633)
4721- prelink -r on alpha too
4722
4723* Thu Mar 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-30
4724- update GB18030 iconv module (Yu Shao)
4725
4726* Tue Mar 26 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-29
4727- features.h fix
4728
4729* Tue Mar 26 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-28
4730- update from CVS
4731  - fix nscd with huge groups
4732  - fix nis to not close fds it shouldn't
4733- rebuilt against newer glibc-kernheaders to use the correct
4734  PATH_MAX
4735- handle .athlon.rpm glibc the same way as .i686.rpm
4736- add a couple of .ISO-8859-15 locales (#61908)
4737- readd temporarily currencies which were superceeded by Euro
4738  into the list of accepted currencies by localedef to make
4739  standard conformance testsuites happy
4740- temporarily moved __libc_waitpid back to make Sun JDK happy
4741- use old malloc code
4742- prelink i686/athlon ld.so and prelink -r i686/athlon libc.so
4743
4744* Thu Mar 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-27
4745- update from CVS
4746  - fix DST handling for southern hemisphere (#60747)
4747  - fix daylight setting for tzset (#59951)
4748  - fix ftime (#60350)
4749  - fix nice return value
4750  - fix a malloc segfault
4751- temporarily moved __libc_wait, __libc_fork and __libc_stack_end
4752  back to what they used to be exported at
4753- censorship (#60758)
4754
4755* Thu Feb 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-26
4756- update from CVS
4757- use __attribute__((visibility(...))) if supported, use _rtld_local
4758  for ld.so only objects
4759- provide libc's own __{,u}{div,mod}di3
4760
4761* Wed Feb 27 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-25
4762- switch back to 2.2.5, mmap stdio needs work
4763
4764* Mon Feb 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-8
4765- fix two other mmap stdio bugs (#60228)
4766
4767* Thu Feb 21 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-7
4768- fix yet another mmap stdio bug (#60145)
4769
4770* Tue Feb 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-6
4771- fix mmap stdio bug (seen on ld as File truncated error, #60043)
4772- apply Andreas Schwab's fix for pthread sigwait
4773- remove /lib/i686/ libraries in glibc_post_upgrade when
4774  performing i386 glibc install
4775
4776* Thu Feb 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-5
4777- update to CVS
4778- added glibc-utils subpackage
4779- disable autoreq in glibc-debug
4780- readd %%lang() to locale files
4781
4782* Thu Feb  7 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-4
4783- update to CVS
4784- move glibc private symbols to GLIBC_PRIVATE symbol version
4785
4786* Wed Jan  9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-3
4787- fix a sqrt bug on alpha which caused SHN_UNDEF $__full_ieee754_sqrt..ng
4788  symbol in libm
4789
4790* Tue Jan  8 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-2
4791- add debug-static package
4792
4793* Mon Dec 31 2001 Jakub Jelinek <jakub@redhat.com> 2.2.90-1
4794- update from CVS
4795- remove -D__USE_STRING_INLINES
4796- add debug subpackage to trim glibc and glibc-devel size
4797
4798* Wed Oct  3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-19
4799- fix strsep
4800
4801* Fri Sep 28 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-18
4802- fix a ld.so bug with duplicate searchlists in l_scope
4803- fix erfcl(-inf)
4804- turn /usr/lib/librt.so into linker script
4805
4806* Wed Sep 26 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-17
4807- fix a ld.so lookup bug after lots of dlopen calls
4808- fix CMSG_DATA for non-gcc non-ISOC99 compilers (#53984)
4809- prelinking support for Sparc64
4810
4811* Fri Sep 21 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-16
4812- update from CVS to fix DT_SYMBOLIC
4813- prelinking support for Alpha and Sparc
4814
4815* Tue Sep 18 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-15
4816- update from CVS
4817  - linuxthreads now retries if -1/EINTR is returned from
4818    reading or writing to thread manager pipe (#43742)
4819- use DT_FILTER in librt.so (#53394)
4820  - update glibc prelink patch so that it handles filters
4821- fix timer_* with SIGEV_NONE (#53494)
4822- make glibc_post_upgrade work on PPC (patch from Franz Sirl)
4823
4824* Mon Sep 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-14
4825- fix build on sparc32
4826- 2.2.4-13 build for some reason missed some locales
4827  on alpha/ia64
4828
4829* Mon Sep  3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-13
4830- fix iconvconfig
4831
4832* Mon Sep  3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-12
4833- add fam to /etc/rpc (#52863)
4834- fix <inttypes.h> for C++ (#52960)
4835- fix perror
4836
4837* Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-11
4838- fix strnlen(x, -1)
4839
4840* Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-10
4841- doh, <bits/libc-lock.h> should only define __libc_rwlock_t
4842  if __USE_UNIX98.
4843
4844* Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-9
4845- fix bits/libc-lock.h so that gcc can compile
4846- fix s390 build
4847
4848* Fri Aug 24 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-8
4849- kill stale library symlinks in ldconfig (#52350)
4850- fix inttypes.h for G++ < 3.0
4851- use DT_REL*COUNT
4852
4853* Wed Aug 22 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-7
4854- fix strnlen on IA-64 (#50077)
4855
4856* Thu Aug 16 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-6
4857- glibc 2.2.4 final
4858- fix -lpthread -static (#51672)
4859
4860* Fri Aug 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-5
4861- doh, include libio/tst-swscanf.c
4862
4863* Fri Aug 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-4
4864- don't crash on catclose(-1)
4865- fix wscanf %%[] handling
4866- fix return value from swprintf
4867- handle year + %%U/%%W week + week day in strptime
4868
4869* Thu Aug  9 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-3
4870- update from CVS to
4871  - fix strcoll (#50548)
4872  - fix seekdir (#51132)
4873  - fix memusage (#50606)
4874- don't make gconv-modules.cache %%config file, just don't verify
4875  its content.
4876
4877* Mon Aug  6 2001 Jakub Jelinek <jakub@redhat.com>
4878- fix strtod and *scanf (#50723, #50724)
4879
4880* Sat Aug  4 2001 Jakub Jelinek <jakub@redhat.com>
4881- update from CVS
4882  - fix iconv cache handling
4883- glibc should not own %%{_infodir}, %%{_mandir} nor %%{_mandir}/man3 (#50673)
4884- add gconv-modules.cache as emtpy config file (#50699)
4885- only run iconvconfig if /usr is mounted read-write (#50667)
4886
4887* Wed Jul 25 2001 Jakub Jelinek <jakub@redhat.com>
4888- move iconvconfig from glibc-common into glibc subpackage,
4889  call it from glibc_post_upgrade instead of common's post.
4890
4891* Tue Jul 24 2001 Jakub Jelinek <jakub@redhat.com>
4892- turn off debugging printouts in iconvconfig
4893
4894* Tue Jul 24 2001 Jakub Jelinek <jakub@redhat.com>
4895- update from CVS
4896  - fix IA-32 makecontext
4897  - make fflush(0) thread-safe (#46446)
4898
4899* Mon Jul 23 2001 Jakub Jelinek <jakub@redhat.com>
4900- adjust prelinking DT_* and SHT_* values in elf.h
4901- update from CVS
4902  - iconv cache
4903  - make iconv work in SUID/SGID programs (#34611)
4904
4905* Fri Jul 20 2001 Jakub Jelinek <jakub@redhat.com>
4906- update from CVS
4907  - kill non-pic code in libm.so
4908  - fix getdate
4909  - fix some locales (#49402)
4910- rebuilt with binutils-2.11.90.0.8-5 to place .interp section
4911  properly in libBrokenLocale.so, libNoVersion.so and libanl.so
4912- add floating stacks on IA-64, Alpha, Sparc (#49308)
4913
4914* Mon Jul 16 2001 Jakub Jelinek <jakub@redhat.com>
4915- make /lib/i686 directory owned by glibc*.i686.rpm
4916
4917* Mon Jul  9 2001 Jakub Jelinek <jakub@redhat.com>
4918- remove rquota.[hx] headers which are now provided by quota (#47141)
4919- add prelinking patch
4920
4921* Thu Jul  5 2001 Jakub Jelinek <jakub@redhat.com>
4922- require sh-utils for nscd
4923
4924* Mon Jun 25 2001 Jakub Jelinek <jakub@redhat.com>
4925- update from CVS (#43681, #43350, #44663, #45685)
4926- fix ro_RO bug (#44644)
4927
4928* Wed Jun  6 2001 Jakub Jelinek <jakub@redhat.com>
4929- fix a bunch of math bugs (#43210, #43345, #43346, #43347, #43348, #43355)
4930- make rpc headers -ansi compilable (#42390)
4931- remove alphaev6 optimized memcpy, since there are still far too many
4932  broken apps which call memcpy where they should call memmove
4933- update from CVS to (among other things):
4934  - fix tanhl bug (#43352)
4935
4936* Tue May 22 2001 Jakub Jelinek <jakub@redhat.com>
4937- fix #include <signal.h> with -D_XOPEN_SOURCE=500 on ia64 (#35968)
4938- fix a dlclose reldeps handling bug
4939- some more profiling fixes
4940- fix tgmath.h
4941
4942* Thu May 17 2001 Jakub Jelinek <jakub@redhat.com>
4943- make ldconfig more quiet
4944- fix LD_PROFILE on i686 (#41030)
4945
4946* Wed May 16 2001 Jakub Jelinek <jakub@redhat.com>
4947- fix the hardlink program, so that it really catches all files with
4948  identical content
4949- add a s390x clone fix
4950
4951* Wed May 16 2001 Jakub Jelinek <jakub@redhat.com>
4952- fix rpc for non-threaded apps using svc_fdset and similar variables (#40409)
4953- fix nss compatibility DSO versions for alphaev6
4954- add a hardlink program instead of the shell 3x for plus cmp -s/link
4955  which takes a lot of time during build
4956- rework BuildPreReq and Conflicts with gcc, so that
4957  it applies only where it has to
4958
4959* Fri May 11 2001 Jakub Jelinek <jakub@redhat.com>
4960- fix locale name of ja_JP in UTF-8 (#39783)
4961- fix re_search_2 (#40244)
4962- fix memusage script (#39138, #39823)
4963- fix dlsym(RTLD_NEXT, ) from main program (#39803)
4964- fix xtrace script (#39609)
4965- make glibc conflict with glibc-devel 2.2.2 and below (to make sure
4966  libc_nonshared.a has atexit)
4967- fix getconf LFS_CFLAGS on 64bitters
4968- recompile with gcc-2.96-84 or above to fix binary compatibility problem
4969  with __frame_state_for function (#37933)
4970
4971* Fri Apr 27 2001 Jakub Jelinek <jakub@redhat.com>
4972- glibc 2.2.3 release
4973  - fix strcoll (#36539)
4974- add BuildPreReqs (#36378)
4975
4976* Wed Apr 25 2001 Jakub Jelinek <jakub@redhat.com>
4977- update from CVS
4978
4979* Fri Apr 20 2001 Jakub Jelinek <jakub@redhat.com>
4980- update from CVS
4981  - fix sparc64, ia64
4982  - fix some locale syntax errors (#35982)
4983
4984* Wed Apr 18 2001 Jakub Jelinek <jakub@redhat.com>
4985- update from CVS
4986
4987* Wed Apr 11 2001 Jakub Jelinek <jakub@redhat.com>
4988- update from CVS
4989
4990* Fri Apr  6 2001 Jakub Jelinek <jakub@redhat.com>
4991- support even 2.4.0 kernels on ia64, sparc64 and s390x
4992- include UTF-8 locales
4993- make gconv-modules %%config(noreplace)
4994
4995* Fri Mar 23 2001 Jakub Jelinek <jakub@redhat.com>
4996- back out sunrpc changes
4997
4998* Wed Mar 21 2001 Jakub Jelinek <jakub@redhat.com>
4999- update from CVS
5000  - fix ia64 build
5001  - fix pthread_getattr_np
5002
5003* Fri Mar 16 2001 Jakub Jelinek <jakub@redhat.com>
5004- update from CVS
5005  - run atexit() registered functions at dlclose time if they are in shared
5006    libraries (#28625)
5007  - add pthread_getattr_np API to make JVM folks happy
5008
5009* Wed Mar 14 2001 Jakub Jelinek <jakub@redhat.com>
5010- require 2.4.1 instead of 2.4.0 on platforms where it required 2.4 kernel
5011- fix ldd behaviour on unresolved symbols
5012- remove nonsensical ldconfig warning, update osversion for the most
5013  recent library with the same soname in the same directory instead (#31703)
5014- apply selected patches from CVS
5015- s390x spec file changes from Florian La Roche
5016
5017* Wed Mar  7 2001 Jakub Jelinek <jakub@redhat.com>
5018- fix gencat (#30894)
5019- fix ldconfig changes from yesterday, fix LD_ASSUME_KERNEL handling
5020
5021* Tue Mar  6 2001 Jakub Jelinek <jakub@redhat.com>
5022- update from CVS
5023- make pthread_attr_setstacksize consistent before and after pthread manager
5024  is started (#28194)
5025- pass back struct sigcontext from pthread signal wrapper (on ia32 only so
5026  far, #28493)
5027- on i686 ship both --enable-kernel 2.2.5 and 2.4.0 libc/libm/libpthread,
5028  make ld.so pick the right one
5029
5030* Sat Feb 17 2001 Preston Brown <pbrown@redhat.com>
5031- glib-common doesn't require glibc, until we can figure out how to get out of dependency hell.
5032
5033* Sat Feb 17 2001 Jakub Jelinek <jakub@redhat.com>
5034- make glibc require particular version of glibc-common
5035  and glibc-common prerequire glibc.
5036
5037* Fri Feb 16 2001 Jakub Jelinek <jakub@redhat.com>
5038- glibc 2.2.2 release
5039  - fix regex REG_ICASE bug seen in ksymoops
5040
5041* Sat Feb 10 2001 Jakub Jelinek <jakub@redhat.com>
5042- fix regexec leaking memory (#26864)
5043
5044* Fri Feb  9 2001 Jakub Jelinek <jakub@redhat.com>
5045- update from CVS
5046  - fix ia64 build with gnupro
5047  - make regex 64bit clean
5048  - fix tgmath make check failures on alpha
5049
5050* Tue Feb  6 2001 Jakub Jelinek <jakub@redhat.com>
5051- update again for ia64 DF_1_INITFIRST
5052
5053* Fri Feb  2 2001 Jakub Jelinek <jakub@redhat.com>
5054- update from CVS
5055  - fix getaddrinfo (#25437)
5056  - support DF_1_INITFIRST (#25029)
5057
5058* Wed Jan 24 2001 Jakub Jelinek <jakub@redhat.com>
5059- build all auxiliary arches with --enablekernel 2.4.0, those wanting
5060  to run 2.2 kernels can downgrade to the base architecture glibc.
5061
5062* Sat Jan 20 2001 Jakub Jelinek <jakub@redhat.com>
5063- remove %%lang() flags from %%{_prefix}/lib/locale files temporarily
5064
5065* Sun Jan 14 2001 Jakub Jelinek <jakub@redhat.com>
5066- update to 2.2.1 final
5067  - fix a pthread_kill_other_threads_np breakage (#23966)
5068  - make static binaries using dlopen work on ia64 again
5069- fix a typo in glibc-common group
5070
5071* Wed Jan 10 2001 Bernhard Rosenkraenzer <bero@redhat.com>
5072- devel requires glibc = %%{version}
5073- noreplace /etc/nscd.conf
5074
5075* Wed Jan 10 2001 Jakub Jelinek <jakub@redhat.com>
5076- some more security fixes:
5077  - don't look up LD_PRELOAD libs in cache for SUID apps
5078    (because that bypasses SUID bit checking on the library)
5079  - place output files for profiling SUID apps into /var/profile,
5080    use O_NOFOLLOW for them
5081  - add checks for $MEMUSAGE_OUTPUT and $SEGFAULT_OUTPUT_NAME
5082- hardlink identical locale files together
5083- add %%lang() tags to locale stuff
5084- remove ko_KR.utf8 for now, it is provided by locale-utf8 package
5085
5086* Mon Jan  8 2001 Jakub Jelinek <jakub@redhat.com>
5087- add glibc-common subpackage
5088- fix alphaev6 memcpy (#22494)
5089- fix sys/cdefs.h (#22908)
5090- don't define stdin/stdout/stderr as macros for -traditional (#22913)
5091- work around a bug in IBM JDK (#22932, #23012)
5092- fix pmap_unset when network is down (#23176)
5093- move nscd in rc.d before netfs on shutdown
5094- fix $RESOLV_HOST_CONF in SUID apps (#23562)
5095
5096* Fri Dec 15 2000 Jakub Jelinek <jakub@redhat.com>
5097- fix ftw and nftw
5098
5099* Wed Dec 13 2000 Jakub Jelinek <jakub@redhat.com>
5100- fix fcvt (#22184)
5101- ldd /lib/ld-linux.so.2 is not crashing any longer again (#22197)
5102- fix gencat
5103
5104* Mon Dec 11 2000 Jakub Jelinek <jakub@redhat.com>
5105- fix alpha htonl and alphaev6 stpcpy
5106
5107* Sat Dec  9 2000 Jakub Jelinek <jakub@redhat.com>
5108- update to CVS to:
5109  - fix getnameinfo (#21934)
5110  - don't stomp on memory in rpath handling (#21544)
5111  - fix setlocale (#21507)
5112- fix libNoVersion.so.1 loading code (#21579)
5113- use auxarches define in spec file for auxiliary
5114  architectures (#21219)
5115- remove /usr/share directory from filelist (#21218)
5116
5117* Sun Nov 19 2000 Jakub Jelinek <jakub@redhat.com>
5118- update to CVS to fix getaddrinfo
5119
5120* Fri Nov 17 2000 Jakub Jelinek <jakub@redhat.com>
5121- update to CVS to fix freopen
5122- remove all alpha workarounds, not needed anymore
5123
5124* Wed Nov 15 2000 Jakub Jelinek <jakub@redhat.com>
5125- fix dladdr bug on alpha/sparc32/sparc64
5126- fix Makefiles so that they run static tests properly
5127
5128* Tue Nov 14 2000 Jakub Jelinek <jakub@redhat.com>
5129- update to CVS to fix ldconfig
5130
5131* Thu Nov  9 2000 Jakub Jelinek <jakub@redhat.com>
5132- update to glibc 2.2 release
5133
5134* Mon Nov  6 2000 Jakub Jelinek <jakub@redhat.com>
5135- update to CVS to:
5136  - export __sysconf@@GLIBC_2.2 (#20417)
5137
5138* Fri Nov  3 2000 Jakub Jelinek <jakub@redhat.com>
5139- merge to 2.1.97
5140
5141* Mon Oct 30 2000 Jakub Jelinek <jakub@redhat.com>
5142- update to CVS, including:
5143  - fix WORD_BIT/LONG_BIT definition in limits.h (#19088)
5144  - fix hesiod (#19375)
5145  - set LC_MESSAGES in zic/zdump for proper error message output (#19495)
5146  - fix LFS fcntl when used with non-LFS aware kernels (#19730)
5147
5148* Thu Oct 19 2000 Jakub Jelinek <jakub@redhat.com>
5149- fix alpha semctl (#19199)
5150- update to CVS, including:
5151  - fix glibc headers for Compaq non-gcc compilers
5152  - fix locale alias handling code (#18832)
5153  - fix rexec on little endian machines (#18886)
5154- started writing changelog again
5155
5156* Thu Aug 10 2000 Adrian Havill <havill@redhat.com>
5157- added ja ujis alias for backwards compatibility
Note: See TracBrowser for help on using the repository browser.