Fixed assignment bugs from Hallvard.

This commit is contained in:
Kurt Zeilenga 1998-11-04 16:36:04 +00:00
parent d171cd4f42
commit a76130b705
2 changed files with 10 additions and 10 deletions

10
configure vendored
View file

@ -3433,7 +3433,7 @@ EOF
fi fi
if test $ol_with_threads = manual ; then 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 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 if test $ol_with_threads = auto ; then
echo "configure: warning: no suitable thread support, disabling threads" 1>&2 echo "configure: warning: no suitable thread support, disabling threads" 1>&2
$ol_with_threads = no ol_with_threads = no
fi fi
cat >> confdefs.h <<\EOF cat >> confdefs.h <<\EOF
@ -4073,7 +4073,7 @@ EOF
fi fi
if test $ol_with_ldbm_api = manual ; then 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 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 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 echo "configure: warning: Could not find LDBM with BTREE support" 1>&2
$ol_with_ldbm_api=none ol_with_ldbm_api=none
fi fi
if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = gdbm ; then 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 fi
echo "configure: warning: disabling LDBM" 1>&2 echo "configure: warning: disabling LDBM" 1>&2
$ol_enable_ldbm=no ol_enable_ldbm=no
fi fi
if test $ol_enable_wrappers = yes ; then if test $ol_enable_wrappers = yes ; then

View file

@ -537,7 +537,7 @@ fi
if test $ol_with_threads = manual ; then if test $ol_with_threads = manual ; then
dnl User thinks he can manually configure threads. 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]) 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 if test $ol_with_threads = auto ; then
AC_MSG_WARN([no suitable thread support, disabling threads]) AC_MSG_WARN([no suitable thread support, disabling threads])
$ol_with_threads = no ol_with_threads = no
fi fi
AC_DEFINE(NO_THREADS,1) AC_DEFINE(NO_THREADS,1)
@ -610,7 +610,7 @@ fi
if test $ol_with_ldbm_api = manual ; then if test $ol_with_ldbm_api = manual ; then
dnl User thinks he can manually configure LDBM api. 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]) 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 if test $ol_link_ldbm = no -a $ol_with_ldbm_type = btree ; then
AC_MSG_WARN(Could not find LDBM with BTREE support) AC_MSG_WARN(Could not find LDBM with BTREE support)
$ol_with_ldbm_api=none ol_with_ldbm_api=none
fi fi
if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = gdbm ; then 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 fi
AC_MSG_WARN(disabling LDBM) AC_MSG_WARN(disabling LDBM)
$ol_enable_ldbm=no ol_enable_ldbm=no
fi fi
if test $ol_enable_wrappers = yes ; then if test $ol_enable_wrappers = yes ; then