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.25-467-gc2528fe


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  c2528fef3b05bcffb1ac27c6c09cc3ff24b7f03f (commit)
      from  f8bf87face3304f216bcd838081fa33bb4976ac6 (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=c2528fef3b05bcffb1ac27c6c09cc3ff24b7f03f

commit c2528fef3b05bcffb1ac27c6c09cc3ff24b7f03f
Author: Florian Weimer <fweimer@redhat.com>
Date:   Tue Jun 13 22:09:59 2017 +0200

    configure: Suppress expected compiler error message

diff --git a/ChangeLog b/ChangeLog
index efc78b5..c86ab87 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2017-06-13  Florian Weimer  <fweimer@redhat.com>
 
+	* configure.ac (find_cxx_header): Suppress compiler error message.
+
+2017-06-13  Florian Weimer  <fweimer@redhat.com>
+
 	* malloc/dynarray-skeleton.c: List begin/end as defined functions.
 	(DYNARRAY_PREFIX##begin, DYNARRAY_PREFIX##end): New functions.
 	* malloc/tst-dynarray-shared.h (CHECK_EMPTY): Add tests for
diff --git a/configure b/configure
index ceb5394..4c2922d 100755
--- a/configure
+++ b/configure
@@ -5337,7 +5337,8 @@ fi
 # copy of those headers in Makerules.
 if test -n "$CXX"; then
   find_cxx_header () {
-    echo "#include <$1>" | $CXX -M -MP -x c++ - | sed -n "\,$1:,{s/:\$//;p}"
+    echo "#include <$1>" | $CXX -M -MP -x c++ - 2>/dev/null \
+	 | sed -n "\,$1:,{s/:\$//;p}"
   }
   CXX_CSTDLIB_HEADER="$(find_cxx_header cstdlib)"
   CXX_CMATH_HEADER="$(find_cxx_header cmath)"
diff --git a/configure.ac b/configure.ac
index d74bd44..3f486d6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1187,7 +1187,8 @@ AC_SUBST(CXX_SYSINCLUDES)
 # copy of those headers in Makerules.
 if test -n "$CXX"; then
   find_cxx_header () {
-    echo "#include <$1>" | $CXX -M -MP -x c++ - | sed -n "\,$1:,{s/:\$//;p}"
+    echo "#include <$1>" | $CXX -M -MP -x c++ - 2>/dev/null \
+	 | sed -n "\,$1:,{s/:\$//;p}"
   }
   CXX_CSTDLIB_HEADER="$(find_cxx_header cstdlib)"
   CXX_CMATH_HEADER="$(find_cxx_header cmath)"

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

Summary of changes:
 ChangeLog    |    4 ++++
 configure    |    3 ++-
 configure.ac |    3 ++-
 3 files changed, 8 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]