From: tomo Date: Sun, 14 May 2006 11:58:45 +0000 (+0000) Subject: Code to detect version of Berkeley DB for Fink is moved into the X-Git-Tag: chise-base-0_23~16 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=b7868e6da0088a3e09a014e7bf0252cc85da93ad;p=chise%2Fchise-base.git Code to detect version of Berkeley DB for Fink is moved into the if-clause about Fink is used. --- diff --git a/configure.in b/configure.in index 471c646..072a165 100644 --- a/configure.in +++ b/configure.in @@ -29,12 +29,12 @@ if test -d /sw/include; then xemacs_site_includes="/sw/include" xemacs_site_libraries="/sw/lib" xemacs_opts="--with-dialogs=athena --with-widgets=athena --with-athena=3d" -fi -if test -f /sw/include/db3/db.h; then - xemacs_site_includes="$xemacs_site_includes:/sw/include/db3" -elif test -f /sw/include/db4/db.h; then - xemacs_site_includes="$xemacs_site_includes:/sw/include/db4" + if test -f /sw/include/db3/db.h; then + xemacs_site_includes="$xemacs_site_includes:/sw/include/db3" + elif test -f /sw/include/db4/db.h; then + xemacs_site_includes="$xemacs_site_includes:/sw/include/db4" + fi fi if test "$xemacs_site_includes" != ""; then