diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-06-30 12:20:54 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-06-30 12:20:54 +0000 |
commit | b54ecc47e7cec157eaa7a8ab89f9ed2342f3fbda (patch) | |
tree | 693de7c7c26fd0982419a9c1e0672dac0cd899e1 /net/openldap23-server | |
parent | 5368811e5d3e4b930af3b700cb4dcb303df0e2b8 (diff) | |
download | ports-b54ecc47e7cec157eaa7a8ab89f9ed2342f3fbda.tar.gz ports-b54ecc47e7cec157eaa7a8ab89f9ed2342f3fbda.zip |
Notes
Diffstat (limited to 'net/openldap23-server')
-rw-r--r-- | net/openldap23-server/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/net/openldap23-server/Makefile b/net/openldap23-server/Makefile index 86c200ad1de9..8c1922e65d02 100644 --- a/net/openldap23-server/Makefile +++ b/net/openldap23-server/Makefile @@ -167,8 +167,6 @@ BACKEND_ENABLE= "yes" BACKEND_PLIST= "@comment " .endif -CONFIGURE_ARGS+= --disable-syncprov - CONFIGURE_ARGS+= --localstatedir=${LOCALSTATEDIR} \ --enable-ldbm=${BACKEND_ENABLE} \ --enable-crypt \ @@ -194,11 +192,17 @@ CONFIGURE_ARGS+= --enable-aci .endif .if defined(WITH_UNIQUE) -CONFIGURE_ARGS+= --enable-unique +CONFIGURE_ARGS+= --enable-unique .endif .if defined(WITH_PPOLICY) -CONFIGURE_ARGS+= --enable-ppolicy +CONFIGURE_ARGS+= --enable-ppolicy +.endif + +.if defined(WITH_SYNCPROV) +CONFIGURE_ARGS+= --enable-syncprov +.else +CONFIGURE_ARGS+= --disable-syncprov .endif .if defined(WITHOUT_BDB) @@ -365,6 +369,7 @@ pre-everything:: @${ECHO} "WITH_ACI with per-object ACIs (experimental)" @${ECHO} "WITH_UNIQUE with attribute Uniqueness overlay" @${ECHO} "WITH_PPOLICY with Password Policy overlay" + @${ECHO} "WITH_SYNCPROV with Syncprov 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" |