From 6216069aa3f369d76d5d25b062da58119a6feec7 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Fri, 11 May 2001 00:35:31 +0000 Subject: [PATCH] Oops, the OpenBSD fix didn't. --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%4030 --- src/video/x11/SDL_x11gl.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/video/x11/SDL_x11gl.c b/src/video/x11/SDL_x11gl.c index f98add0d0..13cba90f3 100644 --- a/src/video/x11/SDL_x11gl.c +++ b/src/video/x11/SDL_x11gl.c @@ -343,9 +343,6 @@ 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");