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.21-261-g0543929


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  054392910be496adb8c4e611084827082135c404 (commit)
      from  b0b88abc1c138923bd1638560c73a3ced227f1d1 (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=054392910be496adb8c4e611084827082135c404

commit 054392910be496adb8c4e611084827082135c404
Author: Roland McGrath <roland@hack.frob.com>
Date:   Thu Apr 9 13:55:11 2015 -0700

    Let non-add-on preconfigure scripts set libc_config_ok.

diff --git a/ChangeLog b/ChangeLog
index 03fbb7e..193ea30 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2015-04-09  Roland McGrath  <roland@hack.frob.com>
 
+	* configure.ac (libc_config_ok): Initialize before reading
+	preconfigure scripts, not after.
+	* configure: Regenerated.
+
 	* test-skeleton.c (TIMEOUT): Move #define to top level.
 	(main): Grok environment variable TEST_DIRECT.  If set, print
 	test expectation details into that file and then behave as if
diff --git a/configure b/configure
index 79864b7..97e549e 100755
--- a/configure
+++ b/configure
@@ -3878,6 +3878,10 @@ if test "${with_cpu+set}" = set; then :
 fi
 
 
+# An preconfigure script can set this when it wants to disable the sanity
+# check below.
+libc_config_ok=no
+
 if frags=`ls -d $srcdir/sysdeps/*/preconfigure 2> /dev/null`
 then
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysdeps preconfigure fragments" >&5
@@ -3891,9 +3895,6 @@ $as_echo_n "checking for sysdeps preconfigure fragments... " >&6; }
 $as_echo "" >&6; }
 fi
 
-# An add-on can set this when it wants to disable the sanity check below.
-libc_config_ok=no
-
 subdirs="$subdirs "
 
 
diff --git a/configure.ac b/configure.ac
index 39f3e86..def655a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -412,12 +412,13 @@ AC_ARG_WITH([cpu],
   esac
 ])
 
+# An preconfigure script can set this when it wants to disable the sanity
+# check below.
+libc_config_ok=no
+
 dnl Let sysdeps/*/preconfigure act here, like they can in add-ons.
 LIBC_PRECONFIGURE([$srcdir], [for sysdeps])
 
-# An add-on can set this when it wants to disable the sanity check below.
-libc_config_ok=no
-
 dnl Having this here, though empty, makes sure that if add-ons' fragments
 dnl do AC_CONFIG_SUBDIRS([some-dir]), which just sets $subdirs, then
 dnl our AC_OUTPUT will actually use it.

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

Summary of changes:
 ChangeLog    |    4 ++++
 configure    |    7 ++++---
 configure.ac |    7 ++++---
 3 files changed, 12 insertions(+), 6 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]