Commit 6636fbf2 authored by Yang Tse's avatar Yang Tse
Browse files

deal with the possibility that CURL_DISABLE_RTSP may already be defined

parent c94d4450
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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