diff options
author | pkubaj <pkubaj@FreeBSD.org> | 2019-08-25 03:09:06 +0800 |
---|---|---|
committer | pkubaj <pkubaj@FreeBSD.org> | 2019-08-25 03:09:06 +0800 |
commit | ff8249dff7363066864e34902871e2b47a8a7745 (patch) | |
tree | 1b796ad10caffbf966a1d12bdccadbde25eeeea5 | |
parent | 5f51a583f5f37297d9ef62f45614c32eefa324d1 (diff) | |
download | freebsd-ports-gnome-ff8249dff7363066864e34902871e2b47a8a7745.tar.gz freebsd-ports-gnome-ff8249dff7363066864e34902871e2b47a8a7745.tar.zst freebsd-ports-gnome-ff8249dff7363066864e34902871e2b47a8a7745.zip |
devel/pthreadpool: fix build with GCC architectures
Use newer GCC than what base offers:
/wrkdirs/usr/ports/devel/pthreadpool/work/pthreadpool-6673a4c/src/threadpool-pthreads.c:59:4: error: #error "Unsupported platform"
Approved by: mentors (implicit approval)
-rw-r--r-- | devel/pthreadpool/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/pthreadpool/Makefile b/devel/pthreadpool/Makefile index 720461b20ee2..4d72147873a3 100644 --- a/devel/pthreadpool/Makefile +++ b/devel/pthreadpool/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/include/fxdiv.h:devel/fxdiv -USES= cmake localbase +USES= cmake compiler:c11 localbase USE_GITHUB= yes GH_ACCOUNT= Maratyszcza GH_TAGNAME= 6673a4c |