Merge pull request #4092 from Krak-n/fix_curl
Analytics.h include curl.h
This commit is contained in:
commit
8f04396dc3
|
@ -11,19 +11,13 @@
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include <curl/curlver.h>
|
#include <curl/curl.h>
|
||||||
|
|
||||||
#include "Common/CommonTypes.h"
|
#include "Common/CommonTypes.h"
|
||||||
#include "Common/Event.h"
|
#include "Common/Event.h"
|
||||||
#include "Common/FifoQueue.h"
|
#include "Common/FifoQueue.h"
|
||||||
#include "Common/Flag.h"
|
#include "Common/Flag.h"
|
||||||
|
|
||||||
#if LIBCURL_VERSION_MAJOR >= 7 && LIBCURL_VERSION_MINOR >= 50
|
|
||||||
typedef struct Curl_easy CURL;
|
|
||||||
#else
|
|
||||||
typedef void CURL;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Utilities for analytics reporting in Dolphin. This reporting is designed to
|
// Utilities for analytics reporting in Dolphin. This reporting is designed to
|
||||||
// provide anonymous data about how well Dolphin performs in the wild. It also
|
// provide anonymous data about how well Dolphin performs in the wild. It also
|
||||||
// allows developers to declare trace points in Dolphin's source code and get
|
// allows developers to declare trace points in Dolphin's source code and get
|
||||||
|
|
Loading…
Reference in New Issue