forked from conan-io/conan-center-index
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(conan-io#5184) openvr: add 1.16.8 + fix cpp_info.includedirs + propa…
…gate libcxx for C API * delete fPIC if shared in configure() * explicit pkg_config name * fix cpp_info.includedirs * consistent quotes * propagate libcxx if static for C API * dl system libs on Linux and FreeBSD only * add Foundation framework for all Apple OS * add 1.16.8
- Loading branch information
Showing
5 changed files
with
148 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
122 changes: 122 additions & 0 deletions
122
recipes/openvr/all/patches/fix-includes-and-assert-1.16.8.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
Fix compilaton errors due to wrong headers folder and usage of missing assert.h: | ||
https://github.com/ValveSoftware/openvr/pull/1524 | ||
https://github.com/ValveSoftware/openvr/pull/1542 | ||
|
||
--- a/src/openvr_api_public.cpp | ||
+++ b/src/openvr_api_public.cpp | ||
@@ -2,12 +2,12 @@ | ||
#define VR_API_EXPORT 1 | ||
#include "openvr.h" | ||
#include "ivrclientcore.h" | ||
-#include <vrcore/pathtools_public.h> | ||
-#include <vrcore/sharedlibtools_public.h> | ||
-#include <vrcore/envvartools_public.h> | ||
+#include <vrcommon/pathtools_public.h> | ||
+#include <vrcommon/sharedlibtools_public.h> | ||
+#include <vrcommon/envvartools_public.h> | ||
#include "hmderrors_public.h" | ||
-#include <vrcore/strtools_public.h> | ||
-#include <vrcore/vrpathregistry_public.h> | ||
+#include <vrcommon/strtools_public.h> | ||
+#include <vrcommon/vrpathregistry_public.h> | ||
#include <mutex> | ||
|
||
using vr::EVRInitError; | ||
--- a/src/vrcommon/dirtools_public.cpp | ||
+++ b/src/vrcommon/dirtools_public.cpp | ||
@@ -1,7 +1,7 @@ | ||
//========= Copyright Valve Corporation ============// | ||
-#include <vrcore/dirtools_public.h> | ||
-#include <vrcore/strtools_public.h> | ||
-#include <vrcore/pathtools_public.h> | ||
+#include <vrcommon/dirtools_public.h> | ||
+#include <vrcommon/strtools_public.h> | ||
+#include <vrcommon/pathtools_public.h> | ||
|
||
#include <errno.h> | ||
#include <string.h> | ||
--- a/src/vrcommon/envvartools_public.cpp | ||
+++ b/src/vrcommon/envvartools_public.cpp | ||
@@ -1,6 +1,6 @@ | ||
//========= Copyright Valve Corporation ============// | ||
-#include <vrcore/envvartools_public.h> | ||
-#include <vrcore/strtools_public.h> | ||
+#include <vrcommon/envvartools_public.h> | ||
+#include <vrcommon/strtools_public.h> | ||
#include <stdlib.h> | ||
#include <string> | ||
#include <cctype> | ||
--- a/src/vrcommon/pathtools_public.cpp | ||
+++ b/src/vrcommon/pathtools_public.cpp | ||
@@ -1,6 +1,6 @@ | ||
//========= Copyright Valve Corporation ============// | ||
-#include <vrcore/strtools_public.h> | ||
-#include <vrcore/pathtools_public.h> | ||
+#include <vrcommon/strtools_public.h> | ||
+#include <vrcommon/pathtools_public.h> | ||
|
||
#if defined( _WIN32) | ||
#include <windows.h> | ||
--- a/src/vrcommon/sharedlibtools_public.cpp | ||
+++ b/src/vrcommon/sharedlibtools_public.cpp | ||
@@ -1,5 +1,5 @@ | ||
//========= Copyright Valve Corporation ============// | ||
-#include <vrcore/sharedlibtools_public.h> | ||
+#include <vrcommon/sharedlibtools_public.h> | ||
#include <string.h> | ||
|
||
#if defined(_WIN32) | ||
--- a/src/vrcommon/strtools_public.cpp | ||
+++ b/src/vrcommon/strtools_public.cpp | ||
@@ -1,6 +1,7 @@ | ||
//========= Copyright Valve Corporation ============// | ||
-#include <vrcore/strtools_public.h> | ||
+#include <vrcommon/strtools_public.h> | ||
#include <string.h> | ||
+#include <stdarg.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <sstream> | ||
@@ -9,7 +10,6 @@ | ||
#include <functional> | ||
#include <locale> | ||
#include <codecvt> | ||
-#include <vrcore/assert.h> | ||
|
||
#if defined( _WIN32 ) | ||
#include <windows.h> | ||
@@ -128,7 +128,6 @@ std::string Format( const char *pchFormat, ... ) | ||
// Something went fairly wrong | ||
if ( unSize < 0 ) | ||
{ | ||
- AssertMsg( false, "Format string parse failure" ); | ||
return ""; | ||
} | ||
|
||
@@ -149,7 +148,6 @@ std::string Format( const char *pchFormat, ... ) | ||
// Double check, just in case | ||
if ( unSize < 0 ) | ||
{ | ||
- AssertMsg( false, "Format string parse failure" ); | ||
return ""; | ||
} | ||
|
||
--- a/src/vrcommon/vrpathregistry_public.cpp | ||
+++ b/src/vrcommon/vrpathregistry_public.cpp | ||
@@ -1,11 +1,11 @@ | ||
//========= Copyright Valve Corporation ============// | ||
|
||
-#include <vrcore/vrpathregistry_public.h> | ||
+#include <vrcommon/vrpathregistry_public.h> | ||
#include <json/json.h> | ||
-#include <vrcore/pathtools_public.h> | ||
-#include <vrcore/envvartools_public.h> | ||
-#include <vrcore/strtools_public.h> | ||
-#include <vrcore/dirtools_public.h> | ||
+#include <vrcommon/pathtools_public.h> | ||
+#include <vrcommon/envvartools_public.h> | ||
+#include <vrcommon/strtools_public.h> | ||
+#include <vrcommon/dirtools_public.h> | ||
|
||
#if defined( WIN32 ) | ||
#include <windows.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#include <openvr.h> | ||
|
||
#include <cstdlib> | ||
#include <openvr/openvr.h> | ||
|
||
int main() | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ versions: | |
folder: "all" | ||
"1.14.15": | ||
folder: "all" | ||
"1.16.8": | ||
folder: "all" |