svn commit: r505392 - head/devel/msgpuck

Piotr Kubaj pkubaj at FreeBSD.org
Sat Jun 29 23:02:49 UTC 2019


Author: pkubaj
Date: Sat Jun 29 23:02:47 2019
New Revision: 505392
URL: https://svnweb.freebsd.org/changeset/ports/505392

Log:
  devel/msgpuck: fix build
  
  Add USES=compiler:c11 to fix:
  test/CMakeFiles/msgpuck.test.dir/msgpuck.c.o:(.text+0xfe4): undefined reference to `mp_unreachable'
  test/CMakeFiles/msgpuck.test.dir/msgpuck.c.o:(.text+0x1b84): undefined reference to `mp_unreachable'
  
  Approved by:	mentors (implicit approval)

Modified:
  head/devel/msgpuck/Makefile

Modified: head/devel/msgpuck/Makefile
==============================================================================
--- head/devel/msgpuck/Makefile	Sat Jun 29 21:52:55 2019	(r505391)
+++ head/devel/msgpuck/Makefile	Sat Jun 29 23:02:47 2019	(r505392)
@@ -11,7 +11,7 @@ COMMENT=	Lightweight MessagePack library
 LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		cmake
+USES=		compiler:c11 cmake
 USE_LDCONFIG=	yes
 
 USE_GITHUB=	yes


More information about the svn-ports-all mailing list