diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-04-07 12:23:46 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-04-07 12:23:46 +0000 |
commit | 71ebcb00b8ad49199185a53e47158faf234b74e5 (patch) | |
tree | 672e2c23ca2cb8a3e180209b9a9b2d43c546c08e | |
parent | www/gobuffalo: Update to 0.16.2 (diff) |
devel/samurai: fix build on GCC architectures
GCC 4.2 doesn't support -Wpedantic:
cc1: error: unrecognized command line option "-Wpedantic"
MFH: 2020Q2 (fix build blanket)
-rw-r--r-- | devel/samurai/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/devel/samurai/Makefile b/devel/samurai/Makefile index d9f9ef136f1c..370eef80b069 100644 --- a/devel/samurai/Makefile +++ b/devel/samurai/Makefile @@ -13,6 +13,8 @@ LICENSE_COMB= multi LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE +USES= compiler:c11 + ALL_TARGET= samu PLIST_FILES= bin/samu \ man/man1/samu.1.gz |