mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Fixed assignment bugs from Hallvard.
This commit is contained in:
parent
d171cd4f42
commit
a76130b705
2 changed files with 10 additions and 10 deletions
10
configure
vendored
10
configure
vendored
|
|
@ -3433,7 +3433,7 @@ EOF
|
|||
fi
|
||||
|
||||
if test $ol_with_threads = manual ; then
|
||||
$ol_link_threads=yes
|
||||
ol_link_threads=yes
|
||||
|
||||
echo "configure: warning: thread defines and link options must be set manually" 1>&2
|
||||
|
||||
|
|
@ -3680,7 +3680,7 @@ if test $ol_link_threads = no ; then
|
|||
|
||||
if test $ol_with_threads = auto ; then
|
||||
echo "configure: warning: no suitable thread support, disabling threads" 1>&2
|
||||
$ol_with_threads = no
|
||||
ol_with_threads = no
|
||||
fi
|
||||
|
||||
cat >> confdefs.h <<\EOF
|
||||
|
|
@ -4073,7 +4073,7 @@ EOF
|
|||
fi
|
||||
|
||||
if test $ol_with_ldbm_api = manual ; then
|
||||
$ol_link_ldbm=yes
|
||||
ol_link_ldbm=yes
|
||||
|
||||
echo "configure: warning: LDBM defines and link options must be set manually" 1>&2
|
||||
|
||||
|
|
@ -4121,7 +4121,7 @@ fi
|
|||
|
||||
if test $ol_link_ldbm = no -a $ol_with_ldbm_type = btree ; then
|
||||
echo "configure: warning: Could not find LDBM with BTREE support" 1>&2
|
||||
$ol_with_ldbm_api=none
|
||||
ol_with_ldbm_api=none
|
||||
fi
|
||||
|
||||
if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = gdbm ; then
|
||||
|
|
@ -4532,7 +4532,7 @@ if test $ol_link_ldbm = no -a $ol_enable_ldbm != no ; then
|
|||
fi
|
||||
|
||||
echo "configure: warning: disabling LDBM" 1>&2
|
||||
$ol_enable_ldbm=no
|
||||
ol_enable_ldbm=no
|
||||
fi
|
||||
|
||||
if test $ol_enable_wrappers = yes ; then
|
||||
|
|
|
|||
10
configure.in
10
configure.in
|
|
@ -537,7 +537,7 @@ fi
|
|||
|
||||
if test $ol_with_threads = manual ; then
|
||||
dnl User thinks he can manually configure threads.
|
||||
$ol_link_threads=yes
|
||||
ol_link_threads=yes
|
||||
|
||||
AC_MSG_WARN([thread defines and link options must be set manually])
|
||||
|
||||
|
|
@ -557,7 +557,7 @@ if test $ol_link_threads = no ; then
|
|||
|
||||
if test $ol_with_threads = auto ; then
|
||||
AC_MSG_WARN([no suitable thread support, disabling threads])
|
||||
$ol_with_threads = no
|
||||
ol_with_threads = no
|
||||
fi
|
||||
|
||||
AC_DEFINE(NO_THREADS,1)
|
||||
|
|
@ -610,7 +610,7 @@ fi
|
|||
|
||||
if test $ol_with_ldbm_api = manual ; then
|
||||
dnl User thinks he can manually configure LDBM api.
|
||||
$ol_link_ldbm=yes
|
||||
ol_link_ldbm=yes
|
||||
|
||||
AC_MSG_WARN([LDBM defines and link options must be set manually])
|
||||
|
||||
|
|
@ -619,7 +619,7 @@ fi
|
|||
|
||||
if test $ol_link_ldbm = no -a $ol_with_ldbm_type = btree ; then
|
||||
AC_MSG_WARN(Could not find LDBM with BTREE support)
|
||||
$ol_with_ldbm_api=none
|
||||
ol_with_ldbm_api=none
|
||||
fi
|
||||
|
||||
if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = gdbm ; then
|
||||
|
|
@ -659,7 +659,7 @@ if test $ol_link_ldbm = no -a $ol_enable_ldbm != no ; then
|
|||
fi
|
||||
|
||||
AC_MSG_WARN(disabling LDBM)
|
||||
$ol_enable_ldbm=no
|
||||
ol_enable_ldbm=no
|
||||
fi
|
||||
|
||||
if test $ol_enable_wrappers = yes ; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue