obs-outputs: Disabled OpenSSL deprecated warnings on apple

Apple wants to get people to move over to their own crypto APIs instead
of using OpenSSL, so disable the warning in the files where OpenSSL is
used for the time being.
master
jp9000 2016-02-07 15:30:08 -08:00
parent 867c58472e
commit 77c538bd33
2 changed files with 10 additions and 0 deletions

View File

@ -25,6 +25,11 @@
#include "http.h"
#ifdef CRYPTO
#ifdef __APPLE__
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
#ifdef USE_POLARSSL
#include <polarssl/sha2.h>
#ifndef SHA256_DIGEST_LENGTH

View File

@ -33,6 +33,11 @@
#include "log.h"
#ifdef CRYPTO
#ifdef __APPLE__
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
#ifdef USE_POLARSSL
#include <polarssl/havege.h>
#include <polarssl/md5.h>