diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-01-22 17:27:00 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-01-22 17:27:00 +0000 |
commit | e6cfac4836029959ea34b8a965f3ad10fb6367de (patch) | |
tree | f31233e8541c96637079920ab7abec83fa44830f | |
parent | c1be4aaa6510b7ee0bb36b4d42105fb87ae9ee60 (diff) | |
download | ports-e6cfac4836029959ea34b8a965f3ad10fb6367de.tar.gz ports-e6cfac4836029959ea34b8a965f3ad10fb6367de.zip |
devel/bison: fix build on GCC architectures
Use newer GCC on GCC architectures:
src/parse-gram.y:1007: error: #pragma GCC diagnostic not allowed inside functions
Notes
Notes:
svn path=/head/; revision=523821
-rw-r--r-- | devel/bison/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/bison/Makefile b/devel/bison/Makefile index 04d918951ead..cc6c621cb255 100644 --- a/devel/bison/Makefile +++ b/devel/bison/Makefile @@ -19,7 +19,7 @@ RUN_DEPENDS= m4>=1.4.16,1:devel/m4 OPTIONS_DEFINE= DOCS EXAMPLES NLS OPTIONS_SUB= yes -USES= charsetfix localbase makeinfo perl5 tar:xz +USES= charsetfix compiler:c11 localbase makeinfo perl5 tar:xz USE_PERL5= build CONFIGURE_ARGS= --disable-yacc --enable-relocatable |