diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-11-12 02:20:06 +0800 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-11-12 02:20:06 +0800 |
commit | f392900a27d74915916e662c118853afb9652003 (patch) | |
tree | 106f3ed050b1f46fbedbc3f0bcd87b644fc8a409 /games/devilutionX | |
parent | 0ccdf88f447b48fcd156ad775c8196b13fc1e01f (diff) | |
download | freebsd-ports-gnome-f392900a27d74915916e662c118853afb9652003.tar.gz freebsd-ports-gnome-f392900a27d74915916e662c118853afb9652003.tar.zst freebsd-ports-gnome-f392900a27d74915916e662c118853afb9652003.zip |
games/devilutionX: fix build on GCC architectures
Needs C++11 compiler:
Target "devilution" requires the language dialect "CXX11" , but CMake does
not know the compile flags to use to enable it.
Approved by: mentors (implicit approval)
Diffstat (limited to 'games/devilutionX')
-rw-r--r-- | games/devilutionX/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/devilutionX/Makefile b/games/devilutionX/Makefile index 9eb9d0db0b44..e27348beeaaa 100644 --- a/games/devilutionX/Makefile +++ b/games/devilutionX/Makefile @@ -12,7 +12,7 @@ LICENSE= UNLICENSE LIB_DEPENDS= libsodium.so:security/libsodium -USES= cmake dos2unix sdl +USES= cmake compiler:c++11-lang dos2unix sdl USE_SDL= mixer2 sdl2 ttf2 PLIST_FILES= bin/devilutionx |