aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/cl_curl.h
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-09-22 20:32:11 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-09-22 20:32:11 +0000
commitbd433afef712ac9c734949667503f1795eb361c8 (patch)
treef771e37b8082b1652d0d91edc08025d0c00edd89 /code/client/cl_curl.h
parent588850eea289baabb8b13fa7f79609b58474a403 (diff)
downloadioquake3-aero-bd433afef712ac9c734949667503f1795eb361c8.tar.gz
ioquake3-aero-bd433afef712ac9c734949667503f1795eb361c8.zip
* Move the conditional compilation of bg_lib.c from the Makefile to cpp in
order to force dependency generation on bg_lib.* * Make testing USE_ defines more consistent git-svn-id: svn://svn.icculus.org/quake3/trunk@1186 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client/cl_curl.h')
-rw-r--r--code/client/cl_curl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/client/cl_curl.h b/code/client/cl_curl.h
index 57ed216..1cfd3f1 100644
--- a/code/client/cl_curl.h
+++ b/code/client/cl_curl.h
@@ -37,14 +37,14 @@ extern cvar_t *cl_cURLLib;
#define DEFAULT_CURL_LIB "libcurl.so.3"
#endif
-#if USE_LOCAL_HEADERS
+#ifdef USE_LOCAL_HEADERS
#include "../libcurl/curl/curl.h"
#else
#include <curl/curl.h>
#endif
-#if USE_CURL_DLOPEN
+#ifdef USE_CURL_DLOPEN
extern char* (*qcurl_version)(void);
extern CURL* (*qcurl_easy_init)(void);