freebsd-ports/databases/ruby-bdb/files/patch-src__bdb.c
Steve Wills 5072887128 - Minimize patches to just remove the comparison
Pointed out by:		mandree
Pointyhat to:		swills
2014-01-03 01:59:31 +00:00

18 lines
996 B
C

--- ./src/bdb.c.orig 2011-04-06 19:35:39.000000000 +0000
+++ ./src/bdb.c 2014-01-03 01:45:56.336210315 +0000
@@ -166,11 +166,10 @@
rb_raise(rb_eNameError, "module already defined");
}
version = rb_tainted_str_new2(db_version(&major, &minor, &patch));
- if (major != DB_VERSION_MAJOR || minor != DB_VERSION_MINOR
- || patch != DB_VERSION_PATCH) {
- rb_raise(rb_eNotImpError, "\nBDB needs compatible versions of libdb & db.h\n\tyou have db.h version %d.%d.%d and libdb version %d.%d.%d\n",
- DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
- major, minor, patch);
+ if (major != DB_VERSION_MAJOR || minor != DB_VERSION_MINOR) {
+ rb_raise(rb_eNotImpError, "\nBDB needs compatible versions of libdb & db.h\n\tyou have db.h version %d.%d and libdb version %d.%d\n",
+ DB_VERSION_MAJOR, DB_VERSION_MINOR,
+ major, minor);
}
bdb_mMarshal = rb_const_get(rb_cObject, rb_intern("Marshal"));
bdb_id_current_db = rb_intern("__bdb_current_db__");