From cd698a32e0bc5d580a8e13074a1a7becd0375558 Mon Sep 17 00:00:00 2001 From: Piotr Kubaj Date: Thu, 19 Sep 2019 19:40:37 +0000 Subject: [PATCH] sysutils/frand: fix build on GCC architectures Use C++11 compiler: /wrkdirs/usr/ports/sysutils/frand/work/frand-0.1/main.cpp:7: error: ISO C++ forbids declaration of 'sample_sets_count' with no type Approved by: mentors (implicit approval) --- sysutils/frand/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysutils/frand/Makefile b/sysutils/frand/Makefile index 0ba0cb85c7dd..2b4a738a8fcc 100644 --- a/sysutils/frand/Makefile +++ b/sysutils/frand/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs -USES= cmake +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= serpent7776