svn commit: r539679 - head/misc/nnn

Piotr Kubaj pkubaj at FreeBSD.org
Fri Jun 19 23:42:41 UTC 2020


Author: pkubaj
Date: Fri Jun 19 23:42:40 2020
New Revision: 539679
URL: https://svnweb.freebsd.org/changeset/ports/539679

Log:
  misc/nnn: fix build on GCC architectures
  
  Use C11 compiler:
  cc1: error: unrecognized command line option "-std=c11"

Modified:
  head/misc/nnn/Makefile

Modified: head/misc/nnn/Makefile
==============================================================================
--- head/misc/nnn/Makefile	Fri Jun 19 22:17:18 2020	(r539678)
+++ head/misc/nnn/Makefile	Fri Jun 19 23:42:40 2020	(r539679)
@@ -11,7 +11,7 @@ COMMENT=	Missing terminal file browser for X
 LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		gmake localbase ncurses readline
+USES=		compiler:c11 gmake localbase ncurses readline
 USE_GITHUB=	yes
 GH_ACCOUNT=	jarun
 


More information about the svn-ports-all mailing list