]> git.sur5r.net Git - openldap/commitdiff
Fixed assignment bugs from Hallvard.
authorKurt Zeilenga <kurt@openldap.org>
Wed, 4 Nov 1998 16:36:04 +0000 (16:36 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 4 Nov 1998 16:36:04 +0000 (16:36 +0000)
configure
configure.in

index 202b734de3beb9add27f69269bb27f664f293960..14845555ce4d9cafb0a90cda45247c002ebfb0c9 100755 (executable)
--- 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
index 6ad4d29d1474529051a11494aa02a8f17597a683..a97d01caa02b8b29920835a8e28ebb61377cea0f 100644 (file)
@@ -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