Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
6c1d48aa
Commit
6c1d48aa
authored
Jan 04, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6684
parent
4d52e10b
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
6c1d48aa
...
...
@@ -83,6 +83,8 @@ OpenLDAP 2.4.24 Engineering
Fixed slapo-syncprov sessionlog ordering (ITS#6716)
Fixed slapo-translucent entry leak (ITS#6746)
Fixed contrib/autogroup LDAP URI with attribute filter (ITS#6536)
Fixed contrib/autogroup install location (ITS#6684)
Fixed contrib/autogroup crash with ppolicy (ITS#6684)
Fixed contrib/nssov to only close socket on shutdown (ITS#6676)
Fixed contrib/nssov multi platform support (ITS#6604)
Build Environment
...
...
contrib/slapd-modules/autogroup/Makefile
View file @
6c1d48aa
...
...
@@ -2,6 +2,13 @@ LIBTOOL=../../../libtool
CPPFLAGS
+=
-I
../../../include
-I
../../../servers/slapd
ldap_subdir
=
openldap
prefix
=
/usr/local
exec_prefix
=
$(prefix)
libdir
=
$(exec_prefix)
/lib
libexecdir
=
$(exec_prefix)
/libexec
moduledir
=
$(exec_prefix)
/libexec/
$(ldap_subdir)
all
:
autogroup.la
autogroup.lo
:
autogroup.c
...
...
@@ -9,12 +16,12 @@ autogroup.lo: autogroup.c
autogroup.la
:
autogroup.lo
$(LIBTOOL)
--mode
=
link
$(CC)
-version-info
0:0:0
\
-rpath
$(
PREFIX)
/lib
-module
-o
$@
$?
-rpath
$(
libdir)
-module
-o
$@
$?
clean
:
rm
-f
autogroup.lo autogroup.la
install
:
autogroup.la
mkdir
-p
$(
PREFIX)
/lib/openldap
$(LIBTOOL)
--mode
=
install cp
autogroup.la
$(
PREFIX)
/lib/openldap
$(LIBTOOL)
--finish
$(
PREFIX)
/lib
mkdir
-p
$(
DESTDIR)$(moduledir)
$(LIBTOOL)
--mode
=
install cp
autogroup.la
$(
DESTDIR)$(moduledir)
$(LIBTOOL)
--finish
$(
DESTDIR)$(moduledir)
contrib/slapd-modules/autogroup/autogroup.c
View file @
6c1d48aa
...
...
@@ -1714,7 +1714,7 @@ autogroup_db_open(
Debug
(
LDAP_DEBUG_TRACE
,
"==> autogroup_db_open
\n
"
,
0
,
0
,
0
);
if
(
agi
==
NULL
)
{
if
(
agi
==
NULL
||
!
(
slapMode
&
SLAP_SERVER_MODE
)
)
{
return
0
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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