aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-12-24 22:02:23 +0000
committerIan Kent <raven@themaw.net>2022-05-06 14:21:26 +0800
commit7dd6a6659b1b9d86e8bba5e526c9bfb36534bcd6 (patch)
tree4106efd891a052da69f7d46afc3c67c64bfa2bd3
parentce5f56d5ff91cce521cd50c3ce884fa30a2f3523 (diff)
downloadautofs-7dd6a6659b1b9d86e8bba5e526c9bfb36534bcd6.tar.gz
autofs-5.1.8 - add missing include to hash.h for _WORDSIZE
Fixes build failure on musl like: ``` ../include/hash.h:22:2: error: #error Wordsize not 32 or 64 22 | #error Wordsize not 32 or 64 | ^~~~~ ``` Tested-by: Yixun Lan <dlan@gentoo.org> Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--CHANGELOG1
-rw-r--r--include/hash.h5
2 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 98c8da8d..02f8ef5f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -21,6 +21,7 @@
- musl: fix missing include in hash.h.
- musl: define fallback dummy NSS config path
- musl: avoid internal stat.h definitions.
+- musl: add missing include to hash.h for _WORDSIZE.
19/10/2021 autofs-5.1.8
- add xdr_exports().
diff --git a/include/hash.h b/include/hash.h
index 010acd7e..0f1d7b5d 100644
--- a/include/hash.h
+++ b/include/hash.h
@@ -3,6 +3,11 @@
/* Fast hashing routine for ints, longs and pointers.
(C) 2002 Nadia Yvette Chambers, IBM */
+#ifdef __GLIBC__
+#include <bits/wordsize.h>
+#else
+#include <bits/reg.h>
+#endif
#include <linux/stddef.h>
#include <sys/types.h>
#include <stdint.h>