From: Yang Tse Date: Fri, 22 Jan 2010 15:15:08 +0000 (+0000) Subject: deal with the possibility that CURL_DISABLE_RTSP may already be defined X-Git-Tag: curl-7_20_0~90 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6636fbf23868a58267e26692ce4e94f29cb380f8;p=curl deal with the possibility that CURL_DISABLE_RTSP may already be defined --- diff --git a/lib/setup.h b/lib/setup.h index bcfd3835d..a8549a7d8 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -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