blob: 6b6798c641ebabbbc46a4e1d0f9f37b1d05a06d0 [file] [log] [blame]
dmcoomese689dd62017-03-29 11:05:12 -05001#ifndef NLSR_NSYNC_OPENSSL_H
2#define NLSR_NSYNC_OPENSSL_H
akmhoquefdbddb12014-05-02 18:35:19 -05003
4// suppress deprecation warnings in OSX >= 10.7
5
6#if defined(__APPLE__)
7
8#ifdef __clang__
9#pragma clang diagnostic ignored "-Wdeprecated-declarations"
10#endif // __clang__
11
12#ifdef __GNUC__
13#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
14#endif // __GNUC__
15
16#endif
17
18
19#include <openssl/evp.h>
20
dmcoomese689dd62017-03-29 11:05:12 -050021#endif // NLSR_NSYNC_OPENSSL_H