From: Art Cancro Date: Wed, 20 Feb 2019 18:41:38 +0000 (-0500) Subject: Do not check for DB_H definition anymore. X-Git-Tag: v939~307 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=9c1d903de67b0f7c570176f2c7e1253c92277baa Do not check for DB_H definition anymore. --- diff --git a/citadel/configure.ac b/citadel/configure.ac index a513f5895..025078720 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -908,8 +908,6 @@ AC_CACHE_CHECK([the weather], ac_cv_weather, [ ]) - - AC_CACHE_CHECK([under the bed], ac_cv_under_the_bed, [ number=`date | cut -c 19` case $number in diff --git a/citadel/database.c b/citadel/database.c index a07e48ae7..e8ec78d44 100644 --- a/citadel/database.c +++ b/citadel/database.c @@ -33,10 +33,7 @@ #include #include -#ifdef HAVE_DB_H #include -#error was not found by configure. Install the Berkeley DB development package. -#endif #if DB_VERSION_MAJOR < 5 #error Citadel requires Berkeley DB v5.0 or newer. Please upgrade. diff --git a/citadel/sysdep_decls.h b/citadel/sysdep_decls.h index 781d2c026..89348bf37 100644 --- a/citadel/sysdep_decls.h +++ b/citadel/sysdep_decls.h @@ -9,10 +9,7 @@ #include #endif -#ifdef HAVE_DB_H #include -#error was not found by configure. Install the Berkeley DB development package. -#endif #if DB_VERSION_MAJOR < 5 #error Citadel requires Berkeley DB v5 or newer. Please upgrade. diff --git a/citadel/threads.h b/citadel/threads.h index 28f73b520..21e790530 100644 --- a/citadel/threads.h +++ b/citadel/threads.h @@ -11,10 +11,7 @@ #include #include -#ifdef HAVE_DB_H #include -#error was not found by configure. Install the Berkeley DB development package. -#endif #include "server.h" #include "sysdep_decls.h"