Update to 0.4.3 - security release which fixes some vulnerabilities

which may cause crash or DoS (see ChangeLog for details).

Perl module related changes (it's now possible to enable/disable it
in configure script)

PR:		ports/73287
Submitted by:	maintainer
This commit is contained in:
Kirill Ponomarev 2004-10-30 09:08:28 +00:00
parent afc2d33bec
commit 3d1872ff52
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=120483
2 changed files with 9 additions and 7 deletions

View file

@ -6,7 +6,7 @@
#
PORTNAME= wzdftpd
PORTVERSION= 0.4.2
PORTVERSION= 0.4.3
CATEGORIES= ftp ipv6
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
@ -17,7 +17,6 @@ COMMENT= Modular FTP server configurable online using SITE commands
USE_RC_SUBR= yes
USE_REINPLACE= yes
USE_GMAKE= yes
USE_PERL5= yes
GNU_CONFIGURE= yes
INSTALLS_SHLIB= yes
USE_INC_LIBTOOL_VER=13
@ -25,10 +24,11 @@ CONFIGURE_ARGS+= --without-mysql --without-pam
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
PKGMESSAGE= ${WRKDIR}/pkg-message
OPTIONS= UFT8 "Enable UTF8 support" off \
OPTIONS= UTF8 "Enable UTF8 support" off \
TCL "Enable TCL support" off \
SSL "Enable OpenSSL support" on \
IPV6 "Enable IPv6 support" on
IPV6 "Enable IPv6 support" on \
PERL "Enable PERL support" off
MAN1= siteconfig.1 \
siteuptime.1 \
@ -62,9 +62,11 @@ CONFIGURE_ARGS+= --enable-ipv6
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500600
.if !defined(WITH_PERL)
CONFIGURE_ARGS+= --disable-perl
PLIST_SUB+= PERL="@comment "
.else
USE_PERL5= yes
PLIST_SUB+= PERL=""
.endif

View file

@ -1,2 +1,2 @@
MD5 (wzdftpd-0.4.2.tar.gz) = dfe80e948ebc74f64afe1444a6ae3c50
SIZE (wzdftpd-0.4.2.tar.gz) = 701176
MD5 (wzdftpd-0.4.3.tar.gz) = c752bf8fd00ec90daf6e24512f3abe72
SIZE (wzdftpd-0.4.3.tar.gz) = 701935