diff options
author | pkubaj <pkubaj@FreeBSD.org> | 2019-05-05 06:00:42 +0800 |
---|---|---|
committer | pkubaj <pkubaj@FreeBSD.org> | 2019-05-05 06:00:42 +0800 |
commit | ed2d854ecdffe6b75ecadda4364ba7ee74a07822 (patch) | |
tree | e18061b1228dc763d3446f96deea043748978144 /sysutils/goaccess | |
parent | e433ac806329ca15e27ba88c54102890f6c8ffca (diff) | |
download | freebsd-ports-gnome-ed2d854ecdffe6b75ecadda4364ba7ee74a07822.tar.gz freebsd-ports-gnome-ed2d854ecdffe6b75ecadda4364ba7ee74a07822.tar.zst freebsd-ports-gnome-ed2d854ecdffe6b75ecadda4364ba7ee74a07822.zip |
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)
Diffstat (limited to 'sysutils/goaccess')
-rw-r--r-- | sysutils/goaccess/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/goaccess/Makefile b/sysutils/goaccess/Makefile index 076e78e3de3e..2b4919e81cf9 100644 --- a/sysutils/goaccess/Makefile +++ b/sysutils/goaccess/Makefile @@ -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 |