svn commit: r503477 - head/security/lua-bcrypt

Piotr Kubaj pkubaj at FreeBSD.org
Tue Jun 4 16:13:14 UTC 2019


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


More information about the svn-ports-all mailing list