mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-02-23 14:09:39 +08:00
remove more LDBM cruft
This commit is contained in:
parent
2e2d036490
commit
02408c930d
@ -4,7 +4,6 @@ verify basic functionality of the LDAP libraries, slapd, and slurpd.
|
||||
To run all of the tests, type "make test".
|
||||
To run BDB tests, type "make bdb".
|
||||
To run HDB tests, type "make hdb".
|
||||
To run LDBM tests, type "make ldbm".
|
||||
To run SQL tests, define SLAPD_USE_SQL=<rdbms> and type
|
||||
"make sql"; define SLAPD_USE_SQLWRITE=yes
|
||||
to enable write tests as well.
|
||||
|
@ -27,7 +27,6 @@ export SRCDIR TOPSRCDIR LN_S EGREP_CMD
|
||||
AC_bdb=@BUILD_BDB@
|
||||
AC_hdb=@BUILD_HDB@
|
||||
AC_ldap=ldap@BUILD_LDAP@
|
||||
AC_ldbm=@BUILD_LDBM@
|
||||
AC_meta=meta@BUILD_META@
|
||||
AC_monitor=@BUILD_MONITOR@
|
||||
AC_relay=relay@BUILD_RELAY@
|
||||
@ -54,7 +53,7 @@ AC_WITH_MODULES_ENABLED=@WITH_MODULES_ENABLED@
|
||||
AC_ACI_ENABLED=aci@WITH_ACI_ENABLED@
|
||||
AC_THREADS=threads@BUILD_THREAD@
|
||||
|
||||
export AC_bdb AC_hdb AC_ldap AC_ldbm AC_meta AC_monitor AC_relay AC_sql \
|
||||
export AC_bdb AC_hdb AC_ldap AC_meta AC_monitor AC_relay AC_sql \
|
||||
AC_accesslog AC_dynlist AC_pcache AC_ppolicy AC_refint AC_retcode \
|
||||
AC_rwm AC_unique AC_syncprov AC_translucent AC_valsort \
|
||||
AC_dds \
|
||||
@ -113,7 +112,7 @@ while test $# -gt 0 ; do
|
||||
done
|
||||
|
||||
if test -z "$BACKEND" ; then
|
||||
for b in bdb ldbm hdb ; do
|
||||
for b in bdb hdb ; do
|
||||
if eval "test \"\$AC_$b\" != no" ; then
|
||||
BACKEND=$b
|
||||
break
|
||||
|
@ -14,7 +14,7 @@
|
||||
## <http://www.OpenLDAP.org/license.html>.
|
||||
|
||||
case "$BACKEND" in
|
||||
bdb|hdb|ldbm)
|
||||
bdb|hdb)
|
||||
;;
|
||||
*)
|
||||
echo "Test does not support $BACKEND backend"
|
||||
|
@ -25,11 +25,6 @@ if test $TRANSLUCENT = translucentno ; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if test $BACKEND = ldbm ; then
|
||||
echo "Translucent Proxy overlay not qualified for use with LDBM, test skipped"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if test $AC_ldap = ldapno ; then
|
||||
echo "Translucent Proxy overlay requires back-ldap backend, test skipped"
|
||||
exit 0
|
||||
|
@ -14,7 +14,7 @@
|
||||
## <http://www.OpenLDAP.org/license.html>.
|
||||
|
||||
case "$BACKEND" in
|
||||
bdb|hdb|ldbm)
|
||||
bdb|hdb)
|
||||
;;
|
||||
*)
|
||||
echo "Test does not support $BACKEND backend"
|
||||
|
Loading…
Reference in New Issue
Block a user