From owner-svn-ports-branches@freebsd.org Sat Nov 30 17:43:07 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 83B9A1B1C8D; Sat, 30 Nov 2019 17:43:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47QJcq26Cqz4GxR; Sat, 30 Nov 2019 17:43:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2C8831DE0; Sat, 30 Nov 2019 17:43:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAUHh6Vt065919; Sat, 30 Nov 2019 17:43:06 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAUHh6S3065918; Sat, 30 Nov 2019 17:43:06 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201911301743.xAUHh6S3065918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 30 Nov 2019 17:43:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r518722 - branches/2019Q4/www/c-icap-modules X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q4/www/c-icap-modules X-SVN-Commit-Revision: 518722 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Nov 2019 17:43:07 -0000 Author: antoine Date: Sat Nov 30 17:43:06 2019 New Revision: 518722 URL: https://svnweb.freebsd.org/changeset/ports/518722 Log: MFH: r518013 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: branches/2019Q4/www/c-icap-modules/Makefile Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/www/c-icap-modules/Makefile ============================================================================== --- branches/2019Q4/www/c-icap-modules/Makefile Sat Nov 30 17:10:05 2019 (r518721) +++ branches/2019Q4/www/c-icap-modules/Makefile Sat Nov 30 17:43:06 2019 (r518722) @@ -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