diff options
author | linimon <linimon@FreeBSD.org> | 2019-04-03 13:20:38 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2019-04-03 13:20:38 +0800 |
commit | ce8be5802097c99e191d82f624cb463a46911fc0 (patch) | |
tree | f51a6b224b3b65c86f8448ed318923b6fe559ba4 | |
parent | 72b0ec463d53016b39648c195d9b2af577ea2bf2 (diff) | |
download | freebsd-ports-gnome-ce8be5802097c99e191d82f624cb463a46911fc0.tar.gz freebsd-ports-gnome-ce8be5802097c99e191d82f624cb463a46911fc0.tar.zst freebsd-ports-gnome-ce8be5802097c99e191d82f624cb463a46911fc0.zip |
Add compiler:c++11-lang to USES to avoid the following problem on
GCC-based architectures:
cc1plus: error: unrecognized command line option "-std=gnu++11"
Approved by: portmgr (tier-2 blanket)
-rw-r--r-- | games/2048-qt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/2048-qt/Makefile b/games/2048-qt/Makefile index 5b463b916342..bd602504b91d 100644 --- a/games/2048-qt/Makefile +++ b/games/2048-qt/Makefile @@ -16,7 +16,7 @@ USE_GITHUB= yes GH_ACCOUNT= xiaoyong GH_PROJECT= 2048-Qt -USES= gmake pkgconfig qmake qt:5 +USES= compiler:c++11-lang gmake pkgconfig qmake qt:5 USE_QT= core declarative gui network widgets buildtools_build quickcontrols PLIST_FILES= bin/2048-qt ${DESKTOPDIR}/${PORTNAME}.desktop \ |