diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-01-23 13:09:37 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-01-23 13:09:37 +0000 |
commit | 9fb18ad18c1bf2a3a4c80ad032ce97dfdc8ac0bf (patch) | |
tree | cd0ab3899811e8e6fc793d280dfbc97d7626dc13 /math/octave-forge-audio | |
parent | 5123fdf6b78e096d5ffd143540ab92fb5a98bd30 (diff) | |
download | freebsd-ports-9fb18ad18c1bf2a3a4c80ad032ce97dfdc8ac0bf.zip |
math/octave-forge-audio: fix build on GCC architectures
RTMIDI is compiled with new GCC and thus this port needs new GCC as well:
checking for RTMIDI... no
Diffstat (limited to 'math/octave-forge-audio')
-rw-r--r-- | math/octave-forge-audio/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/octave-forge-audio/Makefile b/math/octave-forge-audio/Makefile index f25e329bc98d..a75f370906f1 100644 --- a/math/octave-forge-audio/Makefile +++ b/math/octave-forge-audio/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/../COPYING LIB_DEPENDS+= librtmidi.so:audio/rtmidi -USES= pkgconfig +USES= compiler:c++11-lang pkgconfig # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. |