Skip to content

Commit

Permalink
Angst and zinx cajoled me into removing trying to load libcurl.so again.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thilo Schulz committed Feb 17, 2008
1 parent a99634c commit dc3d245
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 17 deletions.
26 changes: 10 additions & 16 deletions code/client/cl_curl.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,27 +101,21 @@ qboolean CL_cURL_Init()
#else
char fn[1024];

// On some linux distributions there is no libcurl.so symlink, but only libcurl.so.4

Q_strncpyz(fn, cl_cURLLib->string, sizeof(fn));
strncat(fn, ".4", sizeof(fn)-strlen(fn)-1);
Q_strncpyz( fn, Sys_Cwd( ), sizeof( fn ) );
strncat(fn, "/", sizeof(fn)-strlen(fn)-1);
strncat(fn, cl_cURLLib->string, sizeof(fn)-strlen(fn)-1);

if((cURLLib = Sys_LoadLibrary(fn)) == 0)
{
Q_strncpyz(fn, cl_cURLLib->string, sizeof(fn));
strncat(fn, ".3", sizeof(fn)-strlen(fn)-1);

if((cURLLib = Sys_LoadLibrary(fn)) == 0)
#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_LoadLibrary(ALTERNATE_CURL_LIB)) == 0 )
{
Q_strncpyz( fn, Sys_Cwd( ), sizeof( fn ) );
strncat(fn, "/", sizeof(fn)-strlen(fn)-1);
strncat(fn, cl_cURLLib->string, sizeof(fn)-strlen(fn)-1);

if( (cURLLib = Sys_LoadLibrary(fn)) == 0 )
{
return qfalse;
}
return qfalse;
}
#else
return qfalse;
#endif
}
#endif /* _WIN32 */
}
Expand Down
3 changes: 2 additions & 1 deletion code/client/cl_curl.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ extern cvar_t *cl_cURLLib;
#elif defined(MACOS_X)
#define DEFAULT_CURL_LIB "libcurl.dylib"
#else
#define DEFAULT_CURL_LIB "libcurl.so"
#define DEFAULT_CURL_LIB "libcurl.so.4"
#define ALTERNATE_CURL_LIB "libcurl.so.3"
#endif

#ifdef USE_LOCAL_HEADERS
Expand Down

0 comments on commit dc3d245

Please sign in to comment.