Source-Changes-HG archive

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

[src/trunk]: src/external/bsd/kyua-cli kyua-cli: avoid warning about deprecat...



details:   https://anonhg.NetBSD.org/src/rev/3ad46e178f89
branches:  trunk
changeset: 934975:3ad46e178f89
user:      lukem <lukem%NetBSD.org@localhost>
date:      Sun Jun 21 14:26:16 2020 +0000

description:
kyua-cli: avoid warning about deprecated auto_ptr

diffstat:

 external/bsd/kyua-cli/Makefile.inc |  5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diffs (18 lines):

diff -r d23bc0aa905e -r 3ad46e178f89 external/bsd/kyua-cli/Makefile.inc
--- a/external/bsd/kyua-cli/Makefile.inc        Sun Jun 21 14:12:50 2020 +0000
+++ b/external/bsd/kyua-cli/Makefile.inc        Sun Jun 21 14:26:16 2020 +0000
@@ -1,10 +1,13 @@
-# $NetBSD: Makefile.inc,v 1.4 2014/07/05 19:22:41 dholland Exp $
+# $NetBSD: Makefile.inc,v 1.5 2020/06/21 14:26:16 lukem Exp $
 
 .include <bsd.own.mk>
 
 TOPDIR=                ${NETBSDSRCDIR}/external/bsd/kyua-cli
 SRCDIR=                ${TOPDIR}/dist
 
+# Kyua uses auto_ptr; g++ 8 complains about it
+CXXFLAGS+=     -Wno-deprecated-declarations
+
 # Name of the private libraries (without their lib prefix) to depend on.
 KYUA_LIBS?=
 



Home | Main Index | Thread Index | Old Index