Skip to content

Commit

Permalink
Date: Wed, 9 May 2001 18:03:20 -0600
Browse files Browse the repository at this point in the history
From: Peter Valchev <pvalchev@openbsd.org>
Subject: openbsd patches

- The dlsym() one is supposed to fix dynamic loading on our a.out
architectures, where prefixing of an underscore symbol is required.
Actually I don't know what kind of dynamic loading does SDL deal with,
but anyway.  You may want to make that change global, but only gcc's
preprocessor passes __ELF__, I think, so you can just add Linux or
something if you decide so.
  • Loading branch information
Sam Lantinga committed May 10, 2001
1 parent 33bdff7 commit cb8372c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/video/x11/SDL_x11gl.c
Expand Up @@ -343,6 +343,9 @@ int X11_GL_LoadLibrary(_THIS, const char* path)
#endif
handle = dlopen(path, dlopen_flags);
/* Catch the case where the application isn't linked with GL */
#if defined __OpenBSD__ && !defined __ELF__
#define dlsym(x,y) dlsym(x, "_" y)
#endif
if ( (dlsym(handle, "glXChooseVisual") == NULL) && (path == NULL) ) {
dlclose(handle);
path = getenv("SDL_VIDEO_GL_DRIVER");
Expand Down

0 comments on commit cb8372c

Please sign in to comment.