diff options
-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} |