diff options
author | dinoex <dinoex@FreeBSD.org> | 2002-04-20 02:45:32 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2002-04-20 02:45:32 +0800 |
commit | fcebfc0e62c456dd2348497f6ae12790861a551f (patch) | |
tree | e852a42eba2191cb63062782f405f405ac78ab8b /www | |
parent | 83fe8c5164853ab83eab5ef5fe6d407d1baf1f4f (diff) | |
download | freebsd-ports-gnome-fcebfc0e62c456dd2348497f6ae12790861a551f.tar.gz freebsd-ports-gnome-fcebfc0e62c456dd2348497f6ae12790861a551f.tar.zst freebsd-ports-gnome-fcebfc0e62c456dd2348497f6ae12790861a551f.zip |
-----------------
Changelog: webalizer-2.01-10
Fixes:
o Fix posible obscure buffer overflow bug in DNS resolver code
o Added additional extended character fixes
o Let code accept partial content response codes along with 200's
o Added code to catch blank hostnames (yes, they have been found!)
Will convert them into 'Unknown'
o Security fix for cross-site scripting vulnerability found by
Flavio Veloso (www.magnux.com).
Updates in languages:
webalizer_lang.czech
webalizer_lang.portuguese
webalizer_lang.spanish
-----------------
Distfiles remaden on Master site:
old tarball:
webalizer-2.01-10-src.tgz
(had an extra CVS dir)
new tarball:
webalizer-2.01-10-src.tar.bz2
-----------------
Add Option:
WEBALIZER_WITH_GD2
builds okay, but won't run without X11 if compiled with this option.
Diffstat (limited to 'www')
-rw-r--r-- | www/webalizer/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/www/webalizer/Makefile b/www/webalizer/Makefile index fefbafbf46b1..ee7d61c7109e 100644 --- a/www/webalizer/Makefile +++ b/www/webalizer/Makefile @@ -16,8 +16,12 @@ DISTNAME= ${PORTNAME}-2.01-10-src MAINTAINER= dinoex@FreeBSD.org .if !defined(LIB_DEPENDS) +.if defined(WEBALIZER_WITH_GD2) +LIB_DEPENDS= gd.3:${PORTSDIR}/graphics/gd2 +.else LIB_DEPENDS= gd.2:${PORTSDIR}/graphics/gd .endif +.endif USE_BZIP2= yes GNU_CONFIGURE= yes |