diff options
author | Justin Lecher <jlec@gentoo.org> | 2017-04-30 12:00:58 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2017-04-30 12:01:09 +0100 |
commit | 57ccd5f44dfedde8cbbff4637205d6d9c6667680 (patch) | |
tree | 2d31e3a92f6c6820d9617905e9c4001179edde05 /sys-cluster/singularity/files | |
parent | app-misc/grc: Version Bump and Py3.6 support (diff) | |
download | gentoo-57ccd5f44dfedde8cbbff4637205d6d9c6667680.tar.gz gentoo-57ccd5f44dfedde8cbbff4637205d6d9c6667680.tar.bz2 gentoo-57ccd5f44dfedde8cbbff4637205d6d9c6667680.zip |
sys-cluster/singularity: Version Bump
Fix for glibc-2.25
https://github.com/singularityware/singularity/pull/648
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=617082
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'sys-cluster/singularity/files')
-rw-r--r-- | sys-cluster/singularity/files/singularity-2.2.1-glibc-2.25.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sys-cluster/singularity/files/singularity-2.2.1-glibc-2.25.patch b/sys-cluster/singularity/files/singularity-2.2.1-glibc-2.25.patch new file mode 100644 index 000000000000..e550811dc676 --- /dev/null +++ b/sys-cluster/singularity/files/singularity-2.2.1-glibc-2.25.patch @@ -0,0 +1,28 @@ + src/lib/loop-control.c | 1 + + src/lib/mount/dev/dev.c | 1 + + 2 files changed, 2 insertions(+) + +diff --git a/src/lib/loop-control.c b/src/lib/loop-control.c +index f9ab2d6f..4bfed843 100644 +--- a/src/lib/loop-control.c ++++ b/src/lib/loop-control.c +@@ -26,6 +26,7 @@ + #include <sys/file.h> + #include <sys/stat.h> + #include <sys/types.h> ++#include <sys/sysmacros.h> + #include <errno.h> + #include <string.h> + #include <fcntl.h> +diff --git a/src/lib/mount/dev/dev.c b/src/lib/mount/dev/dev.c +index 547157a4..c994c264 100644 +--- a/src/lib/mount/dev/dev.c ++++ b/src/lib/mount/dev/dev.c +@@ -25,6 +25,7 @@ + #include <sys/mount.h> + #include <sys/stat.h> + #include <sys/types.h> ++#include <sys/sysmacros.h> + #include <unistd.h> + #include <stdlib.h> + |