mirror of
https://github.com/curl/curl.git
synced 2026-04-15 00:41:41 +03:00
rtsp: disable if Hyper is used
This commit is contained in:
parent
34021b804d
commit
4daba06762
2 changed files with 6 additions and 2 deletions
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include "curl_setup.h"
|
||||
|
||||
#ifndef CURL_DISABLE_RTSP
|
||||
#if !defined(CURL_DISABLE_RTSP) && !defined(USE_HYPER)
|
||||
|
||||
#include "urldata.h"
|
||||
#include <curl/curl.h>
|
||||
|
|
@ -826,4 +826,4 @@ CURLcode Curl_rtsp_parseheader(struct connectdata *conn,
|
|||
return CURLE_OK;
|
||||
}
|
||||
|
||||
#endif /* CURL_DISABLE_RTSP */
|
||||
#endif /* CURL_DISABLE_RTSP or using Hyper */
|
||||
|
|
|
|||
|
|
@ -21,6 +21,10 @@
|
|||
* KIND, either express or implied.
|
||||
*
|
||||
***************************************************************************/
|
||||
#ifdef USE_HYPER
|
||||
#define CURL_DISABLE_RTSP
|
||||
#endif
|
||||
|
||||
#ifndef CURL_DISABLE_RTSP
|
||||
|
||||
extern const struct Curl_handler Curl_handler_rtsp;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue