mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
(libT) possible backwards compatability tweak for libcurl < 7.16.3
This commit is contained in:
parent
67696ac4bd
commit
2f3580cc90
1 changed files with 4 additions and 0 deletions
|
@ -22,6 +22,10 @@
|
|||
#include "utils.h"
|
||||
#include "web.h"
|
||||
|
||||
#if LIBCURL_VERSION_NUM < 0x071003
|
||||
#define curl_multi_socket_action(m,fd,mask,i) curl_multi_socket((m),(fd),(i))
|
||||
#endif
|
||||
|
||||
#define dbgmsg( ... ) tr_deepLog( __FILE__, __LINE__, "web", __VA_ARGS__ )
|
||||
|
||||
struct tr_web
|
||||
|
|
Loading…
Reference in a new issue