mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-23 20:51:01 +00:00
Fix dynamic library extension on macOS
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
eea9c74d81
commit
8e8e96500a
|
@ -34,9 +34,15 @@
|
|||
#include "mbedtls/x509_crt.h"
|
||||
#endif
|
||||
|
||||
#define CRYPTO_SO_FILENAME "libmbedcrypto.so"
|
||||
#define X509_SO_FILENAME "libmbedx509.so"
|
||||
#define TLS_SO_FILENAME "libmbedtls.so"
|
||||
#if defined(__APPLE__)
|
||||
#define SO_SUFFIX ".dylib"
|
||||
#else
|
||||
#define SO_SUFFIX ".so"
|
||||
#endif
|
||||
|
||||
#define CRYPTO_SO_FILENAME "libmbedcrypto" SO_SUFFIX
|
||||
#define X509_SO_FILENAME "libmbedx509" SO_SUFFIX
|
||||
#define TLS_SO_FILENAME "libmbedtls" SO_SUFFIX
|
||||
|
||||
#include <dlfcn.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue