aboutsummaryrefslogtreecommitdiff
path: root/science/tfel-edf
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2021-01-15 11:16:10 +0000
committerThierry Thomas <thierry@FreeBSD.org>2021-01-15 11:16:10 +0000
commit55da7590efb9b1b59de6fd7e4af636fc846ba492 (patch)
tree4c7ce150b1cfe1dc1c44ab98af7c1b509c9f60f7 /science/tfel-edf
parent356b8553c5c8498a44876746a5b63a0b46197b1c (diff)
downloadports-55da7590efb9b1b59de6fd7e4af636fc846ba492.tar.gz
ports-55da7590efb9b1b59de6fd7e4af636fc846ba492.zip
Add some headers to unbreak with Gcc 10.
Notes
Notes: svn path=/head/; revision=561633
Diffstat (limited to 'science/tfel-edf')
-rw-r--r--science/tfel-edf/files/patch-mfront_src_BehaviourMaterialProperty.cxx10
-rw-r--r--science/tfel-edf/files/patch-mfront_src_BroydenSolvers.cxx10
-rw-r--r--science/tfel-edf/files/patch-mfront_src_LevenbergMarquardtSolvers.cxx10
-rw-r--r--science/tfel-edf/files/patch-mfront_src_NewtonRaphsonSolvers.cxx10
-rw-r--r--science/tfel-edf/files/patch-mfront_src_SecondBroydenSolver.cxx10
-rw-r--r--science/tfel-edf/files/patch-mtest_src_AsterCohesiveZoneModel.cxx10
-rw-r--r--science/tfel-edf/files/patch-mtest_src_Behaviour.cxx10
-rw-r--r--science/tfel-edf/files/patch-mtest_src_NonLinearConstraint.cxx10
-rw-r--r--science/tfel-edf/files/patch-mtest_src_PipeCubicElement.cxx10
-rw-r--r--science/tfel-edf/files/patch-mtest_src_PipeLinearElement.cxx10
-rw-r--r--science/tfel-edf/files/patch-mtest_src_PipeQuadraticElement.cxx10
11 files changed, 110 insertions, 0 deletions
diff --git a/science/tfel-edf/files/patch-mfront_src_BehaviourMaterialProperty.cxx b/science/tfel-edf/files/patch-mfront_src_BehaviourMaterialProperty.cxx
new file mode 100644
index 000000000000..1912f8dd4157
--- /dev/null
+++ b/science/tfel-edf/files/patch-mfront_src_BehaviourMaterialProperty.cxx
@@ -0,0 +1,10 @@
+--- mfront/src/BehaviourMaterialProperty.cxx.orig 2019-04-04 06:48:40 UTC
++++ mfront/src/BehaviourMaterialProperty.cxx
+@@ -11,6 +11,7 @@
+ * project under specific licensing conditions.
+ */
+
++#include <ostream>
+ #include "TFEL/Raise.hxx"
+ #include "MFront/MFrontLogStream.hxx"
+ #include "MFront/BehaviourDescription.hxx"
diff --git a/science/tfel-edf/files/patch-mfront_src_BroydenSolvers.cxx b/science/tfel-edf/files/patch-mfront_src_BroydenSolvers.cxx
new file mode 100644
index 000000000000..2fb712d35e8c
--- /dev/null
+++ b/science/tfel-edf/files/patch-mfront_src_BroydenSolvers.cxx
@@ -0,0 +1,10 @@
+--- mfront/src/BroydenSolvers.cxx.orig 2019-04-04 06:48:40 UTC
++++ mfront/src/BroydenSolvers.cxx
+@@ -11,6 +11,7 @@
+ * project under specific licensing conditions.
+ */
+
++#include <ostream>
+ #include "MFront/MFrontDebugMode.hxx"
+ #include "MFront/BehaviourDescription.hxx"
+ #include "MFront/PerformanceProfiling.hxx"
diff --git a/science/tfel-edf/files/patch-mfront_src_LevenbergMarquardtSolvers.cxx b/science/tfel-edf/files/patch-mfront_src_LevenbergMarquardtSolvers.cxx
new file mode 100644
index 000000000000..b08f3e057345
--- /dev/null
+++ b/science/tfel-edf/files/patch-mfront_src_LevenbergMarquardtSolvers.cxx
@@ -0,0 +1,10 @@
+--- mfront/src/LevenbergMarquardtSolvers.cxx.orig 2019-04-04 06:48:40 UTC
++++ mfront/src/LevenbergMarquardtSolvers.cxx
+@@ -11,6 +11,7 @@
+ * project under specific licensing conditions.
+ */
+
++#include <ostream>
+ #include "MFront/MFrontDebugMode.hxx"
+ #include "MFront/BehaviourDescription.hxx"
+ #include "MFront/PerformanceProfiling.hxx"
diff --git a/science/tfel-edf/files/patch-mfront_src_NewtonRaphsonSolvers.cxx b/science/tfel-edf/files/patch-mfront_src_NewtonRaphsonSolvers.cxx
new file mode 100644
index 000000000000..6cb03fc232f8
--- /dev/null
+++ b/science/tfel-edf/files/patch-mfront_src_NewtonRaphsonSolvers.cxx
@@ -0,0 +1,10 @@
+--- mfront/src/NewtonRaphsonSolvers.cxx.orig 2019-04-04 06:48:40 UTC
++++ mfront/src/NewtonRaphsonSolvers.cxx
+@@ -11,6 +11,7 @@
+ * project under specific licensing conditions.
+ */
+
++#include <ostream>
+ #include "TFEL/Raise.hxx"
+ #include "MFront/MFrontDebugMode.hxx"
+ #include "MFront/BehaviourDescription.hxx"
diff --git a/science/tfel-edf/files/patch-mfront_src_SecondBroydenSolver.cxx b/science/tfel-edf/files/patch-mfront_src_SecondBroydenSolver.cxx
new file mode 100644
index 000000000000..8dc6e4a910de
--- /dev/null
+++ b/science/tfel-edf/files/patch-mfront_src_SecondBroydenSolver.cxx
@@ -0,0 +1,10 @@
+--- mfront/src/SecondBroydenSolver.cxx.orig 2019-04-04 06:48:40 UTC
++++ mfront/src/SecondBroydenSolver.cxx
+@@ -11,6 +11,7 @@
+ * project under specific licensing conditions.
+ */
+
++#include <ostream>
+ #include "MFront/MFrontDebugMode.hxx"
+ #include "MFront/BehaviourDescription.hxx"
+ #include "MFront/PerformanceProfiling.hxx"
diff --git a/science/tfel-edf/files/patch-mtest_src_AsterCohesiveZoneModel.cxx b/science/tfel-edf/files/patch-mtest_src_AsterCohesiveZoneModel.cxx
new file mode 100644
index 000000000000..da80a2f78ebd
--- /dev/null
+++ b/science/tfel-edf/files/patch-mtest_src_AsterCohesiveZoneModel.cxx
@@ -0,0 +1,10 @@
+--- mtest/src/AsterCohesiveZoneModel.cxx.orig 2019-04-04 06:48:40 UTC
++++ mtest/src/AsterCohesiveZoneModel.cxx
+@@ -12,6 +12,7 @@
+ */
+
+ #include<cmath>
++#include<ostream>
+ #include<algorithm>
+
+ #include"TFEL/Raise.hxx"
diff --git a/science/tfel-edf/files/patch-mtest_src_Behaviour.cxx b/science/tfel-edf/files/patch-mtest_src_Behaviour.cxx
new file mode 100644
index 000000000000..18ddb2061f63
--- /dev/null
+++ b/science/tfel-edf/files/patch-mtest_src_Behaviour.cxx
@@ -0,0 +1,10 @@
+--- mtest/src/Behaviour.cxx.orig 2019-04-04 06:48:40 UTC
++++ mtest/src/Behaviour.cxx
+@@ -11,6 +11,7 @@
+ * project under specific licensing conditions.
+ */
+
++#include <ostream>
+ #include <stdexcept>
+
+ #include "TFEL/Raise.hxx"
diff --git a/science/tfel-edf/files/patch-mtest_src_NonLinearConstraint.cxx b/science/tfel-edf/files/patch-mtest_src_NonLinearConstraint.cxx
new file mode 100644
index 000000000000..dbc8c9f87b5b
--- /dev/null
+++ b/science/tfel-edf/files/patch-mtest_src_NonLinearConstraint.cxx
@@ -0,0 +1,10 @@
+--- mtest/src/NonLinearConstraint.cxx.orig 2019-04-04 06:48:40 UTC
++++ mtest/src/NonLinearConstraint.cxx
+@@ -13,6 +13,7 @@
+
+ #include <cmath>
+ #include <string>
++#include <ostream>
+ #include "TFEL/Raise.hxx"
+ #include "MFront/MFrontLogStream.hxx"
+ #include "MTest/Behaviour.hxx"
diff --git a/science/tfel-edf/files/patch-mtest_src_PipeCubicElement.cxx b/science/tfel-edf/files/patch-mtest_src_PipeCubicElement.cxx
new file mode 100644
index 000000000000..9a19a38dc67c
--- /dev/null
+++ b/science/tfel-edf/files/patch-mtest_src_PipeCubicElement.cxx
@@ -0,0 +1,10 @@
+--- mtest/src/PipeCubicElement.cxx.orig 2019-04-04 06:48:40 UTC
++++ mtest/src/PipeCubicElement.cxx
+@@ -11,6 +11,7 @@
+ * project under specific licensing conditions.
+ */
+
++#include<ostream>
+ #include"TFEL/Material/ModellingHypothesis.hxx"
+ #include"MFront/MFrontLogStream.hxx"
+ #include"MTest/RoundingMode.hxx"
diff --git a/science/tfel-edf/files/patch-mtest_src_PipeLinearElement.cxx b/science/tfel-edf/files/patch-mtest_src_PipeLinearElement.cxx
new file mode 100644
index 000000000000..d7c4eb08bf83
--- /dev/null
+++ b/science/tfel-edf/files/patch-mtest_src_PipeLinearElement.cxx
@@ -0,0 +1,10 @@
+--- mtest/src/PipeLinearElement.cxx.orig 2019-04-04 06:48:40 UTC
++++ mtest/src/PipeLinearElement.cxx
+@@ -11,6 +11,7 @@
+ * project under specific licensing conditions.
+ */
+
++#include<ostream>
+ #include"TFEL/Material/ModellingHypothesis.hxx"
+ #include"MFront/MFrontLogStream.hxx"
+ #include"MTest/RoundingMode.hxx"
diff --git a/science/tfel-edf/files/patch-mtest_src_PipeQuadraticElement.cxx b/science/tfel-edf/files/patch-mtest_src_PipeQuadraticElement.cxx
new file mode 100644
index 000000000000..02264e0b489f
--- /dev/null
+++ b/science/tfel-edf/files/patch-mtest_src_PipeQuadraticElement.cxx
@@ -0,0 +1,10 @@
+--- mtest/src/PipeQuadraticElement.cxx.orig 2019-04-04 06:48:40 UTC
++++ mtest/src/PipeQuadraticElement.cxx
+@@ -11,6 +11,7 @@
+ * project under specific licensing conditions.
+ */
+
++#include<ostream>
+ #include"TFEL/Material/ModellingHypothesis.hxx"
+ #include"MFront/MFrontLogStream.hxx"
+ #include"MTest/RoundingMode.hxx"