e8cb4e64b5
- Rebase GLES patches: * 0001-Correct-GL_BACK-GL_BACK_LEFT-mapping-on-GLES.patch * 0002-Use-GL_DRAW_BUFFER0-instead-of-GL_DRAW_BUFFER-for-GL.patch - Drop obsolete patch: * Do-not-request-CUBE_MAP_SEAMLESS-on-GLES.patch - - Update to version 9.4.0, see: https://gitlab.kitware.com/vtk/vtk/-/blob/master/Documentation/release/9.4.md - Drop upstream patches: * 0001-ioss-update-fmt-includes.patch - Add patches: * 0001-Add-missing-libm-link-library-for-bundled-ExodusII.patch * 0001-Fix-fmt-includes-again.patch * 0001-Fix-missing-GLAD-symbol-mangling-in-Rendering-GL2PSO.patch OBS-URL: https://build.opensuse.org/package/show/science/vtk?expand=0&rev=196
40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
From 18b733fb082bb98ba37d16e5b184f6d959d0f573 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bruens@rwth-aachen.de>
|
|
Date: Thu, 12 Dec 2024 20:02:38 +0100
|
|
Subject: [PATCH] Fix fmt includes again
|
|
|
|
Unfortunately, VTK upstream imports new releases and
|
|
creates the same regressions again and again ...
|
|
---
|
|
ThirdParty/ioss/vtkioss/Ioss_Field.C | 1 +
|
|
ThirdParty/ioss/vtkioss/Ioss_VariableType.C | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
diff --git a/ThirdParty/ioss/vtkioss/Ioss_Field.C b/ThirdParty/ioss/vtkioss/Ioss_Field.C
|
|
index fbb2100c..8909eef5 100644
|
|
--- a/ThirdParty/ioss/vtkioss/Ioss_Field.C
|
|
+++ b/ThirdParty/ioss/vtkioss/Ioss_Field.C
|
|
@@ -12,6 +12,7 @@
|
|
#include <cstdint>
|
|
#include "vtk_fmt.h"
|
|
#include VTK_FMT(fmt/ostream.h)
|
|
+#include VTK_FMT(fmt/ranges.h)
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <vector>
|
|
diff --git a/ThirdParty/ioss/vtkioss/Ioss_VariableType.C b/ThirdParty/ioss/vtkioss/Ioss_VariableType.C
|
|
index b081dc36..4f1a841f 100644
|
|
--- a/ThirdParty/ioss/vtkioss/Ioss_VariableType.C
|
|
+++ b/ThirdParty/ioss/vtkioss/Ioss_VariableType.C
|
|
@@ -19,6 +19,7 @@
|
|
#include VTK_FMT(fmt/core.h)
|
|
#include VTK_FMT(fmt/format.h)
|
|
#include VTK_FMT(fmt/ostream.h)
|
|
+#include VTK_FMT(fmt/ranges.h)
|
|
#include <map>
|
|
#include <sstream>
|
|
#include <string>
|
|
--
|
|
2.47.1
|
|
|