diff options
author | pav <pav@FreeBSD.org> | 2005-06-30 19:03:33 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-06-30 19:03:33 +0800 |
commit | b1fa7460adf57b8ae30621210e6238fb987ee96b (patch) | |
tree | 317a67a0de95867a0666b75ae621c6cc319a0be2 /net/openldap23-server | |
parent | f30d67bcd4ad9b476b1509619b43905b603fba8f (diff) | |
download | freebsd-ports-gnome-b1fa7460adf57b8ae30621210e6238fb987ee96b.tar.gz freebsd-ports-gnome-b1fa7460adf57b8ae30621210e6238fb987ee96b.tar.zst freebsd-ports-gnome-b1fa7460adf57b8ae30621210e6238fb987ee96b.zip |
- Add knobs for Unique and Password Policy overlays
PR: ports/82725
Submitted by: Pawel Wieleba <P.Wieleba@iem.pw.edu.pl>
Approved by: Vsevolod Stakhov <vsevolod@highsecure.ru> (maintainer)
Diffstat (limited to 'net/openldap23-server')
-rw-r--r-- | net/openldap23-server/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net/openldap23-server/Makefile b/net/openldap23-server/Makefile index 585a9193c37a..86c200ad1de9 100644 --- a/net/openldap23-server/Makefile +++ b/net/openldap23-server/Makefile @@ -193,6 +193,14 @@ CONFIGURE_ARGS+= --enable-proxycache CONFIGURE_ARGS+= --enable-aci .endif +.if defined(WITH_UNIQUE) +CONFIGURE_ARGS+= --enable-unique +.endif + +.if defined(WITH_PPOLICY) +CONFIGURE_ARGS+= --enable-ppolicy +.endif + .if defined(WITHOUT_BDB) CONFIGURE_ARGS+= --disable-bdb \ --disable-hdb \ @@ -355,6 +363,8 @@ pre-everything:: @${ECHO} "WITH_DYNGROUP with Dynamic Group overlay" @${ECHO} "WITH_PROXYCACHE with Proxy Cache overlay" @${ECHO} "WITH_ACI with per-object ACIs (experimental)" + @${ECHO} "WITH_UNIQUE with attribute Uniqueness overlay" + @${ECHO} "WITH_PPOLICY with Password Policy overlay" @${ECHO} "WITHOUT_DYNAMIC_BACKENDS build static backends" .if defined(DFOSVERSION) || ${OSVERSION} >= 500038 @${ECHO} "WITH_RCORDER slapd(1) should start early in the boot process" |