diff options
author | joerg <joerg@pkgsrc.org> | 2013-02-26 11:15:43 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-02-26 11:15:43 +0000 |
commit | e60779f31deede09925b201915bbd007ef5b7b26 (patch) | |
tree | 08192ba0dd8cf9a627c6f7516593783faad96351 /games | |
parent | 23a2f7414d7086bce718d7edfa262a186a305ead (diff) | |
download | pkgsrc-e60779f31deede09925b201915bbd007ef5b7b26.tar.gz |
Needs C++11 when buildign with clang.
Diffstat (limited to 'games')
-rw-r--r-- | games/wesnoth/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/games/wesnoth/Makefile b/games/wesnoth/Makefile index c6eb8b38110..f425ab6759e 100644 --- a/games/wesnoth/Makefile +++ b/games/wesnoth/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.88 2013/02/16 11:21:29 wiz Exp $ +# $NetBSD: Makefile,v 1.89 2013/02/26 11:15:43 joerg Exp $ DISTNAME= wesnoth-1.10.5 PKGREVISION= 2 @@ -57,6 +57,11 @@ BUILDLINK_TRANSFORM+= rm:-Werror USE_TOOLS+= gmake .endif +.include "../../mk/compiler.mk" +.if !empty(PKGSRC_COMPILER:Mclang) +CXXFLAGS+= -std=c++11 +.endif + PLIST_VARS+= icons .if ${OPSYS} != "Darwin" |