mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-30 13:30:57 +08:00
regenerate for ITS#8114 and ITS#8303
This commit is contained in:
parent
8470f6e32f
commit
e1da338c78
242
configure
vendored
242
configure
vendored
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
# From configure.in Id: 72cd4c0631fb2e0f29b8d66eb4786d97441f5249 .
|
||||
# From configure.in Id: dcf25e3f8301a00a1aac9034d2381bdc4d8ee274 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.65.
|
||||
#
|
||||
@ -749,6 +749,8 @@ ac_includes_default="\
|
||||
#endif"
|
||||
|
||||
ac_subst_vars='LTLIBOBJS
|
||||
WT_LIBS
|
||||
WT_INCS
|
||||
SLAPD_SQL_INCLUDES
|
||||
SLAPD_SQL_LIBS
|
||||
SLAPD_SQL_LDFLAGS
|
||||
@ -803,6 +805,7 @@ BUILD_CONSTRAINT
|
||||
BUILD_COLLECT
|
||||
BUILD_AUDITLOG
|
||||
BUILD_ACCESSLOG
|
||||
BUILD_WT
|
||||
BUILD_SQL
|
||||
BUILD_SOCK
|
||||
BUILD_SHELL
|
||||
@ -812,6 +815,7 @@ BUILD_PASSWD
|
||||
BUILD_NULL
|
||||
BUILD_NDB
|
||||
BUILD_MONITOR
|
||||
BUILD_ASYNCMETA
|
||||
BUILD_META
|
||||
BUILD_MDB
|
||||
BUILD_LDAP
|
||||
@ -830,6 +834,7 @@ WITH_SASL
|
||||
PLAT
|
||||
LIBSRCS
|
||||
LIBOBJS
|
||||
PKGCONFIG
|
||||
MYSQL
|
||||
LTSTATIC
|
||||
OL_MKDEP_FLAGS
|
||||
@ -977,6 +982,7 @@ enable_hdb
|
||||
enable_ldap
|
||||
enable_mdb
|
||||
enable_meta
|
||||
enable_asyncmeta
|
||||
enable_monitor
|
||||
enable_ndb
|
||||
enable_null
|
||||
@ -986,6 +992,7 @@ enable_relay
|
||||
enable_shell
|
||||
enable_sock
|
||||
enable_sql
|
||||
enable_wt
|
||||
enable_xxslapoverlays
|
||||
enable_overlays
|
||||
enable_accesslog
|
||||
@ -1676,6 +1683,7 @@ SLAPD Backend Options:
|
||||
--enable-ldap enable ldap backend no|yes|mod [no]
|
||||
--enable-mdb enable mdb database backend no|yes|mod [yes]
|
||||
--enable-meta enable metadirectory backend no|yes|mod [no]
|
||||
--enable-asyncmeta enable asynchronous metadirectory backend no|yes|mod [no]
|
||||
--enable-monitor enable monitor backend no|yes|mod [yes]
|
||||
--enable-ndb enable MySQL NDB Cluster backend no|yes|mod [no]
|
||||
--enable-null enable null backend no|yes|mod [no]
|
||||
@ -1685,6 +1693,7 @@ SLAPD Backend Options:
|
||||
--enable-shell enable shell backend no|yes|mod [no]
|
||||
--enable-sock enable sock backend no|yes|mod [no]
|
||||
--enable-sql enable sql backend no|yes|mod [no]
|
||||
--enable-wt enable WiredTiger backend no|yes|mod [no]
|
||||
|
||||
SLAPD Overlay Options:
|
||||
--enable-overlays enable all available overlays no|yes|mod
|
||||
@ -4053,6 +4062,7 @@ Backends="bdb \
|
||||
ldap \
|
||||
mdb \
|
||||
meta \
|
||||
asyncmeta \
|
||||
monitor \
|
||||
ndb \
|
||||
null \
|
||||
@ -4061,7 +4071,8 @@ Backends="bdb \
|
||||
relay \
|
||||
shell \
|
||||
sock \
|
||||
sql"
|
||||
sql \
|
||||
wt"
|
||||
|
||||
# Check whether --enable-xxslapbackends was given.
|
||||
if test "${enable_xxslapbackends+set}" = set; then :
|
||||
@ -4214,6 +4225,27 @@ else
|
||||
fi
|
||||
|
||||
# end --enable-meta
|
||||
# OpenLDAP --enable-asyncmeta
|
||||
|
||||
# Check whether --enable-asyncmeta was given.
|
||||
if test "${enable_asyncmeta+set}" = set; then :
|
||||
enableval=$enable_asyncmeta;
|
||||
ol_arg=invalid
|
||||
for ol_val in no yes mod ; do
|
||||
if test "$enableval" = "$ol_val" ; then
|
||||
ol_arg="$ol_val"
|
||||
fi
|
||||
done
|
||||
if test "$ol_arg" = "invalid" ; then
|
||||
as_fn_error "bad value $enableval for --enable-asyncmeta" "$LINENO" 5
|
||||
fi
|
||||
ol_enable_asyncmeta="$ol_arg"
|
||||
|
||||
else
|
||||
ol_enable_asyncmeta=${ol_enable_backends:-no}
|
||||
fi
|
||||
|
||||
# end --enable-asyncmeta
|
||||
# OpenLDAP --enable-monitor
|
||||
|
||||
# Check whether --enable-monitor was given.
|
||||
@ -4403,6 +4435,27 @@ else
|
||||
fi
|
||||
|
||||
# end --enable-sql
|
||||
# OpenLDAP --enable-wt
|
||||
|
||||
# Check whether --enable-wt was given.
|
||||
if test "${enable_wt+set}" = set; then :
|
||||
enableval=$enable_wt;
|
||||
ol_arg=invalid
|
||||
for ol_val in no yes mod ; do
|
||||
if test "$enableval" = "$ol_val" ; then
|
||||
ol_arg="$ol_val"
|
||||
fi
|
||||
done
|
||||
if test "$ol_arg" = "invalid" ; then
|
||||
as_fn_error "bad value $enableval for --enable-wt" "$LINENO" 5
|
||||
fi
|
||||
ol_enable_wt="$ol_arg"
|
||||
|
||||
else
|
||||
ol_enable_wt=${ol_enable_backends:-no}
|
||||
fi
|
||||
|
||||
# end --enable-wt
|
||||
|
||||
Overlays="accesslog \
|
||||
auditlog \
|
||||
@ -5021,6 +5074,7 @@ elif test $ol_enable_modules != yes &&
|
||||
test $ol_enable_ldap = no &&
|
||||
test $ol_enable_mdb = no &&
|
||||
test $ol_enable_meta = no &&
|
||||
test $ol_enable_asyncmeta = no &&
|
||||
test $ol_enable_monitor = no &&
|
||||
test $ol_enable_ndb = no &&
|
||||
test $ol_enable_null = no &&
|
||||
@ -5029,7 +5083,8 @@ elif test $ol_enable_modules != yes &&
|
||||
test $ol_enable_relay = no &&
|
||||
test $ol_enable_shell = no &&
|
||||
test $ol_enable_sock = no &&
|
||||
test $ol_enable_sql = no ; then
|
||||
test $ol_enable_sql = no &&
|
||||
test $ol_enable_wt = no ; then
|
||||
|
||||
if test $ol_enable_slapd = yes ; then
|
||||
as_fn_error "slapd requires a backend" "$LINENO" 5
|
||||
@ -5044,6 +5099,10 @@ if test $ol_enable_meta/$ol_enable_ldap = yes/no ; then
|
||||
as_fn_error "--enable-meta requires --enable-ldap" "$LINENO" 5
|
||||
fi
|
||||
|
||||
if test $ol_enable_asyncmeta/$ol_enable_ldap = yes/no ; then
|
||||
as_fn_error "--enable-asyncmeta requires --enable-ldap" "$LINENO" 5
|
||||
fi
|
||||
|
||||
if test $ol_enable_lmpasswd = yes ; then
|
||||
if test $ol_with_tls = no ; then
|
||||
as_fn_error "LAN Manager passwords require OpenSSL" "$LINENO" 5
|
||||
@ -5082,6 +5141,7 @@ BUILD_HDB=no
|
||||
BUILD_LDAP=no
|
||||
BUILD_MDB=no
|
||||
BUILD_META=no
|
||||
BUILD_ASYNCMETA=no
|
||||
BUILD_MONITOR=no
|
||||
BUILD_NDB=no
|
||||
BUILD_NULL=no
|
||||
@ -5091,6 +5151,7 @@ BUILD_RELAY=no
|
||||
BUILD_SHELL=no
|
||||
BUILD_SOCK=no
|
||||
BUILD_SQL=no
|
||||
BUILD_WT=no
|
||||
|
||||
BUILD_ACCESSLOG=no
|
||||
BUILD_AUDITLOG=no
|
||||
@ -6910,7 +6971,7 @@ ia64-*-hpux*)
|
||||
;;
|
||||
*-*-irix6*)
|
||||
# Find out which ABI we are using.
|
||||
echo '#line 6913 "configure"' > conftest.$ac_ext
|
||||
echo '#line 6974 "configure"' > conftest.$ac_ext
|
||||
if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
|
||||
(eval $ac_compile) 2>&5
|
||||
ac_status=$?
|
||||
@ -8591,11 +8652,11 @@ else
|
||||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:8594: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:8655: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>conftest.err)
|
||||
ac_status=$?
|
||||
cat conftest.err >&5
|
||||
echo "$as_me:8598: \$? = $ac_status" >&5
|
||||
echo "$as_me:8659: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
# So say no if there are warnings other than the usual output.
|
||||
@ -8853,11 +8914,11 @@ else
|
||||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:8856: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:8917: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>conftest.err)
|
||||
ac_status=$?
|
||||
cat conftest.err >&5
|
||||
echo "$as_me:8860: \$? = $ac_status" >&5
|
||||
echo "$as_me:8921: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
# So say no if there are warnings other than the usual output.
|
||||
@ -8915,11 +8976,11 @@ else
|
||||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:8918: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:8979: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>out/conftest.err)
|
||||
ac_status=$?
|
||||
cat out/conftest.err >&5
|
||||
echo "$as_me:8922: \$? = $ac_status" >&5
|
||||
echo "$as_me:8983: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
||||
then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
@ -10787,7 +10848,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 10790 "configure"
|
||||
#line 10851 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -10885,7 +10946,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 10888 "configure"
|
||||
#line 10949 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -21965,6 +22026,119 @@ fi
|
||||
fi
|
||||
fi
|
||||
|
||||
ol_link_wt=no
|
||||
if test $ol_enable_wt != no ; then
|
||||
# Extract the first word of "pkg-config", so it can be a program name with args.
|
||||
set dummy pkg-config; ac_word=$2
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||
$as_echo_n "checking for $ac_word... " >&6; }
|
||||
if test "${ac_cv_prog_PKGCONFIG+set}" = set; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
if test -n "$PKGCONFIG"; then
|
||||
ac_cv_prog_PKGCONFIG="$PKGCONFIG" # Let the user override the test.
|
||||
else
|
||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||
for as_dir in $PATH
|
||||
do
|
||||
IFS=$as_save_IFS
|
||||
test -z "$as_dir" && as_dir=.
|
||||
for ac_exec_ext in '' $ac_executable_extensions; do
|
||||
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
||||
ac_cv_prog_PKGCONFIG="yes"
|
||||
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||
break 2
|
||||
fi
|
||||
done
|
||||
done
|
||||
IFS=$as_save_IFS
|
||||
|
||||
fi
|
||||
fi
|
||||
PKGCONFIG=$ac_cv_prog_PKGCONFIG
|
||||
if test -n "$PKGCONFIG"; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKGCONFIG" >&5
|
||||
$as_echo "$PKGCONFIG" >&6; }
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
$as_echo "no" >&6; }
|
||||
fi
|
||||
|
||||
|
||||
if test "$PKGCONFIG" != yes ; then
|
||||
as_fn_error "could not locate pkg-config" "$LINENO" 5
|
||||
fi
|
||||
WT_INCS=`pkg-config --cflags wiredtiger`
|
||||
WT_LIBS=`pkg-config --libs wiredtiger`
|
||||
|
||||
save_CFLAGS="$CFLAGS"
|
||||
save_LDFLAGS="$LDFLAGS"
|
||||
CFLAGS="$WT_INCS"
|
||||
CPPFLAGS="$WT_INCS"
|
||||
LDFLAGS="$WT_LIBS"
|
||||
for ac_header in wiredtiger.h
|
||||
do :
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "wiredtiger.h" "ac_cv_header_wiredtiger_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_wiredtiger_h" = x""yes; then :
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define HAVE_WIREDTIGER_H 1
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
done
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for wiredtiger_version in -lwiredtiger" >&5
|
||||
$as_echo_n "checking for wiredtiger_version in -lwiredtiger... " >&6; }
|
||||
if test "${ac_cv_lib_wiredtiger_wiredtiger_version+set}" = set; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
ac_check_lib_save_LIBS=$LIBS
|
||||
LIBS="-lwiredtiger $LIBS"
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
|
||||
/* Override any GCC internal prototype to avoid an error.
|
||||
Use char because int might match the return type of a GCC
|
||||
builtin and then its argument prototype would still apply. */
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
#endif
|
||||
char wiredtiger_version ();
|
||||
int
|
||||
main ()
|
||||
{
|
||||
return wiredtiger_version ();
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_link "$LINENO"; then :
|
||||
ac_cv_lib_wiredtiger_wiredtiger_version=yes
|
||||
else
|
||||
ac_cv_lib_wiredtiger_wiredtiger_version=no
|
||||
fi
|
||||
rm -f core conftest.err conftest.$ac_objext \
|
||||
conftest$ac_exeext conftest.$ac_ext
|
||||
LIBS=$ac_check_lib_save_LIBS
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_wiredtiger_wiredtiger_version" >&5
|
||||
$as_echo "$ac_cv_lib_wiredtiger_wiredtiger_version" >&6; }
|
||||
if test "x$ac_cv_lib_wiredtiger_wiredtiger_version" = x""yes; then :
|
||||
: ok
|
||||
else
|
||||
|
||||
as_fn_error "could not locate wiredtiger library" "$LINENO" 5
|
||||
|
||||
fi
|
||||
|
||||
CFLAGS="$save_CFLAGS"
|
||||
CPPFLAGS="$save_CPPFLAGS"
|
||||
LDFLAGS="$save_LDFLAGS"
|
||||
SLAPD_LIBS="$SLAPD_LIBS \$(WT_LIBS)"
|
||||
ol_link_wt=yes
|
||||
fi
|
||||
|
||||
ol_icu=no
|
||||
for ac_header in unicode/utypes.h
|
||||
do :
|
||||
@ -24290,6 +24464,24 @@ _ACEOF
|
||||
|
||||
fi
|
||||
|
||||
if test "$ol_enable_meta_async" != no ; then
|
||||
BUILD_SLAPD=yes
|
||||
BUILD_ASYNCMETA=$ol_enable_meta_async
|
||||
BUILD_REWRITE=yes
|
||||
if test "$ol_enable_meta_async" = mod ; then
|
||||
SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-asyncmeta"
|
||||
MFLAG=SLAPD_MOD_DYNAMIC
|
||||
else
|
||||
SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-asyncmeta"
|
||||
MFLAG=SLAPD_MOD_STATIC
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define SLAPD_ASYNCMETA $MFLAG
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
if test "$ol_enable_ndb" != no ; then
|
||||
BUILD_SLAPD=yes
|
||||
BUILD_NDB=$ol_enable_ndb
|
||||
@ -24430,6 +24622,23 @@ _ACEOF
|
||||
|
||||
fi
|
||||
|
||||
if test "$ol_link_wt" != no ; then
|
||||
BUILD_SLAPD=yes
|
||||
BUILD_WT=$ol_enable_wt
|
||||
if test "$ol_enable_wt" = mod; then
|
||||
SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-wt"
|
||||
MFLAG=SLAPD_MOD_DYNAMIC
|
||||
else
|
||||
SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-wt"
|
||||
MFLAG=SLAPD_MOD_STATIC
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define SLAPD_WT $MFLAG
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
if test "$ol_enable_accesslog" != no ; then
|
||||
BUILD_ACCESSLOG=$ol_enable_accesslog
|
||||
if test "$ol_enable_accesslog" = mod ; then
|
||||
@ -24859,6 +25068,11 @@ fi
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -24872,7 +25086,7 @@ fi
|
||||
|
||||
|
||||
|
||||
ac_config_files="$ac_config_files Makefile:build/top.mk:Makefile.in:build/dir.mk doc/Makefile:build/top.mk:doc/Makefile.in:build/dir.mk doc/man/Makefile:build/top.mk:doc/man/Makefile.in:build/dir.mk doc/man/man1/Makefile:build/top.mk:doc/man/man1/Makefile.in:build/man.mk doc/man/man3/Makefile:build/top.mk:doc/man/man3/Makefile.in:build/man.mk doc/man/man5/Makefile:build/top.mk:doc/man/man5/Makefile.in:build/man.mk doc/man/man8/Makefile:build/top.mk:doc/man/man8/Makefile.in:build/man.mk clients/Makefile:build/top.mk:clients/Makefile.in:build/dir.mk clients/tools/Makefile:build/top.mk:clients/tools/Makefile.in:build/rules.mk include/Makefile:build/top.mk:include/Makefile.in libraries/Makefile:build/top.mk:libraries/Makefile.in:build/dir.mk libraries/liblber/Makefile:build/top.mk:libraries/liblber/Makefile.in:build/lib.mk:build/lib-shared.mk libraries/libldap/Makefile:build/top.mk:libraries/libldap/Makefile.in:build/lib.mk:build/lib-shared.mk libraries/libldap_r/Makefile:build/top.mk:libraries/libldap_r/Makefile.in:build/lib.mk:build/lib-shared.mk libraries/liblunicode/Makefile:build/top.mk:libraries/liblunicode/Makefile.in:build/lib.mk:build/lib-static.mk libraries/liblutil/Makefile:build/top.mk:libraries/liblutil/Makefile.in:build/lib.mk:build/lib-static.mk libraries/librewrite/Makefile:build/top.mk:libraries/librewrite/Makefile.in:build/lib.mk:build/lib-static.mk servers/Makefile:build/top.mk:servers/Makefile.in:build/dir.mk servers/slapd/Makefile:build/top.mk:servers/slapd/Makefile.in:build/srv.mk servers/slapd/back-bdb/Makefile:build/top.mk:servers/slapd/back-bdb/Makefile.in:build/mod.mk servers/slapd/back-dnssrv/Makefile:build/top.mk:servers/slapd/back-dnssrv/Makefile.in:build/mod.mk servers/slapd/back-hdb/Makefile:build/top.mk:servers/slapd/back-hdb/Makefile.in:build/mod.mk servers/slapd/back-ldap/Makefile:build/top.mk:servers/slapd/back-ldap/Makefile.in:build/mod.mk servers/slapd/back-ldif/Makefile:build/top.mk:servers/slapd/back-ldif/Makefile.in:build/mod.mk servers/slapd/back-mdb/Makefile:build/top.mk:servers/slapd/back-mdb/Makefile.in:build/mod.mk servers/slapd/back-meta/Makefile:build/top.mk:servers/slapd/back-meta/Makefile.in:build/mod.mk servers/slapd/back-monitor/Makefile:build/top.mk:servers/slapd/back-monitor/Makefile.in:build/mod.mk servers/slapd/back-ndb/Makefile:build/top.mk:servers/slapd/back-ndb/Makefile.in:build/mod.mk servers/slapd/back-null/Makefile:build/top.mk:servers/slapd/back-null/Makefile.in:build/mod.mk servers/slapd/back-passwd/Makefile:build/top.mk:servers/slapd/back-passwd/Makefile.in:build/mod.mk servers/slapd/back-perl/Makefile:build/top.mk:servers/slapd/back-perl/Makefile.in:build/mod.mk servers/slapd/back-relay/Makefile:build/top.mk:servers/slapd/back-relay/Makefile.in:build/mod.mk servers/slapd/back-shell/Makefile:build/top.mk:servers/slapd/back-shell/Makefile.in:build/mod.mk servers/slapd/back-sock/Makefile:build/top.mk:servers/slapd/back-sock/Makefile.in:build/mod.mk servers/slapd/back-sql/Makefile:build/top.mk:servers/slapd/back-sql/Makefile.in:build/mod.mk servers/slapd/shell-backends/Makefile:build/top.mk:servers/slapd/shell-backends/Makefile.in:build/srv.mk servers/slapd/slapi/Makefile:build/top.mk:servers/slapd/slapi/Makefile.in:build/lib.mk:build/lib-shared.mk servers/slapd/overlays/Makefile:build/top.mk:servers/slapd/overlays/Makefile.in:build/lib.mk tests/Makefile:build/top.mk:tests/Makefile.in:build/dir.mk tests/run tests/progs/Makefile:build/top.mk:tests/progs/Makefile.in:build/rules.mk"
|
||||
ac_config_files="$ac_config_files Makefile:build/top.mk:Makefile.in:build/dir.mk doc/Makefile:build/top.mk:doc/Makefile.in:build/dir.mk doc/man/Makefile:build/top.mk:doc/man/Makefile.in:build/dir.mk doc/man/man1/Makefile:build/top.mk:doc/man/man1/Makefile.in:build/man.mk doc/man/man3/Makefile:build/top.mk:doc/man/man3/Makefile.in:build/man.mk doc/man/man5/Makefile:build/top.mk:doc/man/man5/Makefile.in:build/man.mk doc/man/man8/Makefile:build/top.mk:doc/man/man8/Makefile.in:build/man.mk clients/Makefile:build/top.mk:clients/Makefile.in:build/dir.mk clients/tools/Makefile:build/top.mk:clients/tools/Makefile.in:build/rules.mk include/Makefile:build/top.mk:include/Makefile.in libraries/Makefile:build/top.mk:libraries/Makefile.in:build/dir.mk libraries/liblber/Makefile:build/top.mk:libraries/liblber/Makefile.in:build/lib.mk:build/lib-shared.mk libraries/libldap/Makefile:build/top.mk:libraries/libldap/Makefile.in:build/lib.mk:build/lib-shared.mk libraries/libldap_r/Makefile:build/top.mk:libraries/libldap_r/Makefile.in:build/lib.mk:build/lib-shared.mk libraries/liblunicode/Makefile:build/top.mk:libraries/liblunicode/Makefile.in:build/lib.mk:build/lib-static.mk libraries/liblutil/Makefile:build/top.mk:libraries/liblutil/Makefile.in:build/lib.mk:build/lib-static.mk libraries/librewrite/Makefile:build/top.mk:libraries/librewrite/Makefile.in:build/lib.mk:build/lib-static.mk servers/Makefile:build/top.mk:servers/Makefile.in:build/dir.mk servers/slapd/Makefile:build/top.mk:servers/slapd/Makefile.in:build/srv.mk servers/slapd/back-bdb/Makefile:build/top.mk:servers/slapd/back-bdb/Makefile.in:build/mod.mk servers/slapd/back-dnssrv/Makefile:build/top.mk:servers/slapd/back-dnssrv/Makefile.in:build/mod.mk servers/slapd/back-hdb/Makefile:build/top.mk:servers/slapd/back-hdb/Makefile.in:build/mod.mk servers/slapd/back-ldap/Makefile:build/top.mk:servers/slapd/back-ldap/Makefile.in:build/mod.mk servers/slapd/back-ldif/Makefile:build/top.mk:servers/slapd/back-ldif/Makefile.in:build/mod.mk servers/slapd/back-mdb/Makefile:build/top.mk:servers/slapd/back-mdb/Makefile.in:build/mod.mk servers/slapd/back-meta/Makefile:build/top.mk:servers/slapd/back-meta/Makefile.in:build/mod.mk servers/slapd/back-asyncmeta/Makefile:build/top.mk:servers/slapd/back-asyncmeta/Makefile.in:build/mod.mk servers/slapd/back-monitor/Makefile:build/top.mk:servers/slapd/back-monitor/Makefile.in:build/mod.mk servers/slapd/back-ndb/Makefile:build/top.mk:servers/slapd/back-ndb/Makefile.in:build/mod.mk servers/slapd/back-null/Makefile:build/top.mk:servers/slapd/back-null/Makefile.in:build/mod.mk servers/slapd/back-passwd/Makefile:build/top.mk:servers/slapd/back-passwd/Makefile.in:build/mod.mk servers/slapd/back-perl/Makefile:build/top.mk:servers/slapd/back-perl/Makefile.in:build/mod.mk servers/slapd/back-relay/Makefile:build/top.mk:servers/slapd/back-relay/Makefile.in:build/mod.mk servers/slapd/back-shell/Makefile:build/top.mk:servers/slapd/back-shell/Makefile.in:build/mod.mk servers/slapd/back-sock/Makefile:build/top.mk:servers/slapd/back-sock/Makefile.in:build/mod.mk servers/slapd/back-sql/Makefile:build/top.mk:servers/slapd/back-sql/Makefile.in:build/mod.mk servers/slapd/back-wt/Makefile:build/top.mk:servers/slapd/back-wt/Makefile.in:build/mod.mk servers/slapd/shell-backends/Makefile:build/top.mk:servers/slapd/shell-backends/Makefile.in:build/srv.mk servers/slapd/slapi/Makefile:build/top.mk:servers/slapd/slapi/Makefile.in:build/lib.mk:build/lib-shared.mk servers/slapd/overlays/Makefile:build/top.mk:servers/slapd/overlays/Makefile.in:build/lib.mk tests/Makefile:build/top.mk:tests/Makefile.in:build/dir.mk tests/run tests/progs/Makefile:build/top.mk:tests/progs/Makefile.in:build/rules.mk"
|
||||
|
||||
|
||||
ac_config_commands="$ac_config_commands default"
|
||||
@ -25544,6 +25758,7 @@ do
|
||||
"servers/slapd/back-ldif/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/back-ldif/Makefile:build/top.mk:servers/slapd/back-ldif/Makefile.in:build/mod.mk" ;;
|
||||
"servers/slapd/back-mdb/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/back-mdb/Makefile:build/top.mk:servers/slapd/back-mdb/Makefile.in:build/mod.mk" ;;
|
||||
"servers/slapd/back-meta/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/back-meta/Makefile:build/top.mk:servers/slapd/back-meta/Makefile.in:build/mod.mk" ;;
|
||||
"servers/slapd/back-asyncmeta/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/back-asyncmeta/Makefile:build/top.mk:servers/slapd/back-asyncmeta/Makefile.in:build/mod.mk" ;;
|
||||
"servers/slapd/back-monitor/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/back-monitor/Makefile:build/top.mk:servers/slapd/back-monitor/Makefile.in:build/mod.mk" ;;
|
||||
"servers/slapd/back-ndb/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/back-ndb/Makefile:build/top.mk:servers/slapd/back-ndb/Makefile.in:build/mod.mk" ;;
|
||||
"servers/slapd/back-null/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/back-null/Makefile:build/top.mk:servers/slapd/back-null/Makefile.in:build/mod.mk" ;;
|
||||
@ -25553,6 +25768,7 @@ do
|
||||
"servers/slapd/back-shell/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/back-shell/Makefile:build/top.mk:servers/slapd/back-shell/Makefile.in:build/mod.mk" ;;
|
||||
"servers/slapd/back-sock/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/back-sock/Makefile:build/top.mk:servers/slapd/back-sock/Makefile.in:build/mod.mk" ;;
|
||||
"servers/slapd/back-sql/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/back-sql/Makefile:build/top.mk:servers/slapd/back-sql/Makefile.in:build/mod.mk" ;;
|
||||
"servers/slapd/back-wt/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/back-wt/Makefile:build/top.mk:servers/slapd/back-wt/Makefile.in:build/mod.mk" ;;
|
||||
"servers/slapd/shell-backends/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/shell-backends/Makefile:build/top.mk:servers/slapd/shell-backends/Makefile.in:build/srv.mk" ;;
|
||||
"servers/slapd/slapi/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/slapi/Makefile:build/top.mk:servers/slapd/slapi/Makefile.in:build/lib.mk:build/lib-shared.mk" ;;
|
||||
"servers/slapd/overlays/Makefile") CONFIG_FILES="$CONFIG_FILES servers/slapd/overlays/Makefile:build/top.mk:servers/slapd/overlays/Makefile.in:build/lib.mk" ;;
|
||||
|
Loading…
Reference in New Issue
Block a user