diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2002-04-19 18:45:32 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2002-04-19 18:45:32 +0000 |
commit | 3eb8f7cd4c8a890a82dce1bbb42417c171134ace (patch) | |
tree | 2e6ce1659ab27b4ace3ba588e673e15a713ee00f /www | |
parent | f4ec32a6c5a86604e1301b120da7f0255145a396 (diff) | |
download | freebsd-ports-3eb8f7cd4c8a890a82dce1bbb42417c171134ace.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 |