Fix compilation errors: dolfin/geometry/IntersectionConstruction.cpp: In static member function ‘static std::vector dolfin::IntersectionConstruction::intersection_segment_segment_2d(const dolfin::Point&, const dolfin::Point&, const dolfin::Point&, const dolfin::Point&)’: dolfin/geometry/IntersectionConstruction.cpp:442:24: error: ‘min_element’ is not a member of ‘std’; did you mean ‘tuple_element’? 442 | const auto it = std::min_element(oo.begin(), oo.end()); | ^~~~~~~~~~~ | tuple_element dolfin/mesh/MeshFunction.h: In member function ‘std::vector dolfin::MeshFunction::where_equal(T)’: dolfin/mesh/MeshFunction.h:652:26: error: ‘count’ is not a member of ‘std’; did you mean ‘cout’? 652 | std::size_t n = std::count(_values.get(), _values.get() + _size, value); | ^~~~~ | cout Submitted upstream at https://bitbucket.org/fenics-project/dolfin/issues/1128 --- a/dolfin/geometry/IntersectionConstruction.cpp +++ b/dolfin/geometry/IntersectionConstruction.cpp @@ -18,7 +18,8 @@ // First added: 2014-02-03 // Last changed: 2017-12-12 +#include #include #include #include "predicates.h" --- a/dolfin/mesh/MeshFunction.h +++ b/dolfin/mesh/MeshFunction.h @@ -24,6 +24,7 @@ #ifndef __MESH_FUNCTION_H #define __MESH_FUNCTION_H +#include #include #include ='/guix/log/gnu/services/sddm.scm'>
AgeCommit message (Expand)Author
2024-07-18services: sddm: Adjust pass env....* gnu/services/sddm.scm (sddm-shepherd-service): Adjust pass env when sddm build with qt6. Change-Id: Iabaa22824db8048c7c86921010b970226f85b7a5 Zheng Junjie
2024-03-19services: sddm: Add extension for localed-service-type....* gnu/services/sddm.scm (sddm-service-type): Add extension for localed-service-type. * gnu/services/xorg.scm (xorg-configuration-keyboard-layout): Export it. Change-Id: I26e6475b733d69f1baf00786e302a3ec6d3c4a74 Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Zheng Junjie
2023-08-02services: sddm: Set some environment variables for the breeze theme....* gnu/services/sddm.scm (sddm-service-type): Pass #:environment-variables to make-forkexec-constructor. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Zheng Junjie