mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 01:26:58 +00:00
FS-2746 --resolve large xmlrpc update thanks garmt
This commit is contained in:
20
libs/xmlrpc-c/lib/curl_transport/curlversion.h
Normal file
20
libs/xmlrpc-c/lib/curl_transport/curlversion.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef CURLVERSION_H_INCLUDED
|
||||
#define CURLVERSION_H_INCLUDED
|
||||
|
||||
#define CMAJOR LIBCURL_VERSION_MAJOR
|
||||
#define CMINOR LIBCURL_VERSION_MINOR
|
||||
#if CMAJOR > 7 || (CMAJOR == 7 && CMINOR >= 10)
|
||||
#define HAVE_CURL_NOSIGNAL 1
|
||||
#else
|
||||
#define HAVE_CURL_NOSIGNAL 0
|
||||
#endif
|
||||
#if CMAJOR > 7 || (CMAJOR == 7 && CMINOR >= 12)
|
||||
#define HAVE_CURL_STRERROR 1
|
||||
#else
|
||||
#define HAVE_CURL_STRERROR 0
|
||||
#endif
|
||||
|
||||
#undef CMAJOR
|
||||
#undef CMINOR
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user