Subversion Repositories prayer

Compare Revisions

Ignore whitespace Rev 122 → Rev 123

/trunk/debian/patches/no_db_version_check.patch
0,0 → 1,24
--- a/lib/mydb_db3.c
+++ b/lib/mydb_db3.c
@@ -190,21 +190,10 @@ static int myinit(const char *dbdir, int
static int init(const char *dbdir, int myflags)
{
- int maj, min, patch;
- char *vstr;
int r;
if (dbinit++) return 0;
- vstr = db_version(&maj, &min, &patch);
- if (maj != DB_VERSION_MAJOR || min != DB_VERSION_MINOR ||
- DB_VERSION_PATCH > patch) {
- log_fatal("incorrect version of Berkeley db: "
- "compiled against %d.%d.%d, linked against %d.%d.%d",
- DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
- maj, min, patch);
- }
-
if (!(r = myinit(dbdir, myflags)))
return(0);
/trunk/debian/patches/series
3,3 → 3,4
dlopen_templates.patch
unbrand_cam_template.patch
template_sdk.patch
no_db_version_check.patch
/trunk/debian/changelog
1,9 → 1,13
prayer (1.3.3-dfsg1-2) unstable; urgency=low
prayer (1.3.3-dfsg1-2) unstable; urgency=high
 
* Convert (trivially, since CDBS with quilt was already used) to source
format 3.0 (quilt).
* no_db_version_check.patch: Remove unnecessary and incorrect check that
the major and minor version numbers of the current libdb are the same
as at compile time, but also that the patch number is equal and
greater, which should not be a concern.
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 01 Aug 2010 22:32:37 +0200
-- Magnus Holmgren <holmgren@debian.org> Sat, 07 Aug 2010 17:42:49 +0200
 
prayer (1.3.3-dfsg1-1) unstable; urgency=low