This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, master, updated. glibc-2.11-123-g52e96a8


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  52e96a8092e4c0bfef5bd9748b35861bba6f6b88 (commit)
      from  2e3e1b3309f8a8d86c6b5f97cc6c347c05a0e44b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=52e96a8092e4c0bfef5bd9748b35861bba6f6b88

commit 52e96a8092e4c0bfef5bd9748b35861bba6f6b88
Author: Ulrich Drepper <drepper@redhat.com>
Date:   Wed Jan 13 07:15:17 2010 -0800

    Be a bit more relaxed about obsoleted mktemp symbol.

diff --git a/ChangeLog b/ChangeLog
index 61c64db..736bd5d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-01-13  Ulrich Drepper  <drepper@redhat.com>
+
+	* stdlib/stdlib.h: Be a bit more relaxed about obsoleted mktemp symbol.
+
 2010-01-12  Ulrich Drepper  <drepper@redhat.com>
 
 	* conform/data/complex.h-data: Test for POSIX2008.
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h
index 7575020..bac8ed6 100644
--- a/stdlib/stdlib.h
+++ b/stdlib/stdlib.h
@@ -597,8 +597,8 @@ extern int clearenv (void) __THROW;
 #endif
 
 
-#if ((defined __USE_MISC || defined __USE_XOPEN_EXTENDED)	\
-     && !defined __USE_XOPEN2K) || defined __USE_GNU
+#if defined __USE_MISC \
+    || (defined __USE_XOPEN_EXTENDED && !defined __USE_XOPEN2K)
 /* Generate a unique temporary file name from TEMPLATE.
    The last six characters of TEMPLATE must be "XXXXXX";
    they are replaced with a string that makes the file name unique.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog       |    4 ++++
 stdlib/stdlib.h |    4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]