svn commit: r357190 - in head/security/clamav: . files

Renato Botelho garga at FreeBSD.org
Mon Jun 9 17:48:12 UTC 2014


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


More information about the svn-ports-head mailing list