diff options
author | markd <markd@pkgsrc.org> | 2003-09-18 05:37:15 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2003-09-18 05:37:15 +0000 |
commit | 9b33c14799079f36ab127cd568ed764a8c43845e (patch) | |
tree | 80618236d0a638faf2829f7e237eb5f268ff6eab /databases/openldap/patches/patch-ac | |
parent | 1e1df8953328dc606224283fbb1b3701fab7d76a (diff) | |
download | pkgsrc-9b33c14799079f36ab127cd568ed764a8c43845e.tar.gz |
Update openldap to version 2.1.22.
This release contains the following major enhancements:
* Transactional backend
* Improved Unicode handling
* Improved DN handlng
* Improved Referral handling
* SASL authentication/authorization mapping
* SASL in-directory storage of authentication secrets
* Enhanced administrative limits/access controls
* Meta backend (experimental)
* Monitor backend (experimental)
* Virtual "glue" backend (experimental)
* LDAP C++ API
* Updated LDAP C and TCL APIs
* LDAPv3 extensions, including:
- Enhanced Language Tag/Range Support
- 'Who am i?' Extended Operation
- 'Matched Values' Control
- 'NOOP' Control
plus lots of bug fixes.
Update (to 2.1.20) from Juan RP in PR pkg/21682 with some tidy up and
update to 2.1.22 by Marc Recht and me.
Also closes PR pkg/21217 by Jean-Luc Wasmer and PR pkg/20972 by Jeremy
Reed.
Diffstat (limited to 'databases/openldap/patches/patch-ac')
-rw-r--r-- | databases/openldap/patches/patch-ac | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/databases/openldap/patches/patch-ac b/databases/openldap/patches/patch-ac index 1536493a961..ba822c0e80e 100644 --- a/databases/openldap/patches/patch-ac +++ b/databases/openldap/patches/patch-ac @@ -1,14 +1,15 @@ -$NetBSD: patch-ac,v 1.3 2003/01/19 09:26:33 skrll Exp $ +$NetBSD: patch-ac,v 1.4 2003/09/18 05:37:18 markd Exp $ ---- libraries/libldap_r/thr_posix.c.orig Fri Jan 4 20:38:23 2002 -+++ libraries/libldap_r/thr_posix.c -@@ -103,7 +103,9 @@ ldap_pvt_thread_create( ldap_pvt_thread_ +--- libraries/libldap_r/thr_posix.c.orig 2003-05-25 22:34:36.000000000 +0200 ++++ libraries/libldap_r/thr_posix.c 2003-05-25 22:36:17.000000000 +0200 +@@ -110,8 +110,10 @@ #if defined(LDAP_PVT_THREAD_STACK_SIZE) && LDAP_PVT_THREAD_STACK_SIZE > 0 /* this should be tunable */ +#if defined(_POSIX_THREAD_ATTR_STACKSIZE) pthread_attr_setstacksize( &attr, LDAP_PVT_THREAD_STACK_SIZE ); -+#endif #endif ++#endif - rtn = pthread_create( thread, &attr, start_routine, arg ); + #if HAVE_PTHREADS > 5 + detach = detach ? PTHREAD_CREATE_DETACHED : PTHREAD_CREATE_JOINABLE; |