From owner-svn-ports-all@FreeBSD.ORG Mon Jun 9 17:48:12 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C0BC1D2; Mon, 9 Jun 2014 17:48:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 88D7F2F50; Mon, 9 Jun 2014 17:48:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s59HmCuw041510; Mon, 9 Jun 2014 17:48:12 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s59HmC1o041508; Mon, 9 Jun 2014 17:48:12 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201406091748.s59HmC1o041508@svn.freebsd.org> From: Renato Botelho Date: Mon, 9 Jun 2014 17:48:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357190 - in head/security/clamav: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2014 17:48:12 -0000 Author: garga Date: Mon Jun 9 17:48:11 2014 New Revision: 357190 URL: http://svnweb.freebsd.org/changeset/ports/357190 QAT: https://qat.redports.org/buildarchive/r357190/ Log: Add a patch to fix an error many users reported. When you have an old clamav version installed and have openssl installed from ports, clamav cannot be built. It happened because SSL_CPPFLAGS was being set before internal includes, so it tried to use old clamav headers. Added: head/security/clamav/files/patch-freshclam__Makefile.in (contents, props changed) Modified: head/security/clamav/Makefile Modified: head/security/clamav/Makefile ============================================================================== --- head/security/clamav/Makefile Mon Jun 9 17:47:14 2014 (r357189) +++ head/security/clamav/Makefile Mon Jun 9 17:48:11 2014 (r357190) @@ -3,7 +3,7 @@ PORTNAME= clamav PORTVERSION= 0.98.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security MASTER_SITES= SF Added: head/security/clamav/files/patch-freshclam__Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/clamav/files/patch-freshclam__Makefile.in Mon Jun 9 17:48:11 2014 (r357190) @@ -0,0 +1,11 @@ +--- freshclam/Makefile.in.orig 2014-06-09 10:19:33.000000000 -0300 ++++ freshclam/Makefile.in 2014-06-09 10:20:12.000000000 -0300 +@@ -414,7 +414,7 @@ + mirman.h + + AM_CFLAGS = @WERR_CFLAGS@ +-AM_CPPFLAGS = @SSL_CPPFLAGS@ -I$(top_srcdir) -I$(top_srcdir)/shared -I$(top_srcdir)/libclamav @FRESHCLAM_CPPFLAGS@ ++AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/shared -I$(top_srcdir)/libclamav @SSL_CPPFLAGS@ @FRESHCLAM_CPPFLAGS@ + AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = freshclam$(EXEEXT) + CLEANFILES = *.gcda *.gcno + all: all-am