Updated to fedora-glibc-20060831T1812
[glibc.git] / fedora / glibc.spec.in
blob820e98a3035f2d81f2d7adb3ba0cdf65d854656f
1 %define glibcrelease 28
2 %define auxarches i586 i686 athlon sparcv9 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 %define rtkaioarches noarch
12 %define debuginfocommonarches %{ix86} alpha alphaev6 sparc sparcv9
13 %define _unpackaged_files_terminate_build 0
14 Summary: The GNU libc libraries.
15 Name: glibc
16 Version: %{glibcversion}
17 Release: %{glibcrelease}
18 License: LGPL
19 Group: System Environment/Libraries
20 Source0: %{glibcsrcdir}.tar.bz2
21 %if %{glibc_release_tarballs}
22 Source1: %(echo %{glibcsrcdir} | sed s/glibc-/glibc-linuxthreads-/).tar.bz2
23 Source2: %(echo %{glibcsrcdir} | sed s/glibc-/glibc-libidn-/).tar.bz2
24 %define glibc_release_unpack -a1 -a2
25 %endif
26 Source3: %{glibcname}-fedora-%{glibcdate}.tar.bz2
27 Patch0: %{glibcname}-fedora.patch
28 Patch1: %{name}-ia64-lib64.patch
29 Buildroot: %{_tmppath}/glibc-%{PACKAGE_VERSION}-root
30 Obsoletes: zoneinfo, libc-static, libc-devel, libc-profile, libc-headers,
31 Obsoletes: gencat, locale, ldconfig, locale-ja, glibc-profile
32 Provides: ldconfig
33 # The dynamic linker supports DT_GNU_HASH
34 Provides: rtld(GNU_HASH)
35 Autoreq: false
36 Requires: glibc-common = %{version}-%{release}
37 %ifarch sparc
38 Obsoletes: libc
39 %endif
40 # Require libgcc in case some program calls pthread_cancel in its %%post
41 Prereq: basesystem, libgcc
42 # This is for building auxiliary programs like memusage, nscd
43 # For initial glibc bootstraps it can be commented out
44 BuildPreReq: gd-devel libpng-devel zlib-devel texinfo, libselinux-devel >= 1.17.10-1
45 BuildPreReq: audit-libs-devel >= 1.1.3, sed >= 3.95, libcap-devel, gettext
46 BuildPreReq: /bin/ps, /bin/kill
47 # This is to ensure that __frame_state_for is exported by glibc
48 # will be compatible with egcs 1.x.y
49 BuildPreReq: gcc >= 3.2
50 Conflicts: rpm <= 4.0-0.65
51 Conflicts: glibc-devel < 2.2.3
52 Conflicts: gcc4 <= 4.0.0-0.6
53 %ifarch x86_64 %{ix86}
54 # Need gdb that understands DW_CFA_val_expression
55 Conflicts: gdb < 6.3.0.0-1.111
56 %endif
57 # Earlier shadow-utils packages had too restrictive permissions on
58 # /etc/default
59 Conflicts: shadow-utils < 2:4.0.3-20
60 Conflicts: nscd < 2.3.3-52
61 Conflicts: kernel < 2.6.9
62 %define enablekernel 2.6.9
63 %ifarch i386
64 %define nptl_target_cpu i486
65 %else
66 %define nptl_target_cpu %{_target_cpu}
67 %endif
68 # Need AS_NEEDED directive
69 # Need --hash-style=* support
70 BuildRequires: binutils >= 2.17.50.0.2-5
71 BuildRequires: gcc >= 3.2.1-5
72 %ifarch ppc s390 s390x
73 BuildRequires: gcc >= 4.1.0-0.17
74 %endif
75 %if "%{_enable_debug_packages}" == "1"
76 BuildPreReq: elfutils >= 0.72
77 BuildPreReq: rpm >= 4.2-0.56
78 %endif
79 %define __find_provides %{_builddir}/%{glibcsrcdir}/find_provides.sh
80 %define _filter_GLIBC_PRIVATE 1
82 %description
83 The glibc package contains standard libraries which are used by
84 multiple programs on the system. In order to save disk space and
85 memory, as well as to make upgrading easier, common system code is
86 kept in one place and shared between programs. This particular package
87 contains the most important sets of shared libraries: the standard C
88 library and the standard math library. Without these two libraries, a
89 Linux system will not function.
91 %if %{xenpackage}
92 %package xen
93 Summary: The GNU libc libraries (optimized for running under Xen)
94 Group: System Environment/Libraries
95 Requires: glibc = %{version}-%{release}, glibc-utils = %{version}-%{release}
97 %description xen
98 The standard glibc package is optimized for native kernels and does not
99 perform as well under the Xen hypervisor. This package provides alternative
100 library binaries that will be selected instead when running under Xen.
102 Install glibc-xen if you might run your system under the Xen hypervisor.
103 %endif
105 %package devel
106 Summary: Object files for development using standard C libraries.
107 Group: Development/Libraries
108 Conflicts: texinfo < 3.11
109 # Need AS_NEEDED directive
110 Conflicts: binutils < 2.15.94.0.2-1
111 Prereq: /sbin/install-info
112 Obsoletes: libc-debug, libc-headers, libc-devel, linuxthreads-devel
113 Obsoletes: glibc-debug, nptl-devel
114 Prereq: %{name}-headers
115 Requires: %{name}-headers = %{version}-%{release}, %{name} = %{version}-%{release}
116 %ifarch %{ix86}
117 # Earlier gcc's had atexit reference in crtendS.o, which does not
118 # work with this glibc where atexit is in libc_nonshared.a
119 Conflicts: gcc < 2.96-79
120 %endif
121 Autoreq: true
123 %description devel
124 The glibc-devel package contains the object files necessary
125 for developing programs which use the standard C libraries (which are
126 used by nearly all programs). If you are developing programs which
127 will use the standard C libraries, your system needs to have these
128 standard object files available in order to create the
129 executables.
131 Install glibc-devel if you are going to develop programs which will
132 use the standard C libraries.
134 %package headers
135 Summary: Header files for development using standard C libraries.
136 Group: Development/Libraries
137 Provides: %{name}-headers(%{_target_cpu})
138 %ifarch x86_64
139 # If both -m32 and -m64 is to be supported on AMD64, x86_64 glibc-headers
140 # have to be installed, not i386 ones.
141 Obsoletes: %{name}-headers(i386)
142 %endif
143 Obsoletes: libc-debug, libc-headers, libc-devel
144 Prereq: kernel-headers
145 Requires: kernel-headers >= 2.2.1, %{name} = %{version}-%{release}
146 Autoreq: true
148 %description headers
149 The glibc-headers package contains the header files necessary
150 for developing programs which use the standard C libraries (which are
151 used by nearly all programs). If you are developing programs which
152 will use the standard C libraries, your system needs to have these
153 standard header files available in order to create the
154 executables.
156 Install glibc-headers if you are going to develop programs which will
157 use the standard C libraries.
159 %package common
160 Summary: Common binaries and locale data for glibc
161 Conflicts: %{name} < %{version}
162 Conflicts: %{name} > %{version}
163 Autoreq: false
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 Conflicts: kernel < 2.2.0
175 Requires: libselinux >= 1.17.10-1, audit-libs >= 1.1.3
176 Conflicts: selinux-policy-targeted < 1.17.30-2.2
177 Prereq: /sbin/chkconfig, /usr/sbin/useradd, /usr/sbin/userdel, sh-utils
178 Autoreq: true
180 %description -n nscd
181 Nscd caches name service lookups and can dramatically improve
182 performance with NIS+, and may help with DNS as well.
184 %package utils
185 Summary: Development utilities from GNU C library
186 Group: Development/Tools
187 Requires: glibc = %{version}-%{release}
189 %description utils
190 The glibc-utils package contains memusage, a memory usage profiler,
191 mtrace, a memory leak tracer and xtrace, a function call tracer
192 which can be helpful during program debugging.
194 If unsure if you need this, don't install this package.
196 %if "%{_enable_debug_packages}" == "1"
197 %define debug_package %{nil}
199 %package debuginfo
200 Summary: Debug information for package %{name}
201 Group: Development/Debug
202 %ifarch %{debuginfocommonarches}
203 Requires: glibc-debuginfo-common = %{version}-%{release}
204 %endif
206 %description debuginfo
207 This package provides debug information for package %{name}.
208 Debug information is useful when developing applications that use this
209 package or when debugging this package.
211 This package also contains static standard C libraries with
212 debugging information. You need this only if you want to step into
213 C library routines during debugging programs statically linked against
214 one or more of the standard C libraries.
215 To use this debugging information, you need to link binaries
216 with -static -L%{_prefix}/lib/debug%{_prefix}/%{_lib} compiler options.
218 %ifarch %{debuginfocommonarches}
220 %package debuginfo-common
221 Summary: Debug information for package %{name}
222 Group: Development/Debug
224 %description debuginfo-common
225 This package provides debug information for package %{name}.
226 Debug information is useful when developing applications that use this
227 package or when debugging this package.
229 %endif
230 %endif
232 %prep
233 %setup -q -n %{glibcsrcdir} %{glibc_release_unpack} -a3
234 %patch0 -E -p1
235 %ifarch ia64
236 %if "%{_lib}" == "lib64"
237 %patch1 -p1
238 %endif
239 %endif
241 # Hack till glibc-kernheaders get updated, argh
242 mkdir -p override_headers/linux
243 cat > override_headers/linux/version.h <<EOF
244 #define UTS_RELEASE "2.6.9"
245 #define LINUX_VERSION_CODE 132617
246 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
248 mkdir -p override_headers/asm
249 cat > override_headers/asm/unistd.h <<EOF
250 #ifndef _HACK_ASM_UNISTD_H
251 #include_next <asm/unistd.h>
252 %ifarch alpha
253 #ifndef __NR_stat64
254 #define __NR_stat64 425
255 #define __NR_lstat64 426
256 #define __NR_fstat64 427
257 #endif
258 #ifndef __NR_mq_open
259 #define __NR_mq_open 432
260 #define __NR_mq_unlink 433
261 #define __NR_mq_timedsend 434
262 #define __NR_mq_timedreceive 435
263 #define __NR_mq_notify 436
264 #define __NR_mq_getsetattr 437
265 #endif
266 #ifndef __NR_waitid
267 #define __NR_waitid 438
268 #endif
269 #ifndef __NR_inotify_init
270 #define __NR_inotify_init 444
271 #define __NR_inotify_add_watch 445
272 #define __NR_inotify_rm_watch 446
273 #endif
274 %endif
275 %ifarch %{ix86}
276 #ifndef __NR_mq_open
277 #define __NR_mq_open 277
278 #define __NR_mq_unlink (__NR_mq_open+1)
279 #define __NR_mq_timedsend (__NR_mq_open+2)
280 #define __NR_mq_timedreceive (__NR_mq_open+3)
281 #define __NR_mq_notify (__NR_mq_open+4)
282 #define __NR_mq_getsetattr (__NR_mq_open+5)
283 #endif
284 #ifndef __NR_waitid
285 #define __NR_waitid 284
286 #endif
287 #ifndef __NR_inotify_init
288 #define __NR_inotify_init 291
289 #define __NR_inotify_add_watch 292
290 #define __NR_inotify_rm_watch 293
291 #endif
292 #ifndef __NR_openat
293 #define __NR_openat 295
294 #define __NR_mkdirat 296
295 #define __NR_mknodat 297
296 #define __NR_fchownat 298
297 #define __NR_futimesat 299
298 #define __NR_unlinkat 301
299 #define __NR_renameat 302
300 #define __NR_linkat 303
301 #define __NR_symlinkat 304
302 #define __NR_readlinkat 305
303 #define __NR_fchmodat 306
304 #define __NR_faccessat 307
305 #endif
306 #ifndef __NR_fstatat64
307 #define __NR_fstatat64 300
308 #endif
309 #ifndef __NR_pselect6
310 #define __NR_pselect6 308
311 #define __NR_ppoll 309
312 #endif
313 #ifndef __NR_unshare
314 #define __NR_unshare 310
315 #endif
316 #ifndef __NR_set_robust_list
317 #define __NR_set_robust_list 311
318 #define __NR_get_robust_list 312
319 #endif
320 #ifndef __NR_splice
321 #define __NR_splice 313
322 #endif
323 #ifndef __NR_sync_file_range
324 #define __NR_sync_file_range 314
325 #endif
326 #ifndef __NR_tee
327 #define __NR_tee 315
328 #endif
329 #ifndef __NR_vmsplice
330 #define __NR_vmsplice 316
331 #endif
332 %endif
333 %ifarch ia64
334 #ifndef __NR_timer_create
335 #define __NR_timer_create 1248
336 #define __NR_timer_settime 1249
337 #define __NR_timer_gettime 1250
338 #define __NR_timer_getoverrun 1251
339 #define __NR_timer_delete 1252
340 #define __NR_clock_settime 1253
341 #define __NR_clock_gettime 1254
342 #define __NR_clock_getres 1255
343 #define __NR_clock_nanosleep 1256
344 #endif
345 #ifndef __NR_mq_open
346 #define __NR_mq_open 1262
347 #define __NR_mq_unlink 1263
348 #define __NR_mq_timedsend 1264
349 #define __NR_mq_timedreceive 1265
350 #define __NR_mq_notify 1266
351 #define __NR_mq_getsetattr 1267
352 #endif
353 #ifndef __NR_waitid
354 #define __NR_waitid 1270
355 #endif
356 #ifndef __NR_inotify_init
357 #define __NR_inotify_init 1277
358 #define __NR_inotify_add_watch 1278
359 #define __NR_inotify_rm_watch 1279
360 #endif
361 #ifndef __NR_openat
362 #define __NR_openat 1281
363 #define __NR_mkdirat 1282
364 #define __NR_mknodat 1283
365 #define __NR_fchownat 1284
366 #define __NR_futimesat 1285
367 #define __NR_newfstatat 1286
368 #define __NR_unlinkat 1287
369 #define __NR_renameat 1288
370 #define __NR_linkat 1289
371 #define __NR_symlinkat 1290
372 #define __NR_readlinkat 1291
373 #define __NR_fchmodat 1292
374 #define __NR_faccessat 1293
375 #endif
376 #if 0
377 #ifndef __NR_pselect6
378 #define __NR_pselect6 1294
379 #define __NR_ppoll 1295
380 #endif
381 #endif
382 #ifndef __NR_unshare
383 #define __NR_unshare 1296
384 #endif
385 #ifndef __NR_splice
386 #define __NR_splice 1297
387 #endif
388 #ifndef __NR_set_robust_list
389 #define __NR_set_robust_list 1298
390 #define __NR_get_robust_list 1299
391 #endif
392 #ifndef __NR_sync_file_range
393 #define __NR_sync_file_range 1300
394 #endif
395 #ifndef __NR_tee
396 #define __NR_tee 1301
397 #endif
398 #ifndef __NR_vmsplice
399 #define __NR_vmsplice 1302
400 #endif
401 %endif
402 %ifarch ppc
403 #ifndef __NR_utimes
404 #define __NR_utimes 251
405 #endif
406 #ifndef __NR_statfs64
407 #define __NR_statfs64 252
408 #define __NR_fstatfs64 253
409 #endif
410 #ifndef __NR_fadvise64_64
411 #define __NR_fadvise64_64 254
412 #endif
413 #ifndef __NR_mq_open
414 #define __NR_mq_open 262
415 #define __NR_mq_unlink 263
416 #define __NR_mq_timedsend 264
417 #define __NR_mq_timedreceive 265
418 #define __NR_mq_notify 266
419 #define __NR_mq_getsetattr 267
420 #endif
421 #ifndef __NR_waitid
422 #define __NR_waitid 272
423 #endif
424 #ifndef __NR_inotify_init
425 #define __NR_inotify_init 275
426 #define __NR_inotify_add_watch 276
427 #define __NR_inotify_rm_watch 277
428 #endif
429 #ifndef __NR_pselect6
430 #define __NR_pselect6 280
431 #define __NR_ppoll 281
432 #endif
433 #ifndef __NR_unshare
434 #define __NR_unshare 282
435 #endif
436 #ifndef __NR_splice
437 #define __NR_splice 283
438 #endif
439 #ifndef __NR_tee
440 #define __NR_tee 284
441 #endif
442 #ifndef __NR_vmsplice
443 #define __NR_vmsplice 285
444 #endif
445 #ifndef __NR_openat
446 #define __NR_openat 286
447 #define __NR_mkdirat 287
448 #define __NR_mknodat 288
449 #define __NR_fchownat 289
450 #define __NR_futimesat 290
451 #define __NR_fstatat64 291
452 #define __NR_unlinkat 292
453 #define __NR_renameat 293
454 #define __NR_linkat 294
455 #define __NR_symlinkat 295
456 #define __NR_readlinkat 296
457 #define __NR_fchmodat 297
458 #define __NR_faccessat 298
459 #endif
460 %endif
461 %ifarch ppc64
462 #ifndef __NR_utimes
463 #define __NR_utimes 251
464 #endif
465 #ifndef __NR_mq_open
466 #define __NR_mq_open 262
467 #define __NR_mq_unlink 263
468 #define __NR_mq_timedsend 264
469 #define __NR_mq_timedreceive 265
470 #define __NR_mq_notify 266
471 #define __NR_mq_getsetattr 267
472 #endif
473 #ifndef __NR_waitid
474 #define __NR_waitid 272
475 #endif
476 #ifndef __NR_inotify_init
477 #define __NR_inotify_init 275
478 #define __NR_inotify_add_watch 276
479 #define __NR_inotify_rm_watch 277
480 #endif
481 #ifndef __NR_pselect6
482 #define __NR_pselect6 280
483 #define __NR_ppoll 281
484 #endif
485 #ifndef __NR_unshare
486 #define __NR_unshare 282
487 #endif
488 #ifndef __NR_splice
489 #define __NR_splice 283
490 #endif
491 #ifndef __NR_tee
492 #define __NR_tee 284
493 #endif
494 #ifndef __NR_vmsplice
495 #define __NR_vmsplice 285
496 #endif
497 #ifndef __NR_openat
498 #define __NR_openat 286
499 #define __NR_mkdirat 287
500 #define __NR_mknodat 288
501 #define __NR_fchownat 289
502 #define __NR_futimesat 290
503 #define __NR_newfstatat 291
504 #define __NR_unlinkat 292
505 #define __NR_renameat 293
506 #define __NR_linkat 294
507 #define __NR_symlinkat 295
508 #define __NR_readlinkat 296
509 #define __NR_fchmodat 297
510 #define __NR_faccessat 298
511 #endif
512 %endif
513 %ifarch s390
514 #ifndef __NR_timer_create
515 #define __NR_timer_create 254
516 #define __NR_timer_settime (__NR_timer_create+1)
517 #define __NR_timer_gettime (__NR_timer_create+2)
518 #define __NR_timer_getoverrun (__NR_timer_create+3)
519 #define __NR_timer_delete (__NR_timer_create+4)
520 #define __NR_clock_settime (__NR_timer_create+5)
521 #define __NR_clock_gettime (__NR_timer_create+6)
522 #define __NR_clock_getres (__NR_timer_create+7)
523 #define __NR_clock_nanosleep (__NR_timer_create+8)
524 #endif
525 #ifndef __NR_fadvise64_64
526 #define __NR_fadvise64_64 264
527 #endif
528 #ifndef __NR_statfs64
529 #define __NR_statfs64 265
530 #define __NR_fstatfs64 266
531 #endif
532 #ifndef __NR_mq_open
533 #define __NR_mq_open 271
534 #define __NR_mq_unlink 272
535 #define __NR_mq_timedsend 273
536 #define __NR_mq_timedreceive 274
537 #define __NR_mq_notify 275
538 #define __NR_mq_getsetattr 276
539 #endif
540 #ifndef __NR_waitid
541 #define __NR_waitid 281
542 #endif
543 #ifndef __NR_inotify_init
544 #define __NR_inotify_init 284
545 #define __NR_inotify_add_watch 285
546 #define __NR_inotify_rm_watch 286
547 #endif
548 #ifndef __NR_openat
549 #define __NR_openat 288
550 #define __NR_mkdirat 289
551 #define __NR_mknodat 290
552 #define __NR_fchownat 291
553 #define __NR_futimesat 292
554 #define __NR_fstatat64 293
555 #define __NR_unlinkat 294
556 #define __NR_renameat 295
557 #define __NR_linkat 296
558 #define __NR_symlinkat 297
559 #define __NR_readlinkat 298
560 #define __NR_fchmodat 299
561 #define __NR_faccessat 300
562 #endif
563 #ifndef __NR_pselect6
564 #define __NR_pselect6 301
565 #define __NR_ppoll 302
566 #endif
567 #ifndef __NR_unshare
568 #define __NR_unshare 303
569 #endif
570 %endif
571 %ifarch s390x
572 #ifndef __NR_timer_create
573 #define __NR_timer_create 254
574 #define __NR_timer_settime (__NR_timer_create+1)
575 #define __NR_timer_gettime (__NR_timer_create+2)
576 #define __NR_timer_getoverrun (__NR_timer_create+3)
577 #define __NR_timer_delete (__NR_timer_create+4)
578 #define __NR_clock_settime (__NR_timer_create+5)
579 #define __NR_clock_gettime (__NR_timer_create+6)
580 #define __NR_clock_getres (__NR_timer_create+7)
581 #define __NR_clock_nanosleep (__NR_timer_create+8)
582 #endif
583 #ifndef __NR_mq_open
584 #define __NR_mq_open 271
585 #define __NR_mq_unlink 272
586 #define __NR_mq_timedsend 273
587 #define __NR_mq_timedreceive 274
588 #define __NR_mq_notify 275
589 #define __NR_mq_getsetattr 276
590 #endif
591 #ifndef __NR_waitid
592 #define __NR_waitid 281
593 #endif
594 #ifndef __NR_inotify_init
595 #define __NR_inotify_init 284
596 #define __NR_inotify_add_watch 285
597 #define __NR_inotify_rm_watch 286
598 #endif
599 #ifndef __NR_openat
600 #define __NR_openat 288
601 #define __NR_mkdirat 289
602 #define __NR_mknodat 290
603 #define __NR_fchownat 291
604 #define __NR_futimesat 292
605 #define __NR_newfstatat 293
606 #define __NR_unlinkat 294
607 #define __NR_renameat 295
608 #define __NR_linkat 296
609 #define __NR_symlinkat 297
610 #define __NR_readlinkat 298
611 #define __NR_fchmodat 299
612 #define __NR_faccessat 300
613 #endif
614 #ifndef __NR_pselect6
615 #define __NR_pselect6 301
616 #define __NR_ppoll 302
617 #endif
618 #ifndef __NR_unshare
619 #define __NR_unshare 303
620 #endif
621 %endif
622 %ifarch sparc sparcv9 sparc64
623 #ifndef __NR_mq_open
624 #define __NR_mq_open 273
625 #define __NR_mq_unlink 274
626 #define __NR_mq_timedsend 275
627 #define __NR_mq_timedreceive 276
628 #define __NR_mq_notify 277
629 #define __NR_mq_getsetattr 278
630 #endif
631 #ifndef __NR_waitid
632 #define __NR_waitid 279
633 #endif
634 #ifndef __NR_stat64
635 #define __NR_fstat64 63
636 #define __NR_lstat64 132
637 #define __NR_stat64 139
638 #endif
639 #ifndef __NR_inotify_init
640 #define __NR_inotify_init 151
641 #define __NR_inotify_add_watch 152
642 #define __NR_inotify_rm_watch 156
643 #endif
644 #ifndef __NR_openat
645 #define __NR_openat 284
646 #define __NR_mkdirat 285
647 #define __NR_mknodat 286
648 #define __NR_fchownat 287
649 #define __NR_futimesat 288
650 #define __NR_newfstatat 289
651 #define __NR_unlinkat 290
652 #define __NR_renameat 291
653 #define __NR_linkat 292
654 #define __NR_symlinkat 293
655 #define __NR_readlinkat 294
656 #define __NR_fchmodat 295
657 #define __NR_faccessat 296
658 #endif
659 #ifndef __NR_pselect6
660 #define __NR_pselect6 297
661 #define __NR_ppoll 298
662 #endif
663 #ifndef __NR_unshare
664 #define __NR_unshare 299
665 #endif
666 %endif
667 %ifarch x86_64
668 #ifndef __NR_mq_open
669 #define __NR_mq_open 240
670 #define __NR_mq_unlink 241
671 #define __NR_mq_timedsend 242
672 #define __NR_mq_timedreceive 243
673 #define __NR_mq_notify 244
674 #define __NR_mq_getsetattr 245
675 #endif
676 #ifndef __NR_waitid
677 #define __NR_waitid 247
678 #endif
679 #ifndef __NR_inotify_init
680 #define __NR_inotify_init 253
681 #define __NR_inotify_add_watch 254
682 #define __NR_inotify_rm_watch 255
683 #endif
684 #ifndef __NR_openat
685 #define __NR_openat 257
686 #define __NR_mkdirat 258
687 #define __NR_mknodat 259
688 #define __NR_fchownat 260
689 #define __NR_futimesat 261
690 #define __NR_newfstatat 262
691 #define __NR_unlinkat 263
692 #define __NR_renameat 264
693 #define __NR_linkat 265
694 #define __NR_symlinkat 266
695 #define __NR_readlinkat 267
696 #define __NR_fchmodat 268
697 #define __NR_faccessat 269
698 #endif
699 #ifndef __NR_pselect6
700 #define __NR_pselect6 270
701 #define __NR_ppoll 271
702 #endif
703 #ifndef __NR_unshare
704 #define __NR_unshare 272
705 #endif
706 #ifndef __NR_set_robust_list
707 #define __NR_set_robust_list 273
708 #define __NR_get_robust_list 274
709 #endif
710 #ifndef __NR_splice
711 #define __NR_splice 275
712 #endif
713 #ifndef __NR_tee
714 #define __NR_tee 276
715 #endif
716 #ifndef __NR_sync_file_range
717 #define __NR_sync_file_range 277
718 #endif
719 #ifndef __NR_vmsplice
720 #define __NR_vmsplice 278
721 #endif
722 %endif
723 #endif
725 cat > override_headers/asm/errno.h <<EOF
726 #ifndef _HACK_ASM_ERRNO_H
727 #include_next <asm/errno.h>
728 %ifarch alpha
729 #ifndef ENOKEY
730 #define ENOKEY 132
731 #define EKEYEXPIRED 133
732 #define EKEYREVOKED 134
733 #define EKEYREJECTED 135
734 #endif
735 #ifndef EOWNERDEAD
736 #define EOWNERDEAD 136
737 #define ENOTRECOVERABLE 137
738 #endif
739 %endif
740 %ifarch %{ix86} ia64 ppc ppc64 s390 s390x x86_64
741 #ifndef ENOKEY
742 #define ENOKEY 126
743 #define EKEYEXPIRED 127
744 #define EKEYREVOKED 128
745 #define EKEYREJECTED 129
746 #endif
747 #ifndef EOWNERDEAD
748 #define EOWNERDEAD 130
749 #define ENOTRECOVERABLE 131
750 #endif
751 %endif
752 %ifarch sparc sparcv9 sparc64
753 #ifndef ENOKEY
754 #define ENOKEY 128
755 #define EKEYEXPIRED 129
756 #define EKEYREVOKED 130
757 #define EKEYREJECTED 131
758 #endif
759 #ifndef EOWNERDEAD
760 #define EOWNERDEAD 132
761 #define ENOTRECOVERABLE 133
762 #endif
763 %endif
764 #endif
767 # A lot of programs still misuse memcpy when they have to use
768 # memmove. The memcpy implementation below is not tolerant at
769 # all.
770 rm -f sysdeps/alpha/alphaev6/memcpy.S
772 find . -type f -size 0 -o -name "*.orig" -exec rm -f {} \;
773 cat > find_provides.sh <<EOF
774 #!/bin/sh
775 /usr/lib/rpm/find-provides | grep -v GLIBC_PRIVATE
776 exit 0
778 chmod +x find_provides.sh
779 touch `find . -name configure`
780 touch locale/programs/*-kw.h
782 %build
783 GCC=gcc
784 GXX=g++
785 %ifarch %{ix86}
786 BuildFlags="-march=%{_target_cpu} -DUSE_CFA_VAL_EXPRESSION"
787 %endif
788 %ifarch i686
789 BuildFlags="-march=i686 -mtune=generic -DUSE_CFA_VAL_EXPRESSION"
790 %endif
791 %ifarch i386
792 BuildFlags="$BuildFlags -mno-tls-direct-seg-refs"
793 %endif
794 %ifarch x86_64
795 BuildFlags="-mtune=generic -DUSE_CFA_VAL_EXPRESSION"
796 %endif
797 %ifarch alphaev6
798 BuildFlags="-mcpu=ev6"
799 %endif
800 %ifarch sparc
801 BuildFlags="-fcall-used-g6"
802 GCC="gcc -m32"
803 GXX="g++ -m32"
804 %endif
805 %ifarch sparcv9
806 BuildFlags="-mcpu=ultrasparc -fcall-used-g6"
807 GCC="gcc -m32"
808 GXX="g++ -m32"
809 %endif
810 %ifarch sparc64
811 BuildFlags="-mcpu=ultrasparc -mvis -fcall-used-g6"
812 GCC="gcc -m64"
813 GXX="g++ -m64"
814 %endif
815 %ifarch ppc64
816 BuildFlags="-mno-minimal-toc"
817 GCC="gcc -m64"
818 GXX="g++ -m64"
819 %endif
821 BuildFlags="$BuildFlags -DNDEBUG=1"
822 if gcc -v 2>&1 | grep -q 'gcc version 3.[0123]'; then
823 BuildFlags="$BuildFlags -finline-limit=2000"
825 EnableKernel="--enable-kernel=%{enablekernel}"
826 echo "$BuildFlags" > BuildFlags
827 echo "$GCC" > Gcc
828 AddOns=`echo */configure | sed -e 's!/configure!!g;s!\(linuxthreads\|nptl\|rtkaio\)\( \|$\)!!g;s! \+$!!;s! !,!g;s!^!,!;/^,\*$/d'`
829 %ifarch %{rtkaioarches}
830 AddOns=,rtkaio$AddOns
831 %endif
832 echo "$AddOns" > AddOns
834 build_nptl()
836 builddir=build-%{nptl_target_cpu}-$1
837 shift
838 rm -rf $builddir
839 mkdir $builddir ; cd $builddir
840 build_CFLAGS="$BuildFlags -g -O3 $*"
841 CC="$GCC" CXX="$GXX" CFLAGS="$build_CFLAGS" ../configure --prefix=%{_prefix} \
842 --enable-add-ons=nptl$AddOns --without-cvs $EnableKernel \
843 --with-headers=`cd ..; pwd`/override_headers:%{_prefix}/include --enable-bind-now \
844 --with-tls --with-__thread --build %{nptl_target_cpu}-redhat-linux \
845 --host %{nptl_target_cpu}-redhat-linux \
846 --disable-profile
847 make %{?_smp_mflags} -r CFLAGS="$build_CFLAGS" PARALLELMFLAGS=-s
849 cd ..
852 build_nptl linuxnptl
854 %if %{buildxen}
855 build_nptl linuxnptl-nosegneg -mno-tls-direct-seg-refs
856 %endif
858 cd build-%{nptl_target_cpu}-linuxnptl
859 $GCC -static -L. -Os ../fedora/glibc_post_upgrade.c -o glibc_post_upgrade.%{_target_cpu} \
860 -DNO_SIZE_OPTIMIZATION \
861 %ifarch i386
862 -DARCH_386 \
863 %endif
864 '-DLIBTLS="/%{_lib}/tls/"' \
865 '-DGCONV_MODULES_DIR="%{_prefix}/%{_lib}/gconv"' \
866 '-DLD_SO_CONF="/etc/ld.so.conf"' \
867 '-DICONVCONFIG="%{_sbindir}/iconvconfig.%{_target_cpu}"'
868 cd ..
870 %install
871 BuildFlags=`cat BuildFlags`
872 GCC=`cat Gcc`
873 AddOns=`cat AddOns`
875 rm -rf $RPM_BUILD_ROOT
876 mkdir -p $RPM_BUILD_ROOT
877 make -j1 install_root=$RPM_BUILD_ROOT install -C build-%{nptl_target_cpu}-linuxnptl PARALLELMFLAGS=-s
878 %ifnarch %{auxarches}
879 cd build-%{nptl_target_cpu}-linuxnptl && \
880 make %{?_smp_mflags} install_root=$RPM_BUILD_ROOT install-locales -C ../localedata objdir=`pwd` && \
881 cd ..
882 %endif
884 %if %{buildxen}
885 %define nosegneg_subdir_base i686
886 %define nosegneg_subdir i686/nosegneg
887 cd build-%{nptl_target_cpu}-linuxnptl-nosegneg
888 SubDir=%{nosegneg_subdir}
889 mkdir -p $RPM_BUILD_ROOT/%{_lib}/$SubDir/
890 cp -a libc.so $RPM_BUILD_ROOT/%{_lib}/$SubDir/`basename $RPM_BUILD_ROOT/%{_lib}/libc-*.so`
891 ln -sf `basename $RPM_BUILD_ROOT/%{_lib}/libc-*.so` $RPM_BUILD_ROOT/%{_lib}/$SubDir/`basename $RPM_BUILD_ROOT/%{_lib}/libc.so.*`
892 cp -a math/libm.so $RPM_BUILD_ROOT/%{_lib}/$SubDir/`basename $RPM_BUILD_ROOT/%{_lib}/libm-*.so`
893 ln -sf `basename $RPM_BUILD_ROOT/%{_lib}/libm-*.so` $RPM_BUILD_ROOT/%{_lib}/$SubDir/`basename $RPM_BUILD_ROOT/%{_lib}/libm.so.*`
894 cp -a nptl/libpthread.so $RPM_BUILD_ROOT/%{_lib}/$SubDir/libpthread-%{version}.so
895 pushd $RPM_BUILD_ROOT/%{_lib}/$SubDir
896 ln -sf libpthread-*.so `basename $RPM_BUILD_ROOT/%{_lib}/libpthread.so.*`
897 popd
898 %ifarch %{rtkaioarches}
899 cp -a rtkaio/librtkaio.so $RPM_BUILD_ROOT/%{_lib}/$SubDir/`basename $RPM_BUILD_ROOT/%{_lib}/librt-*.so | sed s/librt-/librtkaio-/`
900 ln -sf `basename $RPM_BUILD_ROOT/%{_lib}/librt-*.so | sed s/librt-/librtkaio-/` $RPM_BUILD_ROOT/%{_lib}/$SubDir/`basename $RPM_BUILD_ROOT/%{_lib}/librt.so.*`
901 %else
902 cp -a rt/librt.so $RPM_BUILD_ROOT/%{_lib}/$SubDir/`basename $RPM_BUILD_ROOT/%{_lib}/librt-*.so`
903 ln -sf `basename $RPM_BUILD_ROOT/%{_lib}/librt-*.so` $RPM_BUILD_ROOT/%{_lib}/$SubDir/`basename $RPM_BUILD_ROOT/%{_lib}/librt.so.*`
904 %endif
905 cp -a nptl_db/libthread_db.so $RPM_BUILD_ROOT/%{_lib}/$SubDir/`basename $RPM_BUILD_ROOT/%{_lib}/libthread_db-*.so`
906 ln -sf `basename $RPM_BUILD_ROOT/%{_lib}/libthread_db-*.so` $RPM_BUILD_ROOT/%{_lib}/$SubDir/`basename $RPM_BUILD_ROOT/%{_lib}/libthread_db.so.*`
907 cd ..
908 %endif
910 # compatibility hack: this locale has vanished from glibc, but some other
911 # programs are still using it. Normally we would handle it in the %pre
912 # section but with glibc that is simply not an option
913 mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/locale/ru_RU/LC_MESSAGES
915 # Remove the files we don't want to distribute
916 rm -f $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libNoVersion*
917 rm -f $RPM_BUILD_ROOT/%{_lib}/libNoVersion*
919 # NPTL <bits/stdio-lock.h> is not usable outside of glibc, so include
920 # the generic one (#162634)
921 cp -a bits/stdio-lock.h $RPM_BUILD_ROOT%{_prefix}/include/bits/stdio-lock.h
922 # And <bits/libc-lock.h> needs sanitizing as well.
923 cp -a fedora/libc-lock.h $RPM_BUILD_ROOT%{_prefix}/include/bits/libc-lock.h
925 if [ -d $RPM_BUILD_ROOT%{_prefix}/info -a "%{_infodir}" != "%{_prefix}/info" ]; then
926 mkdir -p $RPM_BUILD_ROOT%{_infodir}
927 mv -f $RPM_BUILD_ROOT%{_prefix}/info/* $RPM_BUILD_ROOT%{_infodir}
928 rm -rf $RPM_BUILD_ROOT%{_prefix}/info
931 gzip -9nvf $RPM_BUILD_ROOT%{_infodir}/libc*
933 ln -sf libbsd-compat.a $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libbsd.a
935 install -p -m 644 fedora/nsswitch.conf $RPM_BUILD_ROOT/etc/nsswitch.conf
937 mkdir -p $RPM_BUILD_ROOT/etc/default
938 install -p -m 644 nis/nss $RPM_BUILD_ROOT/etc/default/nss
940 # Take care of setuids
941 # -- new security review sez that this shouldn't be needed anymore
942 #chmod 755 $RPM_BUILD_ROOT%{_prefix}/libexec/pt_chown
944 # This is for ncsd - in glibc 2.2
945 install -m 644 nscd/nscd.conf $RPM_BUILD_ROOT/etc
946 mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
947 install -m 755 nscd/nscd.init $RPM_BUILD_ROOT/etc/rc.d/init.d/nscd
949 # Don't include ld.so.cache
950 rm -f $RPM_BUILD_ROOT/etc/ld.so.cache
952 # Include ld.so.conf
953 echo 'include ld.so.conf.d/*.conf' > $RPM_BUILD_ROOT/etc/ld.so.conf
954 touch $RPM_BUILD_ROOT/etc/ld.so.cache
955 chmod 644 $RPM_BUILD_ROOT/etc/ld.so.conf
956 mkdir -p $RPM_BUILD_ROOT/etc/ld.so.conf.d
957 mkdir -p $RPM_BUILD_ROOT/etc/sysconfig
958 touch $RPM_BUILD_ROOT/etc/sysconfig/nscd
960 # Include %{_prefix}/%{_lib}/gconv/gconv-modules.cache
961 > $RPM_BUILD_ROOT%{_prefix}/%{_lib}/gconv/gconv-modules.cache
962 chmod 644 $RPM_BUILD_ROOT%{_prefix}/%{_lib}/gconv/gconv-modules.cache
964 # Install the upgrade program
965 install -m 700 build-%{nptl_target_cpu}-linuxnptl/glibc_post_upgrade.%{_target_cpu} \
966 $RPM_BUILD_ROOT/usr/sbin/glibc_post_upgrade.%{_target_cpu}
968 strip -g $RPM_BUILD_ROOT%{_prefix}/%{_lib}/*.o
970 mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_prefix}/%{_lib}
971 cp -a $RPM_BUILD_ROOT%{_prefix}/%{_lib}/*.a \
972 $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_prefix}/%{_lib}/
973 rm -f $RPM_BUILD_ROOT%{_prefix}/lib/debug%{_prefix}/%{_lib}/*_p.a
974 # Now strip debugging info from static libraries
975 pushd $RPM_BUILD_ROOT%{_prefix}/%{_lib}/
976 for i in *.a; do
977 if [ -f $i ]; then
978 case "$i" in
979 *_p.a) ;;
980 *) strip -g -R .comment $i ;;
981 esac
983 done
984 popd
986 # rquota.x and rquota.h are now provided by quota
987 rm -f $RPM_BUILD_ROOT%{_prefix}/include/rpcsvc/rquota.[hx]
989 # Hardlink identical locale files together
990 %ifnarch %{auxarches}
991 gcc -O2 -o build-%{nptl_target_cpu}-linuxnptl/hardlink fedora/hardlink.c
992 build-%{nptl_target_cpu}-linuxnptl/hardlink -vc $RPM_BUILD_ROOT%{_prefix}/lib/locale
993 %endif
995 rm -f ${RPM_BUILD_ROOT}/%{_lib}/libnss1-*
996 rm -f ${RPM_BUILD_ROOT}/%{_lib}/libnss-*.so.1
998 # Ugly hack for buggy rpm
999 ln -f ${RPM_BUILD_ROOT}%{_sbindir}/iconvconfig{,.%{_target_cpu}}
1001 rm -f $RPM_BUILD_ROOT/etc/gai.conf
1003 # BUILD THE FILE LIST
1004 find $RPM_BUILD_ROOT -type f -or -type l |
1005 sed -e 's|.*/etc|%config &|' \
1006 -e 's|.*/gconv/gconv-modules$|%verify(not md5 size mtime) %config(noreplace) &|' \
1007 -e 's|.*/gconv/gconv-modules.cache|%verify(not md5 size mtime) &|' \
1008 -e '/lib\/debug/d' > rpm.filelist.in
1009 for n in %{_prefix}/share %{_prefix}/include %{_prefix}/lib/locale; do
1010 find ${RPM_BUILD_ROOT}${n} -type d | \
1011 grep -v '%{_prefix}/share$' | \
1012 grep -v '%{_infodir}' | \
1013 sed "s/^/%dir /" >> rpm.filelist.in
1014 done
1016 # primary filelist
1017 SHARE_LANG='s|.*/share/locale/\([^/_]\+\).*/LC_MESSAGES/.*\.mo|%lang(\1) &|'
1018 LIB_LANG='s|.*/lib/locale/\([^/_]\+\)|%lang(\1) &|'
1019 # rpm does not handle %lang() tagged files hardlinked together accross
1020 # languages very well, temporarily disable
1021 # LIB_LANG=''
1022 sed -e "s|$RPM_BUILD_ROOT||" -e "$LIB_LANG" -e "$SHARE_LANG" < rpm.filelist.in |
1023 grep -v '/etc/\(localtime\|nsswitch.conf\|ld.so.conf\|ld.so.cache\|default\)' | \
1024 grep -v '/%{_lib}/lib\(pcprofile\|memusage\).so' | \
1025 grep -v 'bin/\(memusage\|mtrace\|xtrace\|pcprofiledump\)' | \
1026 sort > rpm.filelist
1028 mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{_lib}
1029 mv -f $RPM_BUILD_ROOT/%{_lib}/lib{pcprofile,memusage}.so $RPM_BUILD_ROOT%{_prefix}/%{_lib}
1030 for i in $RPM_BUILD_ROOT%{_prefix}/bin/{xtrace,memusage}; do
1031 cp -a $i $i.tmp
1032 sed -e 's~=/%{_lib}/libpcprofile.so~=%{_prefix}/%{_lib}/libpcprofile.so~' \
1033 -e 's~=/%{_lib}/libmemusage.so~=%{_prefix}/%{_lib}/libmemusage.so~' \
1034 -e 's~='\''/\\\$LIB/libpcprofile.so~='\''%{_prefix}/\\$LIB/libpcprofile.so~' \
1035 -e 's~='\''/\\\$LIB/libmemusage.so~='\''%{_prefix}/\\$LIB/libmemusage.so~' \
1036 $i.tmp > $i
1037 chmod 755 $i; rm -f $i.tmp
1038 done
1040 grep '%{_infodir}' < rpm.filelist | grep -v '%{_infodir}/dir' > devel.filelist
1041 grep '%{_prefix}/include/gnu/stubs-[32164]\+\.h' < rpm.filelist >> devel.filelist || :
1043 grep '%{_prefix}/include' < rpm.filelist |
1044 egrep -v '%{_prefix}/include/(linuxthreads|gnu/stubs-[32164]+\.h)' \
1045 > headers.filelist
1047 mv rpm.filelist rpm.filelist.full
1048 grep -v '%{_prefix}/%{_lib}/lib.*_p.a' rpm.filelist.full |
1049 egrep -v "(%{_prefix}/include)|(%{_infodir})" > rpm.filelist
1051 grep '%{_prefix}/%{_lib}/lib.*\.a' < rpm.filelist >> devel.filelist
1052 grep '%{_prefix}/%{_lib}/.*\.o' < rpm.filelist >> devel.filelist
1053 grep '%{_prefix}/%{_lib}/lib.*\.so' < rpm.filelist >> devel.filelist
1055 mv rpm.filelist rpm.filelist.full
1056 grep -v '%{_prefix}/%{_lib}/lib.*\.a' < rpm.filelist.full |
1057 grep -v '%{_prefix}/%{_lib}/.*\.o' |
1058 grep -v '%{_prefix}/%{_lib}/lib.*\.so'|
1059 grep -v '%{_prefix}/%{_lib}/linuxthreads' |
1060 grep -v 'nscd' > rpm.filelist
1062 grep '%{_prefix}/bin' < rpm.filelist >> common.filelist
1063 grep '%{_prefix}/lib/locale' < rpm.filelist >> common.filelist
1064 grep '%{_prefix}/libexec/pt_chown' < rpm.filelist >> common.filelist
1065 grep '%{_prefix}/sbin/[^gi]' < rpm.filelist >> common.filelist
1066 grep '%{_prefix}/share' < rpm.filelist \
1067 | grep -v '%{_prefix}/share/zoneinfo' >> common.filelist
1069 mv rpm.filelist rpm.filelist.full
1070 grep -v '%{_prefix}/bin' < rpm.filelist.full |
1071 grep -v '%{_prefix}/lib/locale' |
1072 grep -v '%{_prefix}/libexec/pt_chown' |
1073 grep -v '%{_prefix}/sbin/[^gi]' |
1074 grep -v '%{_prefix}/share' > rpm.filelist
1076 > nosegneg.filelist
1077 %if %{xenpackage}
1078 grep '/%{_lib}/%{nosegneg_subdir}' < rpm.filelist >> nosegneg.filelist
1079 mv rpm.filelist rpm.filelist.full
1080 grep -v '/%{_lib}/%{nosegneg_subdir}' < rpm.filelist.full > rpm.filelist
1081 %endif
1083 echo '%{_prefix}/sbin/build-locale-archive' >> common.filelist
1084 echo '%{_prefix}/sbin/tzdata-update' >> common.filelist
1085 echo '%{_prefix}/sbin/nscd' > nscd.filelist
1087 cat > utils.filelist <<EOF
1088 %{_prefix}/%{_lib}/libmemusage.so
1089 %{_prefix}/%{_lib}/libpcprofile.so
1090 %{_prefix}/bin/memusage
1091 %{_prefix}/bin/memusagestat
1092 %{_prefix}/bin/mtrace
1093 %{_prefix}/bin/pcprofiledump
1094 %{_prefix}/bin/xtrace
1097 # /etc/localtime
1098 rm -f $RPM_BUILD_ROOT/etc/localtime
1099 cp -f $RPM_BUILD_ROOT%{_prefix}/share/zoneinfo/US/Eastern $RPM_BUILD_ROOT/etc/localtime
1100 #ln -sf ..%{_prefix}/share/zoneinfo/US/Eastern $RPM_BUILD_ROOT/etc/localtime
1102 rm -rf $RPM_BUILD_ROOT%{_prefix}/share/zoneinfo
1104 cd fedora
1105 $GCC -Os -static -o build-locale-archive build-locale-archive.c \
1106 ../build-%{nptl_target_cpu}-linuxnptl/locale/locarchive.o \
1107 ../build-%{nptl_target_cpu}-linuxnptl/locale/md5.o \
1108 -DDATADIR=\"%{_datadir}\" -DPREFIX=\"%{_prefix}\" \
1109 -L../build-%{nptl_target_cpu}-linuxnptl
1110 install -m 700 build-locale-archive $RPM_BUILD_ROOT/usr/sbin/build-locale-archive
1111 $GCC -Os -static -o tzdata-update tzdata-update.c \
1112 -L../build-%{nptl_target_cpu}-linuxnptl
1113 install -m 700 tzdata-update $RPM_BUILD_ROOT/usr/sbin/tzdata-update
1114 cd ..
1116 # the last bit: more documentation
1117 rm -rf documentation
1118 mkdir documentation
1119 cp crypt/README.ufc-crypt documentation/README.ufc-crypt
1120 cp timezone/README documentation/README.timezone
1121 cp ChangeLog{,.15,.16} documentation
1122 bzip2 -9 documentation/ChangeLog*
1123 cp posix/gai.conf documentation/
1125 %ifarch s390x
1126 # Compatibility symlink
1127 mkdir -p $RPM_BUILD_ROOT/lib
1128 ln -sf /%{_lib}/ld64.so.1 $RPM_BUILD_ROOT/lib/ld64.so.1
1129 %endif
1130 %ifarch ia64
1131 %if "%{_lib}" == "lib64"
1132 # Compatibility symlink
1133 mkdir -p $RPM_BUILD_ROOT/lib
1134 ln -sf /%{_lib}/ld-linux-ia64.so.2 $RPM_BUILD_ROOT/lib/ld-linux-ia64.so.2
1135 %endif
1136 %endif
1138 # Increase timeouts
1139 export TIMEOUTFACTOR=16
1140 parent=$$
1141 echo ====================TESTING=========================
1142 cd build-%{nptl_target_cpu}-linuxnptl
1143 ( make %{?_smp_mflags} -k check PARALLELMFLAGS=-s 2>&1
1144 sleep 10s
1145 teepid="`ps -eo ppid,pid,command | grep ^${parent}'[ ]\+[0-9]\+[ ]\+tee' | cut -d' ' -f2`"
1146 [ -n "$teepid" ] && kill $teepid
1147 ) | tee check.log || :
1148 cd ..
1149 %if %{buildxen}
1150 echo ====================TESTING -mno-tls-direct-seg-refs=============
1151 cd build-%{nptl_target_cpu}-linuxnptl-nosegneg
1152 ( make -j$numprocs -k check PARALLELMFLAGS=-s 2>&1
1153 sleep 10s
1154 teepid="`ps -eo ppid,pid,command | grep ^${parent}'[ ]\+[0-9]\+[ ]\+tee' | cut -d' ' -f2`"
1155 [ -n "$teepid" ] && kill $teepid
1156 ) | tee check.log || :
1157 cd ..
1158 %endif
1159 echo ====================TESTING DETAILS=================
1160 for i in `sed -n 's|^.*\*\*\* \[\([^]]*\.out\)\].*$|\1|p' build-*-linux*/check.log`; do
1161 echo =====$i=====
1162 cat $i || :
1163 echo ============
1164 done
1165 echo ====================TESTING END=====================
1166 PLTCMD='/^Relocation section .*\(\.rela\?\.plt\|\.rela\.IA_64\.pltoff\)/,/^$/p'
1167 echo ====================PLT RELOCS LD.SO================
1168 readelf -Wr $RPM_BUILD_ROOT/%{_lib}/ld-*.so | sed -n -e "$PLTCMD"
1169 echo ====================PLT RELOCS LIBC.SO==============
1170 readelf -Wr $RPM_BUILD_ROOT/%{_lib}/libc-*.so | sed -n -e "$PLTCMD"
1171 echo ====================PLT RELOCS END==================
1173 %if "%{_enable_debug_packages}" == "1"
1175 case "$-" in *x*) save_trace=yes;; esac
1176 set +x
1177 echo Building debuginfo subpackage...
1179 blf=debugfiles.list
1180 sf=debugsources.list
1181 cblf=debugcommonfiles.list
1182 csf=debugcommonsources.list
1184 echo -n > $sf
1185 echo -n > $csf
1187 strip $RPM_BUILD_ROOT/{sbin/ldconfig,usr/sbin/glibc_post_upgrade.%{_target_cpu},usr/sbin/build-locale-archive}
1189 # Strip ELF binaries
1190 for f in `cat rpm.filelist nosegneg.filelist \
1191 | grep -v '%%\(dir\|lang\|config\|verify\)'`; do
1192 bf=$RPM_BUILD_ROOT$f
1193 if [ -f $bf -a -x $bf -a ! -h $bf ]; then
1194 if `file $bf 2>/dev/null | grep 'ELF.*, not stripped' | grep -vq 'statically linked'`; then
1195 bd=`dirname $f`
1196 outd=$RPM_BUILD_ROOT/usr/lib/debug$bd
1197 mkdir -p $outd
1198 echo extracting debug info from $f
1199 /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug -l $sf $bf
1200 bn=`basename $f`
1201 case $f in
1202 /%{_lib}/*) eu-strip -g -f $outd/$bn.debug $bf || :;;
1203 *) eu-strip -f $outd/$bn.debug $bf || :;;
1204 esac
1205 if [ -f $outd/$bn.debug ]; then echo /usr/lib/debug$bd/$bn.debug >> $blf; fi
1208 done
1210 for f in `cat common.filelist utils.filelist nscd.filelist \
1211 | grep -v '%%\(dir\|lang\|config\|verify\)'`; do
1212 bf=$RPM_BUILD_ROOT$f
1213 if [ -f $bf -a -x $bf -a ! -h $bf ]; then
1214 if `file $bf 2>/dev/null | grep 'ELF.*, not stripped' | grep -vq 'statically linked'`; then
1215 bd=`dirname $f`
1216 outd=$RPM_BUILD_ROOT/usr/lib/debug$bd
1217 mkdir -p $outd
1218 echo extracting debug info from $f
1219 /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug -l $csf $bf
1220 bn=`basename $f`
1221 eu-strip -f $outd/$bn.debug $bf || :
1222 if [ -f $outd/$bn.debug ]; then echo /usr/lib/debug$bd/$bn.debug >> $cblf; fi
1225 done
1227 for f in `find $RPM_BUILD_ROOT/%{_lib} -type l`; do
1228 l=`ls -l $f`
1229 l=${l#* -> }
1230 t=/usr/lib/debug`dirname ${f#$RPM_BUILD_ROOT}`
1231 if grep -q "^$t/$l.debug\$" $blf; then
1232 ln -sf $l.debug $RPM_BUILD_ROOT$t/`basename $f`.debug
1233 echo $t/`basename $f`.debug >> $blf
1234 elif grep -q "^$t.debug/$l\$" $cblf; then
1235 ln -sf $l.debug $RPM_BUILD_ROOT$t/`basename $f`.debug
1236 echo $t/`basename $f`.debug >> $cblf
1238 done
1240 echo Sorting source file lists. Might take a while...
1241 xargs -0 -n 1 echo < $sf | LC_ALL=C grep -v '/<internal>$\|\.gperf$' | LC_ALL=C sort -u > $sf.sorted
1242 xargs -0 -n 1 echo < $csf | LC_ALL=C grep -v '/<internal>$\|\.gperf$' | LC_ALL=C sort -u > $csf.sorted
1243 mkdir -p $RPM_BUILD_ROOT/usr/src/debug
1244 cat $sf.sorted $csf.sorted \
1245 | (cd $RPM_BUILD_DIR; LC_ALL=C sort -u | cpio -pdm ${RPM_BUILD_ROOT}/usr/src/debug)
1246 # stupid cpio creates new directories in mode 0700, fixup
1247 find $RPM_BUILD_ROOT/usr/src/debug -type d -print | xargs chmod a+rx
1249 %ifarch %{debuginfocommonarches}
1250 %ifarch %{auxarches}
1251 %ifarch %{ix86}
1252 %define basearch i386
1253 %endif
1254 %ifarch alpha alphaev6
1255 %define basearch alpha
1256 %endif
1257 %ifarch sparc sparcv9
1258 %define basearch sparc
1259 %endif
1260 cat $blf > debuginfo.filelist
1261 find $RPM_BUILD_ROOT/usr/src/debug/%{glibcsrcdir} -type d \
1262 | sed "s#^$RPM_BUILD_ROOT#%%dir #" >> debuginfo.filelist
1263 grep '/generic/\|/linux/\|/%{basearch}/\|/nptl\(_db\)\?/\|^%{glibcsrcdir}/build' \
1264 $sf.sorted | sed 's|^|/usr/src/debug/|' >> debuginfo.filelist
1265 touch debuginfocommon.filelist
1266 %else
1267 ( grep '^%{glibcsrcdir}/build-\|dl-osinfo\.h' $csf.sorted || : ) > $csf.sorted.build
1268 cat $blf > debuginfo.filelist
1269 cat $cblf > debuginfocommon.filelist
1270 grep '^%{glibcsrcdir}/build-\|dl-osinfo\.h' $sf.sorted \
1271 | sed 's|^|/usr/src/debug/|' >> debuginfo.filelist
1272 find $RPM_BUILD_ROOT/usr/src/debug/%{glibcsrcdir} -type d \
1273 | sed "s#^$RPM_BUILD_ROOT#%%dir #" >> debuginfocommon.filelist
1274 ( cat $csf.sorted; grep -v -f $csf.sorted.build $sf.sorted ) \
1275 | grep -v 'dl-osinfo\.h' | LC_ALL=C sort -u \
1276 | sed 's|^|/usr/src/debug/|' >> debuginfocommon.filelist
1277 %endif
1278 %else
1279 cat $blf $cblf | LC_ALL=C sort -u > debuginfo.filelist
1280 echo '/usr/src/debug/%{glibcsrcdir}' >> debuginfo.filelist
1281 %endif
1283 [ "x$save_trace" = xyes ] && set -x
1285 %endif
1287 %ifarch %{auxarches}
1288 case "$-" in *x*) save_trace=yes;; esac
1289 set +x
1290 echo Cutting down the list of unpackaged files
1291 for i in `sed '/%%dir/d;/%%config/d;/%%verify/d;s/%%lang([^)]*) //' \
1292 common.filelist devel.filelist headers.filelist \
1293 utils.filelist nscd.filelist`; do
1294 [ -f "$RPM_BUILD_ROOT$i" ] && rm -f "$RPM_BUILD_ROOT$i" || :
1295 done
1296 [ "x$save_trace" = xyes ] && set -x
1298 %else
1300 mkdir -p $RPM_BUILD_ROOT/var/{db,run}/nscd
1301 touch $RPM_BUILD_ROOT/var/{db,run}/nscd/{passwd,group,hosts}
1302 touch $RPM_BUILD_ROOT/var/run/nscd/{socket,nscd.pid}
1303 %endif
1305 touch $RPM_BUILD_ROOT/%{_prefix}/lib/locale/locale-archive
1307 %post -p /usr/sbin/glibc_post_upgrade.%{_target_cpu}
1309 %postun -p /sbin/ldconfig
1311 %post common -p /usr/sbin/build-locale-archive
1313 %triggerin common -p /usr/sbin/tzdata-update -- tzdata
1315 %post devel
1316 /sbin/install-info %{_infodir}/libc.info.gz %{_infodir}/dir
1318 %pre headers
1319 # this used to be a link and it is causing nightmares now
1320 if [ -L %{_prefix}/include/scsi ] ; then
1321 rm -f %{_prefix}/include/scsi
1324 %preun devel
1325 if [ "$1" = 0 ]; then
1326 /sbin/install-info --delete %{_infodir}/libc.info.gz %{_infodir}/dir
1329 %post utils -p /sbin/ldconfig
1331 %postun utils -p /sbin/ldconfig
1333 %pre -n nscd
1334 /usr/sbin/useradd -M -o -r -d / -s /sbin/nologin \
1335 -c "NSCD Daemon" -u 28 nscd > /dev/null 2>&1 || :
1337 %post -n nscd
1338 /sbin/chkconfig --add nscd
1340 %preun -n nscd
1341 if [ $1 = 0 ] ; then
1342 service nscd stop > /dev/null 2>&1
1343 /sbin/chkconfig --del nscd
1346 %postun -n nscd
1347 if [ $1 = 0 ] ; then
1348 /usr/sbin/userdel nscd > /dev/null 2>&1 || :
1350 if [ "$1" -ge "1" ]; then
1351 service nscd condrestart > /dev/null 2>&1 || :
1354 %if %{xenpackage}
1355 %post xen -p /sbin/ldconfig
1356 %postun xen -p /sbin/ldconfig
1357 %endif
1359 %clean
1360 rm -rf "$RPM_BUILD_ROOT"
1361 rm -f *.filelist*
1363 %files -f rpm.filelist
1364 %defattr(-,root,root)
1365 %if %{buildxen} && !%{xenpackage}
1366 %dir /%{_lib}/%{nosegneg_subdir_base}
1367 %dir /%{_lib}/%{nosegneg_subdir}
1368 %endif
1369 %ifarch s390x
1370 %dir /lib
1371 /lib/ld64.so.1
1372 %endif
1373 %ifarch ia64
1374 %if "%{_lib}" == "lib64"
1375 %dir /lib
1376 /lib/ld-linux-ia64.so.2
1377 %endif
1378 %endif
1379 %verify(not md5 size mtime) %config(noreplace) /etc/localtime
1380 %verify(not md5 size mtime) %config(noreplace) /etc/nsswitch.conf
1381 %verify(not md5 size mtime) %config(noreplace) /etc/ld.so.conf
1382 %dir /etc/ld.so.conf.d
1383 %dir %{_prefix}/libexec/getconf
1384 %dir %{_prefix}/%{_lib}/gconv
1385 %attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /etc/ld.so.cache
1386 %doc README NEWS INSTALL FAQ BUGS NOTES PROJECTS CONFORMANCE
1387 %doc COPYING COPYING.LIB README.libm LICENSES
1388 %doc hesiod/README.hesiod
1390 %if %{xenpackage}
1391 %files -f nosegneg.filelist xen
1392 %defattr(-,root,root)
1393 %dir /%{_lib}/%{nosegneg_subdir}
1394 %endif
1396 %ifnarch %{auxarches}
1397 %files -f common.filelist common
1398 %defattr(-,root,root)
1399 %attr(0644,root,root) %verify(not md5 size mtime mode) %ghost %config(missingok,noreplace) %{_prefix}/lib/locale/locale-archive
1400 %dir %attr(755,root,root) /etc/default
1401 %verify(not md5 size mtime) %config(noreplace) /etc/default/nss
1402 %doc documentation/*
1404 %files -f devel.filelist devel
1405 %defattr(-,root,root)
1407 %files -f headers.filelist headers
1408 %defattr(-,root,root)
1410 %files -f utils.filelist utils
1411 %defattr(-,root,root)
1413 %files -f nscd.filelist -n nscd
1414 %defattr(-,root,root)
1415 %config(noreplace) /etc/nscd.conf
1416 %config /etc/rc.d/init.d/nscd
1417 %dir %attr(0755,root,root) /var/run/nscd
1418 %dir %attr(0755,root,root) /var/db/nscd
1419 %attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/nscd.pid
1420 %attr(0666,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/socket
1421 %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/passwd
1422 %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/group
1423 %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/hosts
1424 %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/passwd
1425 %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/group
1426 %attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/db/nscd/hosts
1427 %ghost %config(missingok,noreplace) /etc/sysconfig/nscd
1428 %endif
1430 %if "%{_enable_debug_packages}" == "1"
1431 %files debuginfo -f debuginfo.filelist
1432 %defattr(-,root,root)
1433 %ifarch %{debuginfocommonarches}
1434 %ifnarch %{auxarches}
1435 %files debuginfo-common -f debuginfocommon.filelist
1436 %defattr(-,root,root)
1437 %dir %{_prefix}/lib/debug
1438 %dir %{_prefix}/lib/debug/%{_prefix}
1439 %dir %{_prefix}/lib/debug/%{_prefix}/%{_lib}
1440 %{_prefix}/lib/debug/%{_prefix}/%{_lib}/*.a
1441 %endif
1442 %else
1443 %dir %{_prefix}/lib/debug
1444 %dir %{_prefix}/lib/debug/%{_prefix}
1445 %dir %{_prefix}/lib/debug/%{_prefix}/%{_lib}
1446 %{_prefix}/lib/debug/%{_prefix}/%{_lib}/*.a
1447 %endif
1448 %endif
1450 %changelog
1451 * Thu Aug 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-28
1452 - another malloc doubly linked list corruption problem fix (#204653)
1454 * Thu Aug 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-27
1455 - allow $LIB and $PLATFORM in dlopen parameters even in suid/sgid (#204399)
1456 - fix splice prototype (#204530)
1457 - fix pthread_rwlock_{,try,timed}wrlock to honor reader preference
1458 if requested
1460 * Mon Aug 28 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-26
1461 - real fix for the doubly linked list corruption problem
1462 - try harder in realloc to allocate memory (BZ#2684)
1463 - fix getnameinfo error reporting (#204122)
1464 - make localedef more robust on invalid input (#203728)
1466 * Fri Aug 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-25
1467 - temporarily back out code to limit number of unsorted block
1468 sort iterations (#203735, #204027)
1469 - handle PLT symbols in dladdr properly (BZ#2683)
1470 - avoid malloc infinite looping for allocations larger than
1471 the system can allocate (#203915)
1473 * Tue Aug 22 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-23
1474 - malloc fixes, especially for 32-bit arches (#202309)
1475 - further *_IN locale fixes (#200230)
1476 - fix get{serv,rpc}ent{,_r} if NIS map is empty (#203237)
1477 - fix /usr/bin/iconv (#203400)
1479 * Fri Aug 18 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-22
1480 - rebuilt with latest binutils to pick up 64K -z commonpagesize
1481 on ppc/ppc64 (#203001)
1483 * Tue Aug 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-21
1484 - if some test gets stuck, kill the tee process after make check
1485 finishes
1486 - build with -mtune=generic on i686 and x86_64
1488 * Tue Aug 15 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-20
1489 - PTHREAD_PRIO_PROTECT support
1490 - fix errno if nice() fails (#201826)
1492 * Thu Aug 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-19
1493 - adaptive malloc brk/mmap threshold
1494 - fix fchownat to use kernel syscall (if available) on many arches (#201870)
1495 - only define O_DIRECT with -D_GNU_SOURCE on ia64 to match all
1496 other arches (#201748)
1498 * Mon Aug 7 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-18
1499 - NIS+ fixes
1500 - fix memusage and xtrace scripts (#200736)
1501 - redirect /sbin/service sshd condrestart std{out,err} to /dev/null
1502 when executed from glibc_post_upgrade
1504 * Wed Aug 2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-17
1505 - typo fix for the dladdr patch
1506 - build i?86 glibc with -mno-tls-direct-seg-refs (#200469)
1508 * Wed Aug 2 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-16
1509 - fix dladdr on binaries/libraries with only DT_GNU_HASH and no
1510 DT_HASH (#200635)
1511 - fix early timeout of initgroups data in nscd (#173019)
1512 - add am/pm display to es_PE and es_NI locales (#167101)
1513 - fix nss_compat failures when nis/nis+ unavailable (#192072)
1515 * Mon Jul 31 2006 Roland McGrath <roland@redhat.com> 2.4.90-15
1516 - fix missing destructor calls in dlclose (#197932)
1517 - enable transliteration support in all locales (#196713)
1518 - disallow RTLD_GLOBAL flag for dlmopen in secondary namespaces (#197462)
1519 - PI mutex support
1521 * Tue Jul 10 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-13
1522 - DT_GNU_HASH support
1524 * Fri Jun 30 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-12
1525 - buildrequire gettext
1526 - enable fstatat64/newfstatat syscalls even on ppc*/s390*/ia64 (#196494)
1527 - fix out of memory behavior in gettext (#194321)
1528 - fix regex on multi-byte non-UTF-8 charsets (#193873)
1529 - minor NIS+ fixes (#190803)
1530 - don't use cancellable calls in posix_spawn* and only set{u,g}id
1531 current thread if requested (#193631)
1533 * Wed May 31 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-11
1534 - don't exit from nscd -i <database> before the database is
1535 actually invalidated, add locking to prune_cache (#191464)
1536 - build glibc-devel.i386 static libraries with
1537 -mno-tls-direct-seg-refs -DNO_TLS_DIRECT_SEG_REFS
1538 - RFC3542 support (advanced API for IPv6; #191001, BZ##2693)
1540 * Wed May 24 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-10
1541 - on i686 make glibc owner of /lib/i686 directory (#192597)
1542 - search parent NIS+ domains (#190803)
1544 * Sun May 21 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-9
1545 - update from CVS
1546 - big NIS+ changes
1548 * Fri May 19 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-8
1549 - update from CVS
1550 - fix nss_compat when SETENT_BATCH_READ=TRUE is in /etc/default/nss
1551 - fix RFC3484 precedence table for site-local and ULA addresses (#188364)
1552 - fix a sunrpc memory leak
1554 * Thu May 11 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-7
1555 - update from CVS
1556 - fix tcgetattr (#177965)
1557 - fix <sys/queue.h> (#191264)
1559 * Fri May 5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-6
1560 - update from CVS
1561 - rebuilt using fixed rpm
1563 * Fri May 5 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-5
1564 - update from CVS
1565 - some NIS+ fixes
1566 - allow overriding rfc3484 address sorting tables for getaddrinfo
1567 through /etc/gai.conf (sample config file included in %%doc directory)
1569 * Mon May 1 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-4
1570 - update from CVS
1571 - SETENT_BATCH_READ /etc/default/nss option for speeding up
1572 some usages of NIS+ (#188246)
1573 - move debug state change notification (#179208)
1574 - fix ldd script if one of the dynamic linkers is not installed (#190259)
1576 * Thu Apr 27 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-3
1577 - update from CVS
1578 - fix a typo in nscd.conf (#190085)
1579 - fix handling of SIGHUP in nscd when some caches are disabled (#189978)
1580 - make nscd paranoia mode working with non-root server-user (#189779)
1582 * Wed Apr 26 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-2
1583 - update from CVS
1584 - fix getaddrinfo (#190002)
1585 - add auto-propagate nscd.conf options (#177154)
1586 - fix nscd auditing (#169148)
1588 * Tue Apr 25 2006 Jakub Jelinek <jakub@redhat.com> 2.4.90-1
1589 - update from CVS
1591 * Mon Apr 24 2006 Jakub Jelinek <jakub@redhat.com> 2.4-6
1592 - update from CVS
1593 - NIS+ fixes
1594 - don't segfault on too large argp key values (#189545)
1595 - getaddrinfo fixes for RFC3484 (#188364)
1597 * Tue Mar 28 2006 Jakub Jelinek <jakub@redhat.com> 2.4-5
1598 - update from CVS
1599 - pshared robust mutex support
1600 - fix btowc and bwtoc in C++ (#186410)
1601 - fix NIS+ (#186592)
1602 - don't declare __wcsto*l_internal for non-GCC or if not -O1+ (#185667)
1603 - don't mention nscd failures on 2.0 kernels (#185335)
1605 * Tue Mar 7 2006 Roland McGrath <roland@redhat.com> 2.4-4
1606 - back up %%{ix86} gdb conflicts to < 6.3.0.0-1.111
1608 * Tue Mar 7 2006 Jakub Jelinek <jakub@redhat.com> 2.4-3
1609 - really fix rintl on ppc64
1611 * Tue Mar 7 2006 Jakub Jelinek <jakub@redhat.com> 2.4-2
1612 - accurate unwind info for lowlevellock.h stubs on %%{ix86}
1613 - fix ppc/ppc64 ceill, floorl, rintl, roundl and truncl (BZ#2423)
1615 * Mon Mar 6 2006 Jakub Jelinek <jakub@redhat.com> 2.4-1
1616 - update from CVS
1617 - glibc 2.4 release
1619 * Mon Mar 6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.91-2
1620 - update from CVS
1621 - fix sYSMALLOc for MALLOC_ALIGNMENT > 2 * SIZE_SZ (#183895)
1622 - revert ppc32 malloc alignment patch, it breaks malloc_set_state
1623 and needs some further thoughts and time (#183894)
1624 - provide accurate unwind info for lowlevellock.h stubs on x86_64
1626 * Thu Mar 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.91-1
1627 - update from CVS
1628 - fixes for various arches
1629 - ensure malloc returns pointers aligned to at least
1630 MIN (2 * sizeof (size_t), __alignof__ (long double))
1631 (only on ppc32 this has not been the case lately with addition
1632 of 128-bit long double, #182742)
1634 * Wed Mar 1 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-39
1635 - update from CVS
1637 * Fri Feb 17 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-38
1638 - update from CVS
1639 - robust mutexes rewrite
1641 * Mon Feb 13 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-37
1642 - update from CVS
1643 - *at fixes
1644 - unshare syscall wrapper
1646 * Sat Feb 4 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-36
1647 - update from CVS
1648 - fix frequency setting for ITIMER_PROF (#179938, BZ#2268)
1649 - fix powerpc inline fegetround ()
1650 - fix nptl_db (#179946)
1652 * Fri Feb 3 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-35
1653 - update from CVS
1654 - handle futimesat (fd, NULL, tvp) as futimes (fd, tvp)
1655 - fix <stdlib.h> q{e,f,g}cvt{,_r} for -mlong-double-64
1657 * Thu Feb 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-34
1658 - fix <math.h> with C++ and -mlong-double-64 (#179742)
1659 - add nexttowardl redirect for -mlong-double-64
1661 * Thu Feb 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-33
1662 - update from CVS
1663 - long double support fixes
1665 * Wed Feb 1 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-32
1666 - update from CVS
1667 - 128-bit long double fixes for ppc{,64}, s390{,x} and sparc{,v9},
1668 alpha 128-bit long double support
1669 - add inotify syscall numbers to the override <asm/unistd.h> headers
1670 (#179366)
1672 * Mon Jan 30 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-31
1673 - update from CVS
1674 - 128-bit long double on ppc, ppc64, s390, s390x and sparc{,v9}
1675 - add some new syscall numbers to the override <asm/unistd.h>
1676 headers
1678 * Mon Jan 9 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-30
1679 - update from CVS
1680 - <pthread.h> initializer fixes for -std=c{8,9}9 on 32-bit
1681 arches
1682 - avoid writable .rodata (#177121)
1684 * Fri Jan 6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-29
1685 - update from CVS
1686 - make pthread_mutex_t an unnamed union again, as it affects
1687 libstdc++ ABI mangling
1689 * Fri Jan 6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-28
1690 - update from CVS
1691 - make aio_suspend interruptible by signals (#171968)
1693 * Fri Jan 6 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-27
1694 - only rely on d_type in 32-bit getdents on s390 for 2.6.11+
1696 * Wed Jan 4 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-26
1697 - update from CVS
1698 - for newly linked lio_listio* callers, send per request
1699 notifications (#170116)
1700 - fixup nscd -S option removal changes (#176860)
1701 - remove nonnull attribute from ctermid (#176753)
1702 - fix PTHREAD_*_INITIALIZER{,_NP} on 64-bit arches
1703 - SPARC NPTL support for pre-v9 CPUs
1704 - drop support for 2.4.xx and < 2.6.9 kernels
1706 * Mon Jan 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-25
1707 - update from CVS
1708 - s390{,x} and sparc{,64} pointer mangling fixes
1709 - install a sanitized LinuxThreads <bits/libc-lock.h>
1711 * Mon Jan 2 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-24
1712 - update from CVS
1713 - nscd audit changes (#174422)
1714 - ppc{32,64} vDSO support and ppc32 hp-timing
1716 * Tue Dec 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-23
1717 - update from CVS
1718 - robust mutexes
1719 - fix transliteration segfaults (#176573, #176583)
1720 - ignore prelink temporaries in ldconfig (#176570)
1722 * Wed Dec 21 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-22
1723 - update from CVS
1724 - minor fts fixes
1725 - revert broken _Pragma () workaround
1726 - fix ldconfig on bi-arch architectures (#176316)
1728 * Tue Dec 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-21
1729 - update from CVS
1730 - fix pointer (de)mangling in gconv_cache.c
1732 * Tue Dec 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-20
1733 - update from CVS
1734 - time ((void *) 1) should segfault, not return -EFAULT (#174856, BZ#1952)
1735 - fix errlist generation
1736 - update ulps for GCC 4.1 on IA-64
1738 * Mon Dec 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-19
1739 - update from CVS
1740 - sysdeps/generic reorg
1741 - setjmp/longjmp jump pointer mangling
1742 - rebuilt with GCC 4.1-RH prerelease, worked around broken _Pragma ()
1743 handling in it
1744 - remove glibc-profile subpackage
1745 - use non-PLT calls for malloc/free/realloc/memalign invocations in
1746 mtrace and mcheck hooks (#175261)
1747 - setjmp/longjmp jump pointer mangling on ppc{,64}/ia64/s390{,x}
1749 * Sat Nov 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-18
1750 - update from CVS
1751 - change <sys/stat.h> for broken apps that #define const /**/,
1752 handle non-GCC compilers
1753 - fix ppc{32,64} strncmp (BZ#1877, #173643, IT#83510)
1754 - provide shmatt_t typedef in ia64 <sys/shm.h (#173680)
1755 - support 2nd arg to futimesat being NULL (#173581)
1757 * Wed Nov 16 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-17
1758 - update from CVS
1759 - fix <sys/stat.h> in C++
1760 - {fstat,fchown,rename,unlink}at fixes
1761 - epoll_wait is now a cancellation point
1763 * Tue Nov 15 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-16
1764 - update from CVS
1765 - make sure waitid syscall is used on ppc*/s390*
1767 * Thu Oct 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-15
1768 - update from CVS
1769 - be permissive in %n check because of kernel bug #165351 (#171240)
1770 - don't misalign stack in pthread_once on x86_64 (#170786, IT#81521)
1771 - many locale fixes
1773 * Mon Oct 10 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-14
1774 - update from CVS
1775 - fix malloc bug after fork introduced in the last update
1776 - fix getent hosts IP for IPv4 IPs (#169831)
1778 * Mon Oct 3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-13
1779 - update from CVS
1780 - fix setuid etc. hangs if some thread exits during the call (#167766)
1781 - fix innetgr memory leak (#169051)
1782 - support > 2GB nscd log files (#168851)
1783 - too many other changes to list here
1784 - include errno in nscd message if audit_open failed (#169148)
1786 * Mon Sep 12 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-12
1787 - update from CVS
1788 - netgrp handling fixes (#167728)
1789 - fix memory leak in setlocale (BZ#1318)
1790 - fix hwcaps computation
1791 - several regex portability improvements (#167019)
1792 - hypotf fix
1793 - fix *printf return code if underlying write fails (BZ#1146)
1794 - PPC64 dl{,v}sym fixes for new ABI .opd symbols
1795 - fix calloc with MALLOC_PERTURB_ in environment on 64-bit architectures
1796 (#166719)
1797 - source /etc/sysconfig/nscd (if it exists) in /etc/rc.d/init.d/nscd
1798 (#167083)
1799 - add %%triggerin for tzdata to glibc-common, so that tzdata updates
1800 update /etc/localtime and /var/spool/postfix/etc/localtime if they
1801 exist (#167787)
1803 * Mon Aug 29 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-11
1804 - FUTEX_WAKE_OP support to speed up pthread_cond_signal
1806 * Wed Aug 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-10
1807 - update from CVS
1808 - fix growing of nscd persistent database (BZ#1204)
1809 - fix _FORTIFY_SOURCE mbstowcs and wcstombs if destination size
1810 is known at compile time, but length argument is not
1812 * Mon Aug 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-9
1813 - update from CVS
1814 - fix resolving over TCP (#161181, #165802)
1815 - on ia64 don't abort on unhandled math function exception codes
1816 (#165693)
1818 * Mon Aug 8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-8
1819 - update from CVS
1820 - nscd persistent database verifier (#164001)
1821 - cleanup _FORTIFY_SOURCE bits/*.h headers (#165000)
1822 - handle EINTR in sigwait properly
1823 - make sure poor man's stack guard randomization keeps first
1824 byte 0 even on big-endian 32-bit arches
1825 - fix {elf,nptl}/tst-stackguard1
1826 - obsolete linuxthreads-devel in glibc-devel
1828 * Fri Jul 29 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-7
1829 - update from CVS
1830 - do some poor man's stack guard randomization even without
1831 the costly --enable-stackguard-randomization
1832 - rebuilt with new GCC to make it use -msecure-plt on PPC32
1834 * Mon Jul 25 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-6
1835 - update from CVS
1836 - fix execvp if PATH is not in environment and the call is going
1837 to fail (BZ#1125)
1838 - another bits/wchar2.h fix (#163990)
1840 * Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-5
1841 - update from CVS
1842 - fix stubs.h generation
1843 - don't use _G_va_list in bits/wchar2.h
1845 * Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-4
1846 - update from CVS
1847 - make sure bits/wchar2.h header is installed
1848 - fix __getgroups_chk return type
1850 * Thu Jul 21 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-3
1851 - update from CVS
1852 - make sure nscd cmsg buffers aren't misaligned, handle EINTR from
1853 poll when contacting nscd more gracefully
1854 - remove malloc attribute from posix_memalign
1855 - correctly size nscd buffer for grpcache key (#163538)
1856 - fix atan2f
1857 - fix error memory leaks
1858 - some more _FORTIFY_SOURCE protection
1860 * Fri Jul 8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-2
1861 - update from CVS
1862 - ia64 stack protector support
1863 - handle DNS referral results as server errors (#162625)
1864 - ctan{,h}{,f,l} fixes (#160759)
1865 - pass argc, argv and envp also to executable's *ni_array
1866 functions (BZ#974)
1867 - add ellipsis to clone prototype (#161593)
1868 - fix glibc-profile (#162601)
1869 - nss_compat fixes
1870 - use sysdeps/generic version of <bits/stdio-lock.h> in installed
1871 headers instead of NPTL version (#162634)
1873 * Mon Jun 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.90-1
1874 - update from CVS
1875 - stack protector support
1876 - fix xdr_{,u_}{longlong_t,hyper} on 64-bit arches (#161583)
1877 - enable @GLIBC_2.4 symbols
1878 - remove linuxthreads
1880 * Mon Jun 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-11
1881 - update from CVS
1882 - PPC32 -msecure-plt support
1883 - support classes keyword in /etc/hesiod.conf (#150350)
1884 - add RLIMIT_NICE and RLIMIT_RTPRIO to <sys/resources.h> (#157049)
1885 - decrease number of .plt relocations in libc.so
1886 - use -laudit in nscd (#159217)
1887 - handle big amounts of networking interfaces in getifaddrs/if_nameindex
1888 (#159399)
1889 - fix pa_IN locale's am_pm (#158715, BZ#622)
1890 - fix debugging of PIEs
1892 * Mon May 30 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-10
1893 - fix LD_ASSUME_KERNEL (since 2.3.5-8 GLRO(dl_osversion)
1894 has been always overwritten with the version of currently
1895 running kernel)
1896 - remove linuxthreads man pages other than those covered in
1897 3p section, as 3p man pages are far better quality and describe
1898 POSIX behaviour that NPTL implements (#159084)
1900 * Tue May 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-9
1901 - update from CVS
1902 - increase bindresvport's LOWPORT to 512, apparently some
1903 broken daemons don't think 0 .. 511 ports are reserved
1905 * Mon May 23 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-8
1906 - update from CVS
1907 - fix kernel version check in ld.so
1908 - fix sendfile{,64} prototypes (BZ#961)
1909 - try more ports in bindresvport if all 600..1023 are
1910 used, don't use priviledged ports when talking to portmap
1911 (#141773)
1913 * Fri May 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-7
1914 - update from CVS
1915 - make regexec thread safe (BZ#934)
1916 - fix statically linked programs on i?86, x86_64, s390* and
1917 sparc* (#158027)
1918 - fix IBM939 iconv module (BZ#955)
1920 * Wed May 4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-6
1921 - update from CVS
1922 - fix cancellation on i?86
1923 - add call frame information to i?86 assembly
1925 * Tue May 3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-5
1926 - update from CVS
1927 - add some more UTF-8 locales (#156115)
1928 - clean up /lib64/tls instead of /lib/tls on x86-64, s390x and
1929 ppc64 in glibc_post_upgrade (#156656)
1930 - fix posix_fallocate{,64} (#156289)
1932 * Thu Apr 28 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-4
1933 - update from CVS
1934 - fix nscd cache pruning (#150748)
1936 * Wed Apr 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-3
1937 - update from CVS
1938 - fix linuxthreads clocks
1939 - put xen libs into the glibc-2*.i686 package instead of a separate one
1940 - fix librt.so symlink in linuxthreads-devel
1941 - do not include linuxthreads-devel on %{auxarches},
1942 just on the base architectures
1944 * Wed Apr 27 2005 Jakub Jelinek <jakub@redhat.com> 2.3.5-2
1945 - update from CVS
1946 - with MALLOC_CHECK_=N N>0 (#153003)
1947 - fix recursive dlclose (#154641)
1948 - handle %z in strptime (#154804)
1949 - automatically append /%{_lib}/obsolete/linuxthreads/
1950 to standard library search path if LD_ASSUME_KERNEL=N N <= 2.4.19
1951 or for glibc 2.0 binaries (or broken ones that don't use errno/h_errno
1952 properly). Warning: all those will stop working when LinuxThreads
1953 is finally nuked, which is not very far away
1954 - remove nonnull attribute from acct prototype (BZ#877)
1955 - kernel CPU clocks support
1956 - fix *scanf in locales with multi-byte decimal point
1958 * Wed Apr 27 2005 Roland McGrath <roland@redhat.com>
1959 - glibc-xen subpackage for i686
1961 * Fri Apr 15 2005 Roland McGrath <roland@redhat.com> 2.3.5-1
1962 - update from CVS
1963 - fix execvp regression (BZ#851)
1964 - ia64 libm updates
1965 - sparc updates
1966 - fix initstate{,_r}/strfry (#154504)
1967 - grok PT_NOTE in vDSO for kernel version and extra hwcap dirs,
1968 support "hwcap" keyword in ld.so.conf files
1970 * Tue Apr 4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-21
1971 - update from CVS
1972 - fix xdr_rmtcall_args on 64-bit arches (#151686)
1973 - fix <pthread.h> and <bits/libc-lock.h> with -std=c89 -fexceptions (#153774)
1975 * Mon Apr 4 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-20
1976 - move LinuxThreads libraries to /%{_lib}/obsolete/linuxthreads/
1977 and NPTL libraries to /%{_lib}. To run a program against LinuxThreads,
1978 LD_ASSUME_KERNEL=2.4.xx LD_LIBRARY_PATH=/%{_lib}/obsolete/linuxthreads/
1979 is now needed
1980 - bzip2 ChangeLog* files instead of gzipping them
1982 * Sat Apr 2 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-19
1983 - update from CVS
1984 - fix nextafterl and several other libm routines on ia64
1985 - fix initgroups (BZ#661)
1986 - kill nptl-devel subpackage, add linuxthreads-devel,
1987 compile and link by default against NPTL and only with
1988 -I/usr/include/linuxthreads -L/usr/%{_lib}/linuxthreads
1989 against LinuxThreads
1990 - package /usr/lib/debug/%{_lib}/tls/i{5,6}86 symlinks in
1991 i386 glibc-debuginfo
1992 - limit number of ChangeLog* files in glibc-common %%doc
1993 to last 2.5 years of changes only to save space
1995 * Fri Mar 25 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-18
1996 - fix build on 64-bit arches with new GCC
1998 * Thu Mar 24 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-17
1999 - update from CVS
2000 - fix LD_AUDIT in LinuxThreads ld.so
2001 - fix calloc with M_PERTURB
2002 - fix error handling in pthread_create with PTHREAD_EXPLICIT_SCHED
2003 on ppc*/ia64/alpha/mips (BZ#801)
2004 - fix a typo in WINDOWS-31J charmap (#151739)
2005 - fix NIS ypprot_err (#151469)
2007 * Sun Mar 20 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-16
2008 - fix pread with -D_FILE_OFFSET_BITS=64 (#151573)
2010 * Sat Mar 19 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-15
2011 - update from CVS
2012 - better fix for the dlclose bug (#145810, #150414)
2013 - fix regex crash on case insensitive search in zh_CN locale
2014 (#151215)
2015 - fix malloc_trim (BZ#779)
2016 - with -D_FORTIFY_SOURCE=*, avoid defining read and a bunch of others
2017 as function-like macros, there are too many broken programs
2018 out there
2019 - add %%dir %{_prefix}/%{_lib}/gconv to glibc's file list (#151372)
2021 * Sun Mar 6 2005 Roland McGrath <roland@redhat.com> 2.3.4-14
2022 - fix bits/socket2.h macro typos
2024 * Sat Mar 5 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-12
2025 - fix tst-chk{2,3}
2026 - fix up AS_NEEDED directive in /usr/%{_lib}/libc.so
2027 - BuildReq binutils >= 2.15.94.0.2-1 for AS_NEEDED, in
2028 glibc-devel Conflict with binutils < 2.15.94.0.2-1
2030 * Thu Mar 3 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-11
2031 - update from CVS
2032 - fix execvp (#149290)
2033 - fix dlclose (#145810)
2034 - clear padding in gconv-modules.cache (#146614, BZ#776)
2035 - rebuilt with GCC4
2036 - changed __GLIBC_MINOR__ for now back to 3
2037 - back out the newly added GLIBC_2.4 *_chk routines, instead
2038 do the checking in macros
2040 * Sat Feb 12 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-10
2041 - hopefully fix interaction with prelink (#147655)
2043 * Fri Feb 11 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-9
2044 - update from CVS
2045 - bi-arch <gnu/stubs.h> (BZ#715)
2047 * Fri Feb 11 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-8
2048 - update from CVS
2049 - bi-arch <gnu/lib-names.h> (BZ#632)
2050 - fix libdl on s390 and maybe other platforms
2051 - fix initstate{,_r} (BZ#710)
2052 - fix <gnu/stubs.h> generation (BZ#157)
2053 - define CMSPAR in bits/termios.h (#147533)
2055 * Tue Feb 8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-7
2056 - update from CVS
2057 - fix TLS handling in linuxthreads
2059 * Tue Feb 8 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-6
2060 - update from CVS
2061 - ld.so auditing
2062 - fix segfault if chrooted app attempts to dlopen a library
2063 and no standard library directory exists at all (#147067, #144303)
2064 - fix initgroups when nscd is running, but has group caching disabled
2065 (#146588)
2066 - fix pthread_key_{create,destroy} in LinuxThreads when pthread_create
2067 has not been called yet (#146710)
2068 - fix ppc64 swapcontext and setcontext (#146736, BZ#700)
2069 - service nscd cosmetic fixes (#146776)
2070 - fix IA-32 and x86-64 stack alignment in DSO constructors (#145689)
2071 - fix zdump -v segfaults on x86-64 (#146210)
2072 - avoid calling sigaction (SIGPIPE, ...) inside syslog (#146021, IT#56686)
2073 - fix errno values for futimes (BZ#633)
2074 - unconditionally include <features.h> in malloc.h (BZ#650)
2075 - change regex \B handling to match old GNU regex as well as perl/grep's dfa
2076 (from empty string inside of word to empty string not at a word boundary,
2077 BZ#693)
2078 - slightly optimize i686 TLS accesses, use direct TLS %gs access in sem_*
2079 and allow building -mno-tls-direct-seg-refs glibc that is free of direct TLS
2080 %gs access with negative offsets
2081 - fix addseverity
2082 - fix fmemopen
2083 - fix rewinddir
2084 - increase svc{tcp,unix}_create listen backlog
2086 * Thu Jan 6 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-5
2087 - update from CVS
2088 - add some warn_unused_result marking
2089 - make ftruncate available even for just -D_POSIX_C_SOURCE=200112L
2090 (BZ#640)
2092 * Thu Jan 6 2005 Jakub Jelinek <jakub@redhat.com> 2.3.4-4
2093 - update from CVS
2094 - fix IA-32 stack alignment for LinuxThreads thread functions
2095 and functions passed to clone(2) directly
2096 - fix ecvt{,_r} on denormals (#143279)
2097 - fix __tls_get_addr typo
2098 - fix rounding in IA-64 alarm (#143710)
2099 - don't reinitialize __environ in __libc_start_main, so that
2100 effects of setenv/putenv done in DSO initializers are preserved
2101 (#144037, IT#57403)
2102 - fix fmemopen
2103 - fix vDSO l_map_end and l_text_end values
2104 - IA64 libm update (#142494)
2105 - fix ppc rint/ceil etc. (BZ#602)
2107 * Tue Dec 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-3
2108 - rebuilt
2110 * Mon Dec 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-2
2111 - work around rpm bug some more, this time by copying
2112 iconvconfig to iconvconfig.%%{_target_cpu}.
2114 * Mon Dec 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.4-1
2115 - update from CVS
2116 - glibc 2.3.4 release
2117 - add -o and --nostdlib options to iconvconfig
2118 - if /sbin/ldconfig doesn't exist when running
2119 glibc_post_upgrade.%%{_target_cpu}, just don't attempt to run it.
2120 This can happen during first install of bi-arch glibc and the
2121 other arch glibc's %post wil run /sbin/ldconfig (#143326)
2122 - use -o and --nostdlib options to create all needed
2123 gconv-modules.cache files on bi-arch setups
2125 * Sun Dec 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-99
2126 - rebuilt
2128 * Sat Dec 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-98
2129 - add .%%{_target_cpu} to glibc_post_upgrade, only run telinit u
2130 if /sbin/init is the same ELF class and machine as
2131 glibc_post_upgrade.%%{_target_cpu} and similarly with
2132 condrestarting sshd (#143046)
2134 * Fri Dec 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-97
2135 - update from CVS
2136 - fix ppc64 getcontext and swapcontext (BZ#610)
2137 - sparc/sparc64 fixes
2139 * Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-96
2140 - update from CVS
2141 - fix i686 __USE_STRING_INLINES strncat
2142 - make sure ppc/ppc64 maintain correct stack alignment
2143 across clone
2145 * Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-95
2146 - export nis_domain_of_r from libnsl.so again which was
2147 unintentionally lost
2149 * Wed Dec 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-93
2150 - update from CVS
2151 - ppc/ppc64 clone without CLONE_THREAD getpid () adjustement
2152 - fix MALLOC_CHECK_={1,2,3} for non-contiguous main arena
2153 (BZ#457)
2154 - fix sysconf (_POSIX_V6_*) for other ABI environments in
2155 bi-arch setups
2156 - s390/s390x clone without CLONE_THREAD getpid () adjustement
2158 * Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-92
2159 - update from CVS
2160 - fix %{_prefix}/libexec/getconf filenames generation
2162 * Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-91
2163 - update from CVS
2164 - double buffer size in getXXbyYY or getXXent on ERANGE
2165 instead of adding BUFLEN (#142617)
2166 - avoid busy loop in malloc if another thread is doing fork
2167 (#142214)
2168 - some more realloc corruption checks
2169 - fix getconf _POSIX_V6_WIDTH_RESTRICTED_ENVS output,
2170 tweak %{_prefix}/libexec/getconf/ filenames
2172 * Fri Dec 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-90
2173 - update from CVS
2174 - regex speedups
2175 - use | cat in ldd if running under bash3+ to allow running
2176 it on binaries that are not through SELinux allowed to access
2177 console or tty
2178 - add __NR_waitid defines for alpha and ia64
2180 * Wed Dec 8 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-89
2181 - update from CVS
2182 - fix clone2 on ia64
2183 - avoid tst-timer5 failing with linuxthreads implementation
2184 - if __libc_enable_secure, disallow mode != normal
2185 - change ldd script to imply -r when -u is used, properly
2186 propagate return value and handle suid binaries
2188 * Tue Dec 7 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-88
2189 - update from CVS
2190 - disregard LD_SHOW_AUXV and LD_DYNAMIC_WEAK if __libc_enable_secure
2191 - disregard LD_DEBUG if __libc_enable_secure in normal mode
2192 if /suid-debug doesn't exist
2193 - fix fseekpos after ungetc
2194 - avoid reading bytes before start of buffers in regex's
2195 check_dst_limits_calc_pos_1 (#142060)
2196 - make getpid () working with clone/clone2 without CLONE_THREAD
2197 (so far on i386/x86_64/ia64 only)
2198 - move %{_prefix}/libexec/getconf/* to glibc from glibc-common
2199 - make %{_prefix}/libexec/getconf directory owned by glibc package
2201 * Fri Dec 3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-87
2202 - update from CVS
2203 - build libpthread_nonshared.a objects with -fPIC on s390/s390x
2204 - fix mktime with < 0 or > 59 tm_sec on entry
2205 - remove nonnull attribute for realpath
2206 - add $(make-target-directory) for errlist-compat.c rule
2207 (hopefully fix #141404)
2208 - add testcase for ungetc bug
2209 - define _POSIX_{,THREAD_}CPUTIME to 0 on all Linux arches
2211 * Tue Nov 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-86
2212 - update from CVS
2213 - some posix_opt.h fixes
2214 - fix strtold use of unitialized memory (#141000)
2215 - some more bugfixes for bugs detected by valgrind
2216 - rebuilt with GCC >= 3.4.3-5 to avoid packed stack layout
2217 on s390{,x} (#139678)
2219 * Fri Nov 26 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-85
2220 - update from CVS
2221 - support -v specification in getconf
2222 - fix sysconf (_SC_LFS64_CFLAGS) etc.
2223 - avoid thread stack aliasing issues on EM64T (#140803)
2224 - move %{_prefix}/include/nptl headers from nptl-devel
2225 to glibc-headers, so that even NPTL specific programs
2226 can be built bi-arch without problems
2228 * Wed Nov 24 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-84
2229 - update from CVS
2230 - fix memory leak in getaddrinfo if using nscd (#139559)
2231 - handle large lines in /etc/hosts and /etc/networks
2232 (#140378)
2233 - add nonnull attributes to selected dirent.h and dlfcn.h
2234 functions
2236 * Sun Nov 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-83
2237 - update from CVS
2238 - add deprecated and/or nonnull attribute to some signal.h
2239 functions
2240 - speed up tzset () by only using stat instead of open/fstat
2241 when calling tzset for the second and following time if
2242 /etc/localtime has not changed
2243 - fix tgamma (BZ #552)
2245 * Sat Nov 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-82
2246 - update from CVS
2247 - some malloc () checking
2248 - libpthread.a object dependency cleanups (#115157)
2249 - <bits/socket.h> fix for -std=c89 -pedantic-errors (#140132)
2251 * Fri Nov 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-81
2252 - don't use chunksize in <= 2 * SIZE_SZ free () checks
2254 * Fri Nov 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-80
2255 - update from CVS
2256 - with -D_FORTIFY_SOURCE=2, prevent missing %N$ formats
2257 - for -D_FORTIFY_SOURCE=2 and %n in writable format string,
2258 issue special error message instead of using the buffer overflow
2259 detected one
2260 - speedup regex searching with REG_NOSUB, add RE_NO_SUB,
2261 speedup searching with nested subexps (BZ #544)
2262 - block SIGCANCEL in NPTL timer_* helper thread
2263 - further free () checking
2265 * Tue Nov 16 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-79
2266 - update from CVS
2267 - fix free () checking
2268 - move /etc/default/nss into glibc-common (hopefully fix #132392)
2270 * Mon Nov 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-78
2271 - update from CVS
2272 - fix LD_DEBUG=statistics
2273 - issue error message before aborting in __chk_fail ()
2274 - some more free () checking
2276 * Fri Nov 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-77
2277 - update from CVS
2278 - speedup regex on palindromes (BZ #429)
2279 - fix NPTL set{,e,re,res}[ug]id, so that even if making process
2280 less priviledged all threads change their credentials successfully
2282 * Wed Nov 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-76
2283 - update from CVS
2284 - fix regcomp crash (#138439)
2285 - fix ftell{,o,o64} (#137885)
2286 - robustification of nscd to cope with corrupt databases (#137140)
2287 - fix NPTL with pthread_exit immediately after pthread_create (BZ #530)
2288 - some regex optimizations
2290 * Tue Nov 2 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-75
2291 - update from CVS
2292 - mktime cleanups (BZ #487, #473)
2293 - unique comments in free(3) check error messages
2294 - adjust some x86_64 headers for -m32 (#129712)
2295 - object size checking support even with GCC-3.4.2-RH >= 3.4.2-8
2297 * Wed Oct 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-74
2298 - fix <netinet/udp.h> header
2299 - fix globfree (#137176)
2300 - fix exiting if there are dlmopened libraries in namespaces
2301 other than main one not closed yet
2302 - export again _res_opcodes and __p_{class,type}_syms from
2303 libresolv.so that were lost in -69
2305 * Thu Oct 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-73
2306 - remove setaltroot and key{_add,_request,ctl} also from Versions
2307 - back out _sys_errlist changes
2309 * Thu Oct 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-72
2310 - back out setaltroot and key{_add,_request,ctl} addition
2311 - fix severe x86-64 symbol versioning regressions that breaks
2312 e.g. java binaries
2314 * Wed Oct 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-71
2315 - update from CVS
2316 - fix minor catchsegv temp file handling vulnerability
2317 (CAN-2004-0968, #136319)
2318 - add 4 new errno codes
2319 - setaltroot, key{_add,_request,ctl} syscalls on some arches
2320 - export _dl_debug_state@GLIBC_PRIVATE from ld.so again for
2321 gdb purpose
2322 - use inet_pton to decide what is address and what is hostname
2323 in getent (#135422)
2324 - change dladdr/dladdr1, so that dli_saddr is the same kind
2325 of value as dlsym/dlvsym return (makes difference on ia64/hppa only)
2326 - fix catchsegv script so that it works with both 32-bit and 64-bit
2327 programs on multi-arch platforms
2329 * Tue Oct 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-70
2330 - update from CVS
2331 - require newer selinux-policy (#135978)
2332 - add %%dir for /var/run/nscd and /var/db/nscd and %%ghost
2333 files in it
2334 - conflict with gcc4 4.0.0-0.6 and earlier (needs __builtin_object_size)
2336 * Mon Oct 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-69
2337 - update from CVS
2338 - object size checking support (-D_FORTIFY_SOURCE={1,2})
2340 * Thu Oct 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-68
2341 - update from CVS
2342 - support for namespaces in the dynamic linker
2343 - fix dlclose (BZ #77)
2344 - libSegFault.so uses now backtrace() to work on IA-64, x86-64
2345 and s390 (#130254)
2347 * Tue Oct 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-67
2348 - update from CVS
2349 - use non-blocking sockets in resolver (#135234)
2350 - reset pd->res options on thread exit, so that threads
2351 reusing cached stacks get resolver state properly initialized
2352 (BZ #434)
2354 * Wed Oct 6 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-66
2355 - update from CVS
2356 - avoid using perl in the spec file, buildrequire sed >= 3.95
2357 (#127671)
2358 - export TIMEOUTFACTOR=16
2359 - fix _JMPBUF_CFA_UNWINDS_ADJ on s390{,x}
2361 * Tue Oct 5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-65
2362 - update from CVS
2363 - define _POSIX_THREAD_PROCESS_SHARED and _POSIX_CLOCK_SELECTION
2364 to -1 in LinuxThreads
2365 - define _POSIX_CPUTIME and _POSIX_THREAD_CPUTIME to 0
2366 on i?86/ia64 and make sure sysconf (_SC_{,THREAD_}CPUTIME)
2367 returns correct value
2368 - if _POSIX_CLOCK_SELECTION == -1 in nscd, still try
2369 sysconf (_SC_CLOCK_SELECTION) and if it returns true,
2370 dlopen libpthread.so and dlsym pthread_condattr_setclock
2371 - build nscd with -z relro and -z now
2373 * Mon Oct 4 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-64
2374 - update from CVS
2375 - stop using __builtin_expect in assert and assert_perror
2376 (#127606)
2377 - try to avoid too much VA fragmentation with malloc
2378 on flexmap layout (#118574)
2379 - nscd robustification
2380 - change valloc to use debugging hooks (#134385)
2381 - make glibc_post_upgrade more verbose on errors (Fergal Daly,
2382 #125700)
2384 * Fri Oct 1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-63
2385 - update from CVS
2386 - fix __nscd_getgrouplist
2387 - fix a typo in x86_64 pthread_mutex_timedwait fix
2389 * Fri Oct 1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-62
2390 - update from CVS
2391 - fix NPTL pthread_mutex_timedwait on i386/x86_64 (BZ #417)
2393 * Thu Sep 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-61
2394 - update from CVS
2395 - some nscd fixes (#134193)
2396 - cache initgroups in nscd (#132850)
2397 - reread /etc/localtime in tzset () even if just mtime changed
2398 (#133481)
2399 - fix glob (#126460)
2400 - another get_myaddress fix
2402 * Wed Sep 29 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-60
2403 - update from CVS
2404 - fix get_myaddress (#133982)
2405 - remove nonnull attribute from second utime argument (#133866)
2406 - handle SIGSETXID the same way as SIGCANCEL in
2407 sigaction/pthread_kill/sigwait/sigwaitinfo etc.
2408 - add __extension__ to long long types in NPTL <bits/pthreadtypes.h>
2410 * Mon Sep 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-59
2411 - update from CVS
2412 - fix BZ #151, #362, #381, #407
2413 - fdim fix for +inf/+inf (BZ #376)
2415 * Sun Sep 26 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-58
2416 - update from CVS
2417 - vasprintf fix (BZ #346)
2418 - gettext locking (BZ #322)
2419 - change linuxthreads useldt.h inclusion login again, the last
2420 one failed all linuxthreads FLOATING_STACKS tests
2422 * Sat Sep 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-57
2423 - update from CVS
2424 - fix setuid in LD_ASSUME_KERNEL=2.2.5 libc (#133558)
2425 - fix nis locking (#132204)
2426 - RTLD_DEEPBIND support
2427 - fix pthread_create bugs (BZ #401, #405)
2429 * Wed Sep 22 2004 Roland McGrath <roland@redhat.com> 2.3.3-56
2430 - migrated CVS to fedora-branch in sources.redhat.com glibc repository
2431 - source tarballs renamed
2432 - redhat/ moved to fedora/, some old cruft removed
2433 - update from trunk
2434 - some __nonnull annotations
2436 * Wed Sep 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-55
2437 - update from CVS
2438 - set{re,e,res}[ug]id now affect the whole process in NPTL
2439 - return EAGAIN instead of ENOMEM when not enough memory
2440 in pthread_create
2442 * Fri Sep 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-54
2443 - update from CVS
2444 - nscd getaddrinfo caching
2446 * Tue Sep 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-53
2447 - restore temporarily old definition of __P()/__PMT()
2448 for third party apps
2450 * Tue Sep 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-52
2451 - update from CVS
2452 - nscd bi-arch fix
2453 - remove all uses of __P()/__PMT() from glibc headers
2454 - update and reenable nscd SELinux patch
2455 - remove libnss1* and libnss*.so.1 compatibility NSS modules
2456 on IA-32, SPARC and Alpha
2458 * Fri Sep 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-51
2459 - update from CVS
2460 - disable one of the malloc double free checks for non-contiguous
2461 arenas where it doesn't have to be true even for non-broken
2462 apps
2464 * Thu Sep 9 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-50
2465 - update from CVS
2466 - pwd/grp/host loops with nscd speed up by sharing the
2467 nscd cache r/o with applications
2468 - inexpensive double free check in free(3)
2469 - make NPTL pthread.h initializers usable even from C++
2470 (BZ #375)
2471 - use atomic instructions even in i386 nscd on i486+ CPUs
2472 (conditionally)
2474 * Sat Sep 3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-49
2475 - update from CVS
2476 - fix linuxthreads tst-cancel{[45],-static}
2478 * Fri Sep 3 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-48
2479 - update from CVS
2480 - fix pthread_cond_destroy (BZ #342)
2481 - fix fnmatch without FNM_NOESCAPE (BZ #361)
2482 - fix ppc32 setcontext (BZ #357)
2483 - add NPTL support for i386 glibc (only if run on i486 or higher CPU)
2484 - add __NR_waitid defines for i386, x86_64 and sparc*
2486 * Tue Aug 31 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-47
2487 - update from CVS
2488 - persistent nscd caching
2489 - ppc64 32-bit atomicity fix
2490 - fix x86-64 nptl-devel headers for -m32 compilation
2491 - %%ghost /etc/ld.so.cache (#130597)
2492 - edit /etc/ld.so.conf in glibc_post_upgrade if
2493 include ld.so.conf.d/*.conf line is missing (#120588)
2494 - ugly hacks for the IA-64 /emul braindamage (#124996, #128267)
2496 * Sat Aug 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-46
2497 - update from CVS
2499 * Thu Aug 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-45
2500 - update from CVS
2501 - fix nss_compat's initgroups handling (#130363)
2502 - fix getaddrinfo ai_canonname setting
2504 * Thu Aug 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-44
2505 - update from CVS
2506 - add ip6-dotint resolv.conf option, make
2507 no-ip6-dotint the default
2508 - BuildPrereq libselinux-devel (#129946)
2509 - on ppc64, build without dot symbols
2511 * Thu Aug 12 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-43
2512 - update from CVS
2513 - remove debugging printout (#129747)
2514 - make <sys/shm.h> usable in C++ (IT#45148)
2515 - update RLIMIT_* constants in <bits/resource.h>, make
2516 <sys/resource.h> POSIX compliant (#129740)
2518 * Wed Aug 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-42
2519 - fix last tzset () fixes, disable rereading of /etc/localtime
2520 every time for now
2521 - really enable SELinux support for NSCD
2523 * Wed Aug 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-41
2524 - update from CVS
2525 - fread_unlocked/fwrite_unlocked macro fixes (BZ #309, #316)
2526 - tzset () fixes (BZ #154)
2527 - speed up pthread_rwlock_unlock on arches other than i386 and
2528 x86_64 (#129455)
2529 - fix compilation with -ansi (resp. -std=c89 or -std=c99) and
2530 -D_XOPEN_SOURCE=[56]00 but no -D_POSIX_SOURCE* or -D_POSIX_C_SOURCE*
2531 (BZ #284)
2532 - add SELinux support for NSCD
2534 * Fri Aug 6 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-40
2535 - update from CVS
2536 - change res_init to force all threads to re-initialize
2537 resolver before they use it next time (#125712)
2538 - various getaddrinfo and related fixes (BZ #295, #296)
2539 - fix IBM{932,943} iconv modules (#128674)
2540 - some nscd fixes (e.g. BZ #292)
2541 - RFC 3678 support (Multicast Source Filters)
2542 - handle /lib/i686/librtkaio-* in i386 glibc_post_upgrade
2543 the same as /lib/i686/librt-*
2545 * Fri Jul 23 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-39
2546 - update from CVS
2547 - conformance related changes in headers
2548 - remove -finline-limit=2000 for GCC 3.4.x+
2550 * Thu Jul 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-38
2551 - update from CVS
2552 - fix res_init leaks
2553 - fix newlocale races
2554 - fix ppc64 setjmp
2555 - fix strtold (BZ #274)
2557 * Fri Jul 16 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-37
2558 - update from CVS
2559 - allow pthread_cancel in DSO destructors run at exit time
2560 - fix pow{f,,l} on IA-32 and powl on x86-64
2561 - allow PIEs on IA-32 to have main in a shared library they depend on
2563 * Mon Jul 5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-36
2564 - s390* .plt slot reduction
2565 - fix pthread_rwlock_timedrdlock on x86_64
2567 * Wed Jun 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-35
2568 - tweak spec file for the libpthread-0.61.so -> libpthread-2.3.3.so
2569 NPTL changes
2571 * Wed Jun 30 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-34
2572 - update from CVS
2573 - if_nameindex using preferably netlink
2574 - printf_parsemb initialization fix
2575 - NPTL version is now the same as glibc version
2577 * Mon Jun 28 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-33
2578 - update from CVS
2579 - reread resolv.conf for nscd --invalidate=hosts
2580 - fix F_GETLK/F_SETLK/F_SETLKW constants on x86_64 for
2581 -m32 -D_FILE_OFFSET_BITS=64 compilations
2582 - avoid calling non-existing fcntl64 syscall on ppc64
2584 * Mon Jun 14 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-32
2585 - update from CVS
2586 - FUTEX_CMP_REQUEUE support (fix pthread_cond_* deadlocks)
2587 - fix backtrace in statically linked programs
2588 - rebuilt with GCC 3.4, adjusted ulps and i386 <bits/string.h>
2590 * Fri May 28 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-31
2591 - update from CVS
2592 - <bits/string2.h> and <bits/mathinline.h> changes for GCC 3.{2,4,5}+
2593 - make c_stubs buildable even with GCC 3.2.x (#123042)
2595 * Fri May 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-30
2596 - fix pthread_cond_wait on architectures other than IA-32 and
2597 x86_64
2599 * Thu May 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-29
2600 - use lib64 instead of lib on ia64 if %%{_lib} is defined to lib64
2602 * Wed May 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-28
2603 - update from CVS
2604 - FUTEX_REQUEUE fixes (#115349)
2605 - SPARC GCC 3.4 build fix
2606 - fix handling of undefined TLS symbols on IA32 (RELA only),
2607 SPARC and SH
2608 - regex translate fix
2609 - speed up sprintf
2610 - x86_64 makecontext alignment fix
2611 - make POSIX sigpause the default sigpause, unless BSD sigpause
2612 requested
2614 * Tue May 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-27
2615 - remove /lib64/tls/librtkaio-2.3.[23].so in glibc_post_upgrade
2616 on x86-64, s390x and ppc64 instead of /lib/tls/librtkaio-2.3.[23].so
2617 - build mq_{send,receive} with -fexceptions
2619 * Fri May 7 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-26
2620 - update from CVS
2621 - fix <tgmath.h>
2622 - fix memory leaks in nis, getifaddrs, etc. caused by incorrect
2623 use of realloc
2624 - remove /lib/{tls,i686}/librtkaio-2.3.[23].so in glibc_post_upgrade
2625 and rerun ldconfig if needed, otherwise after glibc upgrade librt.so.1
2626 might be a stale symlink
2628 * Wed May 5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-25
2629 - update from CVS
2630 - disable FUTEX_REQUEUE (work around #115349)
2631 - mq for sparc/sparc64/ia64
2633 * Tue May 4 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-24
2634 - update from CVS
2635 - define S_ISSOCK in -D_XOPEN_SOURCE=600 and S_I[FS]SOCK
2636 plus F_[SG]ETOWN also in -D_XOPEN_SOURCE=500 (both
2637 included already in XNS5)
2638 - reorder dlopen checks, so that dlopening ET_REL objects
2639 complains about != ET_DYN != ET_EXEC, not about phentsize
2640 (#121606)
2641 - fix strpbrk macro for GCC 3.4+ (BZ #130)
2642 - fix <sys/sysctl.h> (BZ #140)
2643 - sched_[gs]etaffinity documentation fix (BZ #131)
2644 - fix sparc64 build (BZ #139)
2645 - change linuxthreads back to use non-cancellable writes
2646 to manager pipes etc.
2647 - fix sem_timedwait return value in linuxthreads (BZ #133)
2648 - ia64 unnecessary PLT relocs removal
2650 * Thu Apr 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-23
2651 - update from CVS
2652 - fix *scanf
2653 - fix shm_unlink, sem_unlink and mq_unlink errno values
2654 - avoid memory leaks in error
2655 - execstack fixes on s390
2657 * Mon Apr 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-22
2658 - update from CVS
2659 - mq and timer fixes
2660 - rebuilt with binutils >= 2.15.90.0.3-2 to fix IA-64 statically
2661 linked binaries
2662 - fix linuxthreads librt.so on s390{,x}, so it is no longer DT_TEXTREL
2664 * Sat Apr 17 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-21
2665 - disable rtkaio
2666 - update from CVS
2667 - POSIX message passing support
2668 - fixed SIGEV_THREAD support for POSIX timers
2669 - fix free on non-malloced memory in syslog
2670 - fix ffsl on some 64-bit arches
2671 - fix sched_setaffinity on x86-64, ia64
2672 - fix ppc64 umount
2673 - NETID_AUTHORITATIVE, SERVICES_AUTHORITATIVE support
2674 - various NIS speedups
2675 - fix fwrite with > 2GB sizes on 64-bit arches
2676 - fix pthread_getattr_np guardsize reporting in NPTL
2677 - report PLT relocations in ld.so and libc.so during the build
2679 * Fri Mar 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-20
2680 - update from CVS
2681 - change NPTL PTHREAD_MUTEX_ADAPTIVE_NP mutexes to spin on SMP
2682 - strtol speed optimization
2683 - don't try to use certainly unimplemented syscalls on ppc64
2684 - kill -debug subpackage, move the libs to glibc-debuginfo{,-common}
2685 into /usr/lib/debug/usr/%{_lib}/ directory
2686 - fix c_stubs with gcc 3.4
2687 - move all the up to 3 builds into %%build scriptlet and
2688 leave only installation in the %%install scriptlet
2690 * Mon Mar 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-19
2691 - update from CVS
2692 - affinity API changes
2694 * Thu Mar 18 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-18
2695 - update from CVS
2696 - fix ia64 iopl (#118591)
2697 - add support for /etc/ld.so.conf.d/*.conf
2698 - fix x86-64 LD_DEBUG=statistics
2699 - fix hwcap handling when using ld.so.cache (#118518)
2701 * Mon Mar 15 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-17
2702 - update from CVS
2703 - implement non-_l function on top of _l functions
2705 * Thu Mar 11 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-16
2706 - update from CVS
2707 - fix s390{,x} TLS handling
2709 * Wed Mar 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-15
2710 - update from CVS
2711 - special section for compatibility code
2712 - make getpid () work even in vfork () child
2713 - configure with --enable-bind-now to avoid lazy binding in ld.so
2714 and libc.so
2716 * Fri Mar 5 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-14
2717 - update from CVS
2718 - fix iconv -c (#117021)
2719 - fix PIEs on sparc/sparc64
2720 - fix posix_fadvise on 64-bit architectures
2721 - add locale-archive as %%ghost file (#117014)
2723 * Mon Mar 1 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-13
2724 - update from CVS
2726 * Fri Feb 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-12
2727 - update from CVS
2729 * Fri Feb 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-11
2730 - update from CVS
2731 - fix ld.so when vDSO is randomized
2733 * Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-10
2734 - update from CVS
2736 * Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-9
2737 - update from CVS
2739 * Tue Feb 10 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-8
2740 - update from CVS
2742 * Tue Jan 27 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-7
2743 - update from CVS
2744 - dl_iterate_phdr extension to signal number of added/removed
2745 libraries
2746 - fix PT_GNU_RELRO support on ppc* with prelinking
2748 * Fri Jan 23 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-6
2749 - rebuilt with fixed GCC on IA-64
2751 * Thu Jan 22 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-5
2752 - fix PT_GNU_RELRO support
2754 * Wed Jan 21 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-4
2755 - update from CVS
2756 - some further regex speedups
2757 - fix re.translate handling in regex (#112869)
2758 - change regfree to match old regex behaviour (what is freed
2759 and clearing of freed pointers)
2760 - fix accesses to unitialized memory in regex (#113507, #113425,
2761 #113421)
2762 - PT_GNU_RELRO support
2764 * Tue Dec 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-3
2765 - update from CVS
2766 - fix pmap_set fd and memory leak (#112726)
2767 - fix backreference handling in regex
2768 - rebuilt under glibc without the above bug to fix
2769 libc.so linker script (#112738)
2771 * Mon Dec 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-2
2772 - update from CVS
2773 - faster getpid () in NPTL builds
2774 - fix to make pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, )
2775 really disable cancellation (#112512)
2776 - more regex fixes and speedups
2777 - fix nextafter*/nexttoward*
2778 - handle 6th syscall(3) argument on AMD64
2779 - handle memalign/posix_memalign in mtrace
2780 - fix linuxthreads memory leak (#112208)
2781 - remove throw () from cancellation points in linuxthreads (#112602)
2782 - fix NPTL unregister_atfork
2783 - fix unwinding through alternate signal stacks
2785 * Mon Dec 1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.3-1
2786 - update from CVS
2787 - 2.3.3 release
2788 - lots of regex fixes and speedups (#110401)
2789 - fix atan2
2790 - fix pshared condvars in NPTL
2791 - fix pthread_attr_destroy for attributes created with
2792 pthread_attr_init@GLIBC_2.0
2793 - for the time being, include both nb_NO* and no_NO* as locales
2794 so that the distribution can catch up with the no_NO->nb_NO
2795 transition
2796 - add BuildPrereq texinfo (#110252)
2798 * Tue Nov 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-102
2799 - update from CVS
2800 - fix getifaddrs (CAN-2003-0859)
2801 - fix ftw fd leak
2802 - fix linuxthreads sigaction (#108634)
2803 - fix glibc 2.0 stdio compatibility
2804 - fix uselocale (LC_GLOBAL_LOCALE)
2805 - speed up stdio locking in non-threaded programs on IA-32
2806 - try to maintain correct order of cleanups between those
2807 registered with __attribute__((cleanup))
2808 and with LinuxThreads style pthread_cleanup_push/pop (#108631)
2809 - fix segfault in regex (#109606)
2810 - fix RE_ICASE multi-byte handling in regex
2811 - fix pthread_exit in libpthread.a (#109790)
2812 - FTW_ACTIONRETVAL support
2813 - lots of regex fixes and speedups
2814 - fix ceill/floorl on AMD64
2816 * Mon Oct 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-101
2817 - update from CVS
2818 - fix ld.so --verify (and ldd)
2820 * Mon Oct 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-100
2821 - update from CVS
2822 - fix sprof (#103727)
2823 - avoid infinite loops in {,f}statvfs{,64} with hosed mounts file
2824 - prevent dlopening of executables
2825 - fix glob with GLOB_BRACE and without GLOB_NOESCAPE
2826 - fix locale printing of word values on 64-bit big-endian arches
2827 (#107846)
2828 - fix getnameinfo and getaddrinfo with reverse IPv6 lookups
2829 (#101261)
2831 * Wed Oct 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-99
2832 - update from CVS
2833 - dl_iterate_phdr in libc.a on arches other than IA-64
2834 - LD_DEBUG=statistics prints number of relative relocations
2835 - fix hwcap computation
2836 - NPTL is now part of upstream glibc CVS
2837 - include {st,xh,zu}_ZA{,.UTF-8} locales
2839 * Sat Oct 4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-98
2840 - update from CVS
2841 - fix close, pause and fsync (#105348)
2842 - fix pthread_once on IA-32
2843 - implement backtrace () on IA-64, handle -fomit-frame-pointer
2844 in AMD64 backtrace () (#90402)
2846 * Tue Sep 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-97
2847 - update from CVS
2848 - fix <sys/sysmacros.h> with C++ or -ansi or -pedantic C
2849 - fix mknod/ustat return value when given bogus device number (#105768)
2851 * Fri Sep 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-96
2852 - rebuilt
2854 * Fri Sep 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-95
2855 - fix IA-64 getcontext
2857 * Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-94
2858 - update from CVS
2859 - fix syslog with non-C non-en_* locales (#61296, #104979)
2860 - filter GLIBC_PRIVATE symbols from glibc provides
2861 - fix NIS+
2863 * Thu Sep 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-93
2864 - update from CVS
2865 - assume 2.4.21 kernel features on RHEL/ppc*, so that
2866 {make,set,get,swap}context works
2867 - backout execstack support for RHEL
2868 - build rtkaio on amd64 too
2870 * Wed Sep 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-92
2871 - update from CVS
2872 - execstack/noexecstack support
2873 - build nscd as PIE
2874 - move __libc_stack_end back to @GLIBC_2.1
2875 - build against elfutils >= 0.86 to fix stripping on s390x
2877 * Mon Sep 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-91
2878 - rebuilt
2880 * Mon Sep 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-90
2881 - update from CVS
2882 - NPTL locking change (#102682)
2883 - don't jump around lock on amd64
2885 * Thu Sep 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-89
2886 - fix open_memstream/syslog (#104661)
2888 * Thu Sep 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-88
2889 - update from CVS
2890 - retrieve affinity in pthread_getattr_np
2891 - fix pthread_attr_[gs]etaffinity_np
2892 - handle hex and octal in wordexp
2894 * Wed Sep 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-87
2895 - update from CVS
2896 - truncate instead of round in utimes when utimes syscall is not available
2897 - don't align stack in every glibc function unnecessarily on IA-32
2898 - make sure threads have their stack 16 byte aligned on IA-32
2899 - move sched_[sg]etaffinity to GLIBC_2.3.3 symbol version (#103231)
2900 - fix pthread_getattr_np for the initial thread (#102683)
2901 - avoid linuxthreads signal race (#104368)
2902 - ensure all gzip invocations are done with -n option
2904 * Fri Sep 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-86
2905 - update from CVS
2906 - avoid linking in libgcc_eh.a unnecessarily
2907 - change ssize_t back to long int on s390 -m31, unless
2908 gcc 2.95.x is used
2910 * Wed Sep 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-85
2911 - update from CVS
2912 - fix IA-64 memccpy (#104114)
2914 * Tue Sep 9 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-84
2915 - update from CVS
2916 - undo broken amd64 signal context changes
2918 * Tue Sep 9 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-83
2919 - update from CVS
2920 - change *nlink_t, *ssize_t and *intptr_t types on s390 -m31 to
2921 {unsigned,} int
2922 - change *u_quad_t, *quad_t, *qaddr_t, *dev_t, *ino64_t, *loff_t,
2923 *off64_t, *rlim64_t, *blkcnt64_t, *fsblkcnt64_t, *fsfilcnt64_t
2924 on 64-bit arches from {unsigned,} long long int {,*} to
2925 {unsigned,} long int {,*} to restore binary compatibility
2926 for C++ functions using these types as arguments
2928 * Sun Sep 7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-82
2929 - rebuilt
2931 * Sat Sep 6 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-81
2932 - update from CVS
2933 - fix tc[gs]etattr/cf[gs]et[io]speed on ppc (#102732)
2934 - libio fixes
2936 * Thu Sep 4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-80
2937 - update from CVS
2938 - fix IA-64 cancellation when mixing __attribute__((cleanup ()))
2939 and old-style pthread_cleanup_push cleanups
2941 * Tue Sep 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-79
2942 - updated from CVS
2943 - lots of cancellation fixes
2944 - fix posix_fadvise* on ppc32
2945 - TLS layout fix
2946 - optimize stdio cleanups (#103354)
2947 - sparcv9 NPTL
2948 - include sigset, sighold, sigrelse, sigpause and sigignore prototypes
2949 in signal.h even if -D_XOPEN_SOURCE_EXTENDED (#103269)
2950 - fix svc_getreqset on 64-bit big-endian arches
2951 - return ENOSYS in linuxthreads pthread_barrierattr_setpshared for
2952 PTHREAD_PROCESS_SHARED
2953 - add pthread_cond_timedwait stubs to libc.so (#102709)
2954 - split glibc-devel into glibc-devel and glibc-headers to ensure
2955 amd64 /usr/include always wins on amd64/i386 bi-arch installs
2956 - increase PTHREAD_STACK_MIN on alpha, ia64 and sparc*
2957 - get rid of __syscall_* prototypes and stubs in sysdeps/unix/sysv/linux
2958 - run make check also with linuxthreads (on IA-32 non-FLOATING_STACKS)
2959 ld.so and NPTL (on IA-32 also FLOATING_STACKS linuxthreads) libraries
2960 and tests
2962 * Tue Aug 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-78
2963 - include dl-osinfo.h only in glibc-debuginfo-2*.rpm, not
2964 in glibc-debuginfo-common*
2966 * Mon Aug 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-77
2967 - update from CVS
2968 - fix glibc 2.0 libio compatibility (#101385)
2969 - fix ldconfig with /usr/lib/lib*.so symlinks (#102853)
2970 - fix assert.h (#102916, #103017)
2971 - make ld.so.cache identical between IA-32 and AMD64 (#102887)
2972 - fix static linking of large IA-64 binaries (#102586)
2973 - avoid using floating point regs in lazy binding code on ppc64 (#102763)
2975 * Fri Aug 22 2003 Roland McGrath <roland@redhat.com> 2.3.2-76
2976 - add td_thr_tls_get_addr changes missed in initial nptl_db rewrite
2978 * Sun Aug 17 2003 Roland McGrath <roland@redhat.com> 2.3.2-74
2979 - nptl_db rewrite not yet in CVS
2981 * Thu Aug 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-72
2982 - update from CVS
2983 - fix rtkaio aio_fsync{,64}
2984 - update rtkaio for !BROKEN_THREAD_SIGNALS
2985 - fix assert macro when used on pointers
2987 * Wed Aug 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-71
2988 - update from CVS
2990 * Tue Aug 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-70
2991 - update from CVS
2992 - disable CLONE_STOPPED for now until it is resolved
2993 - strip crt files
2994 - fix libio on arches with no < GLIBC_2.2 support (#102102, #102105)
2995 - fix glibc-debuginfo to include all nptl and nptl_db sources
2997 * Thu Aug 7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-69
2998 - update from CVS
2999 - fix pthread_create@GLIBC_2.0 (#101767)
3000 - __ASSUME_CLONE_STOPPED on all arches but s390* in RHEL
3002 * Sun Aug 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-68
3003 - update from CVS
3004 - only use CLONE_STOPPED if kernel supports it, fix setting of thread
3005 explicit scheduling (#101457)
3007 * Fri Aug 1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-67
3008 - update from CVS
3009 - fix utimes and futimes if kernel doesn't support utimes syscall
3010 - fix s390 ssize_t type
3011 - fix dlerror when called before any dlopen/dlsym
3012 - update IA-64 bits/sigcontext.h (#101344)
3013 - various warning fixes
3014 - fix pthread.h comment typos (#101363)
3016 * Wed Jul 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-66
3017 - update from CVS
3018 - fix dlopen of libraries using TLS IE/LE models
3020 * Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-65
3021 - update from CVS
3022 - fix timer_create
3023 - use __extension__ before long long typedefs in <bits/types.h> (#100718)
3025 * Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-64
3026 - update from CVS
3027 - fix wcpncpy (#99462)
3028 - export _res@GLIBC_2.0 even from NPTL libc.so (__res_state ()
3029 unlike __errno_location () or __h_errno_location () was introduced
3030 in glibc 2.2)
3031 - fix zic bug on 64-bit platforms
3032 - some TLS handling fixes
3033 - make ldconfig look into alternate ABI dirs by default (#99402)
3034 - move %{_datadir}/zoneinfo to tzdata package, so that it can be
3035 errataed separately from glibc
3036 - new add-on - rtkaio
3037 - prereq libgcc, as glibc now relies on libgcc_s.so.1 for pthread_cancel
3039 * Tue Jul 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-63
3040 - fix thread cancellation on ppc64
3042 * Sat Jul 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-62
3043 - update from CVS
3044 - fix thread cancellation on ppc32, s390 and s390x
3046 * Thu Jul 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-61
3047 - update from CVS
3048 - build libc_nonshared.a with -fPIC instead of -fpic
3049 - fix ppc64 PIE support
3050 - add cfi directives to NPTL sysdep-cancel.h on ppc/ppc64/s390/s390x
3052 * Tue Jul 8 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-60
3053 - update from CVS
3055 * Thu Jul 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-59
3056 - update from CVS
3057 - on IA-64 use different symbols for cancellation portion of syscall
3058 handlers to make gdb happier
3060 * Thu Jun 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-58
3061 - update from CVS
3062 - nss_compat supporting LDAP etc.
3064 * Tue Jun 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-57
3065 - update from CVS
3067 * Thu Jun 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-56
3068 - fix condvars and semaphores in ppc* NPTL
3069 - fix test-skeleton.c reporting of timed-out tests (#91269)
3070 - increase timeouts for tests during make check
3072 * Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-55
3073 - make ldconfig default to both /lib+/usr/lib and /lib64+/usr/lib64
3074 on bi-ABI architectures (#97557)
3075 - disable FUTEX_REQUEUE on ppc* temporarily
3077 * Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-54
3078 - update from CVS
3079 - fix glibc_post_upgrade on ppc
3081 * Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-53
3082 - update from CVS
3083 - fix localedef (#90659)
3084 - tweak linuxthreads for librt cancellation
3086 * Mon Jun 16 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-52
3087 - update from CVS
3089 * Thu Jun 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-51
3090 - update from CVS
3091 - fix <gnu/stubs.h> (#97169)
3093 * Wed Jun 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-50
3094 - update from CVS
3096 * Tue Jun 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-49
3097 - update from CVS
3098 - fix pthread_cond_signal on IA-32 (#92080, #92253)
3099 - fix setegid (#91567)
3100 - don't prelink -R libc.so on any architecture, it prohibits
3101 address randomization
3103 * Fri Jun 5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-48
3104 - update from CVS
3105 - fix IA-64 NPTL build
3107 * Thu Jun 5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-47
3108 - update from CVS
3109 - PT_GNU_STACK segment in binaries/executables and .note.GNU-stack
3110 section in *.[oa]
3112 * Sun Jun 1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-46
3113 - update from CVS
3114 - enable NPTL on AMD64
3115 - avoid using trampolines in localedef
3117 * Fri May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-45
3118 - enable NPTL on IA-64
3120 * Fri May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-44
3121 - update from CVS
3122 - enable NPTL on s390 and s390x
3123 - make __init_array_start etc. symbols in elf-init.oS hidden undefined
3125 * Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-43
3126 - update from CVS
3128 * Fri May 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-42
3129 - update from CVS
3131 * Tue May 20 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-41
3132 - update from CVS
3133 - use NPTL libs if uname -r contains nptl substring or is >= 2.5.69
3134 or set_tid_address syscall is available instead of checking
3135 AT_SYSINFO dynamic tag
3137 * Thu May 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-40
3138 - update from CVS
3140 * Wed May 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-39
3141 - update from CVS
3142 - fix for prelinking of libraries with no dependencies
3144 * Tue May 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-38
3145 - update from CVS
3146 - enable NPTL on ppc and ppc64
3148 * Tue May 6 2003 Matt Wilson <msw@redhat.com> 2.3.2-37
3149 - rebuild
3151 * Sun May 4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-36
3152 - update from CVS
3154 * Sat May 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-35
3155 - update from CVS
3156 - make -jN build fixes
3158 * Fri May 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-34
3159 - update from CVS
3160 - avoid using trampolines in iconvconfig for now
3162 * Sat Apr 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-33
3163 - update from CVS
3165 * Fri Apr 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-32
3166 - update from CVS
3167 - more ppc TLS fixes
3169 * Wed Apr 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-31
3170 - update from CVS
3171 - nscd fixes
3172 - fix Bahrain spelling (#56298)
3173 - fix Ukrainian collation (#83973)
3174 - accept trailing spaces in /etc/ld.so.conf (#86032)
3175 - perror fix (#85994)
3176 - fix localedef (#88978)
3177 - fix getifaddrs (#89026)
3178 - fix strxfrm (#88409)
3179 - fix ppc TLS
3180 - fix getaddrinfo (#89448)
3181 - don't print warning about errno, h_errno or _res if
3182 LD_ASSUME_KERNEL=2.4.1 or earlier
3184 * Tue Apr 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-30
3185 - update from CVS
3186 - fix prelink on ppc32
3187 - add TLS support on ppc32 and ppc64
3188 - make sure on -m64 arches all helper binaries are built with this
3189 option
3191 * Mon Apr 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-29
3192 - update from CVS
3193 - fix strxfrm (#88409)
3194 - use -m64 -mno-minimal-toc on ppc64
3195 - conflict with kernels < 2.4.20 on ppc64 and < 2.4.0 on x86_64
3196 - link glibc_post_upgrade against newly built libc.a
3198 * Sun Apr 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-28
3199 - update from CVS
3200 - fix NPTL pthread_detach and already terminated, but not yet
3201 joined thread (#88219)
3202 - fix bug-regex4 testcase (#88118)
3203 - reenable prelink support broken in 2.3.2-13
3204 - fix register_printf_function (#88052)
3205 - fix double free with fopen using ccs= (#88056)
3206 - fix potential access below $esp in {set,swap}context (#88093)
3207 - fix buffer underrun in gencat -H (#88099)
3208 - avoid using unitialized variable in tst-tgmath (#88101)
3209 - fix gammal (#88104)
3210 - fix iconv -c
3211 - fix xdr_string (PR libc/4999)
3212 - fix /usr/lib/nptl/librt.so symlink
3213 - avoid running NPTL cleanups twice in some cases
3214 - unblock __pthread_signal_cancel in linuxthreads, so that
3215 linuxthreads threaded programs work correctly if spawned
3216 from NPTL threaded programs
3217 - fix sysconf _SC_{NPROCESSORS_{CONF,ONLN},{,AV}PHYS_PAGES}
3218 - remove /lib/i686 directory before running ldconfig in glibc post
3219 during i686 -> i386 glibc "upgrades" (#88456)
3221 * Wed Apr 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-22
3222 - update from CVS
3223 - add pthread_atfork to libpthread.a
3225 * Tue Apr 1 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-21
3226 - update from CVS
3227 - make sure linuxthreads pthread_mutex_lock etc. is not a cancellation
3228 point
3230 * Sat Mar 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-20
3231 - update from CVS
3232 - if kernel >= 2.4.1 doesn't support NPTL, fall back to
3233 /lib/i686 libs on i686, not stright to /lib
3235 * Fri Mar 28 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-19
3236 - update from CVS
3237 - timers fixes
3239 * Thu Mar 27 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-18
3240 - update from CVS
3241 - fix NPTL pthread_cond_timedwait
3242 - fix sysconf (_SC_MONOTONIC_CLOCK)
3243 - use /%%{_lib}/tls instead of /lib/tls on x86-64
3244 - add /%{_lib}/tls/librt*so* and /%{_lib}/i686/librt*so*
3245 - display content of .out files for all make check failures
3247 * Wed Mar 26 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-17
3248 - update from CVS
3249 - kernel POSIX timers support
3251 * Sat Mar 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-16
3252 - update from CVS
3253 - export __fork from glibc again
3254 - fix glibc-compat build in NPTL
3255 - fix c_stubs
3256 - fix some more atomic.h problems
3257 - don't check abi in glibc-compat libs
3259 * Fri Mar 21 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-15
3260 - update from CVS
3261 - build glibc-compat (for glibc 2.0 compatibility) and c_stubs add-ons
3262 - condrestart sshd in glibc_post_upgrade so that the user can
3263 log in remotely and handle the rest (#86339)
3264 - fix a typo in glibc_post_upgrade on sparc
3266 * Tue Mar 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-14
3267 - update from CVS
3268 - change i686/athlon libc.so.6 base to 0x00e80000
3270 * Mon Mar 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-13
3271 - update from CVS
3272 - hopefully last fix for condvar problems
3274 * Fri Mar 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-12
3275 - fix bits/syscall.h creation on x86-64
3277 * Thu Mar 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-11
3278 - update from CVS
3280 * Wed Mar 12 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-10
3281 - update from CVS
3283 * Tue Mar 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-9
3284 - update from CVS
3285 - fix glibc-debug description (#85111)
3286 - make librt.so a symlink again, not linker script
3288 * Tue Mar 4 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-8
3289 - update from CVS
3290 - remove the workarounds for broken software accessing GLIBC_PRIVATE
3291 symbols
3293 * Mon Mar 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-7
3294 - update from CVS
3296 * Sun Mar 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-6
3297 - fix TLS IE/LE model handling in dlopened libraries
3298 on TCB_AT_TP arches
3300 * Thu Feb 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-5
3301 - update from CVS
3303 * Tue Feb 25 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-4
3304 - update from CVS
3306 * Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-3
3307 - update from CVS
3308 - only warn about errno, h_errno or _res for binaries, never
3309 libraries
3310 - rebuilt with gcc-3.2.2-4 to use direct %gs TLS access insn sequences
3312 * Sun Feb 23 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-2
3313 - update from CVS
3315 * Sat Feb 22 2003 Jakub Jelinek <jakub@redhat.com> 2.3.2-1
3316 - update from CVS
3318 * Thu Feb 20 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-51
3319 - update from CVS
3321 * Wed Feb 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-50
3322 - update from CVS
3324 * Wed Feb 19 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-49
3325 - update from CVS
3326 - remove nisplus and nis from the default nsswitch.conf (#67401, #9952)
3328 * Tue Feb 18 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-48
3329 - update from CVS
3331 * Sat Feb 15 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-47
3332 - update from CVS
3334 * Fri Feb 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-46
3335 - update from CVS
3336 - pthread_cond* NPTL fixes, new NPTL testcases
3338 * Thu Feb 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-45
3339 - update from CVS
3340 - include also linuxthreads FLOATING_STACKS libs on i686 and athlon:
3341 LD_ASSUME_KERNEL=2.2.5 to LD_ASSUME_KERNEL=2.4.0 is non-FLOATING_STACKS lt,
3342 LD_ASSUME_KERNEL=2.4.1 to LD_ASSUME_KERNEL=2.4.19 is FLOATING_STACKS lt,
3343 later is NPTL
3344 - enable TLS on alpha/alphaev6
3345 - add BuildPreReq: /usr/bin/readlink
3347 * Tue Feb 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-44
3348 - update from CVS
3349 - pthread_once fix
3351 * Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-43
3352 - update from CVS
3353 - vfork fix on s390
3354 - rebuilt with binutils 2.13.90.0.18-5 so that accesses to errno
3355 don't bind locally (#83325)
3357 * Thu Feb 06 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-42
3358 - update from CVS
3359 - fix pthread_create after vfork+exec in linuxthreads
3361 * Wed Feb 05 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-41
3362 - update from CVS
3364 * Thu Jan 30 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-40
3365 - update from CVS
3367 * Wed Jan 29 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-39
3368 - update from CVS
3369 - enable TLS on s390{,x} and sparc{,v9}
3371 * Fri Jan 17 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-38
3372 - update from CVS
3373 - initialize __environ in glibc_post_upgrade to empty array,
3374 so that it is not NULL
3375 - compat symlink for s390x /lib/ld64.so.1
3376 - enable glibc-profile on x86-64
3377 - only include libNoVersion.so on IA-32, Alpha and Sparc 32-bit
3379 * Thu Jan 16 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-37
3380 - update from CVS
3381 - nscd fixes, *scanf fix
3382 - fix %%nptlarches noarch build (#81909)
3383 - IA-64 TLS fixes
3385 * Tue Jan 14 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-36
3386 - update from CVS
3387 - rework -debuginfo subpackage, add -debuginfo-common
3388 subpackage on IA-32, Alpha and Sparc (ie. auxiliary arches)
3389 - fix vfork in libc.a on PPC32, Alpha, Sparc
3390 - fix libio locks in linuxthreads libc.so if libpthread.so
3391 is dlopened later (#81374)
3393 * Mon Jan 13 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-35
3394 - update from CVS
3395 - dlclose bugfixes
3396 - fix NPTL libpthread.a
3397 - fix glibc_post_upgrade on several arches
3399 * Sat Jan 11 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-34
3400 - update from CVS
3401 - TLS support on IA-64
3403 * Wed Jan 8 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-33
3404 - fix vfork in linuxthreads (#81377, #81363)
3406 * Tue Jan 7 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-32
3407 - update from CVS
3408 - don't use TLS libs if kernel doesn't set AT_SYSINFO
3409 (#80921, #81212)
3410 - add ntp_adjtime on alpha (#79996)
3411 - fix nptl_db (#81116)
3413 * Sun Jan 5 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-31
3414 - update from CVS
3415 - support all architectures again
3417 * Fri Jan 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-30
3418 - fix condvar compatibility wrappers
3419 - add ugly hack to use non-TLS libs if a binary is seen
3420 to have errno, h_errno or _res symbols in .dynsym
3422 * Fri Jan 3 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-29
3423 - update from CVS
3424 - fixes for new condvar
3426 * Thu Jan 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-28
3427 - new NPTL condvar implementation plus related linuxthreads
3428 symbol versioning updates
3430 * Thu Jan 2 2003 Jakub Jelinek <jakub@redhat.com> 2.3.1-27
3431 - update from CVS
3432 - fix #include <sys/stat.h> with -D_BSD_SOURCE or without
3433 feature set macros
3434 - make *sigaction, sigwait and raise the same between
3435 -lpthread -lc and -lc -lpthread in linuxthreads builds
3437 * Tue Dec 31 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-26
3438 - fix dlclose
3440 * Sun Dec 29 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-25
3441 - enable sysenter by default for now
3442 - fix endless loop in ldconfig
3444 * Sat Dec 28 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-24
3445 - update from CVS
3447 * Fri Dec 27 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-23
3448 - update from CVS
3449 - fix ptmalloc_init after clearenv (#80370)
3451 * Sun Dec 22 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-22
3452 - update from CVS
3453 - add IA-64 back
3454 - move TLS libraries from /lib/i686 to /lib/tls
3456 * Thu Dec 19 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-21
3457 - system(3) fix for linuxthreads
3458 - don't segfault in pthread_attr_init from libc.so
3459 - add cancellation tests from nptl to linuxthreads
3461 * Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-20
3462 - fix up lists of exported symbols + their versions
3463 from the libraries
3465 * Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-19
3466 - fix --with-tls --enable-kernel=2.2.5 libc on IA-32
3468 * Wed Dec 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-18
3469 - update from CVS
3470 - fix NPTL hanging mozilla
3471 - initialize malloc in mALLOPt (fixes problems with squid, #79957)
3472 - make linuxthreads work with dl_dynamic_weak 0
3473 - clear dl_dynamic_weak everywhere
3475 * Tue Dec 17 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-17
3476 - update from CVS
3477 - NPTL socket fixes, flockfile/ftrylockfile/funlockfile fix
3478 - kill -debug sub-package, rename -debug-static to -debug
3479 - clear dl_dynamic_weak for NPTL
3481 * Mon Dec 16 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-16
3482 - fix <bits/mathinline.h> and <bits/nan.h> for C++
3483 - automatically generate NPTL libpthread wrappers
3485 * Mon Dec 16 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-15
3486 - update from CVS
3487 - all functions which need cancellation should now be cancellable
3488 both in libpthread.so and libc.so
3489 - removed @@GLIBC_2.3.2 cancellation wrappers
3491 * Fri Dec 13 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-14
3492 - update from CVS
3493 - replace __libc_lock_needed@GOTOFF(%ebx) with
3494 %gs:offsetof(tcbhead_t, multiple_threads)
3495 - start of new NPTL cancellation wrappers
3497 * Thu Dec 12 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-13
3498 - update from CVS
3499 - use inline locks in malloc
3501 * Tue Dec 10 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-12
3502 - update from CVS
3503 - support LD_ASSUME_KERNEL=2.2.5 in statically linked programs
3505 * Mon Dec 9 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-11
3506 - update from CVS
3507 - rebuilt with gcc-3.2.1-2
3509 * Fri Dec 6 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-10
3510 - update from CVS
3511 - non-nptl --with-tls --without-__thread FLOATING_STACKS libpthread
3512 should work now
3513 - faster libc locking when using nptl
3514 - add OUTPUT_FORMAT to linker scripts
3515 - fix x86_64 sendfile (#79111)
3517 * Wed Dec 4 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-9
3518 - update from CVS
3519 - RUSCII support (#78906)
3520 - for nptl builds add BuildRequires
3521 - fix byteswap.h for non-gcc (#77689)
3522 - add nptl-devel package
3524 * Tue Dec 3 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-8
3525 - update from CVS
3526 - make --enable-kernel=2.2.5 --with-tls --without-__thread
3527 ld.so load nptl and other --with-__thread libs
3528 - disable nptl by default for now
3530 * Wed Nov 27 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-7
3531 - update from CVS
3532 - restructured redhat/Makefile and spec, so that src.rpm contains
3533 glibc-<date>.tar.bz2, glibc-redhat-<date>.tar.bz2 and glibc-redhat.patch
3534 - added nptl
3536 * Fri Nov 8 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-6
3537 - update from CVS
3538 - even more regex fixes
3539 - run sed testsuite to check glibc regex
3541 * Thu Oct 24 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-5
3542 - fix LD_DEBUG=statistics and LD_TRACE_PRELINKING in programs
3543 using libpthread.so.
3545 * Thu Oct 24 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-4
3546 - update from CVS
3547 - fixed %a and %A in *printf (#75821)
3548 - fix re_comp memory leaking (#76594)
3550 * Tue Oct 22 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-3
3551 - update from CVS
3552 - some more regex fixes
3553 - fix libpthread.a (#76484)
3554 - fix locale-archive enlarging
3556 * Fri Oct 18 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-2
3557 - update from CVS
3558 - don't need to use 128K of stacks for DNS lookups
3559 - regex fixes
3560 - updated timezone data e.g. for this year's Brasil DST
3561 changes
3562 - expand ${LIB} in RPATH/RUNPATH/dlopen filenames
3564 * Fri Oct 11 2002 Jakub Jelinek <jakub@redhat.com> 2.3.1-1
3565 - update to 2.3.1 final
3566 - support really low thread stack sizes (#74073)
3567 - tzdata update
3569 * Wed Oct 9 2002 Jakub Jelinek <jakub@redhat.com> 2.3-2
3570 - update from CVS
3571 - handle low stack limits
3572 - move s390x into */lib64
3574 * Thu Oct 3 2002 Jakub Jelinek <jakub@redhat.com> 2.3-1
3575 - update to 2.3 final
3576 - fix freopen on libstdc++ <= 2.96 stdin/stdout/stderr (#74800)
3578 * Sun Sep 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-3
3579 - don't prelink -r libc.so on ppc/x86-64/sparc*, it doesn't
3580 speed things up, because they are neither REL arches, nor
3581 ELF_MACHINE_REL_RELATIVE
3582 - fix sparc64 build
3584 * Sun Sep 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-2
3585 - update from CVS
3587 * Sat Sep 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.94-1
3588 - update from CVS
3589 - prelink on ppc and x86-64 too
3590 - don't remove ppc memset
3591 - instead of listing on which arches to remove glibc-compat
3592 list where it should stay
3594 * Fri Sep 6 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-5
3595 - fix wcsmbs functions with invalid character sets (or malloc
3596 failures)
3597 - make sure __ctype_b etc. compat vars are updated even if
3598 they are copy relocs in the main program
3600 * Thu Sep 5 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-4
3601 - fix /lib/libnss1_dns.so.1 (missing __set_h_errno definition
3602 leading to unresolved __set_h_errno symbol)
3604 * Wed Sep 4 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-3
3605 - security fix - increase dns-network.c MAXPACKET to at least
3606 65536 to avoid buffer overrun. Likewise glibc-compat
3607 dns-{host,network}.c.
3609 * Tue Sep 3 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-2
3610 - temporarily add back __ctype_b, __ctype_tolower and __ctype_toupper to
3611 libc.a and export them as @@GLIBC_2.0 symbols, not @GLIBC_2.0
3612 from libc.so - we have still lots of .a libraries referencing
3613 __ctype_{b,tolower,toupper} out there...
3615 * Tue Sep 3 2002 Jakub Jelinek <jakub@redhat.com> 2.2.93-1
3616 - update from CVS
3617 - 2.2.93 release
3618 - use double instead of single indirection in isXXX macros
3619 - per-locale wcsmbs conversion state
3621 * Sat Aug 31 2002 Jakub Jelinek <jakub@redhat.com> 2.2.92-2
3622 - update from CVS
3623 - fix newlocale/duplocale/uselocale
3624 - disable profile on x86_64 for now
3626 * Sat Aug 31 2002 Jakub Jelinek <jakub@redhat.com> 2.2.92-1
3627 - update from CVS
3628 - 2.2.92 release
3629 - fix gettext after uselocale
3630 - fix locales in statically linked threaded programs
3631 - fix NSS
3633 * Thu Aug 29 2002 Jakub Jelinek <jakub@redhat.com> 2.2.91-1
3634 - update from CVS
3635 - 2.2.91 release
3636 - fix fd leaks in locale-archive reader (#72043)
3637 - handle EROFS in build-locale-archive gracefully (#71665)
3639 * Wed Aug 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-27
3640 - update from CVS
3641 - fix re_match (#72312)
3642 - support more than 1024 threads
3644 * Fri Aug 23 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-26
3645 - update from CVS
3646 - fix i386 build
3648 * Thu Aug 22 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-25
3649 - update from CVS
3650 - fix locale-archive loading hang on some (non-primary) locales
3651 (#72122, #71878)
3652 - fix umount problems with locale-archives when /usr is a separate
3653 partition (#72043)
3654 - add LICENSES file
3656 * Fri Aug 16 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-24
3657 - update from CVS
3658 - only mmap up to 2MB of locale-archive on 32-bit machines
3659 initially
3660 - fix fseek past end + fread segfault with mmaped stdio
3661 - include <sys/debugreg.h> which is mistakenly not included
3662 in glibc-devel on IA-32
3664 * Fri Aug 16 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-23
3665 - don't return normalized locale name in setlocale when using
3666 locale-archive
3668 * Thu Aug 15 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-22
3669 - update from CVS
3670 - optimize for primary system locale
3671 - localedef fixes (#71552, #67705)
3673 * Wed Aug 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-21
3674 - fix path to locale-archive in libc reader
3675 - build locale archive at glibc-common %post time
3676 - export __strtold_internal and __wcstold_internal on Alpha again
3677 - workaround some localedata problems
3679 * Tue Aug 13 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-20
3680 - update from CVS
3681 - patch out set_thread_area for now
3683 * Fri Aug 9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-19
3684 - update from CVS
3685 - GB18030 patch from Yu Shao
3686 - applied Debian patch for getaddrinfo IPv4 vs. IPv6
3687 - fix regcomp (#71039)
3689 * Sun Aug 4 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-18
3690 - update from CVS
3691 - use /usr/sbin/prelink, not prelink (#70376)
3693 * Thu Jul 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-17
3694 - update from CVS
3696 * Thu Jul 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-16
3697 - update from CVS
3698 - ungetc fix (#69586)
3699 - fseek errno fix (#69589)
3700 - change *etrlimit prototypes for C++ (#68588)
3701 - use --without-tls instead of --disable-tls
3703 * Thu Jul 11 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-15
3704 - set nscd user's shell to /sbin/nologin (#68369)
3705 - fix glibc-compat buffer overflows (security)
3706 - buildrequire prelink, don't build glibc's own copy of it (#67567)
3707 - update from CVS
3708 - regex fix (#67734)
3709 - fix unused warnings (#67706)
3710 - fix freopen with mmap stdio (#67552)
3711 - fix realloc (#68499)
3713 * Tue Jun 25 2002 Bill Nottingham <notting@redhat.com> 2.2.90-14
3714 - update from CVS
3715 - fix argp on long words
3716 - update atime in libio
3718 * Sat Jun 22 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-13
3719 - update from CVS
3720 - a thread race fix
3721 - fix readdir on invalid dirp
3723 * Wed Jun 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-12
3724 - update from CVS
3725 - don't use __thread in headers
3726 - fix system(3) in threaded apps
3727 - update prelink, so that it is possible to prelink -u libc.so.6.1
3728 on Alpha
3730 * Fri Jun 7 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-11
3731 - update from CVS
3732 - fix __moddi3 (#65612, #65695)
3733 - fix ether_line (#64427)
3734 - fix setvbuf with mmap stdio (#65864)
3735 - --disable-tls for now, waiting for kernel
3736 - avoid duplication of __divtf3 etc. on IA-64
3737 - make sure get*ent_r and _IO_wfile_jumps are exported (#62278)
3739 * Tue May 21 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-10
3740 - update from CVS
3741 - fix Alpha pthread bug with gcc 3.1
3743 * Fri Apr 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-35
3744 - fix nice
3746 * Mon Apr 15 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-34
3747 - add relocation dependencies even for weak symbols (#63422)
3748 - stricter check_fds check for suid/sgid binaries
3749 - run make check at %%install time
3751 * Sat Apr 13 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-33
3752 - handle Dec 31 1969 in mktime for timezones west of GMT (#63369)
3753 - back out do-lookup.h change (#63261, #63305)
3754 - use "memory" clobber instead all the fancy stuff in i386/i686/bits/string.h
3755 since lots of compilers break on it
3756 - fix sparc build with gcc 3.1
3757 - fix spec file for athlon
3759 * Tue Apr 9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-32
3760 - fix debugging of threaded apps (#62804)
3761 - fix DST for Estonia (#61494)
3762 - document that pthread_mutexattr_?etkind_np are deprecated
3763 and pthread_mutexattr_?ettype should be used instead in man
3764 pages (#61485)
3765 - fix libSegFault.so undefined externals
3767 * Fri Apr 5 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-31
3768 - temporarily disable prelinking ld.so, as some statically linked
3769 binaries linked against debugging versions of old glibcs die on it
3770 (#62352)
3771 - fix <semaphore.h> for -std=c99 (#62516)
3772 - fix ether_ntohost segfault (#62397)
3773 - remove in glibc_post_upgrade on i386 all /lib/i686/libc-*.so,
3774 /lib/i686/libm-*.so and /lib/i686/libpthread-*.so, not just current
3775 version (#61633)
3776 - prelink -r on alpha too
3778 * Thu Mar 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-30
3779 - update GB18030 iconv module (Yu Shao)
3781 * Tue Mar 26 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-29
3782 - features.h fix
3784 * Tue Mar 26 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-28
3785 - update from CVS
3786 - fix nscd with huge groups
3787 - fix nis to not close fds it shouldn't
3788 - rebuilt against newer glibc-kernheaders to use the correct
3789 PATH_MAX
3790 - handle .athlon.rpm glibc the same way as .i686.rpm
3791 - add a couple of .ISO-8859-15 locales (#61922)
3792 - readd temporarily currencies which were superceeded by Euro
3793 into the list of accepted currencies by localedef to make
3794 standard conformance testsuites happy
3795 - temporarily moved __libc_waitpid back to make Sun JDK happy
3796 - use old malloc code
3797 - prelink i686/athlon ld.so and prelink -r i686/athlon libc.so
3799 * Thu Mar 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-27
3800 - update from CVS
3801 - fix DST handling for southern hemisphere (#60747)
3802 - fix daylight setting for tzset (#59951)
3803 - fix ftime (#60350)
3804 - fix nice return value
3805 - fix a malloc segfault
3806 - temporarily moved __libc_wait, __libc_fork and __libc_stack_end
3807 back to what they used to be exported at
3808 - censorship (#60758)
3810 * Thu Feb 28 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-26
3811 - update from CVS
3812 - use __attribute__((visibility(...))) if supported, use _rtld_local
3813 for ld.so only objects
3814 - provide libc's own __{,u}{div,mod}di3
3816 * Wed Feb 27 2002 Jakub Jelinek <jakub@redhat.com> 2.2.5-25
3817 - switch back to 2.2.5, mmap stdio needs work
3819 * Mon Feb 25 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-8
3820 - fix two other mmap stdio bugs (#60228)
3822 * Thu Feb 21 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-7
3823 - fix yet another mmap stdio bug (#60145)
3825 * Tue Feb 19 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-6
3826 - fix mmap stdio bug (seen on ld as File truncated error, #60043)
3827 - apply Andreas Schwab's fix for pthread sigwait
3828 - remove /lib/i686/ libraries in glibc_post_upgrade when
3829 performing i386 glibc install
3831 * Thu Feb 14 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-5
3832 - update to CVS
3833 - added glibc-utils subpackage
3834 - disable autoreq in glibc-debug
3835 - readd %%lang() to locale files
3837 * Fri Feb 7 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-4
3838 - update to CVS
3839 - move glibc private symbols to GLIBC_PRIVATE symbol version
3841 * Wed Jan 9 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-3
3842 - fix a sqrt bug on alpha which caused SHN_UNDEF $__full_ieee754_sqrt..ng
3843 symbol in libm
3845 * Tue Jan 8 2002 Jakub Jelinek <jakub@redhat.com> 2.2.90-2
3846 - add debug-static package
3848 * Mon Dec 31 2001 Jakub Jelinek <jakub@redhat.com> 2.2.90-1
3849 - update from CVS
3850 - remove -D__USE_STRING_INLINES
3851 - add debug subpackage to trim glibc and glibc-devel size
3853 * Wed Oct 3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-19
3854 - fix strsep
3856 * Fri Sep 28 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-18
3857 - fix a ld.so bug with duplicate searchlists in l_scope
3858 - fix erfcl(-inf)
3859 - turn /usr/lib/librt.so into linker script
3861 * Wed Sep 26 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-17
3862 - fix a ld.so lookup bug after lots of dlopen calls
3863 - fix CMSG_DATA for non-gcc non-ISOC99 compilers (#53984)
3864 - prelinking support for Sparc64
3866 * Fri Sep 21 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-16
3867 - update from CVS to fix DT_SYMBOLIC
3868 - prelinking support for Alpha and Sparc
3870 * Tue Sep 18 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-15
3871 - update from CVS
3872 - linuxthreads now retries if -1/EINTR is returned from
3873 reading or writing to thread manager pipe (#43742)
3874 - use DT_FILTER in librt.so (#53394)
3875 - update glibc prelink patch so that it handles filters
3876 - fix timer_* with SIGEV_NONE (#53494)
3877 - make glibc_post_upgrade work on PPC (patch from Franz Sirl)
3879 * Mon Sep 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-14
3880 - fix build on sparc32
3881 - 2.2.4-13 build for some reason missed some locales
3882 on alpha/ia64
3884 * Mon Sep 3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-13
3885 - fix iconvconfig
3887 * Mon Sep 3 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-12
3888 - add fam to /etc/rpc (#52863)
3889 - fix <inttypes.h> for C++ (#52960)
3890 - fix perror
3892 * Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-11
3893 - fix strnlen(x, -1)
3895 * Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-10
3896 - doh, <bits/libc-lock.h> should only define __libc_rwlock_t
3897 if __USE_UNIX98.
3899 * Mon Aug 27 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-9
3900 - fix bits/libc-lock.h so that gcc can compile
3901 - fix s390 build
3903 * Fri Aug 24 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-8
3904 - kill stale library symlinks in ldconfig (#52350)
3905 - fix inttypes.h for G++ < 3.0
3906 - use DT_REL*COUNT
3908 * Wed Aug 22 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-7
3909 - fix strnlen on IA-64 (#50077)
3911 * Thu Aug 16 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-6
3912 - glibc 2.2.4 final
3913 - fix -lpthread -static (#51672)
3915 * Fri Aug 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-5
3916 - doh, include libio/tst-swscanf.c
3918 * Fri Aug 10 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-4
3919 - don't crash on catclose(-1)
3920 - fix wscanf %[] handling
3921 - fix return value from swprintf
3922 - handle year + %U/%W week + week day in strptime
3924 * Thu Aug 9 2001 Jakub Jelinek <jakub@redhat.com> 2.2.4-3
3925 - update from CVS to
3926 - fix strcoll (#50548)
3927 - fix seekdir (#51132)
3928 - fix memusage (#50606)
3929 - don't make gconv-modules.cache %%config file, just don't verify
3930 its content.
3932 * Mon Aug 6 2001 Jakub Jelinek <jakub@redhat.com>
3933 - fix strtod and *scanf (#50723, #50724)
3935 * Sat Aug 4 2001 Jakub Jelinek <jakub@redhat.com>
3936 - update from CVS
3937 - fix iconv cache handling
3938 - glibc should not own %{_infodir}, %{_mandir} nor %{_mandir}/man3 (#50673)
3939 - add gconv-modules.cache as emtpy config file (#50699)
3940 - only run iconvconfig if /usr is mounted read-write (#50667)
3942 * Wed Jul 25 2001 Jakub Jelinek <jakub@redhat.com>
3943 - move iconvconfig from glibc-common into glibc subpackage,
3944 call it from glibc_post_upgrade instead of common's post.
3946 * Tue Jul 24 2001 Jakub Jelinek <jakub@redhat.com>
3947 - turn off debugging printouts in iconvconfig
3949 * Tue Jul 24 2001 Jakub Jelinek <jakub@redhat.com>
3950 - update from CVS
3951 - fix IA-32 makecontext
3952 - make fflush(0) thread-safe (#46446)
3954 * Mon Jul 23 2001 Jakub Jelinek <jakub@redhat.com>
3955 - adjust prelinking DT_* and SHT_* values in elf.h
3956 - update from CVS
3957 - iconv cache
3958 - make iconv work in SUID/SGID programs (#34611)
3960 * Fri Jul 20 2001 Jakub Jelinek <jakub@redhat.com>
3961 - update from CVS
3962 - kill non-pic code in libm.so
3963 - fix getdate
3964 - fix some locales (#49402)
3965 - rebuilt with binutils-2.11.90.0.8-5 to place .interp section
3966 properly in libBrokenLocale.so, libNoVersion.so and libanl.so
3967 - add floating stacks on IA-64, Alpha, Sparc (#49308)
3969 * Mon Jul 16 2001 Jakub Jelinek <jakub@redhat.com>
3970 - make /lib/i686 directory owned by glibc*.i686.rpm
3972 * Mon Jul 9 2001 Jakub Jelinek <jakub@redhat.com>
3973 - remove rquota.[hx] headers which are now provided by quota (#47141)
3974 - add prelinking patch
3976 * Thu Jul 5 2001 Jakub Jelinek <jakub@redhat.com>
3977 - require sh-utils for nscd
3979 * Mon Jun 25 2001 Jakub Jelinek <jakub@redhat.com>
3980 - update from CVS (#43681, #43350, #44663, #45685)
3981 - fix ro_RO bug (#44644)
3983 * Wed Jun 6 2001 Jakub Jelinek <jakub@redhat.com>
3984 - fix a bunch of math bugs (#43210, #43345, #43346, #43347, #43348, #43355)
3985 - make rpc headers -ansi compilable (#42390)
3986 - remove alphaev6 optimized memcpy, since there are still far too many
3987 broken apps which call memcpy where they should call memmove
3988 - update from CVS to (among other things):
3989 - fix tanhl bug (#43352)
3991 * Tue May 22 2001 Jakub Jelinek <jakub@redhat.com>
3992 - fix #include <signal.h> with -D_XOPEN_SOURCE=500 on ia64 (#35968)
3993 - fix a dlclose reldeps handling bug
3994 - some more profiling fixes
3995 - fix tgmath.h
3997 * Thu May 17 2001 Jakub Jelinek <jakub@redhat.com>
3998 - make ldconfig more quiet
3999 - fix LD_PROFILE on i686 (#41030)
4001 * Wed May 16 2001 Jakub Jelinek <jakub@redhat.com>
4002 - fix the hardlink program, so that it really catches all files with
4003 identical content
4004 - add a s390x clone fix
4006 * Wed May 16 2001 Jakub Jelinek <jakub@redhat.com>
4007 - fix rpc for non-threaded apps using svc_fdset and similar variables (#40409)
4008 - fix nss compatibility DSO versions for alphaev6
4009 - add a hardlink program instead of the shell 3x for plus cmp -s/link
4010 which takes a lot of time during build
4011 - rework BuildPreReq and Conflicts with gcc, so that
4012 it applies only where it has to
4014 * Fri May 11 2001 Jakub Jelinek <jakub@redhat.com>
4015 - fix locale name of ja_JP in UTF-8 (#39783)
4016 - fix re_search_2 (#40244)
4017 - fix memusage script (#39138, #39823)
4018 - fix dlsym(RTLD_NEXT, ) from main program (#39803)
4019 - fix xtrace script (#39609)
4020 - make glibc conflict with glibc-devel 2.2.2 and below (to make sure
4021 libc_nonshared.a has atexit)
4022 - fix getconf LFS_CFLAGS on 64bitters
4023 - recompile with gcc-2.96-84 or above to fix binary compatibility problem
4024 with __frame_state_for function (#37933)
4026 * Fri Apr 27 2001 Jakub Jelinek <jakub@redhat.com>
4027 - glibc 2.2.3 release
4028 - fix strcoll (#36539)
4029 - add BuildPreReqs (#36378)
4031 * Wed Apr 25 2001 Jakub Jelinek <jakub@redhat.com>
4032 - update from CVS
4034 * Fri Apr 20 2001 Jakub Jelinek <jakub@redhat.com>
4035 - update from CVS
4036 - fix sparc64, ia64
4037 - fix some locale syntax errors (#35982)
4039 * Wed Apr 18 2001 Jakub Jelinek <jakub@redhat.com>
4040 - update from CVS
4042 * Wed Apr 11 2001 Jakub Jelinek <jakub@redhat.com>
4043 - update from CVS
4045 * Fri Apr 6 2001 Jakub Jelinek <jakub@redhat.com>
4046 - support even 2.4.0 kernels on ia64, sparc64 and s390x
4047 - include UTF-8 locales
4048 - make gconv-modules %%config(noreplace)
4050 * Fri Mar 23 2001 Jakub Jelinek <jakub@redhat.com>
4051 - back out sunrpc changes
4053 * Wed Mar 21 2001 Jakub Jelinek <jakub@redhat.com>
4054 - update from CVS
4055 - fix ia64 build
4056 - fix pthread_getattr_np
4058 * Fri Mar 16 2001 Jakub Jelinek <jakub@redhat.com>
4059 - update from CVS
4060 - run atexit() registered functions at dlclose time if they are in shared
4061 libraries (#28625)
4062 - add pthread_getattr_np API to make JVM folks happy
4064 * Wed Mar 14 2001 Jakub Jelinek <jakub@redhat.com>
4065 - require 2.4.1 instead of 2.4.0 on platforms where it required 2.4 kernel
4066 - fix ldd behaviour on unresolved symbols
4067 - remove nonsensical ldconfig warning, update osversion for the most
4068 recent library with the same soname in the same directory instead (#31703)
4069 - apply selected patches from CVS
4070 - s390x spec file changes from Florian La Roche
4072 * Wed Mar 7 2001 Jakub Jelinek <jakub@redhat.com>
4073 - fix gencat (#30894)
4074 - fix ldconfig changes from yesterday, fix LD_ASSUME_KERNEL handling
4076 * Tue Mar 6 2001 Jakub Jelinek <jakub@redhat.com>
4077 - update from CVS
4078 - make pthread_attr_setstacksize consistent before and after pthread manager
4079 is started (#28194)
4080 - pass back struct sigcontext from pthread signal wrapper (on ia32 only so
4081 far, #28493)
4082 - on i686 ship both --enable-kernel 2.2.5 and 2.4.0 libc/libm/libpthread,
4083 make ld.so pick the right one
4085 * Sat Feb 17 2001 Preston Brown <pbrown@redhat.com>
4086 - glib-common doesn't require glibc, until we can figure out how to get out of dependency hell.
4088 * Sat Feb 17 2001 Jakub Jelinek <jakub@redhat.com>
4089 - make glibc require particular version of glibc-common
4090 and glibc-common prerequire glibc.
4092 * Fri Feb 16 2001 Jakub Jelinek <jakub@redhat.com>
4093 - glibc 2.2.2 release
4094 - fix regex REG_ICASE bug seen in ksymoops
4096 * Sat Feb 10 2001 Jakub Jelinek <jakub@redhat.com>
4097 - fix regexec leaking memory (#26864)
4099 * Fri Feb 9 2001 Jakub Jelinek <jakub@redhat.com>
4100 - update from CVS
4101 - fix ia64 build with gnupro
4102 - make regex 64bit clean
4103 - fix tgmath make check failures on alpha
4105 * Tue Feb 6 2001 Jakub Jelinek <jakub@redhat.com>
4106 - update again for ia64 DF_1_INITFIRST
4108 * Fri Feb 2 2001 Jakub Jelinek <jakub@redhat.com>
4109 - update from CVS
4110 - fix getaddrinfo (#25437)
4111 - support DF_1_INITFIRST (#25029)
4113 * Wed Jan 24 2001 Jakub Jelinek <jakub@redhat.com>
4114 - build all auxiliary arches with --enablekernel 2.4.0, those wanting
4115 to run 2.2 kernels can downgrade to the base architecture glibc.
4117 * Sat Jan 20 2001 Jakub Jelinek <jakub@redhat.com>
4118 - remove %%lang() flags from %%{_prefix}/lib/locale files temporarily
4120 * Sun Jan 14 2001 Jakub Jelinek <jakub@redhat.com>
4121 - update to 2.2.1 final
4122 - fix a pthread_kill_other_threads_np breakage (#23966)
4123 - make static binaries using dlopen work on ia64 again
4124 - fix a typo in glibc-common group
4126 * Wed Jan 10 2001 Bernhard Rosenkraenzer <bero@redhat.com>
4127 - devel requires glibc = %%{version}
4128 - noreplace /etc/nscd.conf
4130 * Wed Jan 10 2001 Jakub Jelinek <jakub@redhat.com>
4131 - some more security fixes:
4132 - don't look up LD_PRELOAD libs in cache for SUID apps
4133 (because that bypasses SUID bit checking on the library)
4134 - place output files for profiling SUID apps into /var/profile,
4135 use O_NOFOLLOW for them
4136 - add checks for $MEMUSAGE_OUTPUT and $SEGFAULT_OUTPUT_NAME
4137 - hardlink identical locale files together
4138 - add %%lang() tags to locale stuff
4139 - remove ko_KR.utf8 for now, it is provided by locale-utf8 package
4141 * Mon Jan 8 2001 Jakub Jelinek <jakub@redhat.com>
4142 - add glibc-common subpackage
4143 - fix alphaev6 memcpy (#22494)
4144 - fix sys/cdefs.h (#22908)
4145 - don't define stdin/stdout/stderr as macros for -traditional (#22913)
4146 - work around a bug in IBM JDK (#22932, #23012)
4147 - fix pmap_unset when network is down (#23176)
4148 - move nscd in rc.d before netfs on shutdown
4149 - fix $RESOLV_HOST_CONF in SUID apps (#23562)
4151 * Fri Dec 15 2000 Jakub Jelinek <jakub@redhat.com>
4152 - fix ftw and nftw
4154 * Wed Dec 13 2000 Jakub Jelinek <jakub@redhat.com>
4155 - fix fcvt (#22184)
4156 - ldd /lib/ld-linux.so.2 is not crashing any longer again (#22197)
4157 - fix gencat
4159 * Mon Dec 11 2000 Jakub Jelinek <jakub@redhat.com>
4160 - fix alpha htonl and alphaev6 stpcpy
4162 * Sat Dec 9 2000 Jakub Jelinek <jakub@redhat.com>
4163 - update to CVS to:
4164 - fix getnameinfo (#21934)
4165 - don't stomp on memory in rpath handling (#21544)
4166 - fix setlocale (#21507)
4167 - fix libNoVersion.so.1 loading code (#21579)
4168 - use auxarches define in spec file for auxiliary
4169 architectures (#21219)
4170 - remove /usr/share directory from filelist (#21218)
4172 * Sun Nov 19 2000 Jakub Jelinek <jakub@redhat.com>
4173 - update to CVS to fix getaddrinfo
4175 * Fri Nov 17 2000 Jakub Jelinek <jakub@redhat.com>
4176 - update to CVS to fix freopen
4177 - remove all alpha workarounds, not needed anymore
4179 * Wed Nov 15 2000 Jakub Jelinek <jakub@redhat.com>
4180 - fix dladdr bug on alpha/sparc32/sparc64
4181 - fix Makefiles so that they run static tests properly
4183 * Tue Nov 14 2000 Jakub Jelinek <jakub@redhat.com>
4184 - update to CVS to fix ldconfig
4186 * Thu Nov 9 2000 Jakub Jelinek <jakub@redhat.com>
4187 - update to glibc 2.2 release
4189 * Mon Nov 6 2000 Jakub Jelinek <jakub@redhat.com>
4190 - update to CVS to:
4191 - export __sysconf@@GLIBC_2.2 (#20417)
4193 * Fri Nov 3 2000 Jakub Jelinek <jakub@redhat.com>
4194 - merge to 2.1.97
4196 * Mon Oct 30 2000 Jakub Jelinek <jakub@redhat.com>
4197 - update to CVS, including:
4198 - fix WORD_BIT/LONG_BIT definition in limits.h (#19088)
4199 - fix hesiod (#19375)
4200 - set LC_MESSAGES in zic/zdump for proper error message output (#19495)
4201 - fix LFS fcntl when used with non-LFS aware kernels (#19730)
4203 * Thu Oct 19 2000 Jakub Jelinek <jakub@redhat.com>
4204 - fix alpha semctl (#19199)
4205 - update to CVS, including:
4206 - fix glibc headers for Compaq non-gcc compilers
4207 - fix locale alias handling code (#18832)
4208 - fix rexec on little endian machines (#18886)
4209 - started writing changelog again
4211 * Thu Aug 10 2000 Adrian Havill <havill@redhat.com>
4212 - added ja ujis alias for backwards compatibility