]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update timezone/Makefile to use -Wno-unused-variable
authorSteve Ellcey <sellcey@mips.com>
Wed, 7 Oct 2015 22:04:49 +0000 (15:04 -0700)
committerSteve Ellcey <sellcey@mips.com>
Wed, 7 Oct 2015 22:04:49 +0000 (15:04 -0700)
    GCC 6.0 (prelease) complains about time_t_min and time_t_max
    not being used.  These variables are not used in glibc but
    are needed in other packages.

* timezone/Makefile (CFLAGS-zic.c): Add -Wno-unused-variable.
(CFLAGS-ialloc.c): Ditto.
(CFLAGS-scheck.c): Ditto.

ChangeLog
timezone/Makefile

index db2764242e63f213e3c333ab071cc7e656fb898e..58069c75a2f744c39aad08dbbc7ead300df3a8bb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2015-10-07  Steve Ellcey  <sellcey@imgtec.com>
+
+       * timezone/Makefile (CFLAGS-zic.c): Add -Wno-unused-variable.
+       (CFLAGS-ialloc.c): Ditto.
+       (CFLAGS-scheck.c): Ditto.
+
 2015-10-07  Carlos O'Donell  <carlos@redhat.com>
 
        [BZ #19086]
index a0b8adb5a65231806b054e0cd2e41a2659f37a8d..99566cbf12189396a1af089d95e506065ed59089 100644 (file)
@@ -63,10 +63,13 @@ tz-cflags = -DTZDIR='"$(zonedir)"' \
            -DTZDEFRULES='"$(posixrules-file)"' \
            -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone
 
+# The -Wno-unused-variable flag is used to prevent GCC 6
+# from warning about time_t_min and time_t_max which are
+# defined in private.h but not used.
 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
+CFLAGS-zic.c = -DNOID $(tz-cflags) -DHAVE_GETTEXT -Wno-unused-variable
+CFLAGS-ialloc.c = -DNOID -DHAVE_GETTEXT -Wno-unused-variable
+CFLAGS-scheck.c = -DNOID -DHAVE_GETTEXT -Wno-unused-variable
 
 # 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