summaryrefslogtreecommitdiff
path: root/games/cleanq3/files/patch-code-unix-unix_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/cleanq3/files/patch-code-unix-unix_main.c')
-rw-r--r--games/cleanq3/files/patch-code-unix-unix_main.c44
1 files changed, 0 insertions, 44 deletions
diff --git a/games/cleanq3/files/patch-code-unix-unix_main.c b/games/cleanq3/files/patch-code-unix-unix_main.c
deleted file mode 100644
index 049808e77841..000000000000
--- a/games/cleanq3/files/patch-code-unix-unix_main.c
+++ /dev/null
@@ -1,44 +0,0 @@
---- ./code/unix/unix_main.c.orig Wed May 31 20:52:08 2006
-+++ ./code/unix/unix_main.c Wed May 31 20:52:09 2006
-@@ -722,17 +722,7 @@
- assert( name );
-
- getcwd(curpath, sizeof(curpath));
--#if defined __i386__
-- snprintf (fname, sizeof(fname), "%si386.so", name);
--#elif defined __powerpc__ //rcg010207 - PPC support.
-- snprintf (fname, sizeof(fname), "%sppc.so", name);
--#elif defined __axp__
-- snprintf (fname, sizeof(fname), "%saxp.so", name);
--#elif defined __mips__
-- snprintf (fname, sizeof(fname), "%smips.so", name);
--#else
--#error Unknown arch
--#endif
-+ snprintf (fname, sizeof(fname), "%s.so", name);
-
- // bk001129 - was RTLD_LAZY
- #define Q_RTLD RTLD_NOW
-@@ -765,12 +755,22 @@
-
- if ( !libHandle )
- {
-+ Com_Printf( "Sys_LoadDll(%s) failed:\n\"%s\"\n", fn, dlerror() );
-+ // FreeBSD package installation path
-+ fn = FS_BuildOSPath( LIBDIR , gamedir, fname );
-+ Com_Printf( "Sys_LoadDll(%s)... \n", fn );
-+ libHandle = dlopen( fn, Q_RTLD );
-+
-+ if ( !libHandle )
-+ {
- #ifndef NDEBUG // bk001206 - in debug abort on failure
- Com_Error ( ERR_FATAL, "Sys_LoadDll(%s) failed dlopen() completely!\n", name );
- #else
- Com_Printf ( "Sys_LoadDll(%s) failed dlopen() completely!\n", name );
- #endif
- return NULL;
-+ } else
-+ Com_Printf ( "Sys_LoadDll(%s): succeeded ...\n", fn );
- } else
- Com_Printf ( "Sys_LoadDll(%s): succeeded ...\n", fn );
- } else