diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-10-23 02:01:58 +0800 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-10-23 02:01:58 +0800 |
commit | e506a1ae21fae6d0e6835e7fdd3780c80171b496 (patch) | |
tree | e5aff73c2e106234dc801e447ed8f32151cfb961 /graphics | |
parent | d4ba553ed84833f221b9dd2791e1105f32294e34 (diff) | |
download | freebsd-ports-gnome-e506a1ae21fae6d0e6835e7fdd3780c80171b496.tar.gz freebsd-ports-gnome-e506a1ae21fae6d0e6835e7fdd3780c80171b496.tar.zst freebsd-ports-gnome-e506a1ae21fae6d0e6835e7fdd3780c80171b496.zip |
graphics/ebsynth: fix build on GCC architectures
Use C++11 compiler:
cc1plus: error: unrecognized command line option "-std=c++11"
Approved by: mentors (implicit approval)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ebsynth/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/ebsynth/Makefile b/graphics/ebsynth/Makefile index 708b4594ca4b..ba624e954171 100644 --- a/graphics/ebsynth/Makefile +++ b/graphics/ebsynth/Makefile @@ -11,7 +11,7 @@ LICENSE= PD LIB_DEPENDS= libomp.so:devel/openmp -USES= localbase +USES= compiler:c++11-lang localbase USE_GITHUB= yes GH_ACCOUNT= jamriska GH_TAGNAME= 2f5c97c0c21a |