summaryrefslogtreecommitdiff
path: root/textproc/FlightCrew
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2011-08-20 21:33:27 +0000
committerwiz <wiz@pkgsrc.org>2011-08-20 21:33:27 +0000
commit2f87d481085d6a6ad31c07cd27f5fb4e731a4a2b (patch)
treef9c1c5bd53a9ff2680d920f5708fa89263d2026a /textproc/FlightCrew
parent4f9c1337772326940625f93342961c9fc8450c3c (diff)
downloadpkgsrc-2f87d481085d6a6ad31c07cd27f5fb4e731a4a2b.tar.gz
Build fix: add -std=c++0x to the compiler flags for gcc-4.4+.
Diffstat (limited to 'textproc/FlightCrew')
-rw-r--r--textproc/FlightCrew/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/textproc/FlightCrew/Makefile b/textproc/FlightCrew/Makefile
index 8cd95c602cf..f7d778e2154 100644
--- a/textproc/FlightCrew/Makefile
+++ b/textproc/FlightCrew/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2011/07/29 19:32:18 ryoon Exp $
+# $NetBSD: Makefile,v 1.2 2011/08/20 21:33:27 wiz Exp $
#
DISTNAME= FlightCrew-0.7.1-Code
@@ -28,6 +28,12 @@ SUBST_FILES.fix-damaged= src/FlightCrew/tests/misc_tests/ConvertUtf8PathToBoostP
SUBST_SED.fix-damaged+= -e "2,2s/^/\//" # commented-out
SUBST_SED.fix-damaged+= -e "1,1d" # deleted
+.include "../../mk/compiler.mk"
+# GCC 4.4 and above needs this
+.if !empty(PKGSRC_COMPILER:Mgcc) && !empty(CC_VERSION:Mgcc-4.[4-9]*)
+_WRAP_EXTRA_ARGS.CXX+= -std=c++0x
+.endif
+
.include "../../devel/googletest/buildlink3.mk"
.include "../../devel/gmock/buildlink3.mk"
.include "../../textproc/xerces-c/buildlink3.mk"