From: hno <> Date: Tue, 23 May 2006 06:39:05 +0000 (+0000) Subject: dbopen configure test typo X-Git-Tag: SQUID_3_0_PRE4~104 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2b2161bb3eb9208d8c2cc1a7090da21a042136d7;p=thirdparty%2Fsquid.git dbopen configure test typo --- diff --git a/configure b/configure index 5752bc4d94..9ca0b7fa12 100755 --- a/configure +++ b/configure @@ -39072,7 +39072,7 @@ LIBS="$SAVED_LIBS" fi echo "$as_me:$LINENO: result: $ac_cv_dbopen_libdb" >&5 echo "${ECHO_T}$ac_cv_dbopen_libdb" >&6 -if test ac_cv_dbopen_libdb = yes; then +if test $ac_cv_dbopen_libdb = yes; then LIB_DB="-ldb" fi diff --git a/configure.in b/configure.in index 0cb06fb26d..d514db6e80 100644 --- a/configure.in +++ b/configure.in @@ -3,7 +3,7 @@ dnl Configuration input file for Squid dnl dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9) dnl -dnl $Id: configure.in,v 1.413 2006/05/23 00:28:15 hno Exp $ +dnl $Id: configure.in,v 1.414 2006/05/23 00:39:05 hno Exp $ dnl dnl dnl @@ -13,7 +13,7 @@ AC_CONFIG_SRCDIR([src/main.cc]) AC_CONFIG_AUX_DIR(cfgaux) AM_INIT_AUTOMAKE([tar-ustar]) AM_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.413 $)dnl +AC_REVISION($Revision: 1.414 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AM_MAINTAINER_MODE @@ -2308,7 +2308,7 @@ SAVED_LIBS="$LIBS"; LIBS="$LIBS -ldb" ac_cv_dbopen_libdb="no") LIBS="$SAVED_LIBS" ]) -if test ac_cv_dbopen_libdb = yes; then +if test $ac_cv_dbopen_libdb = yes; then LIB_DB="-ldb" fi AC_SUBST(LIB_DB)