diff options
author | Justin Lecher <jlec@gentoo.org> | 2017-07-09 17:35:55 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2017-07-09 19:48:30 +0100 |
commit | f642dbad4a32533562e287dbbe0a96d5e48b61a0 (patch) | |
tree | 21210baf96c5895aff8e2e578398f4d23b12c716 /sys-cluster/slurm/files/slurm-17.02.6-glibc-2.25.patch | |
parent | sys-cluster/slurm: Fix compilation error with glibc-2.25 (diff) | |
download | gentoo-f642dbad4a32533562e287dbbe0a96d5e48b61a0.tar.gz gentoo-f642dbad4a32533562e287dbbe0a96d5e48b61a0.tar.bz2 gentoo-f642dbad4a32533562e287dbbe0a96d5e48b61a0.zip |
sys-cluster/slurm: Version Bump
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=621144
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'sys-cluster/slurm/files/slurm-17.02.6-glibc-2.25.patch')
-rw-r--r-- | sys-cluster/slurm/files/slurm-17.02.6-glibc-2.25.patch | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/sys-cluster/slurm/files/slurm-17.02.6-glibc-2.25.patch b/sys-cluster/slurm/files/slurm-17.02.6-glibc-2.25.patch new file mode 100644 index 000000000000..dc48f8475c00 --- /dev/null +++ b/sys-cluster/slurm/files/slurm-17.02.6-glibc-2.25.patch @@ -0,0 +1,53 @@ +commit 056d9ff26b1d2ccac45da3c26a6918f182f8c559 +Author: Justin Lecher <jlec@gentoo.org> +Date: Sun Jul 9 15:54:20 2017 +0100 + + Include sysmacros.h in addition for major() & minor() + + Starting from glibc-2.25 [1] the macros major and minor are only available + from sys/sysmacros.h. This patch uses an autoconf macro to detect the + location and includes the header accordingly. + + 1) + https://sourceware.org/ml/libc-alpha/2017-02/msg00079.html + + Signed-off-by: Justin Lecher <jlec@gentoo.org> + +diff --git a/configure.ac b/configure.ac +index 44699ae095..66d4350d44 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -124,7 +124,7 @@ AC_CHECK_HEADERS(mcheck.h values.h socket.h sys/socket.h \ + AC_HEADER_SYS_WAIT + AC_HEADER_TIME + AC_HEADER_STDC +- ++AC_HEADER_MAJOR + + dnl Checks for structures. + dnl +diff --git a/src/plugins/task/cgroup/task_cgroup_devices.c b/src/plugins/task/cgroup/task_cgroup_devices.c +index 6a09b3d52a..63c0a11c9e 100644 +--- a/src/plugins/task/cgroup/task_cgroup_devices.c ++++ b/src/plugins/task/cgroup/task_cgroup_devices.c +@@ -34,12 +34,20 @@ + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + \*****************************************************************************/ + ++#include "config.h" ++ + #define _GNU_SOURCE + #include <glob.h> + #include <limits.h> + #include <sched.h> + #include <sys/stat.h> + #include <sys/types.h> ++#ifdef MAJOR_IN_MKDEV ++# include <sys/mkdev.h> ++#endif ++#ifdef MAJOR_IN_SYSMACROS ++# include <sys/sysmacros.h> ++#endif + + #include "slurm/slurm.h" + #include "slurm/slurm_errno.h" |