blob: a8707a93cf33fd7f96dd6d7ce9c84754072e6d8f [file] [log] [blame]
akmhoquefdbddb12014-05-02 18:35:19 -05001#ifndef NSYNC_OPENSSL_H
2#define NSYNC_OPENSSL_H
3
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
21#endif // NSYNC_OPENSSL_H