From 65243dffa875030ec3f7ff3ff171df56a57f7634 Mon Sep 17 00:00:00 2001 From: Nathan Bryant Date: Mon, 18 Mar 2002 23:14:04 +0000 Subject: [PATCH] made some changes that should hopefully make configure detect rawhide's db4 rpm. --- citadel/configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/citadel/configure.ac b/citadel/configure.ac index 34d1b555d..8a4c19c8b 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -191,6 +191,8 @@ if test "x$with_db" != xno -a "x$with_gdbm" != xyes; then test "$db_dir" && LDFLAGS="$LDFLAGS -L$db_dir/lib" test "$db_dir" && CPPFLAGS="$CPPFLAGS -I$db_dir/include" || \ + ( test -d /usr/include/db4 && CPPFLAGS="$CPPFLAGS -I/usr/include/db4" ) || \ + ( test -d /usr/local/include/db4 && CPPFLAGS="$CPPFLAGS -I/usr/local/include/db4" ) || \ ( test -d /usr/include/db3 && CPPFLAGS="$CPPFLAGS -I/usr/include/db3" ) || \ ( test -d /usr/local/include/db3 && CPPFLAGS="$CPPFLAGS -I/usr/local/include/db3" ) -- 2.39.2