summaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2022-12-26 10:44:12 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2022-12-26 10:44:12 +0100
commit4fb9751b3cc95d296bc564377a740d64c7a70361 (patch)
tree1bd338875f459114090ea0d21100f20b8e498646 /debian/patches
parent9db983e5be6191309f4896b441c704873785a7af (diff)
Add missing PATH_MAX for hurd-i386
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/0115-hurd_PATH_MAX.patch21
-rw-r--r--debian/patches/series1
2 files changed, 22 insertions, 0 deletions
diff --git a/debian/patches/0115-hurd_PATH_MAX.patch b/debian/patches/0115-hurd_PATH_MAX.patch
new file mode 100644
index 0000000..83d30e5
--- /dev/null
+++ b/debian/patches/0115-hurd_PATH_MAX.patch
@@ -0,0 +1,21 @@
+Description: Add missing PATH_MAX for hurd-i386
+Author: Jörg Frings-Fürst <debian@jff.email>
+Forwarded: not-needed
+Last-Update: 2022-12-26
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+Index: trunk/include/ipmitool/ipmi_strings.h
+===================================================================
+--- trunk.orig/include/ipmitool/ipmi_strings.h
++++ trunk/include/ipmitool/ipmi_strings.h
+@@ -36,6 +36,10 @@
+
+ #define CC_STRING(cc) val2str(cc, completion_code_vals)
+
++#ifndef PATH_MAX
++ #define PATH_MAX 1024
++#endif
++
+ extern const struct valstr completion_code_vals[];
+ extern const struct valstr entity_id_vals[];
+ extern const struct valstr entity_device_type_vals[];
diff --git a/debian/patches/series b/debian/patches/series
index 4286537..2af2f95 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -4,3 +4,4 @@
0100-fix_buf_overflow.patch
0010-utf8.patch
0110-unpdate_IANA_URL.patch
+0115-hurd_PATH_MAX.patch