diff options
author | thierry <thierry@FreeBSD.org> | 2004-04-20 01:35:41 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2004-04-20 01:35:41 +0800 |
commit | b76ff9cf0be23e1cb758f3e06c29e666e1f37c98 (patch) | |
tree | f7eb9b9da09eb41ed487973d5c1d7f85320447dc /mail/turba | |
parent | e5f2c8896969f3fe279a67651b0a4d89c2b12e10 (diff) | |
download | freebsd-ports-gnome-b76ff9cf0be23e1cb758f3e06c29e666e1f37c98.tar.gz freebsd-ports-gnome-b76ff9cf0be23e1cb758f3e06c29e666e1f37c98.tar.zst freebsd-ports-gnome-b76ff9cf0be23e1cb758f3e06c29e666e1f37c98.zip |
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 'mail/turba')
-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: |