diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 17:06:43 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 17:06:43 +0000 |
commit | c9569a1edaf6f93cbeefe0b8dacc02c14dbb6cc9 (patch) | |
tree | 0116f442851cc9734ad663f3825168e4d9852d8a /ftparchive/cachedb.h | |
parent | 77113d1158583ebcc931997786e2a930f6bfa7a6 (diff) |
* Build apt-ftparchive with libdb4.2 rather than libdb2
Author: mdz
Date: 2004-05-08 19:41:01 GMT
* Build apt-ftparchive with libdb4.2 rather than libdb2
- Patch from Clint Adams to do most of the work
- Build-Depends: s/libdb2-dev/libdb4.2-dev/
- Add AC_PREREQ(2.50) to configure.in
- Use db_strerror(err) rather than GlobalError::Errno (which uses strerror)
Diffstat (limited to 'ftparchive/cachedb.h')
-rw-r--r-- | ftparchive/cachedb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ftparchive/cachedb.h b/ftparchive/cachedb.h index 257af20fc..1229b98ef 100644 --- a/ftparchive/cachedb.h +++ b/ftparchive/cachedb.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: cachedb.h,v 1.3 2002/11/22 07:19:51 doogie Exp $ +// $Id: cachedb.h,v 1.4 2004/05/08 19:41:01 mdz Exp $ /* ###################################################################### CacheDB @@ -16,7 +16,7 @@ #pragma interface "cachedb.h" #endif -#include <db2/db.h> +#include <db.h> #include <string> #include <apt-pkg/debfile.h> #include <inttypes.h> |