Package: ergo
Version: 3.3.1
Severity: normal
Tag: -1 patch

The ftbfs problem occurred on mips64el in integrals_hermite, so I updated
the original integrals_hermite_mips.patch. Tested on mips64el device, build
success.

Regards,
Sphinx
Author: Jurica Stanojkovic <[email protected]>
Description: On mips/mipsel, R3000 is a defined identifier, so undefine it

--- a/source/integrals/integrals_hermite.cc
+++ b/source/integrals/integrals_hermite.cc
@@ -30,6 +30,13 @@
 #include <cmath>
 #include <stdio.h>

+#ifdef R3000
+ #undef R3000
+#endif
+
+#ifdef R4000
+ #undef R4000
+#endif

 int
 get_related_integrals_hermite(const IntegralInfo & integralInfo,
~                                                                    

Reply via email to