diff options
author | manu <manu@pkgsrc.org> | 2015-05-29 09:01:09 +0000 |
---|---|---|
committer | manu <manu@pkgsrc.org> | 2015-05-29 09:01:09 +0000 |
commit | 74abd645c2a0d6732be289e581c118ebe066036e (patch) | |
tree | b7bf4ffa3f421689344236d4bab1f94c0c0ca6ed /net/samba/Makefile | |
parent | bfe0dc5b8ce1ba3461e5d3ff7f2913fd82d2aaad (diff) | |
download | pkgsrc-74abd645c2a0d6732be289e581c118ebe066036e.tar.gz |
Fix Samba ability to use LDAP/SSL with a SHA2 certificate
NetBSD's libc and Samba both proide SHA2 function with the same
protoype, but with different private context structures. The
Samba version must not override the libc version, otherwise they
are used when using LDAP/SSL, through libldap/libssl/libcrypto
but libcrtypo expect to use the libc flavor.
Without this fix, Samba cannot connect to a LDAP directory that
has a SHA2-signed certificate. This rather cryptic error is raised
in smbd logs:
error:0D0C5006:asn1 encoding routines:ASN1_item_verify:EVP lib
Diffstat (limited to 'net/samba/Makefile')
-rw-r--r-- | net/samba/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/samba/Makefile b/net/samba/Makefile index 51115caf43a..5c7a7321bdf 100644 --- a/net/samba/Makefile +++ b/net/samba/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.253 2015/02/24 09:54:47 taca Exp $ +# $NetBSD: Makefile,v 1.254 2015/05/29 09:01:09 manu Exp $ DISTNAME= samba-${VERSION} CATEGORIES= net @@ -10,6 +10,7 @@ COMMENT= SMB/CIFS protocol server suite LICENSE= gnu-gpl-v3 VERSION= 3.6.25 +PKGREVISION= 1 CONFLICTS+= ja-samba-[0-9]* pam-smbpass-[0-9]* winbind-[0-9]* |