diff options
author | Yang Tse <yangsita@gmail.com> | 2010-01-22 15:15:08 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-01-22 15:15:08 +0000 |
commit | 6636fbf23868a58267e26692ce4e94f29cb380f8 (patch) | |
tree | 0627b3111648d854a7539554406c54943e03925f | |
parent | c94d44505f2d26fe52d97539250bdf448866973f (diff) |
deal with the possibility that CURL_DISABLE_RTSP may already be defined
-rw-r--r-- | lib/setup.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |