From f320c7f2b583a6554dc50e08f566d4b956249135 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 7 Jul 2008 13:20:07 +0000 Subject: [PATCH] Renamed database_sleepycat.c to database.c because it reflects the fact that we only have one backend store available; and because Sleepycat Software no longer exists. --- citadel/configure.ac | 4 ++-- citadel/{database_sleepycat.c => database.c} | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename citadel/{database_sleepycat.c => database.c} (99%) diff --git a/citadel/configure.ac b/citadel/configure.ac index 3a330ea8e..81e5eae6a 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -196,7 +196,7 @@ AC_ARG_ENABLE(pie, [ --enable-pie build position-independent executa AC_ARG_WITH(pam, [ --with-pam use PAM if present (see PAM.txt before you try this)]) AC_ARG_WITH(kthread, [ --with-kthread use kernel threads (on FreeBSD) (not recommended yet)]) -AC_ARG_WITH(db, [ --with-db@<:@=DIR@:>@ use Sleepycat DB 3.x @<:@DIR=/usr/local/BerkeleyDB.3.@<:@123@:>@@:>@]) +AC_ARG_WITH(db, [ --with-db@<:@=DIR@:>@ use Berkeley DB 3.x @<:@DIR=/usr/local/BerkeleyDB.3.@<:@123@:>@@:>@]) AC_ARG_WITH(ssl, [ --with-ssl=PATH Specify path to OpenSSL installation ], [ @@ -603,7 +603,7 @@ if test "x$with_db" != xno; then AC_CHECK_DB([db db-4.1 db-4 db4], [ - DATABASE=database_sleepycat.c + DATABASE=database.c ], AC_MSG_ERROR([[Can not locate a suitable Berkeley DB library. Use --with-db=PATH to specify diff --git a/citadel/database_sleepycat.c b/citadel/database.c similarity index 99% rename from citadel/database_sleepycat.c rename to citadel/database.c index 7b3823ff6..891e31fb5 100644 --- a/citadel/database_sleepycat.c +++ b/citadel/database.c @@ -1,12 +1,12 @@ /* * $Id$ * - * Sleepycat (Berkeley) DB driver for Citadel + * This is a data store backend for the Citadel server which uses Berkeley DB. * */ /***************************************************************************** - Tunable configuration parameters for the Sleepycat DB back end + Tunable configuration parameters for the Berkeley DB back end *****************************************************************************/ /* Citadel will checkpoint the db at the end of every session, but only if -- 2.30.2