diff options
author | Thilo Schulz <arny@ats.s.bawue.de> | 2011-08-01 09:33:48 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-10 23:11:06 +0000 |
commit | c039c00ca0fe051f8ed243c08d238e739027cb76 (patch) | |
tree | d69a37fa483309ffe3bb3adfd81caef90eb4189c /src/client/cl_curl.c | |
parent | 9947b9b323b4b453dbb13dc808776c32de640a6b (diff) |
Don't search system directories for renderer lib
Diffstat (limited to 'src/client/cl_curl.c')
-rw-r--r-- | src/client/cl_curl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/cl_curl.c b/src/client/cl_curl.c index e89d0dee..fd7f6901 100644 --- a/src/client/cl_curl.c +++ b/src/client/cl_curl.c @@ -95,11 +95,11 @@ qboolean CL_cURL_Init() Com_Printf("Loading \"%s\"...", cl_cURLLib->string); - if(!(cURLLib = Sys_LoadDll(cl_cURLLib->string))) + if(!(cURLLib = Sys_LoadDll(cl_cURLLib->string, qtrue))) { #ifdef ALTERNATE_CURL_LIB // On some linux distributions there is no libcurl.so.3, but only libcurl.so.4. That one works too. - if(!(cURLLib = Sys_LoadDll(ALTERNATE_CURL_LIB))) + if(!(cURLLib = Sys_LoadDll(ALTERNATE_CURL_LIB, qtrue))) #endif return qfalse; } |