From cb165df64eef762e1146bcd5bd21944c2c09ca4b Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Mon, 4 Nov 2013 10:47:22 +0100 Subject: remove warnings on OSX (workaround) --- include/libssh/priv.h | 10 ++++++++++ src/pki_crypto.c | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/include/libssh/priv.h b/include/libssh/priv.h index 66fd54f..d8176d9 100644 --- a/include/libssh/priv.h +++ b/include/libssh/priv.h @@ -155,6 +155,16 @@ int gettimeofday(struct timeval *__p, void *__t); #include #endif +/* + * get rid of deprecacy warnings on OSX when using OpenSSL + */ +#if defined(__APPLE__) + #ifdef MAC_OS_X_VERSION_MIN_REQUIRED + #undef MAC_OS_X_VERSION_MIN_REQUIRED + #endif + #define MAC_OS_X_VERSION_MIN_REQUIRED MAC_OS_X_VERSION_10_6 +#endif + /* forward declarations */ struct ssh_common_struct; struct ssh_kex_struct; diff --git a/src/pki_crypto.c b/src/pki_crypto.c index 04fea74..e87d7ac 100644 --- a/src/pki_crypto.c +++ b/src/pki_crypto.c @@ -25,6 +25,8 @@ #ifndef _PKI_CRYPTO_H #define _PKI_CRYPTO_H +#include "libssh/priv.h" + #include #include #include @@ -37,8 +39,6 @@ #include #endif - -#include "libssh/priv.h" #include "libssh/libssh.h" #include "libssh/buffer.h" #include "libssh/session.h" -- cgit