auto-import glibc-2.3.3-71 on branch devel from glibc-2.3.3-71.src.rpm
This commit is contained in:
parent
cfeb07d562
commit
8660b873a8
@ -1,2 +1,2 @@
|
||||
glibc-20041018T0940.tar.bz2
|
||||
glibc-fedora-20041018T0940.tar.bz2
|
||||
glibc-20041020T1016.tar.bz2
|
||||
glibc-fedora-20041020T1016.tar.bz2
|
||||
|
1719
glibc-fedora.patch
1719
glibc-fedora.patch
File diff suppressed because it is too large
Load Diff
48
glibc.spec
48
glibc.spec
@ -1,6 +1,6 @@
|
||||
%define glibcdate 20041018T0940
|
||||
%define glibcdate 20041020T1016
|
||||
%define glibcversion 2.3.3
|
||||
%define glibcrelease 70
|
||||
%define glibcrelease 71
|
||||
%define auxarches i586 i686 athlon sparcv9 alphaev6
|
||||
%define prelinkarches noarch
|
||||
%define nptlarches i386 i686 athlon x86_64 ia64 s390 s390x sparcv9 ppc ppc64
|
||||
@ -301,6 +301,14 @@ cat > asm/unistd.h <<EOF
|
||||
#ifndef __NR_waitid
|
||||
#define __NR_waitid 284
|
||||
#endif
|
||||
#ifndef __NR_setaltroot
|
||||
#define __NR_setaltroot 285
|
||||
#endif
|
||||
#ifndef __NR_add_key
|
||||
#define __NR_add_key 286
|
||||
#define __NR_request_key 287
|
||||
#define __NR_keyctl 288
|
||||
#endif
|
||||
%endif
|
||||
%ifarch ia64
|
||||
#ifndef __NR_timer_create
|
||||
@ -322,6 +330,9 @@ cat > asm/unistd.h <<EOF
|
||||
#define __NR_mq_notify 1266
|
||||
#define __NR_mq_getsetattr 1267
|
||||
#endif
|
||||
#ifndef __NR_setaltroot
|
||||
#define __NR_setaltroot 1270
|
||||
#endif
|
||||
%endif
|
||||
%ifarch ppc
|
||||
#ifndef __NR_utimes
|
||||
@ -433,6 +444,24 @@ cat > asm/unistd.h <<EOF
|
||||
%endif
|
||||
#endif
|
||||
EOF
|
||||
cat > asm/errno.h <<EOF
|
||||
#ifndef _HACK_ASM_ERRNO_H
|
||||
#include_next <asm/errno.h>
|
||||
#ifndef ENOKEY
|
||||
%ifarch alpha alphaev6
|
||||
#define ENOKEY 131 /* Required key not available */
|
||||
%endif
|
||||
%ifarch sparc sparcv9 sparc64
|
||||
#define ENOKEY 127 /* Required key not available */
|
||||
%endif
|
||||
%ifnarch alpha alphaev6 sparc sparcv9 sparc64
|
||||
#define ENOKEY 125 /* Required key not available */
|
||||
%endif
|
||||
#define EKEYEXPIRED (ENOKEY + 1) /* Key has expired */
|
||||
#define EKEYREVOKED (ENOKEY + 2) /* Key has been revoked */
|
||||
#define EKEYREJECTED (ENOKEY + 3) /* Key was rejected by service */
|
||||
#endif
|
||||
EOF
|
||||
|
||||
%ifnarch %{ix86} alpha alphaev6 sparc sparcv9
|
||||
rm -rf glibc-compat
|
||||
@ -1258,6 +1287,21 @@ rm -f *.filelist*
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Wed Oct 20 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-71
|
||||
- update from CVS
|
||||
- fix minor catchsegv temp file handling vulnerability
|
||||
(CAN-2004-0968, #136319)
|
||||
- add 4 new errno codes
|
||||
- setaltroot, key{_add,_request,ctl} syscalls on some arches
|
||||
- export _dl_debug_state@GLIBC_PRIVATE from ld.so again for
|
||||
gdb purpose
|
||||
- use inet_pton to decide what is address and what is hostname
|
||||
in getent (#135422)
|
||||
- change dladdr/dladdr1, so that dli_saddr is the same kind
|
||||
of value as dlsym/dlvsym return (makes difference on ia64/hppa only)
|
||||
- fix catchsegv script so that it works with both 32-bit and 64-bit
|
||||
programs on multi-arch platforms
|
||||
|
||||
* Tue Oct 19 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-70
|
||||
- update from CVS
|
||||
- require newer selinux-policy (#135978)
|
||||
|
Loading…
Reference in New Issue
Block a user