diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2005-07-21 19:01:09 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2005-07-21 19:01:09 +0000 |
commit | 0a8bccb85ea84d47e159ca6c33af8383b9c90608 (patch) | |
tree | fd928196829cd9eee8a69178598def54cfee4328 /ftp | |
parent | Fix PHP4 version. (diff) |
Attempt to fix build on 4.x.
Reported by: pointyhat via kris
Notes
Notes:
svn path=/head/; revision=139838
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/wzdftpd/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ftp/wzdftpd/Makefile b/ftp/wzdftpd/Makefile index d6763790d4e2..d7c63a8051b2 100644 --- a/ftp/wzdftpd/Makefile +++ b/ftp/wzdftpd/Makefile @@ -94,7 +94,8 @@ 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] + @${REINPLACE_CMD} -e "s|PRIu64|\"llu\"|g" ${WRKSRC}/src/*.[cl] \ + ${WRKSRC}/backends/plaintext/*.[cl] ${WRKSRC}/backends/mysql/*.[cl] .endif post-install: |