mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-18 14:27:00 +02:00
disable openssl on httplib hdr
This commit is contained in:
parent
7c7c1cb760
commit
a7aaed7585
1 changed files with 6 additions and 0 deletions
|
|
@ -3,8 +3,14 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
// TODO: httplib port can't use OpenSSL because of package misconfigs on OO toolchain
|
||||||
|
// right now the solution is to tell httplib that OpenSSL doesn't exist, but that's bad
|
||||||
|
// and the issue is a bit more of how OpenSSL lacks some essential functionality
|
||||||
|
// which is a bit annoying to reconfigure atm.
|
||||||
|
#ifndef __OPENORBIS__
|
||||||
#define CPPHTTPLIB_DISABLE_MACOSX_AUTOMATIC_ROOT_CERTIFICATES 1
|
#define CPPHTTPLIB_DISABLE_MACOSX_AUTOMATIC_ROOT_CERTIFICATES 1
|
||||||
#define CPPHTTPLIB_OPENSSL_SUPPORT 1
|
#define CPPHTTPLIB_OPENSSL_SUPPORT 1
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
#pragma GCC diagnostic push
|
#pragma GCC diagnostic push
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue