diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-08-06 16:43:35 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-08-06 16:43:35 +0000 |
commit | 46e2778a5d519cfdf6e81848b8545c6109929ee8 (patch) | |
tree | 0446325bce4b5fb0aa67dbb2d2354edff1365f99 | |
parent | - Require perl from ports (diff) |
- Broken on 4.X: does not compile (O_SYNC undeclared)
Reported by: krismail
Notes
Notes:
svn path=/head/; revision=169833
-rw-r--r-- | ftp/bbftp/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ftp/bbftp/Makefile b/ftp/bbftp/Makefile index 7650d9ecb1dd..76f6aba52b81 100644 --- a/ftp/bbftp/Makefile +++ b/ftp/bbftp/Makefile @@ -23,6 +23,12 @@ USE_RC_SUBR= bbftpd MAN1= bbftp.1 bbftpd.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= does not compile +.endif + do-configure: ${CP} -f ${TEMPLATES}/config.guess ${WRKSRC} ${CP} -f ${TEMPLATES}/config.sub ${WRKSRC} @@ -39,4 +45,4 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/doc/bbftp.1 ${PREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/doc/bbftpd.1 ${PREFIX}/man/man1 -.include <bsd.port.mk> +.include <bsd.port.post.mk> |