diff options
author | edwin <edwin@FreeBSD.org> | 2007-10-04 07:04:44 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2007-10-04 07:04:44 +0800 |
commit | e90eea7c8106d9e81d021eae312dbffbbd421c30 (patch) | |
tree | 76e86f017b18e95c4848300bd2e5c4e97ea218a9 /ftp | |
parent | 76a76c8949da4f34972c8ef5eb83d13c8027ab82 (diff) | |
download | freebsd-ports-gnome-e90eea7c8106d9e81d021eae312dbffbbd421c30.tar.gz freebsd-ports-gnome-e90eea7c8106d9e81d021eae312dbffbbd421c30.tar.zst freebsd-ports-gnome-e90eea7c8106d9e81d021eae312dbffbbd421c30.zip |
Remove support for OSVERSION < 5
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/ftp-tls/Makefile | 8 | ||||
-rw-r--r-- | ftp/ftpd-tls/Makefile | 4 | ||||
-rw-r--r-- | ftp/ncftpd/Makefile | 4 |
3 files changed, 2 insertions, 14 deletions
diff --git a/ftp/ftp-tls/Makefile b/ftp/ftp-tls/Makefile index 4240a4c30c5a..591996e77021 100644 --- a/ftp/ftp-tls/Makefile +++ b/ftp/ftp-tls/Makefile @@ -23,12 +23,6 @@ MAN1= ftp-tls.1 CONFIGURE_ARGS= --with-openssl-dir=${OPENSSLBASE} CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 400000 -BROKEN= Not supported on systems prior to FreeBSD 4.0 (missing getaddrinfo()) -.endif - do-install: @${INSTALL_PROGRAM} ${WRKSRC}/ftp ${PREFIX}/bin/ftp-tls @${INSTALL_MAN} ${WRKSRC}/ftp.1.TLS ${PREFIX}/man/man1/ftp-tls.1 @@ -39,4 +33,4 @@ do-install: .endfor .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/ftp/ftpd-tls/Makefile b/ftp/ftpd-tls/Makefile index 1651d40fbf89..068597e9eacf 100644 --- a/ftp/ftpd-tls/Makefile +++ b/ftp/ftpd-tls/Makefile @@ -27,10 +27,6 @@ PKGMESSAGE= ${WRKDIR}/pkg-message .include <bsd.port.pre.mk> -.if ${OSVERSION} < 400000 -BROKEN= "Not supported on systems prior to FreeBSD 4.0 (missing getaddrinfo())" -.endif - post-patch: .for i in README.TLS ftpd.8.TLS pathnames.h tlsutil.c @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/${i} diff --git a/ftp/ncftpd/Makefile b/ftp/ncftpd/Makefile index cf2a2e6468a5..484f5b0ccda7 100644 --- a/ftp/ncftpd/Makefile +++ b/ftp/ncftpd/Makefile @@ -28,10 +28,8 @@ RESTRICTED= 30 day evaluation license .if ${OSVERSION} >= 600000 BINVER= 6.0 -.elif ${OSVERSION} >= 500000 +.else BINVER= 5.4 -.elif ${OSVERSION} >= 491000 -BINVER= 4.11 .else BROKEN= FreeBSD version too old .endif |