forked from pool/paraview
- Drop unused python-zope BuildRequires - Replace Qt5WebKit BuildRequires with Qt5WebEngine - Unbundle several dependencies, use system libraries: * double-conversion * CGNS * Eigen3 * GLEW * HDF5 * JsonCPP * liblz4 * netcdf * protobuf * PugiXML * Ogg/Theora - Add several patches from VTK package: * bundled_exodusii_add_missing_libpthread.patch * 0001-Add-libogg-to-IOMovie-target-link-libraries.patch * 0001-Allow-compilation-on-GLES-platforms.patch OBS-URL: https://build.opensuse.org/request/show/769040 OBS-URL: https://build.opensuse.org/package/show/science/paraview?expand=0&rev=65
25 lines
749 B
Diff
25 lines
749 B
Diff
From 9418a8a8c84c8185d61e5135b95a67c3d98ba23e Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Stefan=20Br=C3=BCns?= <stefan.bruens@rwth-aachen.de>
|
|
Date: Mon, 25 Feb 2019 00:27:07 +0100
|
|
Subject: [PATCH] Add libogg to IOMovie target link libraries
|
|
|
|
---
|
|
IO/Movie/CMakeLists.txt | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/IO/Movie/CMakeLists.txt b/IO/Movie/CMakeLists.txt
|
|
index 457f1a99..98ca4708 100644
|
|
--- a/VTK/IO/Movie/CMakeLists.txt
|
|
+++ b/VTK/IO/Movie/CMakeLists.txt
|
|
@@ -33,3 +33,7 @@ vtk_module_library(vtkIOMovie ${Module_SRCS})
|
|
if(WIN32 AND VTK_USE_VIDEO_FOR_WINDOWS)
|
|
vtk_module_link_libraries(vtkIOMovie LINK_PRIVATE vfw32)
|
|
endif()
|
|
+
|
|
+if(vtkIOMovie_vtkoggtheora)
|
|
+ target_link_libraries(vtkIOMovie PUBLIC ogg)
|
|
+endif()
|
|
--
|
|
2.20.1
|
|
|