summaryrefslogtreecommitdiffstats
path: root/source/l/db42/patch.4.2.52.2
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2020-01-11 21:58:08 +0000
committer Eric Hameleers <alien@slackware.com>2020-01-12 08:59:49 +0100
commited2eb16b1115533f646c6a631c2576f139096e6d (patch)
tree67004ad2d9492fbdf4e75891cd15cd262131f8f7 /source/l/db42/patch.4.2.52.2
parent8d94e33d1acc8665c22edbdcfa12173ca254b7ca (diff)
downloadcurrent-ed2eb16b1115533f646c6a631c2576f139096e6d.tar.gz
current-ed2eb16b1115533f646c6a631c2576f139096e6d.tar.xz
Sat Jan 11 21:58:08 UTC 202020200111215808
a/aaa_elflibs-15.0-x86_64-18.txz: Rebuilt. Added: libdb-4.8.so Upgraded: libcap.so.2.30 Removed: libdb-4.2.so a/mcelog-168-x86_64-1.txz: Upgraded. ap/vim-8.2.0111-x86_64-1.txz: Upgraded. d/subversion-1.13.0-x86_64-3.txz: Rebuilt. Recompiled against db48-4.8.30. l/apr-util-1.6.1-x86_64-8.txz: Rebuilt. Recompiled against db48-4.8.30. l/db42-4.2.52-x86_64-4.txz: Removed. l/db44-4.4.20-x86_64-4.txz: Removed. l/redland-1.0.17-x86_64-6.txz: Rebuilt. Recompiled against db48-4.8.30. l/serf-1.3.9-x86_64-4.txz: Rebuilt. Recompiled against db48-4.8.30. l/talloc-2.3.1-x86_64-3.txz: Rebuilt. Fix documentation permissions. Thanks to Xsane. n/httpd-2.4.41-x86_64-2.txz: Rebuilt. Recompiled against db48-4.8.30. n/ipset-7.5-x86_64-1.txz: Upgraded. xap/vim-gvim-8.2.0111-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/l/db42/patch.4.2.52.2')
-rw-r--r--source/l/db42/patch.4.2.52.245
1 files changed, 0 insertions, 45 deletions
diff --git a/source/l/db42/patch.4.2.52.2 b/source/l/db42/patch.4.2.52.2
deleted file mode 100644
index 3dc13c172..000000000
--- a/source/l/db42/patch.4.2.52.2
+++ /dev/null
@@ -1,45 +0,0 @@
-*** lock/lock.c.save 2004-01-30 10:48:33.000000000 -0800
---- lock/lock.c 2004-01-30 10:55:58.000000000 -0800
-***************
-*** 2216,2226 ****
- dp = (u_int8_t *)dp + \
- sizeof(db_pgno_t); \
- } while (0)
-! #define COPY_OBJ(dp, obj) do { \
-! memcpy(dp, obj->data, obj->size); \
-! dp = (u_int8_t *)dp + \
-! ALIGN(obj->size, \
-! sizeof(u_int32_t)); \
- } while (0)
-
- #define GET_COUNT(dp, count) do { \
---- 2216,2227 ----
- dp = (u_int8_t *)dp + \
- sizeof(db_pgno_t); \
- } while (0)
-! #define COPY_OBJ(dp, obj) do { \
-! memcpy(dp, \
-! (obj)->data, (obj)->size); \
-! dp = (u_int8_t *)dp + \
-! ALIGN((obj)->size, \
-! sizeof(u_int32_t)); \
- } while (0)
-
- #define GET_COUNT(dp, count) do { \
-***************
-*** 2339,2345 ****
- for (i = 0; i < nlocks; i = j) {
- PUT_PCOUNT(dp, obj[i].ulen);
- PUT_SIZE(dp, obj[i].size);
-! COPY_OBJ(dp, obj);
- lock = (DB_LOCK_ILOCK *)obj[i].data;
- for (j = i + 1; j <= i + obj[i].ulen; j++) {
- lock = (DB_LOCK_ILOCK *)obj[j].data;
---- 2340,2346 ----
- for (i = 0; i < nlocks; i = j) {
- PUT_PCOUNT(dp, obj[i].ulen);
- PUT_SIZE(dp, obj[i].size);
-! COPY_OBJ(dp, &obj[i]);
- lock = (DB_LOCK_ILOCK *)obj[i].data;
- for (j = i + 1; j <= i + obj[i].ulen; j++) {
- lock = (DB_LOCK_ILOCK *)obj[j].data;