diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-19 09:40:00 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-19 09:40:00 +0000 |
commit | 2d0506782c3d5d68b2da93fa1330eb8835ed3f74 (patch) | |
tree | e1df6035f6da40d9d9cf4766c0e0319de8fad5ed | |
parent | science/kalzium: fix build on GCC architectures (diff) |
databases/tarantool-c: fix build with GCC-based architectures
mp_unreachable is not detected by base GCC:
/usr/local/include/msgpuck.h:190: warning: inline function 'mp_unreachable' declared but never defined
Approved by: mentors (implicit approval)
Notes
Notes:
svn path=/head/; revision=506921
-rw-r--r-- | databases/tarantool-c/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/tarantool-c/Makefile b/databases/tarantool-c/Makefile index ff93107613f7..be4aec73c3d4 100644 --- a/databases/tarantool-c/Makefile +++ b/databases/tarantool-c/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libmsgpuck.so:devel/msgpuck -USES= cmake compiler +USES= cmake compiler:c11 CMAKE_OFF= ENABLE_BUNDLED_DOCS ENABLE_BUNDLED_MSGPUCK |