Date: Wed, 20 Nov 2019 13:56:36 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r518013 - head/www/c-icap-modules Message-ID: <201911201356.xAKDuaCs086508@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Wed Nov 20 13:56:36 2019 New Revision: 518013 URL: https://svnweb.freebsd.org/changeset/ports/518013 Log: Mark BROKEN: fails to build clamav_mod.c:108:13: error: expected identifier or '(' static char CLAMAV_VERSION[CLAMAV_VERSION_SIZE]; ^ /usr/local/include/clamav-version.h:30:24: note: expanded from macro 'CLAMAV_VERSION' #define CLAMAV_VERSION "0.102.0" ^ clamav_mod.c:645:6: warning: array index 63 is past the end of the array (which contains 8 elements) [-Warray-bounds] CLAMAV_VERSION[CLAMAV_VERSION_SIZE - 1] = '\0'; ^ ~~~~~~~~~~~~~~~~~~~~~~~ /usr/local/include/clamav-version.h:30:24: note: expanded from macro 'CLAMAV_VERSION' #define CLAMAV_VERSION "0.102.0" ^ Reported by: pkg-fallout Modified: head/www/c-icap-modules/Makefile Modified: head/www/c-icap-modules/Makefile ============================================================================== --- head/www/c-icap-modules/Makefile Wed Nov 20 13:56:36 2019 (r518012) +++ head/www/c-icap-modules/Makefile Wed Nov 20 13:56:36 2019 (r518013) @@ -15,6 +15,8 @@ COMMENT= Modules for c-icap: virus_scan and srv_url_ch LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN= fails to build + LIB_DEPENDS= libicapapi.so:www/c-icap \ libclamav.so:security/clamav
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911201356.xAKDuaCs086508>