Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
22490d01
Commit
22490d01
authored
20 years ago
by
Pierangelo Masarati
Browse files
Options
Downloads
Patches
Plain Diff
add dynlist build stuff
parent
e7fef144
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure.in
+16
-1
16 additions, 1 deletion
configure.in
servers/slapd/overlays/Makefile.in
+5
-0
5 additions, 0 deletions
servers/slapd/overlays/Makefile.in
with
21 additions
and
1 deletion
configure.in
+
16
−
1
View file @
22490d01
...
...
@@ -242,7 +242,7 @@ OL_ARG_ENABLE(sql,[ --enable-sql enable sql backend no|yes|mod],
dnl ----------------------------------------------------------------
dnl SLAPD Overlay Options
Overlays="denyop dyngroup glue lastmod ppolicy proxycache rwm \
Overlays="denyop dyngroup
dynlist
glue lastmod ppolicy proxycache rwm \
refint syncprov translucent unique"
AC_ARG_WITH(xxslapoverlays,[
...
...
@@ -254,6 +254,8 @@ OL_ARG_ENABLE(denyop,[ --enable-denyop Deny Operation overlay no|yes|mod]
no, [no yes mod])
OL_ARG_ENABLE(dyngroup,[ --enable-dyngroup Dynamic Group overlay no|yes|mod],
no, [no yes mod])
OL_ARG_ENABLE(dynlist,[ --enable-dynlist Dynamic List overlay no|yes|mod],
no, [no yes mod])
OL_ARG_ENABLE(glue,[ --enable-glue Backend Glue overlay no|yes|mod],
yes, [no yes mod])
OL_ARG_ENABLE(lastmod,[ --enable-lastmod Last Modification overlay no|yes|mod],
...
...
@@ -523,6 +525,7 @@ BUILD_SQL=no
BUILD_CHAIN=no
BUILD_DENYOP=no
BUILD_DYNGROUP=no
BUILD_DYNLIST=no
BUILD_GLUE=no
BUILD_LASTMOD=no
BUILD_PPOLICY=no
...
...
@@ -2781,6 +2784,17 @@ if test "$ol_enable_dyngroup" != no ; then
AC_DEFINE_UNQUOTED(SLAPD_OVER_DYNGROUP,$MFLAG,[define for Dynamic Group overlay])
fi
if test "$ol_enable_dynlist" != no ; then
BUILD_DYNLIST=$ol_enable_dynlist
if test "$ol_enable_dynlist" = mod ; then
MFLAG=SLAPD_MOD_DYNAMIC
SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS dynlist.la"
else
MFLAG=SLAPD_MOD_STATIC
fi
AC_DEFINE_UNQUOTED(SLAPD_OVER_DYNLIST,$MFLAG,[define for Dynamic List overlay])
fi
if test "$ol_enable_glue" != no ; then
BUILD_GLUE=$ol_enable_glue
if test "$ol_enable_glue" = mod ; then
...
...
@@ -2940,6 +2954,7 @@ dnl overlays
AC_SUBST(BUILD_CHAIN)
AC_SUBST(BUILD_DENYOP)
AC_SUBST(BUILD_DYNGROUP)
AC_SUBST(BUILD_DYNLIST)
AC_SUBST(BUILD_GLUE)
AC_SUBST(BUILD_LASTMOD)
AC_SUBST(BUILD_PPOLICY)
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/overlays/Makefile.in
+
5
−
0
View file @
22490d01
...
...
@@ -16,6 +16,7 @@
SRCS
=
overlays.c
\
denyop.c
\
dyngroup.c
\
dynlist.c
\
glue.c
\
lastmod.c
\
pcache.c
\
...
...
@@ -28,6 +29,7 @@ SRCS = overlays.c \
OBJS
=
overlays.lo
\
denyop.lo
\
dyngroup.lo
\
dynlist.lo
\
glue.lo
\
lastmod.lo
\
pcache.lo
\
...
...
@@ -59,6 +61,9 @@ denyop.la : denyop.lo $(@PLAT@_LINK_LIBS)
dyngroup.la
:
dyngroup.lo $(@PLAT@_LINK_LIBS)
$(
LTLINK_MOD
)
-module
-o
$@
dyngroup.lo version.lo
$(
LINK_LIBS
)
dynlist.la
:
dynlist.lo $(@PLAT@_LINK_LIBS)
$(
LTLINK_MOD
)
-module
-o
$@
dynlist.lo version.lo
$(
LINK_LIBS
)
glue.la
:
glue.lo $(@PLAT@_LINK_LIBS)
$(
LTLINK_MOD
)
-module
-o
$@
glue.lo version.lo
$(
LINK_LIBS
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment