From 6636fbf23868a58267e26692ce4e94f29cb380f8 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Fri, 22 Jan 2010 15:15:08 +0000 Subject: [PATCH] deal with the possibility that CURL_DISABLE_RTSP may already be defined --- lib/setup.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/setup.h b/lib/setup.h index bcfd383..a8549a7 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 -- 2.7.4