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.15-674-g28aeeda


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  28aeeda45228bdd02c23df3a9d26bc42af4aae77 (commit)
      from  60c8fca7abfd470d2a65051bbe23a9a8749bb3fc (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=28aeeda45228bdd02c23df3a9d26bc42af4aae77

commit 28aeeda45228bdd02c23df3a9d26bc42af4aae77
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Fri Apr 27 18:54:52 2012 +0000

    Allow build-system programs to be built without optimization.

diff --git a/ChangeLog b/ChangeLog
index e6eb858..54db43d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-04-27  Joseph Myers  <joseph@codesourcery.com>
+
+	* config.h.in [IS_IN_build]: Allow compiling without optimization.
+
 2012-04-27  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
 
 	[BZ #887]
diff --git a/config.h.in b/config.h.in
index 3b938f8..81704a1 100644
--- a/config.h.in
+++ b/config.h.in
@@ -1,4 +1,5 @@
-#if !defined __ASSEMBLER__ && !defined _ISOMAC && !defined __OPTIMIZE__
+#if !defined IS_IN_build && !defined __ASSEMBLER__ && !defined _ISOMAC \
+    && !defined __OPTIMIZE__
 # error "glibc cannot be compiled without optimization"
 #endif
 

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

Summary of changes:
 ChangeLog   |    4 ++++
 config.h.in |    3 ++-
 2 files changed, 6 insertions(+), 1 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]