summarylogtreecommitdiffstats
path: root/fix-build-bareos.patch
diff options
context:
space:
mode:
authorkhvalera2023-03-03 00:22:26 +0200
committerkhvalera2023-03-03 00:22:26 +0200
commit0fc12db76364adbe4765135289876a57ab53a817 (patch)
treeccf351d54a8239e5d4982e5389ab9b4a5f0cfc9f /fix-build-bareos.patch
parent98ecb1223c8436c4e78fd3e2104023e7c5728b99 (diff)
downloadaur-0fc12db76364adbe4765135289876a57ab53a817.tar.gz
22.0.2
Diffstat (limited to 'fix-build-bareos.patch')
-rw-r--r--fix-build-bareos.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/fix-build-bareos.patch b/fix-build-bareos.patch
deleted file mode 100644
index e0b963be4e2e..000000000000
--- a/fix-build-bareos.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- a/core/src/droplet/libdroplet/src/utils.c 2021-04-16 00:09:37.856912334 +0300
-+++ b/core/src/droplet/libdroplet/src/utils.c 2021-04-16 00:32:28.058300432 +0300
-@@ -33,7 +33,7 @@
- */
- #include <dropletp.h>
- #include <linux/xattr.h>
--#include <attr/xattr.h>
-+#include <sys/xattr.h>
- #include <errno.h>
-
- /** @file */
---- a/core/src/droplet/libdroplet/include/droplet/cdmi/crcmodel.h 2021-04-16 17:25:43.613478257 +0300
-+++ b/core/src/droplet/libdroplet/include/droplet/cdmi/crcmodel.h 2021-04-16 17:31:53.449697759 +0300
-@@ -78,7 +78,7 @@
- #ifndef DONE_STYLE
-
- typedef unsigned long ulong;
--typedef unsigned bool;
-+/*typedef unsigned bool;*/
- typedef unsigned char * p_ubyte_;
-
- #ifndef TRUE
-@@ -107,8 +107,8 @@
- int cm_width; /* Parameter: Width in bits [8,32]. */
- ulong cm_poly; /* Parameter: The algorithm's polynomial. */
- ulong cm_init; /* Parameter: Initial register value. */
-- bool cm_refin; /* Parameter: Reflect input bytes? */
-- bool cm_refot; /* Parameter: Reflect output CRC? */
-+ _Bool cm_refin; /* Parameter: Reflect input bytes? */
-+ _Bool cm_refot; /* Parameter: Reflect output CRC? */
- ulong cm_xorot; /* Parameter: XOR this to output CRC. */
-
- ulong cm_reg; /* Context: Context during execution. */
---- a/core/src/droplet/libdroplet/src/backend/posix/reqbuilder.c 2021-04-16 17:32:41.619204579 +0300
-+++ b/core/src/droplet/libdroplet/src/backend/posix/reqbuilder.c 2021-04-16 17:33:54.938453657 +0300
-@@ -39,7 +39,7 @@
- #include <dirent.h>
- #include <sys/types.h>
- #include <linux/xattr.h>
--#include <attr/xattr.h>
-+#include <sys/xattr.h>
- #include <utime.h>
- #include <pwd.h>
- #include <grp.h>