diff options
author | joerg <joerg@pkgsrc.org> | 2019-12-19 22:18:17 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2019-12-19 22:18:17 +0000 |
commit | 411fcdc4696d52f67a799d5dbe02fe1fb15fc076 (patch) | |
tree | f59f050eb33c584272adc9ffc061db8f2d041361 /ham | |
parent | f59467708689ea58376b33efeef1059b69255fef (diff) | |
download | pkgsrc-411fcdc4696d52f67a799d5dbe02fe1fb15fc076.tar.gz |
Ignore unknown warnings and deprecation attributes with clang.
Diffstat (limited to 'ham')
-rw-r--r-- | ham/xlog/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ham/xlog/Makefile b/ham/xlog/Makefile index 1112f09aa09..6b1f5be1013 100644 --- a/ham/xlog/Makefile +++ b/ham/xlog/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.82 2019/11/03 19:32:08 rillig Exp $ +# $NetBSD: Makefile,v 1.83 2019/12/19 22:18:17 joerg Exp $ # DISTNAME= xlog-2.0.17 @@ -22,8 +22,8 @@ CONFIGURE_ARGS+= --enable-hamlib .include "../../mk/compiler.mk" .if !empty(PKGSRC_COMPILER:Mclang) BUILDLINK_TRANSFORM+= rm:-Wno-unused-but-set-variable -_WRAP_EXTRA_ARGS.CC+= -Wno-error=parentheses-equality -Wno-error=tautological-compare -CWRAPPERS_APPEND.cc+= -Wno-error=parentheses-equality -Wno-error=tautological-compare +_WRAP_EXTRA_ARGS.CC+= -Wno-error=parentheses-equality -Wno-error=tautological-compare -Wno-unknown-warning-option -Wno-deprecated-declarations +CWRAPPERS_APPEND.cc+= -Wno-error=parentheses-equality -Wno-error=tautological-compare -Wno-unknown-warning-option -Wno-deprecated-declarations .endif .include "../../databases/shared-mime-info/buildlink3.mk" |