1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

deal with the possibility that CURL_DISABLE_RTSP may already be defined

This commit is contained in:
Yang Tse 2010-01-22 15:15:08 +00:00
parent c94d44505f
commit 6636fbf238

View File

@ -176,7 +176,7 @@
* When http is disabled rtsp is not supported.
*/
#ifdef CURL_DISABLE_HTTP
#if defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_RTSP)
# define CURL_DISABLE_RTSP
#endif