about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2004-09-25 08:04:28 +0000
committerJakub Jelinek <jakub@redhat.com>2004-09-25 08:04:28 +0000
commit037c97bbc906f56a3d98090e855ff49fbffea423 (patch)
tree91cf4cabaf3070239b034c4fd7528cda8d291a47
parentbd7c3bed543d02fb01f69b29ea1a736e7a0f618d (diff)
downloadglibc-037c97bbc906f56a3d98090e855ff49fbffea423.tar.gz
glibc-037c97bbc906f56a3d98090e855ff49fbffea423.tar.xz
glibc-037c97bbc906f56a3d98090e855ff49fbffea423.zip
Prepare for 2.3.3-57
-rw-r--r--fedora/glibc.spec.in4
-rw-r--r--linuxthreads/sysdeps/i386/useldt.h7
2 files changed, 10 insertions, 1 deletions
diff --git a/fedora/glibc.spec.in b/fedora/glibc.spec.in
index 416ad0dfe5..cfdcbbf227 100644
--- a/fedora/glibc.spec.in
+++ b/fedora/glibc.spec.in
@@ -1241,6 +1241,10 @@ rm -f *.filelist*
 %changelog
 * Sat Sep 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-57
 - update from CVS
+  - fix setuid in LD_ASSUME_KERNEL=2.2.5 libc (#133558)
+  - fix nis locking (#132204)
+  - RTLD_DEEPBIND support
+  - fix pthread_create bugs (BZ #401, #405)
 
 * Wed Sep 22 2004 Roland McGrath <roland@redhat.com> 2.3.3-56
 - migrated CVS to fedora-branch in sources.redhat.com glibc repository
diff --git a/linuxthreads/sysdeps/i386/useldt.h b/linuxthreads/sysdeps/i386/useldt.h
index 4ac82f1ab0..9a898ede74 100644
--- a/linuxthreads/sysdeps/i386/useldt.h
+++ b/linuxthreads/sysdeps/i386/useldt.h
@@ -1,6 +1,6 @@
 /* Special definitions for ix86 machine using segment register based
    thread descriptor.
-   Copyright (C) 1998, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>.
 
@@ -19,6 +19,9 @@
    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.	*/
 
+#ifndef __USELDT_H
+#define __USELDT_H 1
+
 #ifndef __ASSEMBLER__
 #include <stddef.h>	/* For offsetof.  */
 #include <stdlib.h>	/* For abort().	 */
@@ -312,3 +315,5 @@ extern int __have_no_set_thread_area;
 /* Maximum size of the stack if the rlimit is unlimited.  */
 #define ARCH_STACK_MAX_SIZE	8*1024*1024
 #endif
+
+#endif