1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Fix build on 5.x and 6.x

PR:		86500
Notified by:	Carsten@earendil.aegisnet.de
Approved by:	paul@aps.org (maintainer timeout, 14 days)
This commit is contained in:
Marcus Alves Grando 2005-10-16 19:02:02 +00:00
parent 01e9c7283b
commit d7e294f916
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=145577
2 changed files with 19 additions and 4 deletions

View File

@ -30,15 +30,20 @@ SCRIPTS= ldapdns-conf ldapaxfr-conf domainname.sh
DOCS= AUTHORS CHANGELOG FAQ INSTALL README README.[a-s]*
do-install:
cd ${WRKSRC} && \
${INSTALL_PROGRAM} ${PROGRAMS} ${PREFIX}/bin && \
${INSTALL_SCRIPT} ${SCRIPTS} ${PREFIX}/bin
.for i in ${PROGRAMS}
${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/bin
.endfor
.for i in ${SCRIPTS}
${INSTALL_SCRIPT} ${WRKSRC}/${i} ${PREFIX}/bin
.endfor
@${MKDIR} ${EXAMPLESDIR}/admin
${INSTALL_DATA} ${WRKSRC}/sample/* ${EXAMPLESDIR}
${INSTALL_SCRIPT} ${WRKSRC}/admin/* ${EXAMPLESDIR}/admin
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
.for i in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,10 @@
--- ldapdns.c.orig Mon Jun 23 15:56:44 2003
+++ ldapdns.c Sun Oct 2 15:13:11 2005
@@ -21,6 +21,7 @@
list_push(&x, lp->str);
list_push(&seen, lp->str);
HIT:
+ continue;
}
lp = *p;