From: Nathan Bryant Date: Thu, 6 Sep 2001 05:47:30 +0000 (+0000) Subject: check for /usr/include/db3 (for RedHat 6.2; others?) X-Git-Tag: v7.86~6789 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=85c4580e42e8d9cbef300152b731f9ed82c127be check for /usr/include/db3 (for RedHat 6.2; others?) --- diff --git a/citadel/ChangeLog b/citadel/ChangeLog index eba421103..b59767eb3 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -1,4 +1,7 @@ $Log$ + Revision 580.37 2001/09/06 05:47:29 nbryant + check for /usr/include/db3 (for RedHat 6.2; others?) + Revision 580.36 2001/09/06 05:23:14 nbryant #include fix for glibc 2.1.3 @@ -2725,4 +2728,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 453423531..14b7518c6 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -217,7 +217,7 @@ dnl Checks for header files. 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" 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) AC_CHECK_HEADER(resolv.h, [SMTP=modules/libsmtp.la; DOMAIN=domain.c])