diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-04-10 21:43:59 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-04-10 21:43:59 +0000 |
commit | ac7fc760b45cfa31636401b4367fce8f35c83f86 (patch) | |
tree | eaac81ceba225e188cb946cb1aca48e17b6ff3ac /cad/graywolf | |
parent | Re-add the py-pychess now that I figured out the USES=display quirk. (diff) |
cad/graywolf: fix build on GCC architectures
C11 compiler is necessary:
/wrkdirs/usr/ports/cad/graywolf/work/graywolf-0.1.6-3-g6c5e24f/src/twmc/wireratio.c:92: error: expected declaration specifiers before 'gsl_matrix'
MFH: 2020Q2 (fix build blanket)
Notes
Notes:
svn path=/head/; revision=531342
Diffstat (limited to 'cad/graywolf')
-rw-r--r-- | cad/graywolf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cad/graywolf/Makefile b/cad/graywolf/Makefile index c81d32457956..dfc85ff92b77 100644 --- a/cad/graywolf/Makefile +++ b/cad/graywolf/Makefile @@ -16,7 +16,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libgsl.so:math/gsl -USES= cmake pkgconfig xorg +USES= cmake compiler:c11 pkgconfig xorg USE_GITHUB= yes GH_ACCOUNT= rubund USE_XORG= ice sm x11 xext |