-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(#18826) zstd/*: Added "build_programs" option
* zstd: Added "build_programs" option to allow client to decide whether to build executables or not * validate zstd lib in test package Signed-off-by: Uilian Ries <uilianries@gmail.com> * Updated test package to use build_env instead of run_env to run the newly built ztsd executable * Update recipes/zstd/all/conanfile.py Co-authored-by: Uilian Ries <uilianries@gmail.com> * Added qnx support in platform.h * Implemented better way to run binaries from the package in the test() method * Update recipes/zstd/all/conandata.yml Co-authored-by: Uilian Ries <uilianries@gmail.com> * zstd: Fixed spelling error in conandata.yml --------- Signed-off-by: Uilian Ries <uilianries@gmail.com> Co-authored-by: Uilian Ries <uilianries@gmail.com>
- Loading branch information
1 parent
0b17150
commit 8e2022d
Showing
4 changed files
with
45 additions
and
9 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
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,11 @@ | ||
--- programs/platform.h 2023-04-04 22:13:52.000000000 +0200 | ||
+++ programs/platform.h 2023-09-03 10:01:58.930595800 +0200 | ||
@@ -89,7 +89,7 @@ | ||
*/ | ||
# elif !defined(_WIN32) \ | ||
&& ( defined(__unix__) || defined(__unix) \ | ||
- || defined(__midipix__) || defined(__VMS) || defined(__HAIKU__) ) | ||
+ || defined(_QNX_SOURCE) || defined(__midipix__) || defined(__VMS) || defined(__HAIKU__) ) | ||
|
||
# if defined(__linux__) || defined(__linux) || defined(__CYGWIN__) | ||
# ifndef _POSIX_C_SOURCE |
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