Date: Sat, 4 May 2019 22:00:42 +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: r500833 - head/sysutils/goaccess Message-ID: <201905042200.x44M0gB2075448@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905042200.x44M0gB2075448>