Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-cluster/slurm/files: slurm-2.3.4-glibc2.16.patch
Date: Thu, 23 Aug 2012 09:37:05
Message-Id: 20120823093649.A1C0C2043D@flycatcher.gentoo.org
1 xarthisius 12/08/23 09:36:49
2
3 Added: slurm-2.3.4-glibc2.16.patch
4 Log:
5 Add missing inherit of user.eclass for enew{group,user}. Fix building with glibc-2.16 wrt #430252 by Diego Elio Pettenò <flameeyes@g.o>
6
7 (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sys-cluster/slurm/files/slurm-2.3.4-glibc2.16.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/slurm/files/slurm-2.3.4-glibc2.16.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/slurm/files/slurm-2.3.4-glibc2.16.patch?rev=1.1&content-type=text/plain
14
15 Index: slurm-2.3.4-glibc2.16.patch
16 ===================================================================
17 Fix building with glibc-2.16
18
19 https://bugs.gentoo.org/show_bug.cgi?id=430252
20
21 Patch written by Kacper Kowalik <xarthisius@g.o>
22 --- a/src/common/jobacct_common.h
23 +++ b/src/common/jobacct_common.h
24 @@ -55,6 +55,7 @@
25
26 #include <dirent.h>
27 #include <sys/stat.h>
28 +#include <sys/resource.h>
29
30 #include "slurm/slurmdb.h"
31
32 --- a/src/salloc/salloc.c
33 +++ b/src/salloc/salloc.c
34 @@ -49,6 +49,7 @@
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <sys/param.h>
38 +#include <sys/resource.h>
39 #include <sys/types.h>
40 #include <sys/wait.h>
41 #include <termios.h>
42 --- a/src/sbatch/sbatch.c
43 +++ b/src/sbatch/sbatch.c
44 @@ -48,6 +48,7 @@
45 #include <sys/types.h>
46 #include <sys/stat.h>
47 #include <sys/param.h> /* MAXPATHLEN */
48 +#include <sys/resource.h>
49 #include <fcntl.h>
50
51 #include "slurm/slurm.h"