Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
1d903ac3
Commit
1d903ac3
authored
Mar 24, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6870
parent
ecc387f9
Changes
7
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
1d903ac3
...
...
@@ -19,6 +19,7 @@ OpenLDAP 2.4.25 Engineering
Fixed windows NT threads build (ITS#6859)
Fixed libldap/lberl/util if/else usage (ITS#6832)
Fixed Windows odbc32 detection (ITS#6125)
Fixed Windows msys build (ITS#6870)
Fixed test020 exit codes (ITS#6404)
Documentation
admin24 guide ldapi usage (ITS#6839)
...
...
libraries/libldap/Makefile.in
View file @
1d903ac3
...
...
@@ -28,7 +28,7 @@ SRCS = bind.c open.c result.c error.c compare.c search.c \
charray.c os-local.c dnssrv.c utf-8.c utf-8-conv.c
\
tls2.c tls_o.c tls_g.c tls_m.c
\
turn.c ppolicy.c dds.c txn.c ldap_sync.c stctrl.c
\
assertion.c deref.c
assertion.c deref.c
ldif.c fetch.c
OBJS
=
bind.lo open.lo result.lo error.lo compare.lo search.lo
\
controls.lo messages.lo references.lo extended.lo cyrus.lo
\
...
...
@@ -41,7 +41,7 @@ OBJS = bind.lo open.lo result.lo error.lo compare.lo search.lo \
charray.lo os-local.lo dnssrv.lo utf-8.lo utf-8-conv.lo
\
tls2.lo tls_o.lo tls_g.lo tls_m.lo
\
turn.lo ppolicy.lo dds.lo txn.lo ldap_sync.lo stctrl.lo
\
assertion.lo deref.lo
assertion.lo deref.lo
ldif.lo fetch.lo
LDAP_INCDIR
=
../../include
LDAP_LIBDIR
=
../../libraries
...
...
libraries/libl
util
/fetch.c
→
libraries/libl
dap
/fetch.c
View file @
1d903ac3
File moved
libraries/libl
util
/ldif.c
→
libraries/libl
dap
/ldif.c
View file @
1d903ac3
File moved
libraries/libldap_r/Makefile.in
View file @
1d903ac3
...
...
@@ -30,7 +30,7 @@ XXSRCS = apitest.c test.c \
charray.c os-local.c dnssrv.c utf-8.c utf-8-conv.c
\
tls2.c tls_o.c tls_g.c tls_m.c
\
turn.c ppolicy.c dds.c txn.c ldap_sync.c stctrl.c
\
assertion.c deref.c
assertion.c deref.c
ldif.c fetch.c
SRCS
=
threads.c rdwr.c rmutex.c tpool.c rq.c
\
thr_posix.c thr_cthreads.c thr_thr.c thr_nt.c
\
thr_pth.c thr_stub.c thr_debug.c
...
...
@@ -48,7 +48,7 @@ OBJS = threads.lo rdwr.lo rmutex.lo tpool.lo rq.lo \
charray.lo os-local.lo dnssrv.lo utf-8.lo utf-8-conv.lo
\
tls2.lo tls_o.lo tls_g.lo tls_m.lo
\
turn.lo ppolicy.lo dds.lo txn.lo ldap_sync.lo stctrl.lo
\
assertion.lo deref.lo
assertion.lo deref.lo
ldif.lo fetch.lo
LDAP_INCDIR
=
../../include
LDAP_LIBDIR
=
../../libraries
...
...
libraries/liblutil/Makefile.in
View file @
1d903ac3
...
...
@@ -29,14 +29,14 @@ XLIBS = $(LIBRARY) $(LDAP_LIBLBER_LA)
SRCS
=
base64.c entropy.c sasl.c signal.c hash.c passfile.c
\
md5.c passwd.c sha1.c getpass.c lockf.c utils.c uuid.c sockpair.c
\
avl.c tavl.c
ldif.c fetch.c
\
avl.c tavl.c
\
testavl.c
\
meter.c
\
@LIBSRCS@
$
(
@PLAT@_SRCS
)
OBJS
=
base64.o entropy.o sasl.o signal.o hash.o passfile.o
\
md5.o passwd.o sha1.o getpass.o lockf.o utils.o uuid.o sockpair.o
\
avl.o tavl.o
ldif.o fetch.o
\
avl.o tavl.o
\
meter.o
\
@LIBOBJS@
$
(
@PLAT@_OBJS
)
...
...
servers/slapd/daemon.c
View file @
1d903ac3
...
...
@@ -557,8 +557,8 @@ static slap_daemon_st slap_daemon[MAX_DAEMON_THREADS];
memset( slap_daemon[t].sd_flags, 0, dtblsize ); \
slapd_ws_sockets[t*2] = wake_sds[t][0]; \
slapd_ws_sockets[t*2+1] = wake_sds[t][1]; \
wake_sds[0] = t*2; \
wake_sds[1] = t*2+1; \
wake_sds[
t][
0] = t*2; \
wake_sds[
t][
1] = t*2+1; \
slap_daemon[t].sd_nfds = t*2 + 2; \
} while ( 0 )
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment