Date: Tue, 4 Jun 2019 16:13:13 +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: r503477 - head/security/lua-bcrypt Message-ID: <201906041613.x54GDDSP059729@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Tue Jun 4 16:13:13 2019 New Revision: 503477 URL: https://svnweb.freebsd.org/changeset/ports/503477 Log: security/lua-bcrypt: fix build Add USES=compiler:c11 to fix build: compat/safebfuns.c:25:4: error: #error "require gcc >= 4.4" compat/safebfuns.c:32: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'NOINLINE' compat/safebfuns.c:41: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'NOINLINE' Approved by: mentors (implicit approval) Modified: head/security/lua-bcrypt/Makefile Modified: head/security/lua-bcrypt/Makefile ============================================================================== --- head/security/lua-bcrypt/Makefile Tue Jun 4 16:10:47 2019 (r503476) +++ head/security/lua-bcrypt/Makefile Tue Jun 4 16:13:13 2019 (r503477) @@ -10,7 +10,7 @@ COMMENT= Library providing OpenBSD's bcrypt hash funct LICENSE= ISCL -USES= gmake lua +USES= compiler:c11 gmake lua USE_GITHUB= yes GH_ACCOUNT= mikejsavage
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906041613.x54GDDSP059729>