From e98191c20909bdc9097786e1f9878e6d1f7ff2e2 Mon Sep 17 00:00:00 2001 From: Nathan Bryant Date: Mon, 17 Dec 2001 08:14:27 +0000 Subject: [PATCH] restored the checks for /usr/include/db3 and /usr/local/include/db3 in configure. there are too many variations on db installation; this is getting messy :-( --- citadel/ChangeLog | 6 +++++- citadel/configure.ac | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/citadel/ChangeLog b/citadel/ChangeLog index c6772ebd3..877da9239 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -1,4 +1,9 @@ $Log$ + Revision 590.11 2001/12/17 08:14:26 nbryant + restored the checks for /usr/include/db3 and /usr/local/include/db3 + in configure. there are too many variations on db installation; this is + getting messy :-( + Revision 590.10 2001/12/17 08:00:45 nbryant set the pthreads stack size to 128K because FreeBSD's default of 64K seems too small. fixes crashes under FreeBSD. @@ -2975,4 +2980,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant Fri Jul 10 1998 Art Cancro * Initial CVS import - diff --git a/citadel/configure.ac b/citadel/configure.ac index 0b8cb2465..91333cd06 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -222,7 +222,9 @@ AC_HEADER_DIRENT AC_HEADER_STDC AC_HEADER_SYS_WAIT -test "$db_dir" && CPPFLAGS="$CPPFLAGS -I$db_dir/include" +test "$db_dir" && CPPFLAGS="$CPPFLAGS -I$db_dir/include" || \ + ( test -d /usr/include/db3 && CPPFLAGS="$CPPFLAGS -I/usr/include/db3" ) || \ + ( test -d /usr/local/include/db3 && CPPFLAGS="$CPPFLAGS -I/usr/local/include/db3" ) AC_CHECK_HEADERS(curses.h dl.h fcntl.h limits.h termios.h sys/ioctl.h sys/select.h sys/time.h syslog.h unistd.h utmp.h utmpx.h paths.h db.h db3/db.h) -- 2.39.2