mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-07-03 18:48:56 -05:00
web_backend: fix a regression introduced in 39c8d18
* A regression was in 39c8d18
and token verification function was
broken.
* The reason being `httplib` now requires OpenSSL 1.1+ API while
LibreSSL 2.x provided OpenSSL 1.0 compatible API.
* The bundled LibreSSL has been updated to 3.2.2 so it now provides
OpenSSL 1.1 compatible API now.
* Also the path hint has been added so that it will find the correct
path to the CA certs on *nix systems.
* An option is provided so that *nix system distributions/providers can
use their own SSL implementations when compiling Yuzu/Citra to
(hopefully) complies with their maintenance guidelines.
* LURLParse is also removed since `httplib` can handle
`scheme:host:port` string itself now.
This commit is contained in:
@ -9,4 +9,4 @@ add_library(web_service STATIC
|
||||
)
|
||||
|
||||
create_target_directory_groups(web_service)
|
||||
target_link_libraries(web_service PRIVATE common nlohmann_json::nlohmann_json httplib lurlparser)
|
||||
target_link_libraries(web_service PRIVATE common nlohmann_json::nlohmann_json httplib)
|
||||
|
Reference in New Issue
Block a user