9c0981b5c0
* Update Insitu logic to use script filename (instead of full path) when searching PYTHONPATH directories (details). * Fixed CLI error loading multiple-file series (details). * Fixed CLI error that was opening two copies of single file specified in command line (details). * Fixed pvbatch syntax warning messages (“invalid escape sequence”) (details). * Fixed spreadsheet view to update correctly when timestep is reset to 0 (details). * Fixed problems loading state file when remote volume rendering is used (details). * More info at: <https://www.kitware.com/paraview-5-13-2-release-notes/>. - Use internal pegtl lib due to version incompatibility. - Disable ZFP due to building problems with internal/external. - Added sed command to fix linker flags in build.ninja. - Removed unnecessary shebang at rtImageTest.py. - Dropped patches: * 0001-Fix-missing-fmt-ranges.h-include-in-ioss-ThirdParty-.patch - Add patches: * 0001-Add-missing-libm-link-library-for-bundled-ExodusII.patch OBS-URL: https://build.opensuse.org/package/show/science/paraview?expand=0&rev=133
23 lines
805 B
Diff
23 lines
805 B
Diff
From 11749efe6bbe30e8d9a88b624c356a45c3207fd2 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 17:27:49 +0100
|
|
Subject: [PATCH] Add missing libm link library for bundled ExodusII
|
|
|
|
---
|
|
VTK/ThirdParty/exodusII/vtkexodusII/CMakeLists.txt | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/VTK/ThirdParty/exodusII/vtkexodusII/CMakeLists.txt b/VTK/ThirdParty/exodusII/vtkexodusII/CMakeLists.txt
|
|
index e3b10bb9..8e4ccd6e 100644
|
|
--- a/VTK/ThirdParty/exodusII/vtkexodusII/CMakeLists.txt
|
|
+++ b/VTK/ThirdParty/exodusII/vtkexodusII/CMakeLists.txt
|
|
@@ -338,4 +338,5 @@ vtk_module_include(VTK::exodusII
|
|
"$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/include>")
|
|
vtk_module_link(VTK::exodusII
|
|
PRIVATE
|
|
+ m
|
|
Threads::Threads)
|
|
--
|
|
2.47.1
|
|
|