]> granicus.if.org Git - curl/commitdiff
deal with the possibility that CURL_DISABLE_RTSP may already be defined
authorYang Tse <yangsita@gmail.com>
Fri, 22 Jan 2010 15:15:08 +0000 (15:15 +0000)
committerYang Tse <yangsita@gmail.com>
Fri, 22 Jan 2010 15:15:08 +0000 (15:15 +0000)
lib/setup.h

index bcfd3835d2d2e7ec77863315a5f5ffd4e46250ab..a8549a7d8c385ff724b80062b7251ce41b3dbc39 100644 (file)
  * 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