diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2005-05-31 04:59:00 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2005-05-31 04:59:00 +0000 |
commit | 0e3d8ef98dc55dac5d115247e06ac64df90f1e78 (patch) | |
tree | 66ba14d6b82119036acdc834c13912174c8ae295 /ftp | |
parent | Attempt to fix build on 4.x by adding readline dependency. (diff) |
Fix build on 4.x.
Reported by: pointyhat via kris
Notes
Notes:
svn path=/head/; revision=136487
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/wzdftpd/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ftp/wzdftpd/Makefile b/ftp/wzdftpd/Makefile index 464446e32291..381a0ba9f686 100644 --- a/ftp/wzdftpd/Makefile +++ b/ftp/wzdftpd/Makefile @@ -93,6 +93,9 @@ RC_SCRIPTS_SUB= PREFIX=${PREFIX} \ post-patch: @${REINPLACE_CMD} -e "s|@HAVE_PERL_TRUE@|#|g" ${WRKSRC}/Makefile.in +.if ${OSVERSION} < 500000 + @${REINPLACE_CMD} -e "s|PRIu64|\"llu\"|g" ${WRKSRC}/src/*.[cl] +.endif post-install: .if !defined(NOPORTDOCS) |