svn commit: r500833 - head/sysutils/goaccess

Piotr Kubaj pkubaj at FreeBSD.org
Sat May 4 22:00:43 UTC 2019


Author: pkubaj
Date: Sat May  4 22:00:42 2019
New Revision: 500833
URL: https://svnweb.freebsd.org/changeset/ports/500833

Log:
  sysutils/goaccess: fix build with GCC-based architectures
  
  Add USES=compiler:c11 to fix:
  /usr/local/include/maxminddb.h:92: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'mmdb_uint128_t'
  
  Approved by:	mentors (implicit approval)

Modified:
  head/sysutils/goaccess/Makefile

Modified: head/sysutils/goaccess/Makefile
==============================================================================
--- head/sysutils/goaccess/Makefile	Sat May  4 21:03:03 2019	(r500832)
+++ head/sysutils/goaccess/Makefile	Sat May  4 22:00:42 2019	(r500833)
@@ -16,7 +16,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 GNU_CONFIGURE=	yes
 INSTALL_TARGET=	install-strip
 USE_LDCONFIG=	yes
-USES=		alias pkgconfig ncurses
+USES=		alias compiler:c11 pkgconfig ncurses
 
 CFLAGS+=	-I${NCURSESINC} -I${LOCALBASE}/include
 LDFLAGS+=	-L${NCURSESLIB} -L${LOCALBASE}/lib


More information about the svn-ports-all mailing list