* New upstream release. (NOT RELEASED YET.)
- Among other changes, "fix tblastn mt issue". (Closes: #970344.)
+ * debian/patches/fix_x86isms (new): Conditionally stub out
+ CCpuFeatures::InstructionSet::InstructionSet, which compiles only on x86.
* debian/patches/{hurd_fixes,run_perl_directly}: Rebase.
* debian/patches/{reprobuild,support_x32}: Refresh (had fuzz).
* debian/patches/support_gcc10: Drop build-system portions, incorporated
upstream as of this release.
- -- Aaron M. Ucko <ucko@debian.org> Sat, 19 Sep 2020 21:15:01 -0400
+ -- Aaron M. Ucko <ucko@debian.org> Sat, 19 Sep 2020 21:21:01 -0400
ncbi-blast+ (2.10.0-3) unstable; urgency=medium
--- /dev/null
+--- a/c++/src/corelib/ncbi_system.cpp
++++ b/c++/src/corelib/ncbi_system.cpp
+@@ -1422,6 +1422,7 @@ CCpuFeatures::InstructionSet::Instructio
+ f81_ECX_ { 0 },
+ f81_EDX_ { 0 }
+ {
++#if defined(__i386__) || defined(__x86_64__)
+ int nIds = 0;
+ int nExIds = 0;
+
+@@ -1506,6 +1507,7 @@ CCpuFeatures::InstructionSet::Instructio
+ memcpy(brand + 32, m_ExtData[4].data(), sizeof(registers));
+ m_BrandStr = brand;
+ }
++#endif
+ };
+
+