Date: Sat, 29 Jun 2019 23:02:48 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505392 - head/devel/msgpuck Message-ID: <201906292302.x5TN2mQR040516@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906292302.x5TN2mQR040516>