diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2004-07-26 04:57:14 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2004-07-26 04:57:14 +0000 |
commit | 25e9c34f18c2cbca081b06252d1e4983fc458db1 (patch) | |
tree | 20acbb3e83ce9a864f8cfad9de04120f0c0ea5b6 /security/gnupg | |
parent | - Update to 3.4.2 (diff) |
Fix LDAP detection. For everybody who has a the default
openldap client installed, this will cause a plist change.
I didn't bump the PORTREVISION, but it might not be a bad
idea. I'll leave that up to the maintainer.
Notes
Notes:
svn path=/head/; revision=114731
Diffstat (limited to 'security/gnupg')
-rw-r--r-- | security/gnupg/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/gnupg/Makefile b/security/gnupg/Makefile index d353148e4a9a..632d1c6434bb 100644 --- a/security/gnupg/Makefile +++ b/security/gnupg/Makefile @@ -44,7 +44,7 @@ MAN7= gnupg.7 .if defined(WITH_LIBICONV) || exists(${PREFIX}/lib/libiconv.so) USE_ICONV= yes .endif -.if defined(WITH_LDAP) || exists(${PREFIX}/lib/libldap.so.2) +.if defined(WITH_LDAP) || exists(${PREFIX}/lib/libldap.so) USE_OPENLDAP= yes PLIST_SUB+= WITH_LDAP="" .else |