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