From: pdmef Date: Mon, 25 Jul 2005 20:06:07 +0000 (+0000) Subject: Rocco Rutte: X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=commitdiff_plain;h=5b5275063730518006979a40a3ff9c994886ee3f Rocco Rutte: - properly quote arg to AC_MSG_ERROR to really make configure bail out if no DB library could be found git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@346 e385b8ad-14ed-0310-8656-cc95a2468c6d --- diff --git a/configure.in b/configure.in index 62515b2..eafe515 100644 --- a/configure.in +++ b/configure.in @@ -918,7 +918,7 @@ AC_ARG_ENABLE(hcache, AC_HELP_STRING([--enable-hcache], [Enable header caching]) LIBS="$OLDLIBS -L$BDB_LIB_DIR -l$BDB_LIB" AC_DEFINE(HAVE_DB4, 1, [Sleepycat DB4 Support]) else - AC_MSG_ERROR(You need QDBM, GDBM or Sleepycat DB4 for --enable-hcache) + AC_MSG_ERROR([You need one of: QDBM, GDBM or Sleepycat DB4 for --enable-hcache]) fi fi]) dnl -- end cache --