summaryrefslogtreecommitdiffstats
path: root/linux
diff options
context:
space:
mode:
authorKang-Che Sung (宋岡哲) <Explorer09@gmail.com>2018-02-26 21:15:05 +0800
committerHisham Muhammad <hisham@gobolinux.org>2018-02-26 10:15:05 -0300
commitc01f40eb3e599f55d408448228d95ecee4b2031f (patch)
treeb0d707947e6c6f9e3f14e486c699b4c5206ab209 /linux
parenteed18dd1079a6a5212df4cd56340da62971bb450 (diff)
Fix build failure ('major' undefined) in glibc 2.28. (#746)
glibc 2.28 no longer defines 'major' and 'minor' in <sys/types.h> and requires us to include <sys/sysmacros.h>. (glibc 2.25 starts deprecating the macros in <sys/types.h>.) Now do include the latter if found on the system. At the moment, let's also utilize AC_HEADER_MAJOR in configure script. However as Autoconf 2.69 has not yet updated the AC_HEADER_MAJOR macro to reflect the glibc change [1], so add a workaround code. Fixes #663. Supersedes pull request #729. Reference: [1] https://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commit;h=e17a30e987d7ee695fb4294a82d987ec3dc9b974 Signed-off-by: Kang-Che Sung <explorer09@gmail.com>
Diffstat (limited to 'linux')
-rw-r--r--linux/LinuxProcessList.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/linux/LinuxProcessList.c b/linux/LinuxProcessList.c
index c8ba89d2..158a7ea2 100644
--- a/linux/LinuxProcessList.c
+++ b/linux/LinuxProcessList.c
@@ -26,6 +26,12 @@ in the source distribution for its full text.
#include <assert.h>
#include <sys/types.h>
#include <fcntl.h>
+#ifdef MAJOR_IN_MKDEV
+#include <sys/mkdev.h>
+#elif defined(MAJOR_IN_SYSMACROS) || \
+ (defined(HAVE_SYS_SYSMACROS_H) && HAVE_SYS_SYSMACROS_H)
+#include <sys/sysmacros.h>
+#endif
#ifdef HAVE_DELAYACCT
#include <netlink/attr.h>

© 2014-2024 Faster IT GmbH | imprint | privacy policy