diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/backend/pas/pas-backend-file.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 515ab337b2..746f2933b3 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2000-08-14 Peter Williams <peterw@helixcode.com> + + * backend/pas/pas-backend-file.c: Include the proper db1/db.h + as in RedHat 7.0 -- patch from Kenny Graunke <kwg@teleport.com> + 2000-08-13 Chris Toshok <toshok@helixcode.com> * conduit/Makefile.am (libaddress_conduit_la_SOURCES): add diff --git a/addressbook/backend/pas/pas-backend-file.c b/addressbook/backend/pas/pas-backend-file.c index 3d7e443f21..3cf0586afe 100644 --- a/addressbook/backend/pas/pas-backend-file.c +++ b/addressbook/backend/pas/pas-backend-file.c @@ -14,8 +14,12 @@ #ifdef HAVE_DB_185_H #include <db_185.h> #else +#ifdef HAVE_DB1_DB_H +#include <db1/db.h> +#else #include <db.h> #endif +#endif #include "pas-backend-file.h" #include "pas-book.h" |