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.22-114-g8d9e089


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  8d9e08981e1ac5ee90209adb3042206e9fffd286 (commit)
      from  48bb14bdbbeb09cb3cd950d7346688958f1bce1a (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=8d9e08981e1ac5ee90209adb3042206e9fffd286

commit 8d9e08981e1ac5ee90209adb3042206e9fffd286
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Thu Aug 20 20:51:22 2015 +0000

    Don't use -Wno-strict-prototypes in timezone/.
    
    The current timezone/ code from tzcode doesn't need
    -Wno-strict-prototypes.  This patch removes it from the CFLAGS
    settings in timezone/Makefile.
    
    Tested for x86_64 that glibc still builds OK with the patch applied.
    
    	* timezone/Makefile (CFLAGS-zdump.c): Remove
    	-Wno-strict-prototypes.
    	(CFLAGS-zic.c): Likewise.
    	(CFLAGS-ialloc.c): Likewise.
    	(CFLAGS-scheck.c): Likewise.

diff --git a/ChangeLog b/ChangeLog
index 92f438c..c5e70b1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2015-08-20  Joseph Myers  <joseph@codesourcery.com>
 
+	* timezone/Makefile (CFLAGS-zdump.c): Remove
+	-Wno-strict-prototypes.
+	(CFLAGS-zic.c): Likewise.
+	(CFLAGS-ialloc.c): Likewise.
+	(CFLAGS-scheck.c): Likewise.
+
 	* Makeconfig [$(enable-werror) = yes] (+gccwarn): Do not add
 	-Wno-error=undef.
 
diff --git a/timezone/Makefile b/timezone/Makefile
index d2abdec..81d4a3e 100644
--- a/timezone/Makefile
+++ b/timezone/Makefile
@@ -61,11 +61,10 @@ tz-cflags = -DTZDIR='"$(zonedir)"' \
 	    -DTZDEFRULES='"$(posixrules-file)"' \
 	    -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone
 
-CFLAGS-zdump.c = -fwrapv -Wno-strict-prototypes -DNOID $(tz-cflags) \
-		 -DHAVE_GETTEXT
-CFLAGS-zic.c = -Wno-strict-prototypes -DNOID $(tz-cflags) -DHAVE_GETTEXT
-CFLAGS-ialloc.c = -Wno-strict-prototypes -DNOID -DHAVE_GETTEXT
-CFLAGS-scheck.c = -Wno-strict-prototypes -DNOID -DHAVE_GETTEXT
+CFLAGS-zdump.c = -fwrapv -DNOID $(tz-cflags) -DHAVE_GETTEXT
+CFLAGS-zic.c = -DNOID $(tz-cflags) -DHAVE_GETTEXT
+CFLAGS-ialloc.c = -DNOID -DHAVE_GETTEXT
+CFLAGS-scheck.c = -DNOID -DHAVE_GETTEXT
 
 # We have to make sure the data for testing the tz functions is available.
 # Don't add leapseconds here since test-tz made checks that work only without

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

Summary of changes:
 ChangeLog         |    6 ++++++
 timezone/Makefile |    9 ++++-----
 2 files changed, 10 insertions(+), 5 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]