diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2011-05-01 23:14:18 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2011-05-01 23:14:18 +0000 |
commit | cab58d44ab39ecdfc25010dc77c41a76ae6d44ac (patch) | |
tree | 00ebe5b71c60e3818423576a4b3ec95dab444eca | |
parent | 6591965751f051bc297138aba2a01ed092b1f8dc (diff) | |
download | ports-cab58d44ab39ecdfc25010dc77c41a76ae6d44ac.tar.gz ports-cab58d44ab39ecdfc25010dc77c41a76ae6d44ac.zip |
Notes
-rw-r--r-- | ftp/vsftpd/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ftp/vsftpd/Makefile b/ftp/vsftpd/Makefile index 5926bc0f1b8a..b5f35d227892 100644 --- a/ftp/vsftpd/Makefile +++ b/ftp/vsftpd/Makefile @@ -31,14 +31,15 @@ OPTIONS= RC_NG "install RC_NG script" off \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 900000 +BROKEN= does not compile on FreeBSD 9.X +.endif + .if defined(WITH_RC_NG) USE_RC_SUBR= vsftpd.sh .endif .if defined(WITH_VSFTPD_SSL) && !defined(WITHOUT_SSL) -.if ${OSVERSION} < 700000 -WITH_OPENSSL_PORT= yes -.endif .include "${PORTSDIR}/Mk/bsd.openssl.mk" SSL_SUFFIX= -ssl CFLAGS+= -I${OPENSSLINC} |