From e86ee73500301089c8cbbdd76a311b347e895991 Mon Sep 17 00:00:00 2001 From: Boris Pek Date: Wed, 10 Oct 2018 00:59:58 +0300 Subject: [PATCH] openscenegraph: update patch: * fix build with GCC < 6.x * fix build of gta plugin when pkg-config is used --- src/openscenegraph-1-fixes.patch | 70 +++++++++++++++++++++++++++++++- 1 file changed, 68 insertions(+), 2 deletions(-) diff --git a/src/openscenegraph-1-fixes.patch b/src/openscenegraph-1-fixes.patch index ec16a5f4..d49540c2 100644 --- a/src/openscenegraph-1-fixes.patch +++ b/src/openscenegraph-1-fixes.patch @@ -59,7 +59,7 @@ index 1111111..2222222 100644 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Boris Nagaev Date: Mon, 22 Feb 2016 03:35:28 +0300 -Subject: [PATCH 4/6] disable ffmpeg +Subject: [PATCH 3/6] disable ffmpeg OpenSceneGraph is using removed features of ffmpeg, which have been deprecated for 3+ years. @@ -86,7 +86,7 @@ index 77d66f8..1c8398e 100644 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Boris Pek Date: Thu, 14 Dec 2017 15:29:38 +0300 -Subject: [PATCH 6/6] fix case in library ws2_32 +Subject: [PATCH 4/6] fix case in library ws2_32 diff --git a/src/osgPlugins/ZeroConfDevice/CMakeLists.txt b/src/osgPlugins/ZeroConfDevice/CMakeLists.txt @@ -115,3 +115,69 @@ index 1111111..2222222 100644 ELSE() SET(TARGET_LIBRARIES_VARS OPENVRML_LIBRARY) + +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Boris Pek +Date: Wed, 10 Oct 2018 00:56:37 +0300 +Subject: [PATCH 5/6] fix build with GCC < 6.x + + +diff --git a/src/osgViewer/GraphicsWindowWin32.cpp b/src/osgViewer/GraphicsWindowWin32.cpp +index 91e6c8f..d11347e 100644 +--- a/src/osgViewer/GraphicsWindowWin32.cpp ++++ b/src/osgViewer/GraphicsWindowWin32.cpp +@@ -799,7 +799,7 @@ Win32WindowingSystem::Win32WindowingSystem() + if (hModuleShore) { + setProcessDpiAwareness = (SetProcessDpiAwarenessFunc *) GetProcAddress(hModuleShore, "SetProcessDpiAwareness"); + if (setProcessDpiAwareness) { +- (*setProcessDpiAwareness)(PROCESS_DPI_AWARENESS::PROCESS_PER_MONITOR_DPI_AWARE); ++ (*setProcessDpiAwareness)(PROCESS_PER_MONITOR_DPI_AWARE); + } + } + // #endif + +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Boris Pek +Date: Wed, 10 Oct 2018 01:48:22 +0300 +Subject: [PATCH 6/6] fix build of gta plugin when pkg-config is used + + update related variable for build without pkg-config. + + +diff --git a/CMakeModules/FindGTA.cmake b/CMakeModules/FindGTA.cmake +index 086069c..e483ad3 100644 +--- a/CMakeModules/FindGTA.cmake ++++ b/CMakeModules/FindGTA.cmake +@@ -33,7 +33,7 @@ IF(NOT GTA_FOUND) + /usr/freeware/include + ) + +- FIND_LIBRARY(GTA_LIBRARY ++ FIND_LIBRARY(GTA_LIBRARIES + NAMES gta libgta + PATHS + $ENV{GTA_DIR}/lib +@@ -50,8 +50,8 @@ IF(NOT GTA_FOUND) + ) + + SET(GTA_FOUND "NO") +- IF(GTA_LIBRARY AND GTA_INCLUDE_DIRS) ++ IF(GTA_LIBRARIES AND GTA_INCLUDE_DIRS) + SET(GTA_FOUND "YES") +- ENDIF(GTA_LIBRARY AND GTA_INCLUDE_DIRS) ++ ENDIF(GTA_LIBRARIES AND GTA_INCLUDE_DIRS) + + ENDIF(NOT GTA_FOUND) +\ No newline at end of file +diff --git a/src/osgPlugins/gta/CMakeLists.txt b/src/osgPlugins/gta/CMakeLists.txt +index 2b910a6..16466fe 100644 +--- a/src/osgPlugins/gta/CMakeLists.txt ++++ b/src/osgPlugins/gta/CMakeLists.txt +@@ -2,7 +2,7 @@ INCLUDE_DIRECTORIES( ${GTA_INCLUDE_DIRS} ) + + SET(TARGET_SRC ReaderWriterGTA.cpp ) + +-SET(TARGET_LIBRARIES_VARS GTA_LIBRARY) ++SET(TARGET_LIBRARIES_VARS GTA_LIBRARIES) + + #### end var setup ### + SETUP_PLUGIN(gta)