Skip to content

Commit

Permalink
(#22643) openssl: Add option to disable apps build in 3.x.x
Browse files Browse the repository at this point in the history
This is useful for example to disable build of http_server for tvOS.

tvOS doesn't have fork() and http_server uses it:

apps/lib/http_server.c:156:24: error: 'fork' is unavailable: not available on tvOS
        switch (fpid = fork()) {
  • Loading branch information
kletoz authored Feb 8, 2024
1 parent 7ed79e4 commit b458542
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions recipes/openssl/3.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class OpenSSLConan(ConanFile):
"enable_capieng": [True, False],
"enable_trace": [True, False],
"no_aria": [True, False],
"no_apps": [True, False],
"no_autoload_config": [True, False],
"no_asm": [True, False],
"no_async": [True, False],
Expand Down

0 comments on commit b458542

Please sign in to comment.