]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Updated to fedora-glibc-20080314T2159 cvs/fedora-glibc-2_7_90-11
authorJakub Jelinek <jakub@redhat.com>
Fri, 14 Mar 2008 22:36:46 +0000 (22:36 +0000)
committerJakub Jelinek <jakub@redhat.com>
Fri, 14 Mar 2008 22:36:46 +0000 (22:36 +0000)
fedora/branch.mk
fedora/glibc.spec.in
nptl/ChangeLog
nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h
nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h
nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h
nptl/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h
streams/Makefile

index fe8acd07d3162eb00c73ea6eb1cb3f8a51e0e2a4..2b4ab28f9158d2476d2def782edea7b826ec7752 100644 (file)
@@ -3,5 +3,5 @@ glibc-branch := fedora
 glibc-base := HEAD
 DIST_BRANCH := devel
 COLLECTION := dist-f8
-fedora-sync-date := 2008-03-14 17:32 UTC
-fedora-sync-tag := fedora-glibc-20080314T1732
+fedora-sync-date := 2008-03-14 21:59 UTC
+fedora-sync-tag := fedora-glibc-20080314T2159
index fc788ddd8ae41f0230fcf09fb58525f7ea95ec80..5faaf525ea7d4e04f4084450a68fbbd36702e86f 100644 (file)
@@ -19,7 +19,7 @@
 Summary: The GNU libc libraries
 Name: glibc
 Version: @glibcversion@
-Release: 10
+Release: 11
 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries.
 # Things that are linked directly into dynamically linked programs
 # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional
@@ -976,8 +976,9 @@ rm -f *.filelist*
 %endif
 
 %changelog
-* Fri Mar 14 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-10
+* Fri Mar 14 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-11
 - update to trunk
+- remove <stropts.h>, define _XOPEN_STREAMS -1 (#436349)
 
 * Wed Mar  5 2008 Jakub Jelinek <jakub@redhat.com> 2.7.90-8
 - update to trunk
index 6d94c1ff4ae3525a3b96c6bfb8a70fff93da62a3..fbb58e39c79856c1c985c4af4b0d67c00e926f97 100644 (file)
@@ -1,3 +1,10 @@
+2008-03-14  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: Define
+       HAVE_DL_DISCOVER_OSVERSION.
+       * sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: Likewise.
+       * sysdeps/unix/sysv/linux/ia64/dl-sysdep.h: Likewise.
+
 2008-03-07  Ulrich Drepper  <drepper@redhat.com>
 
        [BZ #5778]
index 06d35ceb16036968001975eb124ed6f6f6a02b20..39f56a0a6b6075f4fa858258a4ab079e30c7705a 100644 (file)
 /* Typed memory objects are not available.  */
 #define _POSIX_TYPED_MEMORY_OBJECTS    -1
 
+/* Streams are not available.  */
+#define _XOPEN_STREAMS -1
+
 #endif /* posix_opt.h */
index 109ffd1cf6c688017971ab40aacf9d844afdaa6d..50902a52a6f22f018d8a399e3cbdd01ed8078847 100644 (file)
@@ -1,5 +1,5 @@
 /* System-specific settings for dynamic linker code.  IA-32 version.
-   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2003, 2008 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -61,4 +61,13 @@ extern void _dl_sysinfo_int80 (void) attribute_hidden;
        ".previous;");
 #endif
 
+
+/* The _dl_discover_osversion function is so far only needed in sysconf
+   to check for kernels later than 2.6.23.  */
+#if !defined ASSEMBLER && __LINUX_KERNEL_VERSION < 0x020617
+/* Get version of the OS.  */
+extern int _dl_discover_osversion (void) attribute_hidden;
+# define HAVE_DL_DISCOVER_OSVERSION    1
+#endif
+
 #endif /* dl-sysdep.h */
index b7771318a65889140c427183c9d72ba45fcc0208..1298e59a606adf09fb17fa7c32ba6efd48d61772 100644 (file)
@@ -1,5 +1,5 @@
 /* System-specific settings for dynamic linker code.  IA-32 version.
-   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2003, 2008 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -58,4 +58,13 @@ extern void _dl_sysinfo_int80 (void) attribute_hidden;
        ".previous");
 #endif
 
+
+/* The _dl_discover_osversion function is so far only needed in sysconf
+   to check for kernels later than 2.6.23.  */
+#if !defined ASSEMBLER && __LINUX_KERNEL_VERSION < 0x020617
+/* Get version of the OS.  */
+extern int _dl_discover_osversion (void) attribute_hidden;
+# define HAVE_DL_DISCOVER_OSVERSION    1
+#endif
+
 #endif /* dl-sysdep.h */
index 525b622a68e7dd3ab9087ca3b4962d6e9c3d9cea..42c37ae25910f002fe8b21a55023962e644e969a 100644 (file)
@@ -1,5 +1,5 @@
 /* System-specific settings for dynamic linker code.  IA-64 version.
-   Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -65,4 +65,13 @@ extern int _dl_sysinfo_break attribute_hidden;
    might write into it after _dl_start returns.  */
 #define DL_ARGV_NOT_RELRO 1
 
+
+/* The _dl_discover_osversion function is so far only needed in sysconf
+   to check for kernels later than 2.6.23.  */
+#if !defined ASSEMBLER && __LINUX_KERNEL_VERSION < 0x020617
+/* Get version of the OS.  */
+extern int _dl_discover_osversion (void) attribute_hidden;
+# define HAVE_DL_DISCOVER_OSVERSION    1
+#endif
+
 #endif /* dl-sysdep.h */
index 0f73d5fde5d1c689734fc2a2bd38d592bdb1816b..a71e26819a656d36272da92f8826a833ef8c2400 100644 (file)
@@ -21,7 +21,7 @@
 #
 subdir := streams
 
-headers                = stropts.h sys/stropts.h bits/stropts.h bits/xtitypes.h
+#headers               = stropts.h sys/stropts.h bits/stropts.h bits/xtitypes.h
 routines       = isastream getmsg getpmsg putmsg putpmsg fattach fdetach
 
 include ../Rules