From: Kurt Zeilenga Date: Wed, 4 Nov 1998 16:36:04 +0000 (+0000) Subject: Fixed assignment bugs from Hallvard. X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~1224 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a76130b70533c2c5ff46d1a5469dc0125d0f272a;p=openldap Fixed assignment bugs from Hallvard. --- diff --git a/configure b/configure index 202b734de3..14845555ce 100755 --- a/configure +++ b/configure @@ -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 diff --git a/configure.in b/configure.in index 6ad4d29d14..a97d01caa0 100644 --- a/configure.in +++ b/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