Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/atf/usr.bin Don't bail out on unused private fi...



details:   https://anonhg.NetBSD.org/src/rev/1e5c1fbab715
branches:  trunk
changeset: 779759:1e5c1fbab715
user:      joerg <joerg%NetBSD.org@localhost>
date:      Sat Jun 16 17:02:33 2012 +0000

description:
Don't bail out on unused private fields.

diffstat:

 external/bsd/atf/usr.bin/atf-report/Makefile |  4 +++-
 external/bsd/atf/usr.bin/atf-run/Makefile    |  4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diffs (34 lines):

diff -r d4d172523ebc -r 1e5c1fbab715 external/bsd/atf/usr.bin/atf-report/Makefile
--- a/external/bsd/atf/usr.bin/atf-report/Makefile      Sat Jun 16 17:01:02 2012 +0000
+++ b/external/bsd/atf/usr.bin/atf-report/Makefile      Sat Jun 16 17:02:33 2012 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2011/02/20 20:18:57 jmmv Exp $
+# $NetBSD: Makefile,v 1.6 2012/06/16 17:02:33 joerg Exp $
 
 .include <bsd.own.mk>
 
@@ -18,4 +18,6 @@
 
 WARNS?=                2
 
+CWARNFLAGS.clang+=     -Wno-error=unused-private-field
+
 .include <bsd.prog.mk>
diff -r d4d172523ebc -r 1e5c1fbab715 external/bsd/atf/usr.bin/atf-run/Makefile
--- a/external/bsd/atf/usr.bin/atf-run/Makefile Sat Jun 16 17:01:02 2012 +0000
+++ b/external/bsd/atf/usr.bin/atf-run/Makefile Sat Jun 16 17:02:33 2012 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2011/03/31 16:45:45 jmmv Exp $
+# $NetBSD: Makefile,v 1.11 2012/06/16 17:02:33 joerg Exp $
 
 .include <bsd.own.mk>
 
@@ -20,6 +20,8 @@
 LDADD+=                -latf-c++ -latf-c
 DPADD+=                ${LIBATF_CXX} ${LIBATF_C}
 
+CWARNFLAGS.clang+=     -Wno-error=unused-private-field
+
 COPTS.atf-run.cpp+=    -Wno-stack-protector
 
 WARNS?=                2



Home | Main Index | Thread Index | Old Index