diff options
author | Dan Winship <danw@src.gnome.org> | 2001-06-20 06:58:00 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-06-20 06:58:00 +0800 |
commit | 968af9b95e75fa42c656abd99ab9146d0b3d6cc6 (patch) | |
tree | b105dcc9167ed7139a91e71783378e1249e240cf | |
parent | 42f1f39f3fcd26fe1fc06730f9736f5b8a4b6a0c (diff) | |
download | gsoc2013-evolution-968af9b95e75fa42c656abd99ab9146d0b3d6cc6.tar gsoc2013-evolution-968af9b95e75fa42c656abd99ab9146d0b3d6cc6.tar.gz gsoc2013-evolution-968af9b95e75fa42c656abd99ab9146d0b3d6cc6.tar.bz2 gsoc2013-evolution-968af9b95e75fa42c656abd99ab9146d0b3d6cc6.tar.lz gsoc2013-evolution-968af9b95e75fa42c656abd99ab9146d0b3d6cc6.tar.xz gsoc2013-evolution-968af9b95e75fa42c656abd99ab9146d0b3d6cc6.tar.zst gsoc2013-evolution-968af9b95e75fa42c656abd99ab9146d0b3d6cc6.zip |
Tweak the db3 header check to like our RH7 build machine again.
* configure.in: Tweak the db3 header check to like our RH7 build
machine again.
svn path=/trunk/; revision=10308
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2001-06-19 Dan Winship <danw@ximian.com> + + * configure.in: Tweak the db3 header check to like our RH7 build + machine again. + 2001-06-19 Kevin Breit <battery841@mediaone.net> * doc/C/usage-mail.sgml: Basic edits diff --git a/configure.in b/configure.in index ed08144297..bc020579ad 100644 --- a/configure.in +++ b/configure.in @@ -280,7 +280,7 @@ AC_SUBST(DB3_CFLAGS) CPPFLAGS_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $DB3_CFLAGS" -AC_CHECK_HEADERS(db3/db.h db.h, break) +AC_CHECK_HEADERS(db.h db3/db.h, break) AC_CACHE_CHECK([db3 header version], ac_cv_db3_header_version, [ |