From: Jakub Jelinek Date: Sat, 25 Sep 2004 08:04:28 +0000 (+0000) Subject: Prepare for 2.3.3-57 X-Git-Tag: cvs/fedora-glibc-2_3_3-57~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=037c97bbc906f56a3d98090e855ff49fbffea423;p=thirdparty%2Fglibc.git Prepare for 2.3.3-57 --- diff --git a/fedora/glibc.spec.in b/fedora/glibc.spec.in index 416ad0dfe58..cfdcbbf2274 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 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 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 4ac82f1ab07..9a898ede744 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 . @@ -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 /* For offsetof. */ #include /* 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