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