diff options
author | clement <clement@FreeBSD.org> | 2004-05-05 20:36:03 +0800 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2004-05-05 20:36:03 +0800 |
commit | a396aa2a9c0a25be7e8b6017efbfe976d4396a62 (patch) | |
tree | 2a21c9a4859fb1385961926589284567985a7579 /www | |
parent | 64c4a8c4f06b56db4fa137830ac2748a27013909 (diff) | |
download | freebsd-ports-gnome-a396aa2a9c0a25be7e8b6017efbfe976d4396a62.tar.gz freebsd-ports-gnome-a396aa2a9c0a25be7e8b6017efbfe976d4396a62.tar.zst freebsd-ports-gnome-a396aa2a9c0a25be7e8b6017efbfe976d4396a62.zip |
- Update to 0.21
Problem with gcc 2.95 has been fixed, so patch is removed.
Submitted by: Tom Müller-Kortkamp <tmueko@kommunity.net> (maintainer)
Diffstat (limited to 'www')
-rw-r--r-- | www/mod_clamav/Makefile | 2 | ||||
-rw-r--r-- | www/mod_clamav/distinfo | 4 | ||||
-rw-r--r-- | www/mod_clamav/files/patch-mod_clamav.c | 19 |
3 files changed, 3 insertions, 22 deletions
diff --git a/www/mod_clamav/Makefile b/www/mod_clamav/Makefile index a337dc39518b..7c9b005d33ef 100644 --- a/www/mod_clamav/Makefile +++ b/www/mod_clamav/Makefile @@ -6,7 +6,7 @@ # PORTNAME= mod_clamav -PORTVERSION= 0.20 +PORTVERSION= 0.21 CATEGORIES= www security MASTER_SITES= http://software.othello.ch/mod_clamav/ diff --git a/www/mod_clamav/distinfo b/www/mod_clamav/distinfo index eb03f7f5b9dc..3e40e2b6fb9b 100644 --- a/www/mod_clamav/distinfo +++ b/www/mod_clamav/distinfo @@ -1,2 +1,2 @@ -MD5 (mod_clamav-0.20.tar.gz) = b19c3c5c74c5f554c29702950d350f45 -SIZE (mod_clamav-0.20.tar.gz) = 308197 +MD5 (mod_clamav-0.21.tar.gz) = 98bd0d8628be8ddeae21da6623e57d20 +SIZE (mod_clamav-0.21.tar.gz) = 308497 diff --git a/www/mod_clamav/files/patch-mod_clamav.c b/www/mod_clamav/files/patch-mod_clamav.c deleted file mode 100644 index cf2ec9f46cde..000000000000 --- a/www/mod_clamav/files/patch-mod_clamav.c +++ /dev/null @@ -1,19 +0,0 @@ ---- mod_clamav.c.orig Wed Apr 21 18:29:42 2004 -+++ mod_clamav.c Wed Apr 21 18:30:07 2004 -@@ -310,6 +310,7 @@ - int rc = 1, i, l; - char *ct; - const char *action; -+ clamav_safeuri *p; - - /* requests with only headers can be bypassed */ - if (f->r->header_only) { -@@ -339,7 +340,7 @@ - } - - /* check safe uri */ -- clamav_safeuri *p = (clamav_safeuri *)(rec->safeuris->elts); -+ p = (clamav_safeuri *)(rec->safeuris->elts); - for (i = 0; i < rec->safeuris->nelts; i++) { - switch (p[i].matchtype) { - case MATCH_SAFE_URI: |