diff --git a/src/libscotch/library.h b/src/libscotch/library.h index 1891c19..ecc0533 100644 --- a/src/libscotch/library.h +++ b/src/libscotch/library.h @@ -67,6 +67,8 @@ /*+ Integer type. +*/ +#include + typedef DUMMYIDX SCOTCH_Idx; typedef DUMMYINT SCOTCH_Num; diff --git a/src/libscotchmetis/library_metis.h b/src/libscotchmetis/library_metis.h index e6767e1..04e71c3 100644 --- a/src/libscotchmetis/library_metis.h +++ b/src/libscotchmetis/library_metis.h @@ -99,6 +99,7 @@ typedef enum { */ #ifndef SCOTCH_H /* In case "scotch.h" not included before */ +#include typedef DUMMYINT SCOTCH_Num; #endif /* SCOTCH_H */ diff --git a/src/libscotchmetis/library_parmetis.h b/src/libscotchmetis/library_parmetis.h index 6d2f0b0..3c803fc 100644 --- a/src/libscotchmetis/library_parmetis.h +++ b/src/libscotchmetis/library_parmetis.h @@ -106,6 +106,7 @@ typedef enum { */ #ifndef SCOTCH_H /* In case "scotch.h" not included before */ +#include typedef DUMMYINT SCOTCH_Num; #endif /* SCOTCH_H */ db56495f39898a04d27b899f1c38174dc92498c0'>refslogtreecommitdiff
AgeCommit message (Expand)Author
2020-12-06Revert "linux-container: Correct test for unprivileged user namespace support."...This broke 'guix environment --container' on non-Debian distributions. Fixes <https://bugs.gnu.org/45066>. Reported by luhux <luhux@outlook.com>. This reverts commit 8bc5ca5160db3d82bd5b6b2b7ed80c96f42bd33e. Marius Bakke
2020-12-03linux-container: Correct test for unprivileged user namespace support....Fixes <https://bugs.gnu.org/31977>. Reported by Paul Garlick <pgarlick@tourbillion-technology.com>. * gnu/build/linux-container.scm (unprivileged-user-namespace-supported?): Return #f when the 'userns-file' does not exist. Paul Garlick
2020-10-01linux-container: Reset jailed root permissions....* gnu/build/linux-container.scm (mount-file-systems): Add 'chmod' call. * tests/containers.scm ("call-with-container, mnt namespace, root permissions"): New test. Jelle Licht
2020-09-10build: linux-container: Fix run-container....This is a follow-up of 5316dfc0f125b658e4a2acf7f00f49501663d943. Some users of run-container may expect that the container is jailed, even if there are no mounts. This is the case for some Guix tests. * gnu/build/linux-container.scm (run-container): Do not jail the container when the requested root is "/". Mathieu Othacehe
2020-09-02linux-container: Do not jail the container unconditionally....We may want to run a container inside the MNT namespace, without jailing the container. If RUN-CONTAINER is passed a null MOUNTS list, do not jail the container. * gnu/build/linux-container.scm (run-container): Do not call MOUNT-FILE-SYSTEMS if MOUNTS list is empty. Mathieu Othacehe