diff options
author | tnn <tnn@pkgsrc.org> | 2015-02-21 09:19:17 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2015-02-21 09:19:17 +0000 |
commit | fb412d9e2fa117e9a3069bcf1a509c6a4be66466 (patch) | |
tree | 65b125dc592cafdeb20ab0e8c78651614692afee /net/synergy | |
parent | 2be204cf15cb7d2346e0deae7b746f96d9566115 (diff) | |
download | pkgsrc-fb412d9e2fa117e9a3069bcf1a509c6a4be66466.tar.gz |
-Wno-foo for clang
Diffstat (limited to 'net/synergy')
-rw-r--r-- | net/synergy/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/synergy/Makefile b/net/synergy/Makefile index a8f9e30fccb..986edb2ff18 100644 --- a/net/synergy/Makefile +++ b/net/synergy/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2015/02/03 19:08:55 tnn Exp $ +# $NetBSD: Makefile,v 1.25 2015/02/21 09:19:17 tnn Exp $ # DISTNAME= synergy-1.6.2 @@ -49,8 +49,10 @@ do-install: .include "../../mk/compiler.mk" .if !empty(PKGSRC_COMPILER:Mclang) -_WRAP_EXTRA_ARGS.CXX+= -std=c++11 -CWRAPPERS_APPEND.cxx+= -std=c++11 +_WRAP_EXTRA_ARGS.CXX+= -std=c++11 -Wno-switch -Wno-unused \ + -Wno-deprecated-register -Wno-tautological-compare +CWRAPPERS_APPEND.cxx+= -std=c++11 -Wno-switch -Wno-unused \ + -Wno-deprecated-register -Wno-tautological-compare .endif # tools/cryptopp562/GNUmakefile |