diff options
author | Chris Toshok <toshok@src.gnome.org> | 2000-03-27 16:03:59 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2000-03-27 16:03:59 +0800 |
commit | 31d8edbe64669268fc425ea8021fab36261d8327 (patch) | |
tree | d551701da618955d4bd590d06d9bb979348c7ab2 | |
parent | 2e4f332ae7f02625f22583eb5d2de5dba18591ca (diff) | |
download | gsoc2013-evolution-31d8edbe64669268fc425ea8021fab36261d8327.tar gsoc2013-evolution-31d8edbe64669268fc425ea8021fab36261d8327.tar.gz gsoc2013-evolution-31d8edbe64669268fc425ea8021fab36261d8327.tar.bz2 gsoc2013-evolution-31d8edbe64669268fc425ea8021fab36261d8327.tar.lz gsoc2013-evolution-31d8edbe64669268fc425ea8021fab36261d8327.tar.xz gsoc2013-evolution-31d8edbe64669268fc425ea8021fab36261d8327.tar.zst gsoc2013-evolution-31d8edbe64669268fc425ea8021fab36261d8327.zip |
if HAVE_DB_185_H is defined, include it.
svn path=/trunk/; revision=2180
-rw-r--r-- | addressbook/backend/pas/pas-backend-file.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/addressbook/backend/pas/pas-backend-file.c b/addressbook/backend/pas/pas-backend-file.c index 41a5daab8a..1ebe5f91d0 100644 --- a/addressbook/backend/pas/pas-backend-file.c +++ b/addressbook/backend/pas/pas-backend-file.c @@ -8,7 +8,11 @@ #include <gtk/gtksignal.h> #include <fcntl.h> +#ifdef HAVE_DB_185_h +#include <db_185.h> +#else #include <db.h> +#endif #include <pas-backend-file.h> #include <pas-book.h> |