diff options
author | Emil Velikov <emil.l.velikov@gmail.com> | 2014-09-25 14:16:16 +0100 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2014-09-27 15:20:49 +0100 |
commit | 343795e44526446a3b111ab35625a76bbe12a98c (patch) | |
tree | 028181346a593b22bc9456b2f45085a249da7e84 /src/mesa/main/dlopen.h | |
parent | a662fa94c15deba9a43c92d726367a909937ff21 (diff) | |
download | external_mesa3d-343795e44526446a3b111ab35625a76bbe12a98c.zip external_mesa3d-343795e44526446a3b111ab35625a76bbe12a98c.tar.gz external_mesa3d-343795e44526446a3b111ab35625a76bbe12a98c.tar.bz2 |
mesa: remove last DJGPP remains
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/mesa/main/dlopen.h')
-rw-r--r-- | src/mesa/main/dlopen.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/main/dlopen.h b/src/mesa/main/dlopen.h index 55a56f0..3754ec1 100644 --- a/src/mesa/main/dlopen.h +++ b/src/mesa/main/dlopen.h @@ -73,13 +73,6 @@ _mesa_dlsym(void *handle, const char *fname) } u; #if defined(__blrts) u.v = NULL; -#elif defined(__DJGPP__) - /* need '_' prefix on symbol names */ - char fname2[1000]; - fname2[0] = '_'; - strncpy(fname2 + 1, fname, 998); - fname2[999] = 0; - u.v = dlsym(handle, fname2); #elif defined(HAVE_DLOPEN) u.v = dlsym(handle, fname); #elif defined(__MINGW32__) |