diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-01-03 19:41:04 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-01-03 19:41:04 +0000 |
commit | 73947aba2d708892a3bed46087e5017299a3f1ce (patch) | |
tree | 302d0a0cb0d7faec042c1036573c2472ff96f065 /audio/cava | |
parent | devel/cvs: remove libgnuregex dependency. (diff) |
audio/cava: fix build on GCC architectures
cc1: error: unrecognized command line option "-Wno-unused-result"
cc1: error: unrecognized command line option "-Wno-unknown-warning-option"
cc1: error: unrecognized command line option "-Wno-maybe-uninitialized"
MFH: 2021Q1
Notes
Notes:
svn path=/head/; revision=560035
Diffstat (limited to 'audio/cava')
-rw-r--r-- | audio/cava/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/cava/Makefile b/audio/cava/Makefile index 8b13771fee01..d089f8720fed 100644 --- a/audio/cava/Makefile +++ b/audio/cava/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libfftw3.so:math/fftw3 \ libiniparser.so:devel/iniparser -USES= autoreconf libtool localbase ncurses +USES= autoreconf compiler:c11 libtool localbase ncurses USE_GITHUB= yes GH_ACCOUNT= karlstav |