diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2004-04-19 17:35:41 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2004-04-19 17:35:41 +0000 |
commit | 039071bac6187a8de2d9222cdd902bf4f0a33ebb (patch) | |
tree | 0f256550a88f82ae39a981d7f7a3e6415de4c628 /mail/turba/Makefile | |
parent | . Add some information regarding the latest changes to bsd.java.mk (diff) |
Remove version checking of LDAP:
- it was broken since the latest upgrade of OpenLDAP;
- Turba runs with any version of LDAP;
- OpenLDAP v. 1 has been removed.
Submitted by: Oliver Eikemeier
Noticed by: Kris / Bento
Approved by: mat (mentor).
Diffstat (limited to '')
-rw-r--r-- | mail/turba/Makefile | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/mail/turba/Makefile b/mail/turba/Makefile index 7c1cfbc99ab4..26a92d571d2d 100644 --- a/mail/turba/Makefile +++ b/mail/turba/Makefile @@ -70,21 +70,12 @@ post-patch: pre-install: .if !defined(WITHOUT_LDAP) -.if exists(${LOCALBASE}/lib/libldap.so.1) - @if ! ${LDD} ${PHPSO} | ${GREP} -q -e "libldap.so.1"; then \ + @if ! ${LDD} ${PHPSO} | ${GREP} -q -e "libldap"; then \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please configure PHP with OpenLDAP support." ; \ ${ECHO_MSG} "" ; \ ${FALSE} ; \ fi -.else - @if ! ${LDD} ${PHPSO} | ${GREP} -q -e "libldap.so.2"; then \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Please configure PHP with OpenLDAP2 support." ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi -.endif .endif do-install: |